diff --git a/Cartfile b/Cartfile
index 21fa7f0..b31698c 100644
--- a/Cartfile
+++ b/Cartfile
@@ -1 +1 @@
-github "realm/realm-cocoa" "v0.98.6"
+github "realm/realm-cocoa" "v1.0.0"
diff --git a/Cartfile.private b/Cartfile.private
index 35cc93d..e629cf5 100644
--- a/Cartfile.private
+++ b/Cartfile.private
@@ -1,2 +1,2 @@
-github "Quick/Nimble" "v4.0.0"
+github "Quick/Nimble" "v4.0.1"
github "Quick/Quick" "v0.9.2"
diff --git a/Cartfile.resolved b/Cartfile.resolved
index 1c9787a..1e8815b 100644
--- a/Cartfile.resolved
+++ b/Cartfile.resolved
@@ -1,3 +1,3 @@
-github "Quick/Nimble" "v4.0.0"
+github "Quick/Nimble" "v4.0.1"
github "Quick/Quick" "v0.9.2"
-github "realm/realm-cocoa" "v0.98.6"
+github "realm/realm-cocoa" "v1.0.0"
diff --git a/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Info.plist b/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Info.plist
deleted file mode 100644
index d8f0315..0000000
--- a/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleIdentifier
- com.apple.xcode.dsym.io.Realm.Realm
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- dSYM
- CFBundleSignature
- ????
- CFBundleShortVersionString
- 0.98.6
- CFBundleVersion
- 0.98.6
-
-
diff --git a/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Resources/DWARF/Realm b/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Resources/DWARF/Realm
deleted file mode 100644
index 6cc6559..0000000
Binary files a/Carthage/Build/Mac/Realm.framework.dSYM/Contents/Resources/DWARF/Realm and /dev/null differ
diff --git a/Carthage/Build/Mac/Realm.framework/Headers b/Carthage/Build/Mac/Realm.framework/Headers
deleted file mode 120000
index a177d2a..0000000
--- a/Carthage/Build/Mac/Realm.framework/Headers
+++ /dev/null
@@ -1 +0,0 @@
-Versions/Current/Headers
\ No newline at end of file
diff --git a/Carthage/Build/Mac/Realm.framework/Modules b/Carthage/Build/Mac/Realm.framework/Modules
deleted file mode 120000
index 5736f31..0000000
--- a/Carthage/Build/Mac/Realm.framework/Modules
+++ /dev/null
@@ -1 +0,0 @@
-Versions/Current/Modules
\ No newline at end of file
diff --git a/Carthage/Build/Mac/Realm.framework/PrivateHeaders b/Carthage/Build/Mac/Realm.framework/PrivateHeaders
deleted file mode 120000
index d8e5645..0000000
--- a/Carthage/Build/Mac/Realm.framework/PrivateHeaders
+++ /dev/null
@@ -1 +0,0 @@
-Versions/Current/PrivateHeaders
\ No newline at end of file
diff --git a/Carthage/Build/Mac/Realm.framework/Realm b/Carthage/Build/Mac/Realm.framework/Realm
deleted file mode 120000
index d12855e..0000000
--- a/Carthage/Build/Mac/Realm.framework/Realm
+++ /dev/null
@@ -1 +0,0 @@
-Versions/Current/Realm
\ No newline at end of file
diff --git a/Carthage/Build/Mac/Realm.framework/Resources b/Carthage/Build/Mac/Realm.framework/Resources
deleted file mode 120000
index 953ee36..0000000
--- a/Carthage/Build/Mac/Realm.framework/Resources
+++ /dev/null
@@ -1 +0,0 @@
-Versions/Current/Resources
\ No newline at end of file
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMArray.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMArray.h
deleted file mode 100644
index c1fe14a..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMArray.h
+++ /dev/null
@@ -1,364 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-#import
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-@class RLMObject, RLMRealm, RLMResults RLM_GENERIC_COLLECTION, RLMNotificationToken;
-
-/**
-
- RLMArray is the container type in Realm used to define to-many relationships.
-
- Unlike an NSArray, RLMArrays hold a single type, specified by the `objectClassName` property.
- This is referred to in these docs as the “type” of the array.
-
- When declaring an RLMArray property, the type must be marked as conforming to a
- protocol by the same name as the objects it should contain (see the
- `RLM_ARRAY_TYPE` macro). RLMArray properties can also use Objective-C generics
- if available. For example:
-
- RLM_ARRAY_TYPE(ObjectType)
- ...
- @property RLMArray *arrayOfObjectTypes;
-
- RLMArrays can be queried with the same predicates as RLMObject and RLMResults.
-
- RLMArrays cannot be created directly. RLMArray properties on RLMObjects are
- lazily created when accessed, or can be obtained by querying a Realm.
-
- ### Key-Value Observing
-
- RLMArray supports array key-value observing on RLMArray properties on RLMObject
- subclasses, and the `invalidated` property on RLMArray instances themselves is
- key-value observing compliant when the RLMArray is attached to a persisted
- RLMObject (RLMArrays on standalone RLMObjects will never become invalidated).
-
- Because RLMArrays are attached to the object which they are a property of, they
- do not require using the mutable collection proxy objects from
- `-mutableArrayValueForKey:` or KVC-compatible mutation methods on the containing
- object. Instead, you can call the mutation methods on the RLMArray directly.
- */
-
-@interface RLMArray RLM_GENERIC_COLLECTION : NSObject
-
-#pragma mark - Properties
-
-/**
- Number of objects in the array.
- */
-@property (nonatomic, readonly, assign) NSUInteger count;
-
-/**
- The class name (i.e. type) of the RLMObjects contained in this RLMArray.
- */
-@property (nonatomic, readonly, copy) NSString *objectClassName;
-
-/**
- The Realm in which this array is persisted. Returns nil for standalone arrays.
- */
-@property (nonatomic, readonly, nullable) RLMRealm *realm;
-
-/**
- Indicates if an array can no longer be accessed.
- */
-@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
-
-#pragma mark - Accessing Objects from an Array
-
-/**
- Returns the object at the index specified.
-
- @param index The index to look up.
-
- @return An RLMObject of the type contained in this RLMArray.
- */
-- (RLMObjectType)objectAtIndex:(NSUInteger)index;
-
-/**
- Returns the first object in the array.
-
- Returns `nil` if called on an empty RLMArray.
-
- @return An RLMObject of the type contained in this RLMArray.
- */
-- (nullable RLMObjectType)firstObject;
-
-/**
- Returns the last object in the array.
-
- Returns `nil` if called on an empty RLMArray.
-
- @return An RLMObject of the type contained in this RLMArray.
- */
-- (nullable RLMObjectType)lastObject;
-
-
-
-#pragma mark - Adding, Removing, and Replacing Objects in an Array
-
-/**
- Adds an object to the end of the array.
-
- @warning This method can only be called during a write transaction.
-
- @param object An RLMObject of the type contained in this RLMArray.
- */
-- (void)addObject:(RLMObjectArgument)object;
-
-/**
- Adds an array of objects at the end of the array.
-
- @warning This method can only be called during a write transaction.
-
- @param objects An enumerable object such as NSArray or RLMResults which contains objects of the
- same class as this RLMArray.
- */
-- (void)addObjects:(id)objects;
-
-/**
- Inserts an object at the given index.
-
- Throws an exception when the index exceeds the bounds of this RLMArray.
-
- @warning This method can only be called during a write transaction.
-
- @param anObject An RLMObject of the type contained in this RLMArray.
- @param index The array index at which the object is inserted.
- */
-- (void)insertObject:(RLMObjectArgument)anObject atIndex:(NSUInteger)index;
-
-/**
- Removes an object at a given index.
-
- Throws an exception when the index exceeds the bounds of this RLMArray.
-
- @warning This method can only be called during a write transaction.
-
- @param index The array index identifying the object to be removed.
- */
-- (void)removeObjectAtIndex:(NSUInteger)index;
-
-/**
- Removes the last object in an RLMArray.
-
- @warning This method can only be called during a write transaction.
-*/
-- (void)removeLastObject;
-
-/**
- Removes all objects from an RLMArray.
-
- @warning This method can only be called during a write transaction.
- */
-- (void)removeAllObjects;
-
-/**
- Replaces an object at the given index with a new object.
-
- Throws an exception when the index exceeds the bounds of this RLMArray.
-
- @warning This method can only be called during a write transaction.
-
- @param index The array index of the object to be replaced.
- @param anObject An object (of the same type as returned from the objectClassName selector).
- */
-- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(RLMObjectArgument)anObject;
-
-/**
- Moves the object at the given source index to the given destination index.
-
- Throws an exception when the index exceeds the bounds of this RLMArray.
-
- @warning This method can only be called during a write transaction.
-
- @param sourceIndex The index of the object to be moved.
- @param destinationIndex The index to which the object at `sourceIndex` should be moved.
- */
-- (void)moveObjectAtIndex:(NSUInteger)sourceIndex toIndex:(NSUInteger)destinationIndex;
-
-/**
- Exchanges the objects in the array at given indexes.
-
- Throws an exception when either index exceeds the bounds of this RLMArray.
-
- @warning This method can only be called during a write transaction.
-
- @param index1 The index of the object with which to replace the object at index `index2`.
- @param index2 The index of the object with which to replace the object at index `index1`.
- */
-- (void)exchangeObjectAtIndex:(NSUInteger)index1 withObjectAtIndex:(NSUInteger)index2;
-
-#pragma mark - Querying an Array
-
-/**
- Gets the index of an object.
-
- Returns NSNotFound if the object is not found in this RLMArray.
-
- @param object An object (of the same type as returned from the objectClassName selector).
- */
-- (NSUInteger)indexOfObject:(RLMObjectArgument)object;
-
-/**
- Gets the index of the first object matching the predicate.
-
- @param predicateFormat The predicate format string which can accept variable arguments.
-
- @return Index of object or NSNotFound if the object is not found in this RLMArray.
- */
-- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...;
-
-/// :nodoc:
-- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args;
-
-/**
- Gets the index of the first object matching the predicate.
-
- @param predicate The predicate to filter the objects.
-
- @return Index of object or NSNotFound if the object is not found in this RLMArray.
- */
-- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate;
-
-/**
- Get objects matching the given predicate in the RLMArray.
-
- @param predicateFormat The predicate format string which can accept variable arguments.
-
- @return An RLMResults of objects that match the given predicate
- */
-- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat, ...;
-
-/// :nodoc:
-- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat args:(va_list)args;
-
-/**
- Get objects matching the given predicate in the RLMArray.
-
- @param predicate The predicate to filter the objects.
-
- @return An RLMResults of objects that match the given predicate
- */
-- (RLMResults RLM_GENERIC_RETURN*)objectsWithPredicate:(NSPredicate *)predicate;
-
-/**
- Get a sorted RLMResults from an RLMArray
-
- @param property The property name to sort by.
- @param ascending The direction to sort by.
-
- @return An RLMResults sorted by the specified property.
- */
-- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending;
-
-/**
- Get a sorted RLMResults from an RLMArray
-
- @param properties An array of `RLMSortDescriptor`s to sort by.
-
- @return An RLMResults sorted by the specified properties.
- */
-- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingDescriptors:(NSArray *)properties;
-
-/// :nodoc:
-- (RLMObjectType)objectAtIndexedSubscript:(NSUInteger)index;
-
-/// :nodoc:
-- (void)setObject:(RLMObjectType)newValue atIndexedSubscript:(NSUInteger)index;
-
-#pragma mark - Notifications
-
-/**
- Register a block to be called each time the RLMArray changes.
-
- The block will be asynchronously called with the initial array, and then
- called again after each write transaction which changes the array or any
- items contained in the array. You must retain the returned token for as long as
- you want the block to continue to be called. To stop receiving updates, call
- `-stop` on the token.
-
- The error parameter will always be `nil`, and is present only for compatiblity
- with the RLMResults version of this method, which can potentially fail.
-
- @param block The block to be called each time the array changes.
- @return A token which must be held for as long as you want notifications to be delivered.
- */
-- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray RLM_GENERIC_RETURN *array, NSError *))block RLM_WARN_UNUSED_RESULT;
-
-#pragma mark - Unavailable Methods
-
-/**
- -[RLMArray init] is not available because RLMArrays cannot be created directly.
- RLMArray properties on RLMObjects are lazily created when accessed, or can be obtained by querying a Realm.
- */
-- (instancetype)init __attribute__((unavailable("RLMArrays cannot be created directly")));
-
-/**
- +[RLMArray new] is not available because RLMArrays cannot be created directly.
- RLMArray properties on RLMObjects are lazily created when accessed, or can be obtained by querying a Realm.
- */
-+ (instancetype)new __attribute__((unavailable("RLMArrays cannot be created directly")));
-
-@end
-
-/**
- An RLMSortDescriptor stores a property name and a sort order for use with
- `sortedResultsUsingDescriptors:`. It is similar to NSSortDescriptor, but supports
- only the subset of functionality which can be efficiently run by the query
- engine. RLMSortDescriptor instances are immutable.
- */
-@interface RLMSortDescriptor : NSObject
-
-#pragma mark - Properties
-
-/**
- The name of the property which this sort descriptor orders results by.
- */
-@property (nonatomic, readonly) NSString *property;
-
-/**
- Whether this descriptor sorts in ascending or descending order.
- */
-@property (nonatomic, readonly) BOOL ascending;
-
-#pragma mark - Methods
-
-/**
- Returns a new sort descriptor for the given property name and order.
- */
-+ (instancetype)sortDescriptorWithProperty:(NSString *)propertyName ascending:(BOOL)ascending;
-
-/**
- Returns a copy of the receiver with the sort order reversed.
- */
-- (instancetype)reversedSortDescriptor;
-
-@end
-
-/// :nodoc:
-@interface RLMArray (Swift)
-// for use only in Swift class definitions
-- (instancetype)initWithObjectClassName:(NSString *)objectClassName;
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMCollection.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMCollection.h
deleted file mode 100644
index a1a4efb..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMCollection.h
+++ /dev/null
@@ -1,184 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-@class RLMRealm, RLMResults, RLMObject, RLMSortDescriptor, RLMNotificationToken;
-
-/**
- A homogenous collection of `RLMObject`s like `RLMArray` or `RLMResults`.
- */
-@protocol RLMCollection
-
-@required
-
-#pragma mark - Properties
-
-/**
- Number of objects in the collection.
- */
-@property (nonatomic, readonly, assign) NSUInteger count;
-
-/**
- The class name (i.e. type) of the RLMObjects contained in this RLMCollection.
- */
-@property (nonatomic, readonly, copy) NSString *objectClassName;
-
-/**
- The Realm in which this collection is persisted. Returns nil for standalone collections.
- */
-@property (nonatomic, readonly) RLMRealm *realm;
-
-#pragma mark - Accessing Objects from a Collection
-
-/**
- Returns the object at the index specified.
-
- @param index The index to look up.
-
- @return An RLMObject of the type contained in this RLMCollection.
- */
-- (id)objectAtIndex:(NSUInteger)index;
-
-/**
- Returns the first object in the collection.
-
- Returns `nil` if called on an empty RLMCollection.
-
- @return An RLMObject of the type contained in this RLMCollection.
- */
-- (nullable id)firstObject;
-
-/**
- Returns the last object in the collection.
-
- Returns `nil` if called on an empty RLMCollection.
-
- @return An RLMObject of the type contained in this RLMCollection.
- */
-- (nullable id)lastObject;
-
-#pragma mark - Querying a Collection
-
-/**
- Gets the index of an object.
-
- Returns NSNotFound if the object is not found in this RLMCollection.
-
- @param object An object (of the same type as returned from the objectClassName selector).
- */
-- (NSUInteger)indexOfObject:(RLMObject *)object;
-
-/**
- Gets the index of the first object matching the predicate.
-
- @param predicateFormat The predicate format string which can accept variable arguments.
-
- @return Index of object or NSNotFound if the object is not found in this RLMCollection.
- */
-- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...;
-
-/// :nodoc:
-- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args;
-
-/**
- Gets the index of the first object matching the predicate.
-
- @param predicate The predicate to filter the objects.
-
- @return Index of object or NSNotFound if the object is not found in this RLMCollection.
- */
-- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate;
-
-/**
- Get objects matching the given predicate in the RLMCollection.
-
- @param predicateFormat The predicate format string which can accept variable arguments.
-
- @return An RLMResults of objects that match the given predicate
- */
-- (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...;
-
-/// :nodoc:
-- (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args;
-
-/**
- Get objects matching the given predicate in the RLMCollection.
-
- @param predicate The predicate to filter the objects.
-
- @return An RLMResults of objects that match the given predicate
- */
-- (RLMResults *)objectsWithPredicate:(NSPredicate *)predicate;
-
-/**
- Get a sorted RLMResults from an RLMCollection.
-
- @param property The property name to sort by.
- @param ascending The direction to sort by.
-
- @return An RLMResults sorted by the specified property.
- */
-- (RLMResults *)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending;
-
-/**
- Get a sorted RLMResults from an RLMCollection.
-
- @param properties An array of `RLMSortDescriptor`s to sort by.
-
- @return An RLMResults sorted by the specified properties.
- */
-- (RLMResults *)sortedResultsUsingDescriptors:(NSArray RLM_GENERIC(RLMSortDescriptor *) *)properties;
-
-/// :nodoc:
-- (id)objectAtIndexedSubscript:(NSUInteger)index;
-
-/**
- Returns an NSArray containing the results of invoking `valueForKey:` using key on each of the collection's objects.
-
- @param key The name of the property.
-
- @return NSArray containing the results of invoking `valueForKey:` using key on each of the collection's objects.
- */
-- (nullable id)valueForKey:(NSString *)key;
-
-/**
- Invokes `setValue:forKey:` on each of the collection's objects using the specified value and key.
-
- @warning This method can only be called during a write transaction.
-
- @param value The object value.
- @param key The name of the property.
- */
-- (void)setValue:(nullable id)value forKey:(NSString *)key;
-
-#pragma mark - Notifications
-
-/**
- Register a block to be called each time the collection changes.
-
- @param block The block to be called each time the collection changes.
- @return A token which must be held for as long as you want notifications to be delivered.
- */
-- (RLMNotificationToken *)addNotificationBlock:(void (^)(id collection))block RLM_WARN_UNUSED_RESULT;
-
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMConstants.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMConstants.h
deleted file mode 100644
index 3befba1..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMConstants.h
+++ /dev/null
@@ -1,131 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-#pragma mark - Enums
-
-/**
- Property types supported in Realm models.
-
- See [Realm Models](https://realm.io/docs/objc/latest/#models)
- */
-// Make sure numbers match those in
-typedef NS_ENUM(int32_t, RLMPropertyType) {
-
-#pragma mark - Primitive types
-
- /** Integer type: NSInteger, int, long, Int (Swift) */
- RLMPropertyTypeInt = 0,
- /** Boolean type: BOOL, bool, Bool (Swift) */
- RLMPropertyTypeBool = 1,
- /** Float type: float, Float (Swift) */
- RLMPropertyTypeFloat = 9,
- /** Double type: double, Double (Swift) */
- RLMPropertyTypeDouble = 10,
-
-#pragma mark - Object types
-
- /** String type: NSString, String (Swift) */
- RLMPropertyTypeString = 2,
- /** Data type: NSData */
- RLMPropertyTypeData = 4,
- /** Any type: id, **not supported in Swift** */
- RLMPropertyTypeAny = 6,
- /** Date type: NSDate */
- RLMPropertyTypeDate = 7,
-
-#pragma mark - Array/Linked object types
-
- /** Object type. See [Realm Models](https://realm.io/docs/objc/latest/#models) */
- RLMPropertyTypeObject = 12,
- /** Array type. See [Realm Models](http://realms.io/docs/objc/latest/#models) */
- RLMPropertyTypeArray = 13,
-};
-
-/**
- Enum representing all recoverable errors in Realm.
- */
-typedef NS_ENUM(NSInteger, RLMError) {
- /** Returned by RLMRealm if no other specific error is returned when a realm is opened. */
- RLMErrorFail = 1,
- /** Returned by RLMRealm for any I/O related exception scenarios when a realm is opened. */
- RLMErrorFileAccess = 2,
- /** Returned by RLMRealm if the user does not have permission to open or create
- the specified file in the specified access mode when the realm is opened. */
- RLMErrorFilePermissionDenied = 3,
- /** Returned by RLMRealm if the file already exists when a copy should be written. */
- RLMErrorFileExists = 4,
- /** Returned by RLMRealm if no file was found when a realm was opened as
- read-only or if the directory part of the specified path was not
- found when a copy should be written. */
- RLMErrorFileNotFound = 5,
- /** Returned by RLMRealm if a file format upgrade is required to open the file, but upgrades were explicilty disabled. */
- RLMErrorFileFormatUpgradeRequired = 6,
- /** Returned by RLMRealm if the database file is currently open in another
- process which cannot share with the current process due to an
- architecture mismatch. */
- RLMErrorIncompatibleLockFile = 8,
-};
-
-#pragma mark - Constants
-
-#pragma mark - Notification Constants
-
-/**
- Posted by RLMRealm when the data in the realm has changed.
-
- DidChange are posted after a realm has been refreshed to reflect a write
- transaction, i.e. when an autorefresh occurs, `[RLMRealm refresh]` is
- called, after an implicit refresh from `[RLMRealm beginWriteTransaction]`,
- and after a local write transaction is committed.
- */
-extern NSString * const RLMRealmRefreshRequiredNotification;
-
-/**
- Posted by RLMRealm when a write transaction has been committed to an RLMRealm on
- a different thread for the same file. This is not posted if
- `[RLMRealm autorefresh]` is enabled or if the RLMRealm is
- refreshed before the notifcation has a chance to run.
-
- Realms with autorefresh disabled should normally have a handler for this
- notification which calls `[RLMRealm refresh]` after doing some work.
- While not refreshing is allowed, it may lead to large Realm files as Realm has
- to keep an extra copy of the data for the un-refreshed RLMRealm.
- */
-extern NSString * const RLMRealmDidChangeNotification;
-
-#pragma mark - Other Constants
-
-/** Schema version used for uninitialized Realms */
-extern const uint64_t RLMNotVersioned;
-
-/** Error domain used in Realm. */
-extern NSString * const RLMErrorDomain;
-
-/** Key for name of Realm exceptions. */
-extern NSString * const RLMExceptionName;
-
-/** Key for Realm file version. */
-extern NSString * const RLMRealmVersionKey;
-
-/** Key for Realm core version. */
-extern NSString * const RLMRealmCoreVersionKey;
-
-/** Key for Realm invalidated property name. */
-extern NSString * const RLMInvalidatedKey;
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMDefines.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMDefines.h
deleted file mode 100644
index 73afc03..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMDefines.h
+++ /dev/null
@@ -1,95 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2015 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-@class RLMObject;
-
-#ifndef __has_feature
-#define __has_feature(x) 0
-#endif
-
-#pragma mark - Generics
-
-#if __has_extension(objc_generics)
-#define RLM_GENERIC(...) <__VA_ARGS__>
-#define RLM_GENERIC_COLLECTION
-#define RLM_GENERIC_RETURN
-#define RLMObjectArgument RLMObjectType
-#else
-#define RLM_GENERIC(...)
-#define RLM_GENERIC_COLLECTION
-#define RLM_GENERIC_RETURN
-typedef id RLMObjectType;
-typedef RLMObject * RLMObjectArgument;
-#endif
-
-#pragma mark - Nullability
-
-#if !__has_feature(nullability)
-#ifndef __nullable
-#define __nullable
-#endif
-#ifndef __nonnull
-#define __nonnull
-#endif
-#ifndef __null_unspecified
-#define __null_unspecified
-#endif
-#ifndef nullable
-#define nullable
-#endif
-#ifndef nonnull
-#define nonnull
-#endif
-#ifndef null_unspecified
-#define null_unspecified
-#endif
-#endif
-
-#if defined(NS_ASSUME_NONNULL_BEGIN) && defined(NS_ASSUME_NONNULL_END)
-#define RLM_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN
-#define RLM_ASSUME_NONNULL_END NS_ASSUME_NONNULL_END
-#else
-#define RLM_ASSUME_NONNULL_BEGIN
-#define RLM_ASSUME_NONNULL_END
-#endif
-
-#pragma mark - Escaping
-
-#if __has_attribute(noescape)
-# define RLM_NOESCAPE __attribute__((noescape))
-#else
-# define RLM_NOESCAPE
-#endif
-
-#pragma mark - Unused Result
-
-#if __has_attribute(warn_unused_result)
-# define RLM_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
-#else
-# define RLM_WARN_UNUSED_RESULT
-#endif
-
-#pragma mark - Swift Availability
-
-#if defined(NS_SWIFT_UNAVAILABLE)
-# define RLM_SWIFT_UNAVAILABLE(msg) NS_SWIFT_UNAVAILABLE(msg)
-#else
-# define RLM_SWIFT_UNAVAILABLE(msg)
-#endif
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMMigration.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMMigration.h
deleted file mode 100644
index 3eb9b67..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMMigration.h
+++ /dev/null
@@ -1,107 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-@class RLMSchema;
-@class RLMArray;
-@class RLMObject;
-
-/**
-Provides both the old and new versions of an object in this Realm. Object properties can only be
-accessed using keyed subscripting.
-
-@param oldObject Object in original RLMRealm (read-only).
-@param newObject Object in migrated RLMRealm (read-write).
-*/
-typedef void (^RLMObjectMigrationBlock)(RLMObject * __nullable oldObject, RLMObject * __nullable newObject);
-
-/**
- RLMMigration is the object passed into a user defined RLMMigrationBlock when updating the version
- of an RLMRealm instance.
-
- This object provides access to the RLMSchema current to this migration.
- */
-@interface RLMMigration : NSObject
-
-#pragma mark - Properties
-
-/**
- Get the old RLMSchema for the migration. This is the schema which describes the RLMRealm before the
- migration is applied.
- */
-@property (nonatomic, readonly) RLMSchema *oldSchema;
-
-/**
- Get the new RLMSchema for the migration. This is the schema which describes the RLMRealm after applying
- a migration.
- */
-@property (nonatomic, readonly) RLMSchema *newSchema;
-
-
-#pragma mark - Altering Objects during a Migration
-
-/**
- Enumerates objects of a given type in this Realm, providing both the old and new versions of each object.
- Objects properties can be accessed using keyed subscripting.
-
- @param className The name of the RLMObject class to enumerate.
-
- @warning All objects returned are of a type specific to the current migration and should not be casted
- to className. Instead you should access them as RLMObjects and use keyed subscripting to access
- properties.
- */
-- (void)enumerateObjects:(NSString *)className block:(RLMObjectMigrationBlock)block;
-
-/**
- Create an RLMObject of type `className` in the Realm being migrated.
-
- @param className The name of the RLMObject class to create.
- @param value The value used to populate the created object. This can be any key/value coding compliant
- object, or a JSON object such as those returned from the methods in NSJSONSerialization, or
- an NSArray with one object for each persisted property. An exception will be
- thrown if any required properties are not present and no default is set.
-
- When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model.
- */
--(RLMObject *)createObject:(NSString *)className withValue:(id)value;
-
-/**
- Delete an object from a Realm during a migration. This can be called within `enumerateObjects:block:`.
-
- @param object Object to be deleted from the Realm being migrated.
- */
-- (void)deleteObject:(RLMObject *)object;
-
-/**
- Deletes the data for the class with the given name.
- This deletes all objects of the given class, and if the RLMObject subclass no longer exists in your program,
- cleans up any remaining metadata for the class in the Realm file.
-
- @param name The name of the RLMObject class to delete.
-
- @return whether there was any data to delete.
- */
-- (BOOL)deleteDataForClassName:(NSString *)name;
-
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObject.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObject.h
deleted file mode 100644
index 0047be1..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObject.h
+++ /dev/null
@@ -1,425 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-@class RLMRealm;
-@class RLMResults;
-@class RLMObjectSchema;
-
-/**
-
- In Realm you define your model classes by subclassing `RLMObject` and adding properties to be persisted.
- You then instantiate and use your custom subclasses instead of using the `RLMObject` class directly.
-
- // Dog.h
- @interface Dog : RLMObject
- @property NSString *name;
- @property BOOL adopted;
- @end
-
- // Dog.m
- @implementation Dog
- @end //none needed
-
- ### Supported property types
-
- - `NSString`
- - `NSInteger`, `int`, `long`, `float`, and `double`
- - `BOOL` or `bool`
- - `NSDate`
- - `NSData`
- - `NSNumber`, where X is one of RLMInt, RLMFloat, RLMDouble or RLMBool, for optional number properties
- - `RLMObject` subclasses, so you can have many-to-one relationships.
- - `RLMArray`, where X is an `RLMObject` subclass, so you can have many-to-many relationships.
-
- ### Querying
-
- You can query an object directly via the class methods: `allObjects`, `objectsWhere:`, and `objectsWithPredicate:`.
- These methods allow you to easily query a custom subclass for instances of this class in the
- default Realm. To search in a Realm other than the default Realm use the interface on an RLMRealm instance.
-
- ### Relationships
-
- See our [Cocoa guide](https://realm.io/docs/objc/latest#relationships) for more details.
-
- ### Key-Value Observing
-
- All `RLMObject` properties (including properties you create in subclasses) are
- [Key-Value Observing compliant](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html),
- except for `realm` and `objectSchema`. There are several Realm-specific things
- to keep in mind when observing Realm objects:
-
- 1. Unlike `NSMutableArray` properties, `RLMArray` properties do not require
- using the proxy object returned from `-mutableArrayValueForKey:`, or defining
- KVC mutation methods on the containing class. You can simply call methods on
- the RLMArray directly and the changes will be observed by the containing
- object.
- 2. Standalone `RLMObjects` cannot be added to a Realm while they have any
- observed properties.
- 3. Modifying persisted `RLMObjects` in `-observeValueForKeyPath:ofObject:change:context:`
- is problematic. Properties may change when the Realm is not in a write
- transaction (for example, when `-[RLMRealm refresh]` is called after changes
- are made on a different thread), and notifications sent prior to the change
- being applied (when `NSKeyValueObservingOptionPrior` is used) may be sent at
- times when you *cannot* begin a write transaction.
- */
-
-@interface RLMObject : RLMObjectBase
-
-#pragma mark - Creating & Initializing Objects
-
-/**
- Initialize a standalone RLMObject
-
- Initialize an unpersisted instance of this object.
- Call addObject: on an RLMRealm to add standalone object to a realm.
-
- @see [RLMRealm addObject:]:
- */
-- (instancetype)init NS_DESIGNATED_INITIALIZER;
-
-
-/**
- Initialize a standalone RLMObject with values from an NSArray or NSDictionary
-
- Initialize an unpersisted instance of this object.
- Call addObject: on an RLMRealm to add standalone object to a realm.
-
- @see [RLMRealm addObject:]:
- */
-- (instancetype)initWithValue:(id)value NS_DESIGNATED_INITIALIZER;
-
-
-/**
- Helper to return the class name for an RLMObject subclass.
-
- @warning Do not override. Realm relies on this method returning the exact class
- name.
-
- @return The class name for the model class.
- */
-+ (NSString *)className;
-
-/**
- Create an RLMObject in the default Realm with a given value.
-
- Creates an instance of this object and adds it to the default Realm populating
- the object with the given value.
-
- If nested objects are included in the argument, `createInDefaultRealmWithValue:` will be called
- on them.
-
- @param value The value used to populate the object. This can be any key/value coding compliant
- object, or a JSON object such as those returned from the methods in NSJSONSerialization, or
- an NSArray with one object for each persisted property. An exception will be
- thrown if any required properties are not present and no default is set.
-
- When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model.
-
- @see defaultPropertyValues
- */
-+ (instancetype)createInDefaultRealmWithValue:(id)value;
-
-/**
- Create an RLMObject in a Realm with a given object.
-
- Creates an instance of this object and adds it to the given Realm populating
- the object with the given object.
-
- If nested objects are included in the argument, `createInRealm:withValue:` will be called
- on them.
-
- @param realm The Realm in which this object is persisted.
- @param value The value used to populate the object. This can be any key/value coding compliant
- object, or a JSON object such as those returned from the methods in NSJSONSerialization, or
- an NSArray with one object for each persisted property. An exception will be
- thrown if any required properties are not present and no default is set.
-
- When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model.
-
- @see defaultPropertyValues
- */
-+ (instancetype)createInRealm:(RLMRealm *)realm withValue:(id)value;
-
-/**
- Create or update an RLMObject in the default Realm with a given object.
-
- This method can only be called on object types with a primary key defined. If there is already
- an object with the same primary key value in the default RLMRealm its values are updated and the object
- is returned. Otherwise this creates and populates a new instance of this object in the default Realm.
-
- If nested objects are included in the argument, `createOrUpdateInDefaultRealmWithValue:` will be
- called on them if have a primary key (`createInDefaultRealmWithValue:` otherwise).
-
- This is a no-op if the argument is an RLMObject of the same type already backed by the target realm.
-
- @param value The value used to populate the object. This can be any key/value coding compliant
- object, or a JSON object such as those returned from the methods in NSJSONSerialization, or
- an NSArray with one object for each persisted property. An exception will be
- thrown if any required properties are not present and no default is set.
-
- When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model.
-
- @see defaultPropertyValues, primaryKey
- */
-+ (instancetype)createOrUpdateInDefaultRealmWithValue:(id)value;
-
-/**
- Create or update an RLMObject with a given object.
-
- This method can only be called on object types with a primary key defined. If there is already
- an object with the same primary key value in the provided RLMRealm its values are updated and the object
- is returned. Otherwise this creates and populates a new instance of this object in the provided Realm.
-
- If nested objects are included in the argument, `createOrUpdateInRealm:withValue:` will be
- called on them if have a primary key (`createInRealm:withValue:` otherwise).
-
- This is a no-op if the argument is an RLMObject of the same type already backed by the target realm.
-
- @param realm The Realm in which this object is persisted.
- @param value The value used to populate the object. This can be any key/value coding compliant
- object, or a JSON object such as those returned from the methods in NSJSONSerialization, or
- an NSArray with one object for each persisted property. An exception will be
- thrown if any required properties are not present and no default is set.
-
- When passing in an NSArray, all properties must be present, valid and in the same order as the properties defined in the model.
-
- @see defaultPropertyValues, primaryKey
- */
-+ (instancetype)createOrUpdateInRealm:(RLMRealm *)realm withValue:(id)value;
-
-#pragma mark - Properties
-
-/**
- The Realm in which this object is persisted. Returns nil for standalone objects.
- */
-@property (nonatomic, readonly, nullable) RLMRealm *realm;
-
-/**
- The ObjectSchema which lists the persisted properties for this object.
- */
-@property (nonatomic, readonly) RLMObjectSchema *objectSchema;
-
-/**
- Indicates if an object can no longer be accessed.
-
- An object can no longer be accessed if the object has been deleted from the containing `realm` or
- if `invalidate` is called on the containing `realm`.
- */
-@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
-
-
-#pragma mark - Customizing your Objects
-
-/**
- Return an array of property names for properties which should be indexed. Only supported
- for string and int properties.
- @return NSArray of property names.
- */
-+ (NSArray RLM_GENERIC(NSString *) *)indexedProperties;
-
-/**
- Implement to indicate the default values to be used for each property.
-
- @return NSDictionary mapping property names to their default values.
- */
-+ (nullable NSDictionary *)defaultPropertyValues;
-
-/**
- Implement to designate a property as the primary key for an RLMObject subclass. Only properties of
- type RLMPropertyTypeString and RLMPropertyTypeInt can be designated as the primary key. Primary key
- properties enforce uniqueness for each value whenever the property is set which incurs some overhead.
- Indexes are created automatically for primary key properties.
-
- @return Name of the property designated as the primary key.
- */
-+ (nullable NSString *)primaryKey;
-
-/**
- Implement to return an array of property names to ignore. These properties will not be persisted
- and are treated as transient.
-
- @return NSArray of property names to ignore.
- */
-+ (nullable NSArray RLM_GENERIC(NSString *) *)ignoredProperties;
-
-/**
- Implement to return an array of property names that should not allow storing nil.
-
- By default, all properties of a type that support storing nil are considered optional properties.
- To require that an object in a Realm always have a non-nil value for a property,
- add the name of the property to the array returned from this method.
-
- Currently Object properties cannot be required. Array and NSNumber properties
- can, but it makes little sense to do so: arrays do not support storing nil, and
- if you want a non-optional number you should instead use the primitive type.
-
- @return NSArray of property names that are required.
- */
-+ (NSArray RLM_GENERIC(NSString *) *)requiredProperties;
-
-
-#pragma mark - Getting & Querying Objects from the Default Realm
-
-/**
- Get all objects of this type from the default Realm.
-
- @return An RLMResults of all objects of this type in the default Realm.
- */
-+ (RLMResults *)allObjects;
-
-/**
- Get objects matching the given predicate for this type from the default Realm.
-
- @param predicateFormat The predicate format string which can accept variable arguments.
-
- @return An RLMResults of objects of the subclass type in the default Realm that match the given predicate
- */
-+ (RLMResults *)objectsWhere:(NSString *)predicateFormat, ...;
-
-/// :nodoc:
-+ (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args;
-
-
-/**
- Get objects matching the given predicate for this type from the default Realm.
-
- @param predicate The predicate to filter the objects.
-
- @return An RLMResults of objects of the subclass type in the default Realm that match the given predicate
- */
-+ (RLMResults *)objectsWithPredicate:(nullable NSPredicate *)predicate;
-
-/**
- Get the single object with the given primary key from the default Realm.
-
- Returns the object from the default Realm which has the given primary key, or
- `nil` if the object does not exist. This is slightly faster than the otherwise
- equivalent `[[SubclassName objectsWhere:@"primaryKeyPropertyName = %@", key] firstObject]`.
-
- This method requires that `primaryKey` be overridden on the receiving subclass.
-
- @return An object of the subclass type or nil if an object with the given primary key does not exist.
- @see -primaryKey
- */
-+ (nullable instancetype)objectForPrimaryKey:(nullable id)primaryKey;
-
-
-#pragma mark - Querying Specific Realms
-
-/**
- Get all objects of this type from the specified Realm.
-
- @param realm The Realm instance to query.
-
- @return An RLMResults of all objects of this type in the specified Realm.
- */
-+ (RLMResults *)allObjectsInRealm:(RLMRealm *)realm;
-
-/**
- Get objects matching the given predicate for this type from the specified Realm.
-
- @param predicateFormat The predicate format string which can accept variable arguments.
- @param realm The Realm instance to query.
-
- @return An RLMResults of objects of the subclass type in the specified Realm that match the given predicate
- */
-+ (RLMResults *)objectsInRealm:(RLMRealm *)realm where:(NSString *)predicateFormat, ...;
-
-/// :nodoc:
-+ (RLMResults *)objectsInRealm:(RLMRealm *)realm where:(NSString *)predicateFormat args:(va_list)args;
-
-/**
- Get objects matching the given predicate for this type from the specified Realm.
-
- @param predicate The predicate to filter the objects.
- @param realm The Realm instance to query.
-
- @return An RLMResults of objects of the subclass type in the specified Realm that match the given predicate
- */
-+ (RLMResults *)objectsInRealm:(RLMRealm *)realm withPredicate:(nullable NSPredicate *)predicate;
-
-/**
- Get the single object with the given primary key from the specified Realm.
-
- Returns the object from the specified Realm which has the given primary key, or
- `nil` if the object does not exist. This is slightly faster than the otherwise
- equivalent `[[SubclassName objectsInRealm:realm where:@"primaryKeyPropertyName = %@", key] firstObject]`.
-
- This method requires that `primaryKey` be overridden on the receiving subclass.
-
- @return An object of the subclass type or nil if an object with the given primary key does not exist.
- @see -primaryKey
- */
-+ (nullable instancetype)objectInRealm:(RLMRealm *)realm forPrimaryKey:(nullable id)primaryKey;
-
-#pragma mark - Other Instance Methods
-
-/**
- Get an `NSArray` of objects of type `className` which have this object as the given property value. This can
- be used to get the inverse relationship value for `RLMObject` and `RLMArray` properties.
-
- @param className The type of object on which the relationship to query is defined.
- @param property The name of the property which defines the relationship.
-
- @return An NSArray of objects of type `className` which have this object as their value for the `property` property.
- */
-- (NSArray *)linkingObjectsOfClass:(NSString *)className forProperty:(NSString *)property;
-
-/**
- Returns YES if another RLMObject points to the same object in an RLMRealm. For RLMObject types
- with a primary, key, `isEqual:` is overridden to use this method (along with a corresponding
- implementation for `hash`.
-
- @param object The object to compare to.
-
- @return YES if the object represents the same object in the same RLMRealm.
- */
-- (BOOL)isEqualToObject:(RLMObject *)object;
-
-#pragma mark - Dynamic Accessors
-
-/// :nodoc:
-- (nullable id)objectForKeyedSubscript:(NSString *)key;
-
-/// :nodoc:
-- (void)setObject:(nullable id)obj forKeyedSubscript:(NSString *)key;
-
-@end
-
-#pragma mark - RLMArray Property Declaration
-
-/**
- Properties on RLMObjects of type RLMArray must have an associated type. A type is associated
- with an RLMArray property by defining a protocol for the object type which the RLMArray will
- hold. To define the protocol for an object you can use the macro RLM_ARRAY_TYPE:
-
- RLM_ARRAY_TYPE(ObjectType)
- ...
- @property RLMArray *arrayOfObjectTypes;
- */
-#define RLM_ARRAY_TYPE(RLM_OBJECT_SUBCLASS)\
-@protocol RLM_OBJECT_SUBCLASS \
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase.h
deleted file mode 100644
index 739e0f0..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase.h
+++ /dev/null
@@ -1,42 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-@class RLMRealm;
-@class RLMSchema;
-@class RLMObjectSchema;
-
-/// :nodoc:
-@interface RLMObjectBase : NSObject
-
-@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
-
-- (instancetype)init;
-
-+ (NSString *)className;
-
-// Returns whether the class is included in the default set of classes persisted in a Realm.
-+ (BOOL)shouldIncludeInDefaultSchema;
-
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase_Dynamic.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase_Dynamic.h
deleted file mode 100644
index 247bdf1..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectBase_Dynamic.h
+++ /dev/null
@@ -1,84 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-@class RLMObjectSchema, RLMRealm;
-
-/**
- This function is useful only in specialized circumstances, for example, when building components
- that integrate with Realm. If you are simply building an app on Realm, it is
- recommended to retrieve `realm` via `RLMObject`.
-
- @param object an RLMObjectBase obtained via a Swift Object or RLMObject
-
- @return The Realm in which this object is persisted. Returns nil for standalone objects.
- */
-FOUNDATION_EXTERN RLMRealm *RLMObjectBaseRealm(RLMObjectBase *object);
-
-/**
- This function is useful only in specialized circumstances, for example, when building components
- that integrate with Realm. If you are simply building an app on Realm, it is
- recommended to retrieve `objectSchema` via `RLMObject`.
-
- @param object an RLMObjectBase obtained via a Swift Object or RLMObject
-
- @return The ObjectSchema which lists the persisted properties for this object.
- */
-FOUNDATION_EXTERN RLMObjectSchema *RLMObjectBaseObjectSchema(RLMObjectBase *object);
-
-/**
- This function is useful only in specialized circumstances, for example, when building components
- that integrate with Realm. If you are simply building an app on Realm, it is
- recommended to retrieve the linking objects via `RLMObject`.
-
- @param object an RLMObjectBase obtained via a Swift Object or RLMObject
- @param className The type of object on which the relationship to query is defined.
- @param property The name of the property which defines the relationship.
-
- @return An NSArray of objects of type `className` which have this object as their value for the `property` property.
- */
-FOUNDATION_EXTERN NSArray *RLMObjectBaseLinkingObjectsOfClass(RLMObjectBase *object, NSString *className, NSString *property);
-
-/**
- This function is useful only in specialized circumstances, for example, when building components
- that integrate with Realm. If you are simply building an app on Realm, it is
- recommended to retrieve key values via `RLMObject`.
-
- @warning Will throw `NSUndefinedKeyException` if key is not present on the object
-
- @param object an RLMObjectBase obtained via a Swift Object or RLMObject
- @param key The name of the property
-
- @return the object for the property requested
- */
-FOUNDATION_EXTERN id RLMObjectBaseObjectForKeyedSubscript(RLMObjectBase *object, NSString *key);
-
-/**
- This function is useful only in specialized circumstances, for example, when building components
- that integrate with Realm. If you are simply building an app on Realm, it is
- recommended to set key values via `RLMObject`.
-
- @warning Will throw `NSUndefinedKeyException` if key is not present on the object
-
- @param object an RLMObjectBase obtained via a Swift Object or RLMObject
- @param key The name of the property
- @param obj The object to set as the value of the key
- */
-FOUNDATION_EXTERN void RLMObjectBaseSetObjectForKeyedSubscript(RLMObjectBase *object, NSString *key, id obj);
-
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectSchema.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectSchema.h
deleted file mode 100644
index 3aa15d7..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMObjectSchema.h
+++ /dev/null
@@ -1,73 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-@class RLMProperty;
-
-/**
- This class represents Realm model object schemas.
-
- When using Realm, RLMObjectSchema objects allow performing migrations and
- introspecting the database's schema.
-
- Object schemas map to tables in the core database.
- */
-@interface RLMObjectSchema : NSObject
-
-#pragma mark - Properties
-
-/**
- Array of persisted RLMProperty objects for an object.
-
- @see RLMProperty
- */
-@property (nonatomic, readonly, copy) NSArray RLM_GENERIC(RLMProperty *) *properties;
-
-/**
- The name of the class this schema describes.
- */
-@property (nonatomic, readonly) NSString *className;
-
-/**
- The property which is the primary key for this object (if any).
- */
-@property (nonatomic, readonly, nullable) RLMProperty *primaryKeyProperty;
-
-#pragma mark - Methods
-
-/**
- Retrieve an RLMProperty object by name.
-
- @param propertyName The property's name.
-
- @return RLMProperty object or nil if there is no property with the given name.
- */
-- (nullable RLMProperty *)objectForKeyedSubscript:(id )propertyName;
-
-/**
- Returns YES if equal to objectSchema
-*/
-- (BOOL)isEqualToObjectSchema:(RLMObjectSchema *)objectSchema;
-
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMPlatform.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMPlatform.h
deleted file mode 100644
index e72f1f5..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMPlatform.h
+++ /dev/null
@@ -1,22 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#if TARGET_OS_IPHONE
-#error Attempting to use Realm's OSX framework in an iOS project.
-#endif
-
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMProperty.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMProperty.h
deleted file mode 100644
index 2f61020..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMProperty.h
+++ /dev/null
@@ -1,95 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-/// :nodoc:
-@protocol RLMInt
-@end
-
-/// :nodoc:
-@protocol RLMBool
-@end
-
-/// :nodoc:
-@protocol RLMDouble
-@end
-
-/// :nodoc:
-@protocol RLMFloat
-@end
-
-/// :nodoc:
-@interface NSNumber ()
-@end
-
-/**
- This class models properties persisted to Realm in an RLMObjectSchema.
-
- When using Realm, RLMProperty objects allow performing migrations and
- introspecting the database's schema.
-
- These properties map to columns in the core database.
- */
-@interface RLMProperty : NSObject
-
-#pragma mark - Properties
-
-/**
- Property name.
- */
-@property (nonatomic, readonly) NSString *name;
-
-/**
- Property type.
-
- @see RLMPropertyType
- */
-@property (nonatomic, readonly) RLMPropertyType type;
-
-/**
- Indicates if this property is indexed.
-
- @see RLMObject
- */
-@property (nonatomic, readonly) BOOL indexed;
-
-/**
- Object class name - specify object types for RLMObject and RLMArray properties.
- */
-@property (nonatomic, readonly, copy, nullable) NSString *objectClassName;
-
-/**
- Whether this property is optional.
- */
-@property (nonatomic, readonly) BOOL optional;
-
-#pragma mark - Methods
-
-/**
- Returns YES if property objects are equal.
- */
-- (BOOL)isEqualToProperty:(RLMProperty *)property;
-
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm.h
deleted file mode 100644
index 0672725..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm.h
+++ /dev/null
@@ -1,519 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-
-@class RLMRealmConfiguration, RLMObject, RLMSchema, RLMMigration, RLMNotificationToken;
-
-RLM_ASSUME_NONNULL_BEGIN
-
-/**
- An RLMRealm instance (also referred to as "a realm") represents a Realm
- database.
-
- Realms can either be stored on disk (see +[RLMRealm realmWithPath:]) or in
- memory (see RLMRealmConfiguration).
-
- RLMRealm instances are cached internally, and constructing equivalent RLMRealm
- objects (with the same path or identifier) multiple times on a single thread
- within a single iteration of the run loop will normally return the same
- RLMRealm object. If you specifically want to ensure a RLMRealm object is
- destroyed (for example, if you wish to open a realm, check some property, and
- then possibly delete the realm file and re-open it), place the code which uses
- the realm within an `@autoreleasepool {}` and ensure you have no other
- strong references to it.
-
- @warning RLMRealm instances are not thread safe and can not be shared across
- threads or dispatch queues. You must call this method on each thread you want
- to interact with the realm on. For dispatch queues, this means that you must
- call it in each block which is dispatched, as a queue is not guaranteed to run
- on a consistent thread.
- */
-
-@interface RLMRealm : NSObject
-
-#pragma mark - Creating & Initializing a Realm
-
-/**
- Obtains an instance of the default Realm.
-
- The default Realm is used by the `RLMObject` class methods
- which do not take a `RLMRealm` parameter, but is otherwise not special. The
- default Realm is persisted as default.realm under the Documents directory of
- your Application on iOS, and in your application's Application Support
- directory on OS X.
-
- The default Realm is created using the default `RLMRealmConfiguration`, which
- can be changed via `+[RLMRealmConfiguration setDefaultConfiguration:]`.
-
- @return The default `RLMRealm` instance for the current thread.
- */
-+ (instancetype)defaultRealm;
-
-/**
- Obtains an `RLMRealm` instance with the given configuration.
-
- @param configuration The configuration for the realm.
- @param error If an error occurs, upon return contains an `NSError` object
- that describes the problem. If you are not interested in
- possible errors, pass in `NULL`.
-
- @return An `RLMRealm` instance.
- */
-+ (nullable instancetype)realmWithConfiguration:(RLMRealmConfiguration *)configuration error:(NSError **)error;
-
-/**
- Obtains an `RLMRealm` instance persisted at a specific file path.
-
- @param path Path to the file you want the data saved in.
-
- @return An `RLMRealm` instance.
- */
-+ (instancetype)realmWithPath:(NSString *)path;
-
-/**
- Path to the file where this Realm is persisted.
- */
-@property (nonatomic, readonly) NSString *path;
-
-/**
- Indicates if this Realm was opened in read-only mode.
- */
-@property (nonatomic, readonly, getter = isReadOnly) BOOL readOnly;
-
-/**
- The RLMSchema used by this RLMRealm.
- */
-@property (nonatomic, readonly, null_unspecified) RLMSchema *schema;
-
-/**
- Indicates if this Realm is currently in a write transaction.
-
- @warning Wrapping mutating operations in a write transaction if this property returns `NO`
- may cause a large number of write transactions to be created, which could negatively
- impact Realm's performance. Always prefer performing multiple mutations in a single
- transaction when possible.
- */
-@property (nonatomic, readonly) BOOL inWriteTransaction;
-
-/**
- Returns the `RLMRealmConfiguration` that was used to create this `RLMRealm` instance.
- */
-@property (nonatomic, readonly) RLMRealmConfiguration *configuration;
-
-/**
- Indicates if this Realm contains any objects.
- */
-@property (nonatomic, readonly) BOOL isEmpty;
-
-#pragma mark - Notifications
-
-/// Block to run when the data in a Realm was modified.
-typedef void (^RLMNotificationBlock)(NSString *notification, RLMRealm *realm);
-
-#pragma mark - Receiving Notification when a Realm Changes
-
-/**
- Add a notification handler for changes in this RLMRealm.
-
- Notification handlers are called after each write transaction is committed,
- either on the current thread or other threads. The block is called on the same
- thread as they were added on, and can only be added on threads which are
- currently within a run loop. Unless you are specifically creating and running a
- run loop on a background thread, this normally will only be the main thread.
-
- The block has the following definition:
-
- typedef void(^RLMNotificationBlock)(NSString *notification, RLMRealm *realm);
-
- It receives the following parameters:
-
- - `NSString` \***notification**: The name of the incoming notification. See
- RLMRealmNotification for information on what
- notifications are sent.
- - `RLMRealm` \***realm**: The realm for which this notification occurred
-
- @param block A block which is called to process RLMRealm notifications.
-
- @return A token object which must be stored as long as you wish to continue
- receiving change notifications.
- */
-- (RLMNotificationToken *)addNotificationBlock:(RLMNotificationBlock)block RLM_WARN_UNUSED_RESULT;
-
-/**
- Remove a previously registered notification handler using the token returned
- from `-addNotificationBlock:`
-
- @param notificationToken The token returned from `-addNotificationBlock:`
- corresponding to the notification block to remove.
- */
-- (void)removeNotification:(RLMNotificationToken *)notificationToken;
-
-#pragma mark - Transactions
-
-
-#pragma mark - Writing to a Realm
-
-/**
- Begins a write transaction in an `RLMRealm`.
-
- Only one write transaction can be open at a time. Write transactions cannot be
- nested, and trying to begin a write transaction on a `RLMRealm` which is
- already in a write transaction will throw an exception. Calls to
- `beginWriteTransaction` from `RLMRealm` instances in other threads will block
- until the current write transaction completes.
-
- Before beginning the write transaction, `beginWriteTransaction` updates the
- `RLMRealm` to the latest Realm version, as if refresh was called, and
- generates notifications if applicable. This has no effect if the `RLMRealm`
- was already up to date.
-
- It is rarely a good idea to have write transactions span multiple cycles of
- the run loop, but if you do wish to do so you will need to ensure that the
- `RLMRealm` in the write transaction is kept alive until the write transaction
- is committed.
- */
-- (void)beginWriteTransaction;
-
-/**
- Commits all write operations in the current write transaction, and ends the
- transaction.
-
- @warning This method can only be called during a write transaction.
- */
-- (void)commitWriteTransaction RLM_SWIFT_UNAVAILABLE("");
-
-/**
- Commits all write operations in the current write transaction, and ends the
- transaction.
-
- @warning This method can only be called during a write transaction.
-
- @param error If an error occurs, upon return contains an `NSError` object
- that describes the problem. If you are not interested in
- possible errors, pass in `NULL`.
-
- @return Whether the transaction succeeded.
- */
-- (BOOL)commitWriteTransaction:(NSError **)error;
-
-/**
- Reverts all writes made in the current write transaction and ends the transaction.
-
- This rolls back all objects in the Realm to the state they were in at the
- beginning of the write transaction, and then ends the transaction.
-
- This restores the data for deleted objects, but does not revive invalidated
- object instances. Any `RLMObject`s which were added to the Realm will be
- invalidated rather than switching back to standalone objects.
- Given the following code:
-
- ObjectType *oldObject = [[ObjectType objectsWhere:@"..."] firstObject];
- ObjectType *newObject = [[ObjectType alloc] init];
-
- [realm beginWriteTransaction];
- [realm addObject:newObject];
- [realm deleteObject:oldObject];
- [realm cancelWriteTransaction];
-
- Both `oldObject` and `newObject` will return `YES` for `isInvalidated`,
- but re-running the query which provided `oldObject` will once again return
- the valid object.
-
- @warning This method can only be called during a write transaction.
- */
-- (void)cancelWriteTransaction;
-
-/**
- Helper to perform a block within a transaction.
- */
-- (void)transactionWithBlock:(RLM_NOESCAPE void(^)(void))block RLM_SWIFT_UNAVAILABLE("");
-
-/**
- Performs actions contained within the given block inside a write transation.
-
- Write transactions cannot be nested, and trying to execute a write transaction
- on a `RLMRealm` which is already in a write transaction will throw an
- exception. Calls to `transactionWithBlock:` from `RLMRealm` instances in other
- threads will block until the current write transaction completes.
-
- Before beginning the write transaction, `transactionWithBlock:` updates the
- `RLMRealm` to the latest Realm version, as if refresh was called, and
- generates notifications if applicable. This has no effect if the `RLMRealm`
- was already up to date.
-
- @param block The block to perform.
- @param error If an error occurs, upon return contains an `NSError` object
- that describes the problem. If you are not interested in
- possible errors, pass in `NULL`.
-
- @return Whether the transaction succeeded.
- */
-- (BOOL)transactionWithBlock:(RLM_NOESCAPE void(^)(void))block error:(NSError **)error;
-
-/**
- Update an `RLMRealm` and outstanding objects to point to the most recent data for this `RLMRealm`.
-
- @return Whether the realm had any updates. Note that this may return YES even if no data has actually changed.
- */
-- (BOOL)refresh;
-
-/**
- Set to YES to automatically update this Realm when changes happen in other threads.
-
- If set to YES (the default), changes made on other threads will be reflected
- in this Realm on the next cycle of the run loop after the changes are
- committed. If set to NO, you must manually call `-refresh` on the Realm to
- update it to get the latest version.
-
- Note that by default, background threads do not have an active run loop and you
- will need to manually call `-refresh` in order to update to the latest version,
- even if `autorefresh` is set to `true`.
-
- Even with this enabled, you can still call `-refresh` at any time to update the
- Realm before the automatic refresh would occur.
-
- Notifications are sent when a write transaction is committed whether or not
- this is enabled.
-
- Disabling this on an `RLMRealm` without any strong references to it will not
- have any effect, and it will switch back to YES the next time the `RLMRealm`
- object is created. This is normally irrelevant as it means that there is
- nothing to refresh (as persisted `RLMObject`s, `RLMArray`s, and `RLMResults` have strong
- references to the containing `RLMRealm`), but it means that setting
- `RLMRealm.defaultRealm.autorefresh = NO` in
- `application:didFinishLaunchingWithOptions:` and only later storing Realm
- objects will not work.
-
- Defaults to YES.
- */
-@property (nonatomic) BOOL autorefresh;
-
-/**
- Write a compacted copy of the RLMRealm to the given path.
-
- The destination file cannot already exist.
-
- Note that if this is called from within a write transaction it writes the
- *current* data, and not data when the last write transaction was committed.
-
- @param path Path to save the Realm to.
- @param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
- @return YES if the realm was copied successfully. Returns NO if an error occurred.
-*/
-- (BOOL)writeCopyToPath:(NSString *)path error:(NSError **)error;
-
-/**
- Write an encrypted and compacted copy of the RLMRealm to the given path.
-
- The destination file cannot already exist.
-
- Note that if this is called from within a write transaction it writes the
- *current* data, and not data when the last write transaction was committed.
-
- @param path Path to save the Realm to.
- @param key 64-byte encryption key to encrypt the new file with
- @param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
- @return YES if the realm was copied successfully. Returns NO if an error occurred.
-*/
-- (BOOL)writeCopyToPath:(NSString *)path encryptionKey:(NSData *)key error:(NSError **)error;
-
-/**
- Invalidate all RLMObjects and RLMResults read from this Realm.
-
- An RLMRealm holds a read lock on the version of the data accessed by it, so
- that changes made to the Realm on different threads do not modify or delete the
- data seen by this RLMRealm. Calling this method releases the read lock,
- allowing the space used on disk to be reused by later write transactions rather
- than growing the file. This method should be called before performing long
- blocking operations on a background thread on which you previously read data
- from the Realm which you no longer need.
-
- All `RLMObject`, `RLMResults` and `RLMArray` instances obtained from this
- `RLMRealm` on the current thread are invalidated, and can not longer be used.
- The `RLMRealm` itself remains valid, and a new read transaction is implicitly
- begun the next time data is read from the Realm.
-
- Calling this method multiple times in a row without reading any data from the
- Realm, or before ever reading any data from the Realm is a no-op. This method
- cannot be called on a read-only Realm.
- */
-- (void)invalidate;
-
-#pragma mark - Accessing Objects
-
-
-#pragma mark - Adding and Removing Objects from a Realm
-
-/**
- Adds an object to be persisted in this Realm.
-
- Once added, this object can be retrieved using the `objectsWhere:` selectors
- on `RLMRealm` and on subclasses of `RLMObject`. When added, all (child)
- relationships referenced by this object will also be added to the Realm if they are
- not already in it. If the object or any related objects already belong to a
- different Realm an exception will be thrown. Use
- `-[RLMObject createInRealm:withObject]` to insert a copy of a persisted object
- into a different Realm.
-
- The object to be added must be valid and cannot have been previously deleted
- from a Realm (i.e. `isInvalidated`) must be false.
-
- @warning This method can only be called during a write transaction.
-
- @param object Object to be added to this Realm.
- */
-- (void)addObject:(RLMObject *)object;
-
-/**
- Adds objects in the given array to be persisted in this Realm.
-
- This is the equivalent of `addObject:` except for an array of objects.
-
- @warning This method can only be called during a write transaction.
-
- @param array An enumerable object such as NSArray or RLMResults which contains objects to be added to
- this Realm.
-
- @see addObject:
- */
-- (void)addObjects:(id)array;
-
-/**
- Adds or updates an object to be persisted in this Realm. The object provided must have a designated
- primary key. If no objects exist in the RLMRealm instance with the same primary key value, the object is
- inserted. Otherwise, the existing object is updated with any changed values.
-
- As with `addObject:`, the object cannot already be persisted in a different
- Realm. Use `-[RLMObject createOrUpdateInRealm:withValue:]` to copy values to
- a different Realm.
-
- @warning This method can only be called during a write transaction.
-
- @param object Object to be added or updated.
- */
-- (void)addOrUpdateObject:(RLMObject *)object;
-
-/**
- Adds or updates objects in the given array to be persisted in this Realm.
-
- This is the equivalent of `addOrUpdateObject:` except for an array of objects.
-
- @warning This method can only be called during a write transaction.
-
- @param array `NSArray`, `RLMArray`, or `RLMResults` of `RLMObject`s (or subclasses) to be added to this Realm.
-
- @see addOrUpdateObject:
- */
-- (void)addOrUpdateObjectsFromArray:(id)array;
-
-/**
- Delete an object from this Realm.
-
- @warning This method can only be called during a write transaction.
-
- @param object Object to be deleted from this Realm.
- */
-- (void)deleteObject:(RLMObject *)object;
-
-/**
- Delete an `NSArray`, `RLMArray`, or `RLMResults` of objects from this Realm.
-
- @warning This method can only be called during a write transaction.
-
- @param array `RLMArray`, `NSArray`, or `RLMResults` of `RLMObject`s to be deleted.
- */
-- (void)deleteObjects:(id)array;
-
-/**
- Deletes all objects in this Realm.
-
- @warning This method can only be called during a write transaction.
- */
-- (void)deleteAllObjects;
-
-
-#pragma mark - Migrations
-
-/**
- Migration block used to migrate a Realm.
-
- @param migration `RLMMigration` object used to perform the migration. The
- migration object allows you to enumerate and alter any
- existing objects which require migration.
-
- @param oldSchemaVersion The schema version of the `RLMRealm` being migrated.
- */
-typedef void (^RLMMigrationBlock)(RLMMigration *migration, uint64_t oldSchemaVersion);
-
-/**
- Get the schema version for a Realm at a given path.
-
- @param realmPath Path to a Realm file
- @param error If an error occurs, upon return contains an `NSError` object
- that describes the problem. If you are not interested in
- possible errors, pass in `NULL`.
-
- @return The version of the Realm at `realmPath` or RLMNotVersioned if the version cannot be read.
- */
-+ (uint64_t)schemaVersionAtPath:(NSString *)realmPath error:(NSError **)error;
-
-/**
- Get the schema version for an encrypted Realm at a given path.
-
- @param realmPath Path to a Realm file
- @param key 64-byte encryption key.
- @param error If an error occurs, upon return contains an `NSError` object
- that describes the problem. If you are not interested in
- possible errors, pass in `NULL`.
-
- @return The version of the Realm at `realmPath` or RLMNotVersioned if the version cannot be read.
- */
-+ (uint64_t)schemaVersionAtPath:(NSString *)realmPath encryptionKey:(nullable NSData *)key error:(NSError **)error;
-
-/**
- Performs the given Realm configuration's migration block on a Realm at the given path.
-
- This method is called automatically when opening a Realm for the first time and does
- not need to be called explicitly. You can choose to call this method to control
- exactly when and how migrations are performed.
-
- @param configuration The Realm configuration used to open and migrate the Realm.
- @return The error that occurred while applying the migration, if any.
-
- @see RLMMigration
- */
-+ (NSError *)migrateRealm:(RLMRealmConfiguration *)configuration;
-
-@end
-
-/**
- A token which is returned from methods which subscribe to changes to a Realm.
-
- Change subscriptions in Realm return an RLMNotificationToken which can be used
- to unsubscribe from the changes. You must store a strong reference to the token
- for as long as you want to continue to receive notifications. When you wish to
- stop, call the `-stop` method.
- */
-@interface RLMNotificationToken : NSObject
-/// Stop receiving notifications for the subcription that returned this token.
-- (void)stop;
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealmConfiguration.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealmConfiguration.h
deleted file mode 100644
index 094016f..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealmConfiguration.h
+++ /dev/null
@@ -1,79 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2015 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-/**
- An `RLMRealmConfiguration` is used to describe the different options used to
- create an `RLMRealm` instance.
-
- `RLMRealmConfiguration` instances are just plain NSObjects, and unlike RLMRealm
- and RLMObjects can be freely shared between threads as long as you do not
- mutate them. Creating configuration objects for class subsets (by setting the
- `objectClasses` property) can be expensive, and so you will normally want to
- cache and reuse a single configuration object for each distinct configuration
- that you are using rather than creating a new one each time you open a Realm.
- */
-@interface RLMRealmConfiguration : NSObject
-
-#pragma mark - Default Configuration
-
-/**
- Returns the default configuration used to create Realms when no other
- configuration is explicitly specified (i.e. `+[RLMRealm defaultRealm]`).
-
- @return The default Realm configuration.
- */
-+ (instancetype)defaultConfiguration;
-
-/**
- Sets the default configuration to the given `RLMRealmConfiguration`.
-
- @param configuration The new default Realm configuration.
- */
-+ (void)setDefaultConfiguration:(RLMRealmConfiguration *)configuration;
-
-#pragma mark - Properties
-
-/// The path to the realm file. Mutually exclusive with `inMemoryIdentifier`.
-@property (nonatomic, copy, nullable) NSString *path;
-
-/// A string used to identify a particular in-memory Realm. Mutually exclusive with `path`.
-@property (nonatomic, copy, nullable) NSString *inMemoryIdentifier;
-
-/// 64-byte key to use to encrypt the data.
-@property (nonatomic, copy, nullable) NSData *encryptionKey;
-
-/// Whether the Realm is read-only (must be YES for read-only files).
-@property (nonatomic) BOOL readOnly;
-
-/// The current schema version.
-@property (nonatomic) uint64_t schemaVersion;
-
-/// The block which migrates the Realm to the current version.
-@property (nonatomic, copy, nullable) RLMMigrationBlock migrationBlock;
-
-/// The classes persisted in the Realm.
-@property (nonatomic, copy, nullable) NSArray *objectClasses;
-
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm_Dynamic.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm_Dynamic.h
deleted file mode 100644
index d778678..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMRealm_Dynamic.h
+++ /dev/null
@@ -1,130 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-#import
-#import
-
-@class RLMResults;
-
-@interface RLMRealm (Dynamic)
-
-#pragma mark - Getting Objects from a Realm
-
-/**
- This method is useful only in specialized circumstances, for example, when building components
- that integrate with Realm. If you are simply building an app on Realm, it is
- recommended to use the class methods on `RLMObject`.
-
- Get all objects of a given type in this Realm.
-
- The preferred way to get objects of a single class is to use the class methods on RLMObject.
-
- @warning This method is useful only in specialized circumstances.
-
- @param className The name of the RLMObject subclass to retrieve on e.g. `MyClass.className`.
-
- @return An RLMResults of all objects in this realm of the given type.
-
- @see RLMObject allObjects
- */
-- (RLMResults *)allObjects:(NSString *)className;
-
-/**
- This method is useful only in specialized circumstances, for example, when building components
- that integrate with Realm. If you are simply building an app on Realm, it is
- recommended to use the class methods on `RLMObject`.
-
- Get objects matching the given predicate from the this Realm.
-
- The preferred way to get objects of a single class is to use the class methods on RLMObject.
-
- @warning This method is useful only in specialized circumstances.
-
- @param className The type of objects you are looking for (name of the class).
- @param predicateFormat The predicate format string which can accept variable arguments.
-
- @return An RLMResults of results matching the given predicate.
-
- @see RLMObject objectsWhere:
- */
-- (RLMResults *)objects:(NSString *)className where:(NSString *)predicateFormat, ...;
-
-/**
- This method is useful only in specialized circumstances, for example, when building components
- that integrate with Realm. If you are simply building an app on Realm, it is
- recommended to use the class methods on `RLMObject`.
-
- Get objects matching the given predicate from the this Realm.
-
- The preferred way to get objects of a single class is to use the class methods on RLMObject.
-
- @warning This method is useful only in specialized circumstances.
-
- @param className The type of objects you are looking for (name of the class).
- @param predicate The predicate to filter the objects.
-
- @return An RLMResults of results matching the given predicate.
-
- @see RLMObject objectsWhere:
- */
-- (RLMResults *)objects:(NSString *)className withPredicate:(NSPredicate *)predicate;
-
-/**
- This method is useful only in specialized circumstances, for example, when building components
- that integrate with Realm. If you are simply building an app on Realm, it is
- recommended to use the class methods on `RLMObject`.
-
- Get an object of a given class name with a primary key
-
- The preferred way to get an object of a single class is to use the class methods on RLMObject.
-
- @warning This method is useful only in specialized circumstances.
-
- @param className The class name for the object you are looking for
- @param primaryKey The primary key value for the object you are looking for
-
- @return An object or nil if an object with the given primary key does not exist.
-
- @see RLMObject objectForPrimaryKey:
- */
-- (RLMObject *)objectWithClassName:(NSString *)className forPrimaryKey:(id)primaryKey;
-
-/**
- This method is useful only in specialized circumstances, for example, when building components
- that integrate with Realm. If you are simply building an app on Realm, it is
- recommended to use [RLMObject createInDefaultRealmWithValue:].
-
- Create an RLMObject of type `className` in the Realm with a given object.
-
- @warning This method is useful only in specialized circumstances.
-
- @param value The value used to populate the object. This can be any key/value coding compliant
- object, or a JSON object such as those returned from the methods in NSJSONSerialization, or
- an NSArray with one object for each persisted property. An exception will be
- thrown if any required properties are not present and no default is set.
-
- When passing in an NSArray, all properties must be present, valid and in the same order as
- the properties defined in the model.
-
- @return An RLMObject of type `className`
- */
--(RLMObject *)createObject:(NSString *)className withValue:(id)value;
-
-@end
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMResults.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMResults.h
deleted file mode 100644
index 6f355fe..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMResults.h
+++ /dev/null
@@ -1,280 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-@class RLMObject, RLMRealm, RLMNotificationToken;
-
-/**
- RLMResults is an auto-updating container type in Realm returned from object
- queries.
-
- RLMResults can be queried with the same predicates as RLMObject and RLMArray
- and you can chain queries to further filter query results.
-
- RLMResults always reflect the current state of the Realm on the current thread,
- including during write transactions on the current thread. The one exception to
- this is when using `for...in` fast enumeration, which will always enumerate
- over the objects which matched the query when the enumeration is begun, even if
- some of them are deleted or modified to be excluded by the filter during the
- enumeration.
-
- RLMResults are initially lazily evaluated, and only run queries when the result
- of the query is requested. This means that chaining several temporary
- RLMResults to sort and filter your data does not perform any extra work
- processing the intermediate state.
-
- Once the results have been evaluated or a notification block has been added,
- the results are eagerly kept up-to-date, with the work done to keep them
- up-to-date done on a background thread whenever possible.
-
- RLMResults cannot be created directly.
- */
-@interface RLMResults RLM_GENERIC_COLLECTION : NSObject
-
-#pragma mark - Properties
-
-/**
- Number of objects in the results.
- */
-@property (nonatomic, readonly, assign) NSUInteger count;
-
-/**
- The class name (i.e. type) of the RLMObjects contained in this RLMResults.
- */
-@property (nonatomic, readonly, copy) NSString *objectClassName;
-
-/**
- The Realm this `RLMResults` is associated with.
- */
-@property (nonatomic, readonly) RLMRealm *realm;
-
-#pragma mark - Accessing Objects from an RLMResults
-
-/**
- Returns the object at the index specified.
-
- @param index The index to look up.
-
- @return An RLMObject of the type contained in this RLMResults.
- */
-- (RLMObjectType)objectAtIndex:(NSUInteger)index;
-
-/**
- Returns the first object in the results.
-
- Returns `nil` if called on an empty RLMResults.
-
- @return An RLMObject of the type contained in this RLMResults.
- */
-- (nullable RLMObjectType)firstObject;
-
-/**
- Returns the last object in the results.
-
- Returns `nil` if called on an empty RLMResults.
-
- @return An RLMObject of the type contained in this RLMResults.
- */
-- (nullable RLMObjectType)lastObject;
-
-#pragma mark - Querying Results
-
-/**
- Gets the index of an object.
-
- Returns NSNotFound if the object is not found in this RLMResults.
-
- @param object An object (of the same type as returned from the objectClassName selector).
- */
-- (NSUInteger)indexOfObject:(RLMObjectArgument)object;
-
-/**
- Gets the index of the first object matching the predicate.
-
- @param predicateFormat The predicate format string which can accept variable arguments.
-
- @return Index of object or NSNotFound if the object is not found in this RLMResults.
- */
-- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ...;
-
-/// :nodoc:
-- (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args;
-
-/**
- Gets the index of the first object matching the predicate.
-
- @param predicate The predicate to filter the objects.
-
- @return Index of object or NSNotFound if the object is not found in this RLMResults.
- */
-- (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate;
-
-/**
- Get objects matching the given predicate in the RLMResults.
-
- @param predicateFormat The predicate format string which can accept variable arguments.
-
- @return An RLMResults of objects that match the given predicate
- */
-- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat, ...;
-
-/// :nodoc:
-- (RLMResults RLM_GENERIC_RETURN*)objectsWhere:(NSString *)predicateFormat args:(va_list)args;
-
-/**
- Get objects matching the given predicate in the RLMResults.
-
- @param predicate The predicate to filter the objects.
-
- @return An RLMResults of objects that match the given predicate
- */
-- (RLMResults RLM_GENERIC_RETURN*)objectsWithPredicate:(NSPredicate *)predicate;
-
-/**
- Get a sorted `RLMResults` from an existing `RLMResults` sorted by a property.
-
- @param property The property name to sort by.
- @param ascending The direction to sort by.
-
- @return An RLMResults sorted by the specified property.
- */
-- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingProperty:(NSString *)property ascending:(BOOL)ascending;
-
-/**
- Get a sorted `RLMResults` from an existing `RLMResults` sorted by an `NSArray`` of `RLMSortDescriptor`s.
-
- @param properties An array of `RLMSortDescriptor`s to sort by.
-
- @return An RLMResults sorted by the specified properties.
- */
-- (RLMResults RLM_GENERIC_RETURN*)sortedResultsUsingDescriptors:(NSArray *)properties;
-
-#pragma mark - Notifications
-
-/**
- Register a block to be called each time the RLMResults changes.
-
- The block will be asynchronously called with the initial results, and then
- called again after each write transaction which causes the results to change.
- You must retain the returned token for as long as you want the results to
- continue to be sent to the block. To stop receiving updates, call -stop on the
- token.
-
- The determination for whether or not a write transaction has changed the
- results is currently very coarse, and the block may be called even if no
- changes occurred. The opposite (not being called despite changes) will not
- happen. This will become more precise in future versions.
-
- If an error occurs the block will be called with `nil` for the results
- parameter and a non-`nil` error. Currently the only errors that can occur are
- when opening the RLMRealm on the background worker thread or the destination
- queue fails.
-
- At the time when the block is called, the RLMResults object will be fully
- evaluated and up-to-date, and as long as you do not perform a write transaction
- on the same thread or explicitly call `-[RLMRealm refresh]`, accessing it will
- never perform blocking work.
-
- @warning This method cannot be called during a write transaction, or when the
- containing realm is read-only.
-
- @param block The block to be called with the evaluated results.
- @return A token which must be held for as long as you want query results to be delivered.
- */
-- (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMResults RLM_GENERIC_RETURN *__nullable results, NSError *__nullable error))block RLM_WARN_UNUSED_RESULT;
-
-#pragma mark - Aggregating Property Values
-
-/**
- Returns the minimum (lowest) value of the given property
-
- NSNumber *min = [results minOfProperty:@"age"];
-
- @warning You cannot use this method on RLMObject, RLMArray, and NSData properties.
-
- @param property The property to look for a minimum on. Only properties of type int, float, double and NSDate are supported.
-
- @return The minimum value for the property amongst objects in an RLMResults.
- */
-- (nullable id)minOfProperty:(NSString *)property;
-
-/**
- Returns the maximum (highest) value of the given property of objects in an RLMResults
-
- NSNumber *max = [results maxOfProperty:@"age"];
-
- @warning You cannot use this method on RLMObject, RLMArray, and NSData properties.
-
- @param property The property to look for a maximum on. Only properties of type int, float, double and NSDate are supported.
-
- @return The maximum value for the property amongst objects in an RLMResults
- */
-- (nullable id)maxOfProperty:(NSString *)property;
-
-/**
- Returns the sum of the given property for objects in an RLMResults.
-
- NSNumber *sum = [results sumOfProperty:@"age"];
-
- @warning You cannot use this method on RLMObject, RLMArray, and NSData properties.
-
- @param property The property to calculate sum on. Only properties of type int, float and double are supported.
-
- @return The sum of the given property over all objects in an RLMResults.
- */
-- (NSNumber *)sumOfProperty:(NSString *)property;
-
-/**
- Returns the average of a given property for objects in an RLMResults.
-
- NSNumber *average = [results averageOfProperty:@"age"];
-
- @warning You cannot use this method on RLMObject, RLMArray, and NSData properties.
-
- @param property The property to calculate average on. Only properties of type int, float and double are supported.
-
- @return The average for the given property amongst objects in an RLMResults. This will be of type double for both
- float and double properties.
- */
-- (nullable NSNumber *)averageOfProperty:(NSString *)property;
-
-/// :nodoc:
-- (id)objectAtIndexedSubscript:(NSUInteger)index;
-
-#pragma mark - Unavailable Methods
-
-/**
- -[RLMResults init] is not available because RLMResults cannot be created directly.
- RLMResults can be obtained by querying a Realm.
- */
-- (instancetype)init __attribute__((unavailable("RLMResults cannot be created directly")));
-
-/**
- +[RLMResults new] is not available because RLMResults cannot be created directly.
- RLMResults can be obtained by querying a Realm.
- */
-+ (instancetype)new __attribute__((unavailable("RLMResults cannot be created directly")));
-
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSchema.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSchema.h
deleted file mode 100644
index 6549706..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSchema.h
+++ /dev/null
@@ -1,76 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-@class RLMObjectSchema;
-
-/**
- This class represents the collection of model object schemas persisted to Realm.
-
- When using Realm, RLMSchema objects allow performing migrations and
- introspecting the database's schema.
-
- Schemas map to collections of tables in the core database.
- */
-@interface RLMSchema : NSObject
-
-#pragma mark - Properties
-
-/**
- An NSArray containing RLMObjectSchemas for all object types in this Realm. Meant
- to be used during migrations for dynamic introspection.
-
- @see RLMObjectSchema
- */
-@property (nonatomic, readonly, copy) NSArray RLM_GENERIC(RLMObjectSchema *) *objectSchema;
-
-#pragma mark - Methods
-
-/**
- Returns an RLMObjectSchema for the given class name in this RLMSchema.
-
- @param className The object class name.
- @return RLMObjectSchema for the given class in this RLMSchema.
-
- @see RLMObjectSchema
- */
-- (nullable RLMObjectSchema *)schemaForClassName:(NSString *)className;
-
-/**
- Look up an RLMObjectSchema for the given class name in this Realm. Throws
- an exception if there is no object of type className in this RLMSchema instance.
-
- @param className The object class name.
- @return RLMObjectSchema for the given class in this Realm.
-
- @see RLMObjectSchema
- */
-- (RLMObjectSchema *)objectForKeyedSubscript:(id )className;
-
-/**
- Returns YES if equal to schema
- */
-- (BOOL)isEqualToSchema:(RLMSchema *)schema;
-
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/Realm.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/Realm.h
deleted file mode 100644
index 886f19e..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/Realm.h
+++ /dev/null
@@ -1,30 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
-#import
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Modules/module.modulemap b/Carthage/Build/Mac/Realm.framework/Versions/A/Modules/module.modulemap
deleted file mode 100644
index 18b5e2e..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Modules/module.modulemap
+++ /dev/null
@@ -1,27 +0,0 @@
-framework module Realm {
- umbrella header "Realm.h"
-
- export *
- module * { export * }
-
- explicit module Private {
- header "RLMAccessor.h"
- header "RLMArray_Private.h"
- header "RLMListBase.h"
- header "RLMMigration_Private.h"
- header "RLMObjectSchema_Private.h"
- header "RLMObjectStore.h"
- header "RLMObject_Private.h"
- header "RLMOptionalBase.h"
- header "RLMProperty_Private.h"
- header "RLMRealmConfiguration_Private.h"
- header "RLMRealm_Private.h"
- header "RLMResults_Private.h"
- header "RLMSchema_Private.h"
- }
-
- explicit module Dynamic {
- header "RLMRealm_Dynamic.h"
- header "RLMObjectBase_Dynamic.h"
- }
-}
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMAccessor.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMAccessor.h
deleted file mode 100644
index 23a4317..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMAccessor.h
+++ /dev/null
@@ -1,64 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-#import
-
-@class RLMObjectSchema, RLMProperty, RLMObjectBase, RLMProperty;
-
-#ifdef __cplusplus
-typedef NSUInteger RLMCreationOptions;
-#else
-typedef NS_OPTIONS(NSUInteger, RLMCreationOptions);
-#endif
-
-RLM_ASSUME_NONNULL_BEGIN
-
-//
-// Accessors Class Creation/Caching
-//
-
-// get accessor classes for an object class - generates classes if not cached
-Class RLMAccessorClassForObjectClass(Class objectClass, RLMObjectSchema *schema, NSString *prefix);
-Class RLMStandaloneAccessorClassForObjectClass(Class objectClass, RLMObjectSchema *schema);
-
-// Check if a given class is a generated accessor class
-bool RLMIsGeneratedClass(Class cls);
-
-//
-// Dynamic getters/setters
-//
-FOUNDATION_EXTERN void RLMDynamicValidatedSet(RLMObjectBase *obj, NSString *propName, id __nullable val);
-FOUNDATION_EXTERN RLMProperty *RLMValidatedGetProperty(RLMObjectBase *obj, NSString *propName);
-FOUNDATION_EXTERN id __nullable RLMDynamicGet(RLMObjectBase *obj, RLMProperty *prop);
-
-// by property/column
-FOUNDATION_EXTERN void RLMDynamicSet(RLMObjectBase *obj, RLMProperty *prop, id val, RLMCreationOptions options);
-
-//
-// Class modification
-//
-
-// Replace className method for the given class
-void RLMReplaceClassNameMethod(Class accessorClass, NSString *className);
-
-// Replace sharedSchema method for the given class
-void RLMReplaceSharedSchemaMethod(Class accessorClass, RLMObjectSchema * __nullable schema);
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMArray_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMArray_Private.h
deleted file mode 100644
index 592dd57..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMArray_Private.h
+++ /dev/null
@@ -1,24 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-@interface RLMArray ()
-- (instancetype)initWithObjectClassName:(NSString *)objectClassName;
-- (NSString *)descriptionWithMaxDepth:(NSUInteger)depth;
-@end
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMListBase.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMListBase.h
deleted file mode 100644
index a8057a6..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMListBase.h
+++ /dev/null
@@ -1,29 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-@class RLMArray;
-
-// A base class for Swift generic Lists to make it possible to interact with
-// them from obj-c
-@interface RLMListBase : NSObject
-@property (nonatomic, strong) RLMArray *_rlmArray;
-
-- (instancetype)initWithArray:(RLMArray *)array;
-@end
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMMigration_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMMigration_Private.h
deleted file mode 100644
index 4b54c89..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMMigration_Private.h
+++ /dev/null
@@ -1,34 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-#import
-
-typedef void (^RLMObjectBaseMigrationBlock)(RLMObjectBase *oldObject, RLMObjectBase *newObject);
-
-@interface RLMMigration ()
-
-@property (nonatomic, strong) RLMRealm *oldRealm;
-@property (nonatomic, strong) RLMRealm *realm;
-
-- (instancetype)initWithRealm:(RLMRealm *)realm oldRealm:(RLMRealm *)oldRealm;
-
-- (void)execute:(RLMMigrationBlock)block;
-
-@end
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectSchema_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectSchema_Private.h
deleted file mode 100644
index 10b6473..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectSchema_Private.h
+++ /dev/null
@@ -1,70 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-@class RLMRealm;
-
-// RLMObjectSchema private
-@interface RLMObjectSchema ()
-
-// writable redecleration
-@property (nonatomic, readwrite, copy) NSArray RLM_GENERIC(RLMProperty *) *properties;
-@property (nonatomic, readwrite, assign) bool isSwiftClass;
-
-// class used for this object schema
-@property (nonatomic, readwrite, assign) Class objectClass;
-@property (nonatomic, readwrite, assign) Class accessorClass;
-@property (nonatomic, readwrite, assign) Class standaloneClass;
-
-@property (nonatomic, readwrite, nullable) RLMProperty *primaryKeyProperty;
-
-@property (nonatomic, readonly) NSArray RLM_GENERIC(RLMProperty *) *propertiesInDeclaredOrder;
-
-// The Realm retains its object schemas, so they need to not retain the Realm
-@property (nonatomic, unsafe_unretained, nullable) RLMRealm *realm;
-// returns a cached or new schema for a given object class
-+ (instancetype)schemaForObjectClass:(Class)objectClass;
-
-- (void)sortPropertiesByColumn;
-
-@end
-
-@interface RLMObjectSchema (Dynamic)
-/**
- This method is useful only in specialized circumstances, for example, when accessing objects
- in a Realm produced externally. If you are simply building an app on Realm, it is not recommened
- to use this method as an [RLMObjectSchema](RLMObjectSchema) is generated automatically for every [RLMObject](RLMObject) subclass.
-
- Initialize an RLMObjectSchema with classname, objectClass, and an array of properties
-
- @warning This method is useful only in specialized circumstances.
-
- @param objectClassName The name of the class used to refer to objects of this type.
- @param objectClass The objective-c class used when creating instances of this type.
- @param properties An array RLMProperty describing the persisted properties for this type.
-
- @return An initialized instance of RLMObjectSchema.
- */
-- (instancetype)initWithClassName:(NSString *)objectClassName objectClass:(Class)objectClass properties:(NSArray *)properties;
-@end
-
-RLM_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectStore.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectStore.h
deleted file mode 100644
index 590d0ef..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectStore.h
+++ /dev/null
@@ -1,99 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-@class RLMRealm, RLMSchema, RLMObjectSchema, RLMObjectBase, RLMResults, RLMProperty;
-
-//
-// Accessor Creation
-//
-
-// create or get cached accessors for the given schema
-void RLMRealmCreateAccessors(RLMSchema *schema);
-
-// Clear the cache of created accessor classes
-void RLMClearAccessorCache();
-
-
-//
-// Options for object creation
-//
-typedef NS_OPTIONS(NSUInteger, RLMCreationOptions) {
- // Normal object creation
- RLMCreationOptionsNone = 0,
- // If the property is a link or array property, upsert the linked objects
- // if they have a primary key, and insert them otherwise.
- RLMCreationOptionsCreateOrUpdate = 1 << 0,
- // Allow standalone objects to be promoted to persisted objects
- // if false objects are copied during object creation
- RLMCreationOptionsPromoteStandalone = 1 << 1,
-};
-
-
-//
-// Adding, Removing, Getting Objects
-//
-
-// add an object to the given realm
-void RLMAddObjectToRealm(RLMObjectBase *object, RLMRealm *realm, bool createOrUpdate);
-
-// delete an object from its realm
-void RLMDeleteObjectFromRealm(RLMObjectBase *object, RLMRealm *realm);
-
-// deletes all objects from a realm
-void RLMDeleteAllObjectsFromRealm(RLMRealm *realm);
-
-// get objects of a given class
-RLMResults *RLMGetObjects(RLMRealm *realm, NSString *objectClassName, NSPredicate *predicate) NS_RETURNS_RETAINED;
-
-// get an object with the given primary key
-id RLMGetObject(RLMRealm *realm, NSString *objectClassName, id key) NS_RETURNS_RETAINED;
-
-// create object from array or dictionary
-RLMObjectBase *RLMCreateObjectInRealmWithValue(RLMRealm *realm, NSString *className, id value, bool createOrUpdate) NS_RETURNS_RETAINED;
-
-
-//
-// Accessor Creation
-//
-
-
-// switch List<> properties from being backed by standalone RLMArrays to RLMArrayLinkView
-void RLMInitializeSwiftAccessorGenerics(RLMObjectBase *object);
-
-#ifdef __cplusplus
-}
-
-namespace realm {
- class Table;
- template class BasicRowExpr;
- using RowExpr = BasicRowExpr;
-}
-// Create accessors
-RLMObjectBase *RLMCreateObjectAccessor(RLMRealm *realm,
- RLMObjectSchema *objectSchema,
- NSUInteger index) NS_RETURNS_RETAINED;
-RLMObjectBase *RLMCreateObjectAccessor(RLMRealm *realm,
- RLMObjectSchema *objectSchema,
- realm::RowExpr row) NS_RETURNS_RETAINED;
-#endif
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObject_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObject_Private.h
deleted file mode 100644
index 2c7e96f..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObject_Private.h
+++ /dev/null
@@ -1,89 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-// RLMObject accessor and read/write realm
-@interface RLMObjectBase () {
- @public
- RLMRealm *_realm;
- // objectSchema is a cached pointer to an object stored in the RLMSchema
- // owned by _realm, so it's guaranteed to stay alive as long as this object
- // without retaining it (and retaining it makes iteration slower)
- __unsafe_unretained RLMObjectSchema *_objectSchema;
-}
-
-// standalone initializer
-- (instancetype)initWithValue:(id)value schema:(RLMSchema *)schema;
-
-// live accessor initializer
-- (instancetype)initWithRealm:(__unsafe_unretained RLMRealm *const)realm
- schema:(__unsafe_unretained RLMObjectSchema *const)schema;
-
-// shared schema for this class
-+ (RLMObjectSchema *)sharedSchema;
-
-// provide injection point for alternative Swift object util class
-+ (Class)objectUtilClass:(BOOL)isSwift;
-
-@end
-
-@interface RLMDynamicObject : RLMObject
-
-@end
-
-//
-// Getters and setters for RLMObjectBase ivars for realm and objectSchema
-//
-FOUNDATION_EXTERN void RLMObjectBaseSetRealm(RLMObjectBase *object, RLMRealm *realm);
-FOUNDATION_EXTERN RLMRealm *RLMObjectBaseRealm(RLMObjectBase *object);
-FOUNDATION_EXTERN void RLMObjectBaseSetObjectSchema(RLMObjectBase *object, RLMObjectSchema *objectSchema);
-FOUNDATION_EXTERN RLMObjectSchema *RLMObjectBaseObjectSchema(RLMObjectBase *object);
-
-// Get linking objects for an RLMObjectBase
-FOUNDATION_EXTERN NSArray *RLMObjectBaseLinkingObjectsOfClass(RLMObjectBase *object, NSString *className, NSString *property);
-
-// Dynamic access to RLMObjectBase properties
-FOUNDATION_EXTERN id RLMObjectBaseObjectForKeyedSubscript(RLMObjectBase *object, NSString *key);
-FOUNDATION_EXTERN void RLMObjectBaseSetObjectForKeyedSubscript(RLMObjectBase *object, NSString *key, id obj);
-
-// Calls valueForKey: and re-raises NSUndefinedKeyExceptions
-FOUNDATION_EXTERN id RLMValidatedValueForProperty(id object, NSString *key, NSString *className);
-
-// Compare two RLObjectBases
-FOUNDATION_EXTERN BOOL RLMObjectBaseAreEqual(RLMObjectBase *o1, RLMObjectBase *o2);
-
-// Get ObjectUil class for objc or swift
-FOUNDATION_EXTERN Class RLMObjectUtilClass(BOOL isSwift);
-
-FOUNDATION_EXTERN const NSUInteger RLMDescriptionMaxDepth;
-
-@class RLMProperty, RLMArray;
-@interface RLMObjectUtil : NSObject
-
-+ (NSArray RLM_GENERIC(NSString *) *)ignoredPropertiesForClass:(Class)cls;
-+ (NSArray RLM_GENERIC(NSString *) *)indexedPropertiesForClass:(Class)cls;
-
-+ (NSArray RLM_GENERIC(NSString *) *)getGenericListPropertyNames:(id)obj;
-+ (void)initializeListProperty:(RLMObjectBase *)object property:(RLMProperty *)property array:(RLMArray *)array;
-+ (void)initializeOptionalProperty:(RLMObjectBase *)object property:(RLMProperty *)property;
-
-+ (NSDictionary RLM_GENERIC(NSString *, NSNumber *) *)getOptionalProperties:(id)obj;
-+ (NSArray RLM_GENERIC(NSString *) *)requiredPropertiesForClass:(Class)cls;
-
-@end
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMOptionalBase.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMOptionalBase.h
deleted file mode 100644
index bab04a5..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMOptionalBase.h
+++ /dev/null
@@ -1,34 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2015 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-
-@class RLMObjectBase, RLMProperty;
-
-@interface RLMOptionalBase : NSProxy
-
-- (instancetype)init;
-
-@property (nonatomic, weak) RLMObjectBase *object;
-
-@property (nonatomic, unsafe_unretained) RLMProperty *property;
-
-@property (nonatomic, strong) id underlyingValue;
-
-@end
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMProperty_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMProperty_Private.h
deleted file mode 100644
index 5223764..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMProperty_Private.h
+++ /dev/null
@@ -1,93 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-#import
-
-@class RLMObjectBase;
-
-FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNullable(RLMPropertyType propertyType);
-FOUNDATION_EXTERN BOOL RLMPropertyTypeIsNumeric(RLMPropertyType propertyType);
-
-// private property interface
-@interface RLMProperty ()
-
-- (instancetype)initWithName:(NSString *)name
- indexed:(BOOL)indexed
- property:(objc_property_t)property;
-
-- (instancetype)initSwiftPropertyWithName:(NSString *)name
- indexed:(BOOL)indexed
- property:(objc_property_t)property
- instance:(RLMObjectBase *)objectInstance;
-
-- (instancetype)initSwiftListPropertyWithName:(NSString *)name
- ivar:(Ivar)ivar
- objectClassName:(NSString *)objectClassName;
-
-- (instancetype)initSwiftOptionalPropertyWithName:(NSString *)name
- indexed:(BOOL)indexed
- ivar:(Ivar)ivar
- propertyType:(RLMPropertyType)propertyType;
-
-// private setters
-@property (nonatomic, assign) NSUInteger column;
-@property (nonatomic, readwrite, assign) RLMPropertyType type;
-@property (nonatomic, readwrite) BOOL indexed;
-@property (nonatomic, readwrite) BOOL optional;
-@property (nonatomic, copy) NSString *objectClassName;
-
-// private properties
-@property (nonatomic, assign) char objcType;
-@property (nonatomic, copy) NSString *objcRawType;
-@property (nonatomic, assign) BOOL isPrimary;
-@property (nonatomic, assign) Ivar swiftIvar;
-@property (nonatomic, assign) NSUInteger declarationIndex;
-
-// getter and setter names
-@property (nonatomic, copy) NSString *getterName;
-@property (nonatomic, copy) NSString *setterName;
-@property (nonatomic) SEL getterSel;
-@property (nonatomic) SEL setterSel;
-
-@end
-
-@interface RLMProperty (Dynamic)
-/**
- This method is useful only in specialized circumstances, for example, in conjunction with
- +[RLMObjectSchema initWithClassName:objectClass:properties:]. If you are simply building an
- app on Realm, it is not recommened to use this method.
-
- Initialize an RLMProperty
-
- @warning This method is useful only in specialized circumstances.
-
- @param name The property name.
- @param type The property type.
- @param objectClassName The object type used for Object and Array types.
-
- @return An initialized instance of RLMProperty.
- */
-- (instancetype)initWithName:(NSString *)name
- type:(RLMPropertyType)type
- objectClassName:(NSString *)objectClassName
- indexed:(BOOL)indexed
- optional:(BOOL)optional;
-@end
-
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmConfiguration_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmConfiguration_Private.h
deleted file mode 100644
index 91770a2..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmConfiguration_Private.h
+++ /dev/null
@@ -1,38 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2015 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-@class RLMSchema;
-
-@interface RLMRealmConfiguration ()
-
-@property (nonatomic, readwrite) bool cache;
-@property (nonatomic, readwrite) bool dynamic;
-@property (nonatomic, readwrite) bool disableFormatUpgrade;
-@property (nonatomic, copy) RLMSchema *customSchema;
-
-// Get the default confiugration without copying it
-+ (RLMRealmConfiguration *)rawDefaultConfiguration;
-
-+ (void)resetRealmConfigurationState;
-@end
-
-// Get a path in the platform-appropriate documents directory with the given filename
-FOUNDATION_EXTERN NSString *RLMRealmPathForFile(NSString *fileName);
-FOUNDATION_EXTERN NSString *RLMRealmPathForFileAndBundleIdentifier(NSString *fileName, NSString *mainBundleIdentifier);
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmUtil.hpp b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmUtil.hpp
deleted file mode 100644
index b69c727..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmUtil.hpp
+++ /dev/null
@@ -1,42 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-#import
-#import
-
-@class RLMRealm;
-
-namespace realm {
- class BindingContext;
-}
-
-// Add a Realm to the weak cache
-void RLMCacheRealm(std::string const& path, RLMRealm *realm);
-// Get a Realm for the given path which can be used on the current thread
-RLMRealm *RLMGetThreadLocalCachedRealmForPath(std::string const& path);
-// Get a Realm for the given path
-RLMRealm *RLMGetAnyCachedRealmForPath(std::string const& path);
-// Clear the weak cache of Realms
-void RLMClearRealmCache();
-
-// Install an uncaught exception handler that cancels write transactions
-// for all cached realms on the current thread
-void RLMInstallUncaughtExceptionHandler();
-
-std::unique_ptr RLMCreateBindingContext(RLMRealm *realm);
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealm_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealm_Private.h
deleted file mode 100644
index 68b3b82..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealm_Private.h
+++ /dev/null
@@ -1,86 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-@class RLMFastEnumerator;
-
-// Disable syncing files to disk. Cannot be re-enabled. Use only for tests.
-FOUNDATION_EXTERN void RLMDisableSyncToDisk();
-
-FOUNDATION_EXTERN NSData *RLMRealmValidatedEncryptionKey(NSData *key);
-
-// Translate an in-flight exception resulting from opening a SharedGroup to
-// an NSError or NSException (if error is nil)
-void RLMRealmTranslateException(NSError **error);
-
-// RLMRealm private members
-@interface RLMRealm ()
-
-@property (nonatomic, readonly) BOOL dynamic;
-@property (nonatomic, readwrite) RLMSchema *schema;
-
-+ (void)resetRealmState;
-
-/**
- This method is useful only in specialized circumstances, for example, when opening Realm files
- retrieved externally that contain a different schema than defined in your application.
- If you are simply building an app on Realm you should consider using:
- [defaultRealm]([RLMRealm defaultRealm]) or [realmWithPath:]([RLMRealm realmWithPath:])
-
- Obtains an `RLMRealm` instance with persistence to a specific file path with
- options.
-
- @warning This method is useful only in specialized circumstances.
-
- @param path Path to the file you want the data saved in.
- @param key 64-byte key to use to encrypt the data.
- @param readonly `BOOL` indicating if this Realm is read-only (must use for read-only files)
- @param inMemory `BOOL` indicating if this Realm is in-memory
- @param dynamic `BOOL` indicating if this Realm is dynamic
- @param customSchema `RLMSchema` object representing the schema for the Realm
- @param outError If an error occurs, upon return contains an `NSError` object
- that describes the problem. If you are not interested in
- possible errors, pass in NULL.
-
- @return An `RLMRealm` instance.
-
- @see RLMRealm defaultRealm
- @see RLMRealm realmWithPath:
- @see RLMRealm realmWithPath:readOnly:error:
- @see RLMRealm realmWithPath:encryptionKey:readOnly:error:
- */
-+ (instancetype)realmWithPath:(NSString *)path
- key:(NSData *)key
- readOnly:(BOOL)readonly
- inMemory:(BOOL)inMemory
- dynamic:(BOOL)dynamic
- schema:(RLMSchema *)customSchema
- error:(NSError **)outError;
-
-- (void)registerEnumerator:(RLMFastEnumerator *)enumerator;
-- (void)unregisterEnumerator:(RLMFastEnumerator *)enumerator;
-- (void)detachAllEnumerators;
-
-- (void)sendNotifications:(NSString *)notification;
-- (void)verifyThread;
-- (void)verifyNotificationsAreSupported;
-
-+ (NSString *)writeableTemporaryPathForFile:(NSString *)fileName;
-
-@end
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMResults_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMResults_Private.h
deleted file mode 100644
index 7bdfa84..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMResults_Private.h
+++ /dev/null
@@ -1,25 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#import
-
-@class RLMObjectSchema;
-
-@interface RLMResults ()
-@property (nonatomic, unsafe_unretained) RLMObjectSchema *objectSchema;
-@end
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSchema_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSchema_Private.h
deleted file mode 100644
index e951553..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSchema_Private.h
+++ /dev/null
@@ -1,66 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2014 Realm Inc.
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-//
-////////////////////////////////////////////////////////////////////////////
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#import
-#import
-
-RLM_ASSUME_NONNULL_BEGIN
-
-@class RLMRealm;
-
-//
-// RLMSchema private interface
-//
-@interface RLMSchema ()
-
-/**
- Returns an `RLMSchema` containing only the given `RLMObject` subclasses.
-
- @param classes The classes to be included in the schema.
-
- @return An `RLMSchema` containing only the given classes.
- */
-+ (instancetype)schemaWithObjectClasses:(NSArray RLM_GENERIC(Class) *)classes;
-
-@property (nonatomic, readwrite, copy) NSArray RLM_GENERIC(RLMObjectSchema *) *objectSchema;
-
-// schema based on runtime objects
-+ (instancetype)sharedSchema;
-
-// schema based upon all currently registered object classes
-+ (instancetype)partialSharedSchema;
-
-// class for string
-+ (nullable Class)classForString:(NSString *)className;
-
-// shallow copy for reusing schema properties accross the same Realm on multiple threads
-- (instancetype)shallowCopy;
-
-+ (RLMObjectSchema *)sharedSchemaForClass:(Class)cls;
-
-@end
-
-RLM_ASSUME_NONNULL_END
-
-#ifdef __cplusplus
-}
-#endif
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Realm b/Carthage/Build/Mac/Realm.framework/Versions/A/Realm
deleted file mode 100755
index 0e2f254..0000000
Binary files a/Carthage/Build/Mac/Realm.framework/Versions/A/Realm and /dev/null differ
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/CHANGELOG.md b/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/CHANGELOG.md
deleted file mode 100644
index 23bdb96..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/CHANGELOG.md
+++ /dev/null
@@ -1,1516 +0,0 @@
-0.98.6 Release notes (2016-03-25)
-=============================================================
-
-Prebuilt frameworks are now built with Xcode 7.3.
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fix running unit tests on iOS simulators and devices with Xcode 7.3.
-
-0.98.5 Release notes (2016-03-14)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fix a crash when opening a Realm on 32-bit iOS devices.
-
-0.98.4 Release notes (2016-03-10)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Properly report changes made by adding an object to a Realm with
- addOrUpdate:/createOrUpdate: to KVO observers for existing objects with that
- primary key.
-* Fix crashes and assorted issues when a migration which added object link
- properties is rolled back due to an error in the migration block.
-* Fix assertion failures when deleting objects within a migration block of a
- type which had an object link property added in that migration.
-* Fix an assertion failure in `Query::apply_patch` when updating certain kinds
- of queries after a write transaction is committed.
-
-0.98.3 Release notes (2016-02-26)
-=============================================================
-
-### Enhancements
-
-* Initializing the shared schema is 3x faster.
-
-### Bugfixes
-
-* Using Realm Objective-C from Swift while having Realm Swift linked no longer causes that the
- declared `ignoredProperties` are not taken into account.
-* Fix assertion failures when rolling back a migration which added Object link
- properties to a class.
-* Fix potential errors when cancelling a write transaction which modified
- multiple `RLMArray`/`List` properties.
-* Report the correct value for inWriteTransaction after attempting to commit a
- write transaction fails.
-* Support CocoaPods 1.0 beginning from prerelease 1.0.0.beta.4 while retaining
- backwards compatibility with 0.39.
-
-0.98.2 Release notes (2016-02-18)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Aggregate operations (`ANY`, `NONE`, `@count`, `SUBQUERY`, etc.) are now supported for key paths
- that begin with an object relationship so long as there is a `RLMArray`/`List` property at some
- point in a key path.
-* Predicates of the form `%@ IN arrayProperty` are now supported.
-
-### Bugfixes
-
-* Use of KVC collection operators on Swift collection types no longer throws an exception.
-* Fix reporting of inWriteTransaction in notifications triggered by
- `beginWriteTransaction`.
-* The contents of `List` and `Optional` properties are now correctly preserved when copying
- a Swift object from one Realm to another, and performing other operations that result in a
- Swift object graph being recursively traversed from Objective-C.
-* Fix a deadlock when queries are performed within a Realm notification block.
-* The `ANY` / `SOME` / `NONE` qualifiers are now required in comparisons involving a key path that
- traverse a `RLMArray`/`List` property. Previously they were only required if the first key in the
- key path was an `RLMArray`/`List` property.
-* Fix several scenarios where the default schema would be initialized
- incorrectly if the first Realm opened used a restricted class subset (via
- `objectClasses`/`objectTypes`).
-
-0.98.1 Release notes (2016-02-10)
-=============================================================
-
-### Bugfixes
-
-* Fix crashes when deleting an object containing an `RLMArray`/`List` which had
- previously been queried.
-* Fix a crash when deleting an object containing an `RLMArray`/`List` with
- active notification blocks.
-* Fix duplicate file warnings when building via CocoaPods.
-* Fix crash or incorrect results when calling `indexOfObject:` on an
- `RLMResults` derived from an `RLMArray`.
-
-0.98.0 Release notes (2016-02-04)
-=============================================================
-
-### API breaking changes
-
-* `+[RLMRealm realmWithPath:]`/`Realm.init(path:)` now inherits from the default
- configuration.
-* Swift 1.2 is no longer supported.
-
-### Enhancements
-
-* Add `addNotificationBlock` to `RLMResults`, `Results`, `RLMArray`, and
- `List`, which calls the given block whenever the collection changes.
-* Do a lot of the work for keeping `RLMResults`/`Results` up-to-date after
- write transactions on a background thread to help avoid blocking the main
- thread.
-* `NSPredicate`'s `SUBQUERY` operator is now supported. It has the following limitations:
- * `@count` is the only operator that may be applied to the `SUBQUERY` expression.
- * The `SUBQUERY(…).@count` expression must be compared with a constant.
- * Correlated subqueries are not yet supported.
-
-### Bugfixes
-
-* None.
-
-0.97.1 Release notes (2016-01-29)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Swift: Added `Error` enum allowing to catch errors e.g. thrown on initializing
- `RLMRealm`/`Realm` instances.
-* Fail with `RLMErrorFileNotFound` instead of the more generic `RLMErrorFileAccess`,
- if no file was found when a realm was opened as read-only or if the directory part
- of the specified path was not found when a copy should be written.
-* Greatly improve performance when deleting objects with one or more indexed
- properties.
-* Indexing `BOOL`/`Bool` and `NSDate` properties are now supported.
-* Swift: Add support for indexing optional properties.
-
-### Bugfixes
-
-* Fix incorrect results or crashes when using `-[RLMResults setValue:forKey:]`
- on an RLMResults which was filtered on the key being set.
-* Fix crashes when an RLMRealm is deallocated from the wrong thread.
-* Fix incorrect results from aggregate methods on `Results`/`RLMResults` after
- objects which were previously in the results are deleted.
-* Fix a crash when adding a new property to an existing class with over a
- million objects in the Realm.
-* Fix errors when opening encrypted Realm files created with writeCopyToPath.
-* Fix crashes or incorrect results for queries that use relationship equality
- in cases where the `RLMResults` is kept alive and instances of the target class
- of the relationship are deleted.
-
-0.97.0 Release notes (2015-12-17)
-=============================================================
-
-### API breaking changes
-
-* All functionality deprecated in previous releases has been removed entirely.
-* Add generic type annotations to NSArrays and NSDictionaries in public APIs.
-* Adding a Realm notification block on a thread not currently running from
- within a run loop throws an exception rather than silently never calling the
- notification block.
-
-### Enhancements
-
-* Support for tvOS.
-* Support for building Realm Swift from source when using Carthage.
-* The block parameter of `-[RLMRealm transactionWithBlock:]`/`Realm.write(_:)` is
- now marked as `__attribute__((noescape))`/`@noescape`.
-* Many forms of queries with key paths on both sides of the comparison operator
- are now supported.
-* Add support for KVC collection operators in `RLMResults` and `RLMArray`.
-* Fail instead of deadlocking in `+[RLMRealm sharedSchema]`, if a Swift property is initialized
- to a computed value, which attempts to open a Realm on its own.
-
-### Bugfixes
-
-* Fix poor performance when calling `-[RLMRealm deleteObjects:]` on an
- `RLMResults` which filtered the objects when there are other classes linking
- to the type of the deleted objects.
-* An exception is now thrown when defining `Object` properties of an unsupported
- type.
-
-0.96.3 Release notes (2015-12-04)
-=============================================================
-
-### Enhancements
-
-* Queries are no longer limited to 16 levels of grouping.
-* Rework the implementation of encrypted Realms to no longer interfere with
- debuggers.
-
-### Bugfixes
-
-* Fix crash when trying to retrieve object instances via `dynamicObjects`.
-* Throw an exception when querying on a link providing objects, which are from a different Realm.
-* Return empty results when querying on a link providing an unattached object.
-* Fix crashes or incorrect results when calling `-[RLMRealm refresh]` during
- fast enumeration.
-* Add `Int8` support for `RealmOptional`, `MinMaxType` and `AddableType`.
-* Set the default value for newly added non-optional NSData properties to a
- zero-byte NSData rather than nil.
-* Fix a potential crash when deleting all objects of a class.
-* Fix performance problems when creating large numbers of objects with
- `RLMArray`/`List` properties.
-* Fix memory leak when using Object(value:) for subclasses with
- `List` or `RealmOptional` properties.
-* Fix a crash when computing the average of an optional integer property.
-* Fix incorrect search results for some queries on integer properties.
-* Add error-checking for nil realm parameters in many methods such as
- `+[RLMObject allObjectsInRealm:]`.
-* Fix a race condition between commits and opening Realm files on new threads
- that could lead to a crash.
-* Fix several crashes when opening Realm files.
-* `-[RLMObject createInRealm:withValue:]`, `-[RLMObject createOrUpdateInRealm:withValue:]`, and
- their variants for the default Realm now always match the contents of an `NSArray` against properties
- in the same order as they are defined in the model.
-
-0.96.2 Release notes (2015-10-26)
-=============================================================
-
-Prebuilt frameworks are now built with Xcode 7.1.
-
-### Bugfixes
-
-* Fix ignoring optional properties in Swift.
-* Fix CocoaPods installation on case-sensitive file systems.
-
-0.96.1 Release notes (2015-10-20)
-=============================================================
-
-### Bugfixes
-
-* Support assigning `Results` to `List` properties via KVC.
-* Honor the schema version set in the configuration in `+[RLMRealm migrateRealm:]`.
-* Fix crash when using optional Int16/Int32/Int64 properties in Swift.
-
-0.96.0 Release notes (2015-10-14)
-=============================================================
-
-* No functional changes since beta2.
-
-0.96.0-beta2 Release notes (2015-10-08)
-=============================================================
-
-### Bugfixes
-
-* Add RLMOptionalBase.h to the podspec.
-
-0.96.0-beta Release notes (2015-10-07)
-=============================================================
-
-### API breaking changes
-
-* CocoaPods v0.38 or greater is now required to install Realm and RealmSwift
- as pods.
-
-### Enhancements
-
-* Functionality common to both `List` and `Results` is now declared in a
- `RealmCollectionType` protocol that both types conform to.
-* `Results.realm` now returns an `Optional` in order to conform to
- `RealmCollectionType`, but will always return `.Some()` since a `Results`
- cannot exist independently from a `Realm`.
-* Aggregate operations are now available on `List`: `min`, `max`, `sum`,
- `average`.
-* Committing write transactions (via `commitWrite` / `commitWriteTransaction` and
- `write` / `transactionWithBlock`) now optionally allow for handling errors when
- the disk is out of space.
-* Added `isEmpty` property on `RLMRealm`/`Realm` to indicate if it contains any
- objects.
-* The `@count`, `@min`, `@max`, `@sum` and `@avg` collection operators are now
- supported in queries.
-
-### Bugfixes
-
-* Fix assertion failure when inserting NSData between 8MB and 16MB in size.
-* Fix assertion failure when rolling back a migration which removed an object
- link or `RLMArray`/`List` property.
-* Add the path of the file being opened to file open errors.
-* Fix a crash that could be triggered by rapidly opening and closing a Realm
- many times on multiple threads at once.
-* Fix several places where exception messages included the name of the wrong
- function which failed.
-
-0.95.3 Release notes (2015-10-05)
-=============================================================
-
-### Bugfixes
-
-* Compile iOS Simulator framework architectures with `-fembed-bitcode-marker`.
-* Fix crashes when the first Realm opened uses a class subset and later Realms
- opened do not.
-* Fix inconsistent errors when `Object(value: ...)` is used to initialize the
- default value of a property of an `Object` subclass.
-* Throw an exception when a class subset has objects with array or object
- properties of a type that are not part of the class subset.
-
-0.95.2 Release notes (2015-09-24)
-=============================================================
-
-* Enable bitcode for iOS and watchOS frameworks.
-* Build libraries with Xcode 7 final rather than the GM.
-
-0.95.1 Release notes (2015-09-23)
-=============================================================
-
-### Enhancements
-
-* Add missing KVO handling for moving and exchanging objects in `RLMArray` and
- `List`.
-
-### Bugfixes
-
-* Setting the primary key property on persisted `RLMObject`s / `Object`s
- via subscripting or key-value coding will cause an exception to be thrown.
-* Fix crash due to race condition in `RLMRealmConfiguration` where the default
- configuration was in the process of being copied in one thread, while
- released in another.
-* Fix crash when a migration which removed an object or array property is
- rolled back due to an error.
-
-0.95.0 Release notes (2015-08-25)
-=============================================================
-
-### API breaking changes
-
-* The following APIs have been deprecated in favor of the new `RLMRealmConfiguration` class in Realm Objective-C:
-
-| Deprecated API | New API |
-|:------------------------------------------------------------------|:---------------------------------------------------------------------------------|
-| `+[RLMRealm realmWithPath:readOnly:error:]` | `+[RLMRealm realmWithConfiguration:error:]` |
-| `+[RLMRealm realmWithPath:encryptionKey:readOnly:error:]` | `+[RLMRealm realmWithConfiguration:error:]` |
-| `+[RLMRealm setEncryptionKey:forRealmsAtPath:]` | `-[RLMRealmConfiguration setEncryptionKey:]` |
-| `+[RLMRealm inMemoryRealmWithIdentifier:]` | `+[RLMRealm realmWithConfiguration:error:]` |
-| `+[RLMRealm defaultRealmPath]` | `+[RLMRealmConfiguration defaultConfiguration]` |
-| `+[RLMRealm setDefaultRealmPath:]` | `+[RLMRealmConfiguration setDefaultConfiguration:]` |
-| `+[RLMRealm setDefaultRealmSchemaVersion:withMigrationBlock]` | `RLMRealmConfiguration.schemaVersion` and `RLMRealmConfiguration.migrationBlock` |
-| `+[RLMRealm setSchemaVersion:forRealmAtPath:withMigrationBlock:]` | `RLMRealmConfiguration.schemaVersion` and `RLMRealmConfiguration.migrationBlock` |
-| `+[RLMRealm migrateRealmAtPath:]` | `+[RLMRealm migrateRealm:]` |
-| `+[RLMRealm migrateRealmAtPath:encryptionKey:]` | `+[RLMRealm migrateRealm:]` |
-
-* The following APIs have been deprecated in favor of the new `Realm.Configuration` struct in Realm Swift for Swift 1.2:
-
-| Deprecated API | New API |
-|:--------------------------------------------------------------|:-----------------------------------------------------------------------------|
-| `Realm.defaultPath` | `Realm.Configuration.defaultConfiguration` |
-| `Realm(path:readOnly:encryptionKey:error:)` | `Realm(configuration:error:)` |
-| `Realm(inMemoryIdentifier:)` | `Realm(configuration:error:)` |
-| `Realm.setEncryptionKey(:forPath:)` | `Realm(configuration:error:)` |
-| `setDefaultRealmSchemaVersion(schemaVersion:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` |
-| `setSchemaVersion(schemaVersion:realmPath:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` |
-| `migrateRealm(path:encryptionKey:)` | `migrateRealm(configuration:)` |
-
-* The following APIs have been deprecated in favor of the new `Realm.Configuration` struct in Realm Swift for Swift 2.0:
-
-| Deprecated API | New API |
-|:--------------------------------------------------------------|:-----------------------------------------------------------------------------|
-| `Realm.defaultPath` | `Realm.Configuration.defaultConfiguration` |
-| `Realm(path:readOnly:encryptionKey:) throws` | `Realm(configuration:) throws` |
-| `Realm(inMemoryIdentifier:)` | `Realm(configuration:) throws` |
-| `Realm.setEncryptionKey(:forPath:)` | `Realm(configuration:) throws` |
-| `setDefaultRealmSchemaVersion(schemaVersion:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` |
-| `setSchemaVersion(schemaVersion:realmPath:migrationBlock:)` | `Realm.Configuration.schemaVersion` and `Realm.Configuration.migrationBlock` |
-| `migrateRealm(path:encryptionKey:)` | `migrateRealm(configuration:)` |
-
-* `List.extend` in Realm Swift for Swift 2.0 has been replaced with `List.appendContentsOf`,
- mirroring changes to `RangeReplaceableCollectionType`.
-
-* Object properties on `Object` subclasses in Realm Swift must be marked as optional,
- otherwise a runtime exception will be thrown.
-
-### Enhancements
-
-* Persisted properties of `RLMObject`/`Object` subclasses are now Key-Value
- Observing compliant.
-* The different options used to create Realm instances have been consolidated
- into a single `RLMRealmConfiguration`/`Realm.Configuration` object.
-* Enumerating Realm collections (`RLMArray`, `RLMResults`, `List<>`,
- `Results<>`) now enumerates over a copy of the collection, making it no
- longer an error to modify a collection during enumeration (either directly,
- or indirectly by modifying objects to make them no longer match a query).
-* Improve performance of object insertion in Swift to bring it roughly in line
- with Objective-C.
-* Allow specifying a specific list of `RLMObject` / `Object` subclasses to include
- in a given Realm via `RLMRealmConfiguration.objectClasses` / `Realm.Configuration.objectTypes`.
-
-### Bugfixes
-
-* Subscripting on `RLMObject` is now marked as nullable.
-
-0.94.1 Release notes (2015-08-10)
-=============================================================
-
-### API breaking changes
-
-* Building for watchOS requires Xcode 7 beta 5.
-
-### Enhancements
-
-* `Object.className` is now marked as `final`.
-
-### Bugfixes
-
-* Fix crash when adding a property to a model without updating the schema
- version.
-* Fix unnecessary redownloading of the core library when building from source.
-* Fix crash when sorting by an integer or floating-point property on iOS 7.
-
-0.94.0 Release notes (2015-07-29)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Reduce the amount of memory used by RLMRealm notification listener threads.
-* Avoid evaluating results eagerly when filtering and sorting.
-* Add nullability annotations to the Objective-C API to provide enhanced compiler
- warnings and bridging to Swift.
-* Make `RLMResult`s and `RLMArray`s support Objective-C generics.
-* Add support for building watchOS and bitcode-compatible apps.
-* Make the exceptions thrown in getters and setters more informative.
-* Add `-[RLMArray exchangeObjectAtIndex:withObjectAtIndex]` and `List.swap(_:_:)`
- to allow exchanging the location of two objects in the given `RLMArray` / `List`.
-* Added anonymous analytics on simulator/debugger runs.
-* Add `-[RLMArray moveObjectAtIndex:toIndex:]` and `List.move(from:to:)` to
- allow moving objects in the given `RLMArray` / `List`.
-
-### Bugfixes
-
-* Processes crashing due to an uncaught exception inside a write transaction will
- no longer cause other processes using the same Realm to hang indefinitely.
-* Fix incorrect results when querying for < or <= on ints that
- require 64 bits to represent with a CPU that supports SSE 4.2.
-* An exception will no longer be thrown when attempting to reset the schema
- version or encryption key on an open Realm to the current value.
-* Date properties on 32 bit devices will retain 64 bit second precision.
-* Wrap calls to the block passed to `enumerate` in an autoreleasepool to reduce
- memory growth when migrating a large amount of objects.
-* In-memory realms no longer write to the Documents directory on iOS or
- Application Support on OS X.
-
-0.93.2 Release notes (2015-06-12)
-=============================================================
-
-### Bugfixes
-
-* Fixed an issue where the packaged OS X Realm.framework was built with
- `GCC_GENERATE_TEST_COVERAGE_FILES` and `GCC_INSTRUMENT_PROGRAM_FLOW_ARCS`
- enabled.
-* Fix a memory leak when constructing standalone Swift objects with NSDate
- properties.
-* Throw an exception rather than asserting when an invalidated object is added
- to an RLMArray.
-* Fix a case where data loss would occur if a device was hard-powered-off
- shortly after a write transaction was committed which had to expand the Realm
- file.
-
-0.93.1 Release notes (2015-05-29)
-=============================================================
-
-### Bugfixes
-
-* Objects are no longer copied into standalone objects during object creation. This fixes an issue where
- nested objects with a primary key are sometimes duplicated rather than updated.
-* Comparison predicates with a constant on the left of the operator and key path on the right now give
- correct results. An exception is now thrown for predicates that do not yet support this ordering.
-* Fix some crashes in `index_string.cpp` with int primary keys or indexed int properties.
-
-0.93.0 Release notes (2015-05-27)
-=============================================================
-
-### API breaking changes
-
-* Schema versions are now represented as `uint64_t` (Objective-C) and `UInt64` (Swift) so that they have
- the same representation on all architectures.
-
-### Enhancements
-
-* Swift: `Results` now conforms to `CVarArgType` so it can
- now be passed as an argument to `Results.filter(_:...)`
- and `List.filter(_:...)`.
-* Swift: Made `SortDescriptor` conform to the `Equatable` and
- `StringLiteralConvertible` protocols.
-* Int primary keys are once again automatically indexed.
-* Improve error reporting when attempting to mark a property of a type that
- cannot be indexed as indexed.
-
-### Bugfixes
-
-* Swift: `RealmSwift.framework` no longer embeds `Realm.framework`,
- which now allows apps using it to pass iTunes Connect validation.
-
-0.92.4 Release notes (2015-05-22)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Swift: Made `Object.init()` a required initializer.
-* `RLMObject`, `RLMResults`, `Object` and `Results` can now be safely
- deallocated (but still not used) from any thread.
-* Improve performance of `-[RLMArray indexOfObjectWhere:]` and `-[RLMArray
- indexOfObjectWithPredicate:]`, and implement them for standalone RLMArrays.
-* Improved performance of most simple queries.
-
-### Bugfixes
-
-* The interprocess notification mechanism no longer uses dispatch worker threads, preventing it from
- starving other GCD clients of the opportunity to execute blocks when dozens of Realms are open at once.
-
-0.92.3 Release notes (2015-05-13)
-=============================================================
-
-### API breaking changes
-
-* Swift: `Results.average(_:)` now returns an optional, which is `nil` if and only if the results
- set is empty.
-
-### Enhancements
-
-* Swift: Added `List.invalidated`, which returns if the given `List` is no longer
- safe to be accessed, and is analogous to `-[RLMArray isInvalidated]`.
-* Assertion messages are automatically logged to Crashlytics if it's loaded
- into the current process to make it easier to diagnose crashes.
-
-### Bugfixes
-
-* Swift: Enumerating through a standalone `List` whose objects themselves
- have list properties won't crash.
-* Swift: Using a subclass of `RealmSwift.Object` in an aggregate operator of a predicate
- no longer throws a spurious type error.
-* Fix incorrect results for when using OR in a query on a `RLMArray`/`List<>`.
-* Fix incorrect values from `[RLMResults count]`/`Results.count` when using
- `!=` on an int property with no other query conditions.
-* Lower the maximum doubling threshold for Realm file sizes from 128MB to 16MB
- to reduce the amount of wasted space.
-
-0.92.2 Release notes (2015-05-08)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Exceptions raised when incorrect object types are used with predicates now contain more detailed information.
-* Added `-[RLMMigration deleteDataForClassName:]` and `Migration.deleteData(_:)`
- to enable cleaning up after removing object subclasses
-
-### Bugfixes
-
-* Prevent debugging of an application using an encrypted Realm to work around
- frequent LLDB hangs. Until the underlying issue is addressed you may set
- REALM_DISABLE_ENCRYPTION=YES in your application's environment variables to
- have requests to open an encrypted Realm treated as a request for an
- unencrypted Realm.
-* Linked objects are properly updated in `createOrUpdateInRealm:withValue:`.
-* List properties on Objects are now properly initialized during fast enumeration.
-
-0.92.1 Release notes (2015-05-06)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* `-[RLMRealm inWriteTransaction]` is now public.
-* Realm Swift is now available on CoocaPods.
-
-### Bugfixes
-
-* Force code re-signing after stripping architectures in `strip-frameworks.sh`.
-
-0.92.0 Release notes (2015-05-05)
-=============================================================
-
-### API breaking changes
-
-* Migration blocks are no longer called when a Realm file is first created.
-* The following APIs have been deprecated in favor of newer method names:
-
-| Deprecated API | New API |
-|:-------------------------------------------------------|:------------------------------------------------------|
-| `-[RLMMigration createObject:withObject:]` | `-[RLMMigration createObject:withValue:]` |
-| `-[RLMObject initWithObject:]` | `-[RLMObject initWithValue:]` |
-| `+[RLMObject createInDefaultRealmWithObject:]` | `+[RLMObject createInDefaultRealmWithValue:]` |
-| `+[RLMObject createInRealm:withObject:]` | `+[RLMObject createInRealm:withValue:]` |
-| `+[RLMObject createOrUpdateInDefaultRealmWithObject:]` | `+[RLMObject createOrUpdateInDefaultRealmWithValue:]` |
-| `+[RLMObject createOrUpdateInRealm:withObject:]` | `+[RLMObject createOrUpdateInRealm:withValue:]` |
-
-### Enhancements
-
-* `Int8` properties defined in Swift are now treated as integers, rather than
- booleans.
-* NSPredicates created using `+predicateWithValue:` are now supported.
-
-### Bugfixes
-
-* Compound AND predicates with no subpredicates now correctly match all objects.
-
-0.91.5 Release notes (2015-04-28)
-=============================================================
-
-### Bugfixes
-
-* Fix issues with removing search indexes and re-enable it.
-
-0.91.4 Release notes (2015-04-27)
-=============================================================
-
-### Bugfixes
-
-* Temporarily disable removing indexes from existing columns due to bugs.
-
-0.91.3 Release notes (2015-04-17)
-=============================================================
-
-### Bugfixes
-
-* Fix `Extra argument 'objectClassName' in call` errors when building via
- CocoaPods.
-
-0.91.2 Release notes (2015-04-16)
-=============================================================
-
-* Migration blocks are no longer called when a Realm file is first created.
-
-### Enhancements
-
-* `RLMCollection` supports collection KVC operations.
-* Sorting `RLMResults` is 2-5x faster (typically closer to 2x).
-* Refreshing `RLMRealm` after a write transaction which inserts or modifies
- strings or `NSData` is committed on another thread is significantly faster.
-* Indexes are now added and removed from existing properties when a Realm file
- is opened, rather than only when properties are first added.
-
-### Bugfixes
-
-* `+[RLMSchema dynamicSchemaForRealm:]` now respects search indexes.
-* `+[RLMProperty isEqualToProperty:]` now checks for equal `indexed` properties.
-
-0.91.1 Release notes (2015-03-12)
-=============================================================
-
-### Enhancements
-
-* The browser will automatically refresh when the Realm has been modified
- from another process.
-* Allow using Realm in an embedded framework by setting
- `APPLICATION_EXTENSION_API_ONLY` to YES.
-
-### Bugfixes
-
-* Fix a crash in CFRunLoopSourceInvalidate.
-
-0.91.0 Release notes (2015-03-10)
-=============================================================
-
-### API breaking changes
-
-* `attributesForProperty:` has been removed from `RLMObject`. You now specify indexed
- properties by implementing the `indexedProperties` method.
-* An exception will be thrown when calling `setEncryptionKey:forRealmsAtPath:`,
- `setSchemaVersion:forRealmAtPath:withMigrationBlock:`, and `migrateRealmAtPath:`
- when a Realm at the given path is already open.
-* Object and array properties of type `RLMObject` will no longer be allowed.
-
-### Enhancements
-
-* Add support for sharing Realm files between processes.
-* The browser will no longer show objects that have no persisted properties.
-* `RLMSchema`, `RLMObjectSchema`, and `RLMProperty` now have more useful descriptions.
-* Opening an encrypted Realm while a debugger is attached to the process no
- longer throws an exception.
-* `RLMArray` now exposes an `isInvalidated` property to indicate if it can no
- longer be accessed.
-
-### Bugfixes
-
-* An exception will now be thrown when calling `-beginWriteTransaction` from within a notification
- triggered by calling `-beginWriteTransaction` elsewhere.
-* When calling `delete:` we now verify that the object being deleted is persisted in the target Realm.
-* Fix crash when calling `createOrUpdate:inRealm` with nested linked objects.
-* Use the key from `+[RLMRealm setEncryptionKey:forRealmsAtPath:]` in
- `-writeCopyToPath:error:` and `+migrateRealmAtPath:`.
-* Comparing an RLMObject to a non-RLMObject using `-[RLMObject isEqual:]` or
- `-isEqualToObject:` now returns NO instead of crashing.
-* Improved error message when an `RLMObject` subclass is defined nested within
- another Swift declaration.
-* Fix crash when the process is terminated by the OS on iOS while encrypted realms are open.
-* Fix crash after large commits to encrypted realms.
-
-0.90.6 Release notes (2015-02-20)
-=============================================================
-
-### Enhancements
-
-* Improve compatiblity of encrypted Realms with third-party crash reporters.
-
-### Bugfixes
-
-* Fix incorrect results when using aggregate functions on sorted RLMResults.
-* Fix data corruption when using writeCopyToPath:encryptionKey:.
-* Maybe fix some assertion failures.
-
-0.90.5 Release notes (2015-02-04)
-=============================================================
-
-### Bugfixes
-
-* Fix for crashes when encryption is enabled on 64-bit iOS devices.
-
-0.90.4 Release notes (2015-01-29)
-=============================================================
-
-### Bugfixes
-
-* Fix bug that resulted in columns being dropped and recreated during migrations.
-
-0.90.3 Release notes (2015-01-27)
-=============================================================
-
-### Enhancements
-
-* Calling `createInDefaultRealmWithObject:`, `createInRealm:withObject:`,
- `createOrUpdateInDefaultRealmWithObject:` or `createOrUpdateInRealm:withObject:`
- is a no-op if the argument is an RLMObject of the same type as the receiver
- and is already backed by the target realm.
-
-### Bugfixes
-
-* Fix incorrect column type assertions when the first Realm file opened is a
- read-only file that is missing tables.
-* Throw an exception when adding an invalidated or deleted object as a link.
-* Throw an exception when calling `createOrUpdateInRealm:withObject:` when the
- receiver has no primary key defined.
-
-0.90.1 Release notes (2015-01-22)
-=============================================================
-
-### Bugfixes
-
-* Fix for RLMObject being treated as a model object class and showing up in the browser.
-* Fix compilation from the podspec.
-* Fix for crash when calling `objectsWhere:` with grouping in the query on `allObjects`.
-
-0.90.0 Release notes (2015-01-21)
-=============================================================
-
-### API breaking changes
-
-* Rename `-[RLMRealm encryptedRealmWithPath:key:readOnly:error:]` to
- `-[RLMRealm realmWithPath:encryptionKey:readOnly:error:]`.
-* `-[RLMRealm setSchemaVersion:withMigrationBlock]` is no longer global and must be called
- for each individual Realm path used. You can now call `-[RLMRealm setDefaultRealmSchemaVersion:withMigrationBlock]`
- for the default Realm and `-[RLMRealm setSchemaVersion:forRealmAtPath:withMigrationBlock:]` for all others;
-
-### Enhancements
-
-* Add `-[RLMRealm writeCopyToPath:encryptionKey:error:]`.
-* Add support for comparing string columns to other string columns in queries.
-
-### Bugfixes
-
-* Roll back changes made when an exception is thrown during a migration.
-* Throw an exception if the number of items in a RLMResults or RLMArray changes
- while it's being fast-enumerated.
-* Also encrypt the temporary files used when encryption is enabled for a Realm.
-* Fixed crash in JSONImport example on OS X with non-en_US locale.
-* Fixed infinite loop when opening a Realm file in the Browser at the same time
- as it is open in a 32-bit simulator.
-* Fixed a crash when adding primary keys to older realm files with no primary
- keys on any objects.
-* Fixed a crash when removing a primary key in a migration.
-* Fixed a crash when multiple write transactions with no changes followed by a
- write transaction with changes were committed without the main thread
- RLMRealm getting a chance to refresh.
-* Fixed incomplete results when querying for non-null relationships.
-* Improve the error message when a Realm file is opened in multiple processes
- at once.
-
-0.89.2 Release notes (2015-01-02)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fix an assertion failure when invalidating a Realm which is in a write
- transaction, has already been invalidated, or has never been used.
-* Fix an assertion failure when sorting an empty RLMArray property.
-* Fix a bug resulting in the browser never becoming visible on 10.9.
-* Write UTF-8 when generating class files from a realm file in the Browser.
-
-0.89.1 Release notes (2014-12-22)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Improve the error message when a Realm can't be opened due to lacking write
- permissions.
-
-### Bugfixes
-
-* Fix an assertion failure when inserting rows after calling `deleteAllObjects`
- on a Realm.
-* Separate dynamic frameworks are now built for the simulator and devices to
- work around App Store submission errors due to the simulator version not
- being automatically stripped from dynamic libraries.
-
-0.89.0 Release notes (2014-12-18)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Add support for encrypting Realm files on disk.
-* Support using KVC-compliant objects without getters or with custom getter
- names to initialize RLMObjects with `createObjectInRealm` and friends.
-
-### Bugfixes
-
-* Merge native Swift default property values with defaultPropertyValues().
-* Don't leave the database schema partially updated when opening a realm fails
- due to a migration being needed.
-* Fixed issue where objects with custom getter names couldn't be used to
- initialize other objects.
-* Fix a major performance regression on queries on string properties.
-* Fix a memory leak when circularly linked objects are added to a Realm.
-
-0.88.0 Release notes (2014-12-02)
-=============================================================
-
-### API breaking changes
-
-* Deallocating an RLMRealm instance in a write transaction lacking an explicit
- commit/cancel will now be automatically cancelled instead of committed.
-* `-[RLMObject isDeletedFromRealm]` has been renamed to `-[RLMObject isInvalidated]`.
-
-### Enhancements
-
-* Add `-[RLMRealm writeCopyToPath:]` to write a compacted copy of the Realm
- another file.
-* Add support for case insensitive, BEGINSWITH, ENDSWITH and CONTAINS string
- queries on array properties.
-* Make fast enumeration of `RLMArray` and `RLMResults` ~30% faster and
- `objectAtIndex:` ~55% faster.
-* Added a lldb visualizer script for displaying the contents of persisted
- RLMObjects when debugging.
-* Added method `-setDefaultRealmPath:` to change the default Realm path.
-* Add `-[RLMRealm invalidate]` to release data locked by the current thread.
-
-### Bugfixes
-
-* Fix for crash when running many simultaneous write transactions on background threads.
-* Fix for crashes caused by opening Realms at multiple paths simultaneously which have had
- properties re-ordered during migration.
-* Don't run the query twice when `firstObject` or `lastObject` are called on an
- `RLMResults` which has not had its results accessed already.
-* Fix for bug where schema version is 0 for new Realm created at the latest version.
-* Fix for error message where no migration block is specified when required.
-
-0.87.4 Release notes (2014-11-07)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fix browser location in release zip.
-
-0.87.3 Release notes (2014-11-06)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Added method `-linkingObjectsOfClass:forProperty:` to RLMObject to expose inverse
- relationships/backlinks.
-
-### Bugfixes
-
-* Fix for crash due to missing search index when migrating an object with a string primary key
- in a database created using an older versions (0.86.3 and earlier).
-* Throw an exception when passing an array containing a
- non-RLMObject to -[RLMRealm addObjects:].
-* Fix for crash when deleting an object from multiple threads.
-
-0.87.0 Release notes (2014-10-21)
-=============================================================
-
-### API breaking changes
-
-* RLMArray has been split into two classes, `RLMArray` and `RLMResults`. RLMArray is
- used for object properties as in previous releases. Moving forward all methods used to
- enumerate, query, and sort objects return an instance of a new class `RLMResults`. This
- change was made to support diverging apis and the future addition of change notifications
- for queries.
-* The api for migrations has changed. You now call `setSchemaVersion:withMigrationBlock:` to
- register a global migration block and associated version. This block is applied to Realms as
- needed when opened for Realms at a previous version. The block can be applied manually if
- desired by calling `migrateRealmAtPath:`.
-* `arraySortedByProperty:ascending:` was renamed to `sortedResultsUsingProperty:ascending`
-* `addObjectsFromArray:` on both `RLMRealm` and `RLMArray` has been renamed to `addObjects:`
- and now accepts any container class which implements `NSFastEnumeration`
-* Building with Swift support now requires Xcode 6.1
-
-### Enhancements
-
-* Add support for sorting `RLMArray`s by multiple columns with `sortedResultsUsingDescriptors:`
-* Added method `deleteAllObjects` on `RLMRealm` to clear a Realm.
-* Added method `createObject:withObject:` on `RLMMigration` which allows object creation during migrations.
-* Added method `deleteObject:` on `RLMMigration` which allows object deletion during migrations.
-* Updating to core library version 0.85.0.
-* Implement `objectsWhere:` and `objectsWithPredicate:` for array properties.
-* Add `cancelWriteTransaction` to revert all changes made in a write transaction and end the transaction.
-* Make creating `RLMRealm` instances on background threads when an instance
- exists on another thread take a fifth of the time.
-* Support for partial updates when calling `createOrUpdateWithObject:` and `addOrUpdateObject:`
-* Re-enable Swift support on OS X
-
-### Bugfixes
-
-* Fix exceptions when trying to set `RLMObject` properties after rearranging
- the properties in a `RLMObject` subclass.
-* Fix crash on IN query with several thousand items.
-* Fix crash when querying indexed `NSString` properties.
-* Fixed an issue which prevented in-memory Realms from being used accross multiple threads.
-* Preserve the sort order when querying a sorted `RLMResults`.
-* Fixed an issue with migrations where if a Realm file is deleted after a Realm is initialized,
- the newly created Realm can be initialized with an incorrect schema version.
-* Fix crash in `RLMSuperSet` when assigning to a `RLMArray` property on a standalone object.
-* Add an error message when the protocol for an `RLMArray` property is not a
- valid object type.
-* Add an error message when an `RLMObject` subclass is defined nested within
- another Swift class.
-
-0.86.3 Release notes (2014-10-09)
-=============================================================
-
-### Enhancements
-
-* Add support for != in queries on object relationships.
-
-### Bugfixes
-
-* Re-adding an object to its Realm no longer throws an exception and is now a no-op
- (as it was previously).
-* Fix another bug which would sometimes result in subclassing RLMObject
- subclasses not working.
-
-0.86.2 Release notes (2014-10-06)
-=============================================================
-
-### Bugfixes
-
-* Fixed issues with packaging "Realm Browser.app" for release.
-
-0.86.1 Release notes (2014-10-03)
-=============================================================
-
-### Bugfixes
-
-* Fix a bug which would sometimes result in subclassing RLMObject subclasses
- not working.
-
-0.86.0 Release notes (2014-10-03)
-=============================================================
-
-### API breaking changes
-
-* Xcode 6 is now supported from the main Xcode project `Realm.xcodeproj`.
- Xcode 5 is no longer supported.
-
-### Enhancements
-
-* Support subclassing RLMObject models. Although you can now persist subclasses,
- polymorphic behavior is not supported (i.e. setting a property to an
- instance of its subclass).
-* Add support for sorting RLMArray properties.
-* Speed up inserting objects with `addObject:` by ~20%.
-* `readonly` properties are automatically ignored rather than having to be
- added to `ignoredProperties`.
-* Updating to core library version 0.83.1.
-* Return "[deleted object]" rather than throwing an exception when
- `-description` is called on a deleted RLMObject.
-* Significantly improve performance of very large queries.
-* Allow passing any enumerable to IN clauses rather than just NSArray.
-* Add `objectForPrimaryKey:` and `objectInRealm:forPrimaryKey:` convenience
- methods to fetch an object by primary key.
-
-### Bugfixes
-
-* Fix error about not being able to persist property 'hash' with incompatible
- type when building for devices with Xcode 6.
-* Fix spurious notifications of new versions of Realm.
-* Fix for updating nested objects where some types do not have primary keys.
-* Fix for inserting objects from JSON with NSNull values when default values
- should be used.
-* Trying to add a persisted RLMObject to a different Realm now throws an
- exception rather than creating an uninitialized object.
-* Fix validation errors when using IN on array properties.
-* Fix errors when an IN clause has zero items.
-* Fix for chained queries ignoring all but the last query's conditions.
-
-0.85.0 Release notes (2014-09-15)
-=============================================================
-
-### API breaking changes
-
-* Notifications for a refresh being needed (when autorefresh is off) now send
- the notification type RLMRealmRefreshRequiredNotification rather than
- RLMRealmDidChangeNotification.
-
-### Enhancements
-
-* Updating to core library version 0.83.0.
-* Support for primary key properties (for int and string columns). Declaring a property
- to be the primary key ensures uniqueness for that property for all objects of a given type.
- At the moment indexes on primary keys are not yet supported but this will be added in a future
- release.
-* Added methods to update or insert (upsert) for objects with primary keys defined.
-* `[RLMObject initWithObject:]` and `[RLMObject createInRealmWithObject:]` now support
- any object type with kvc properties.
-* The Swift support has been reworked to work around Swift not being supported
- in Frameworks on iOS 7.
-* Improve performance when getting the count of items matching a query but not
- reading any of the objects in the results.
-* Add a return value to `-[RLMRealm refresh]` that indicates whether or not
- there was anything to refresh.
-* Add the class name to the error message when an RLMObject is missing a value
- for a property without a default.
-* Add support for opening Realms in read-only mode.
-* Add an automatic check for updates when using Realm in a simulator (the
- checker code is not compiled into device builds). This can be disabled by
- setting the REALM_DISABLE_UPDATE_CHECKER environment variable to any value.
-* Add support for Int16 and Int64 properties in Swift classes.
-
-### Bugfixes
-
-* Realm change notifications when beginning a write transaction are now sent
- after updating rather than before, to match refresh.
-* `-isEqual:` now uses the default `NSObject` implementation unless a primary key
- is specified for an RLMObject. When a primary key is specified, `-isEqual:` calls
- `-isEqualToObject:` and a corresponding implementation for `-hash` is also implemented.
-
-0.84.0 Release notes (2014-08-28)
-=============================================================
-
-### API breaking changes
-
-* The timer used to trigger notifications has been removed. Notifications are now
- only triggered by commits made in other threads, and can not currently be triggered
- by changes made by other processes. Interprocess notifications will be re-added in
- a future commit with an improved design.
-
-### Enhancements
-
-* Updating to core library version 0.82.2.
-* Add property `deletedFromRealm` to RLMObject to indicate objects which have been deleted.
-* Add support for the IN operator in predicates.
-* Add support for the BETWEEN operator in link queries.
-* Add support for multi-level link queries in predicates (e.g. `foo.bar.baz = 5`).
-* Switch to building the SDK from source when using CocoaPods and add a
- Realm.Headers subspec for use in targets that should not link a copy of Realm
- (such as test targets).
-* Allow unregistering from change notifications in the change notification
- handler block.
-* Significant performance improvements when holding onto large numbers of RLMObjects.
-* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta6.
-* Improved performance during RLMArray iteration, especially when mutating
- contained objects.
-
-### Bugfixes
-
-* Fix crashes and assorted bugs when sorting or querying a RLMArray returned
- from a query.
-* Notifications are no longer sent when initializing new RLMRealm instances on background
- threads.
-* Handle object cycles in -[RLMObject description] and -[RLMArray description].
-* Lowered the deployment target for the Xcode 6 projects and Swift examples to
- iOS 7.0, as they didn't actually require 8.0.
-* Support setting model properties starting with the letter 'z'
-* Fixed crashes that could result from switching between Debug and Relase
- builds of Realm.
-
-0.83.0 Release notes (2014-08-13)
-=============================================================
-
-### API breaking changes
-
-* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta5.
-* Properties to be persisted in Swift classes must be explicitly declared as `dynamic`.
-* Subclasses of RLMObject subclasses now throw an exception on startup, rather
- than when added to a Realm.
-
-### Enhancements
-
-* Add support for querying for nil object properties.
-* Improve error message when specifying invalid literals when creating or
- initializing RLMObjects.
-* Throw an exception when an RLMObject is used from the incorrect thread rather
- than crashing in confusing ways.
-* Speed up RLMRealm instantiation and array property iteration.
-* Allow array and objection relation properties to be missing or null when
- creating a RLMObject from a NSDictionary.
-
-### Bugfixes
-
-* Fixed a memory leak when querying for objects.
-* Fixed initializing array properties on standalone Swift RLMObject subclasses.
-* Fix for queries on 64bit integers.
-
-0.82.0 Release notes (2014-08-05)
-=============================================================
-
-### API breaking changes
-
-* Realm-Xcode6.xcodeproj now only builds using Xcode6-Beta4.
-
-### Enhancements
-
-* Updating to core library version 0.80.5.
-* Now support disabling the `autorefresh` property on RLMRealm instances.
-* Building Realm-Xcode6 for iOS now builds a universal framework for Simulator & Device.
-* Using NSNumber properties (unsupported) now throws a more informative exception.
-* Added `[RLMRealm defaultRealmPath]`
-* Proper implementation for [RLMArray indexOfObjectWhere:]
-* The default Realm path on OS X is now ~/Library/Application Support/[bundle
- identifier]/default.realm rather than ~/Documents
-* We now check that the correct framework (ios or osx) is used at compile time.
-
-### Bugfixes
-
-* Fixed rapid growth of the realm file size.
-* Fixed a bug which could cause a crash during RLMArray destruction after a query.
-* Fixed bug related to querying on float properties: `floatProperty = 1.7` now works.
-* Fixed potential bug related to the handling of array properties (RLMArray).
-* Fixed bug where array properties accessed the wrong property.
-* Fixed bug that prevented objects with custom getters to be added to a Realm.
-* Fixed a bug where initializing a standalone object with an array literal would
- trigger an exception.
-* Clarified exception messages when using unsupported NSPredicate operators.
-* Clarified exception messages when using unsupported property types on RLMObject subclasses.
-* Fixed a memory leak when breaking out of a for-in loop on RLMArray.
-* Fixed a memory leak when removing objects from a RLMArray property.
-* Fixed a memory leak when querying for objects.
-
-
-0.81.0 Release notes (2014-07-22)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Updating to core library version 0.80.3.
-* Added support for basic querying of RLMObject and RLMArray properties (one-to-one and one-to-many relationships).
- e.g. `[Person objectsWhere:@"dog.name == 'Alfonso'"]` or `[Person objectsWhere:@"ANY dogs.name == 'Alfonso'"]`
- Supports all normal operators for numeric and date types. Does not support NSData properties or `BEGINSWITH`, `ENDSWITH`, `CONTAINS`
- and other options for string properties.
-* Added support for querying for object equality in RLMObject and RLMArray properties (one-to-one and one-to-many relationships).
- e.g. `[Person objectsWhere:@"dog == %@", myDog]` `[Person objectsWhere:@"ANY dogs == %@", myDog]` `[Person objectsWhere:@"ANY friends.dog == %@", dog]`
- Only supports comparing objects for equality (i.e. ==)
-* Added a helper method to RLMRealm to perform a block inside a transaction.
-* OSX framework now supported in CocoaPods.
-
-### Bugfixes
-
-* Fixed Unicode support in property names and string contents (Chinese, Russian, etc.). Closing #612 and #604.
-* Fixed bugs related to migration when properties are removed.
-* Fixed keyed subscripting for standalone RLMObjects.
-* Fixed bug related to double clicking on a .realm file to launch the Realm Browser (thanks to Dean Moore).
-
-
-0.80.0 Release notes (2014-07-15)
-=============================================================
-
-### API breaking changes
-
-* Rename migration methods to -migrateDefaultRealmWithBlock: and -migrateRealmAtPath:withBlock:
-* Moved Realm specific query methods from RLMRealm to class methods on RLMObject (-allObjects: to +allObjectsInRealm: ect.)
-
-### Enhancements
-
-* Added +createInDefaultRealmWithObject: method to RLMObject.
-* Added support for array and object literals when calling -createWithObject: and -initWithObject: variants.
-* Added method -deleteObjects: to batch delete objects from a Realm
-* Support for defining RLMObject models entirely in Swift (experimental, see known issues).
-* RLMArrays in Swift support Sequence-style enumeration (for obj in array).
-* Implemented -indexOfObject: for RLMArray
-
-### Known Issues for Swift-defined models
-
-* Properties other than String, NSData and NSDate require a default value in the model. This can be an empty (but typed) array for array properties.
-* The previous caveat also implies that not all models defined in Objective-C can be used for object properties. Only Objective-C models with only implicit (i.e. primitives) or explicit default values can be used. However, any Objective-C model object can be used in a Swift array property.
-* Array property accessors don't work until its parent object has been added to a realm.
-* Realm-Bridging-Header.h is temporarily exposed as a public header. This is temporary and will be private again once rdar://17633863 is fixed.
-* Does not leverage Swift generics and still uses RLM-prefix everywhere. This is coming in #549.
-
-
-0.22.0 Release notes
-=============================================================
-
-### API breaking changes
-
-* Rename schemaForObject: to schemaForClassName: on RLMSchema
-* Removed -objects:where: and -objects:orderedBy:where: from RLMRealm
-* Removed -indexOfObjectWhere:, -objectsWhere: and -objectsOrderedBy:where: from RLMArray
-* Removed +objectsWhere: and +objectsOrderedBy:where: from RLMObject
-
-### Enhancements
-
-* New Xcode 6 project for experimental swift support.
-* New Realm Editor app for reading and editing Realm db files.
-* Added support for migrations.
-* Added support for RLMArray properties on objects.
-* Added support for creating in-memory default Realm.
-* Added -objectsWithClassName:predicateFormat: and -objectsWithClassName:predicate: to RLMRealm
-* Added -indexOfObjectWithPredicateFormat:, -indexOfObjectWithPredicate:, -objectsWithPredicateFormat:, -objectsWithPredi
-* Added +objectsWithPredicateFormat: and +objectsWithPredicate: to RLMObject
-* Now allows predicates comparing two object properties of the same type.
-
-
-0.20.0 Release notes (2014-05-28)
-=============================================================
-
-Completely rewritten to be much more object oriented.
-
-### API breaking changes
-
-* Everything
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* None.
-
-
-0.11.0 Release notes (not released)
-=============================================================
-
-The Objective-C API has been updated and your code will break!
-
-### API breaking changes
-
-* `RLMTable` objects can only be created with an `RLMRealm` object.
-* Renamed `RLMContext` to `RLMTransactionManager`
-* Renamed `RLMContextDidChangeNotification` to `RLMRealmDidChangeNotification`
-* Renamed `contextWithDefaultPersistence` to `managerForDefaultRealm`
-* Renamed `contextPersistedAtPath:` to `managerForRealmWithPath:`
-* Renamed `realmWithDefaultPersistence` to `defaultRealm`
-* Renamed `realmWithDefaultPersistenceAndInitBlock` to `defaultRealmWithInitBlock`
-* Renamed `find:` to `firstWhere:`
-* Renamed `where:` to `allWhere:`
-* Renamed `where:orderBy:` to `allWhere:orderBy:`
-
-### Enhancements
-
-* Added `countWhere:` on `RLMTable`
-* Added `sumOfColumn:where:` on `RLMTable`
-* Added `averageOfColumn:where:` on `RLMTable`
-* Added `minOfProperty:where:` on `RLMTable`
-* Added `maxOfProperty:where:` on `RLMTable`
-* Added `toJSONString` on `RLMRealm`, `RLMTable` and `RLMView`
-* Added support for `NOT` operator in predicates
-* Added support for default values
-* Added validation support in `createInRealm:withObject:`
-
-### Bugfixes
-
-* None.
-
-
-0.10.0 Release notes (2014-04-23)
-=============================================================
-
-TightDB is now Realm! The Objective-C API has been updated
-and your code will break!
-
-### API breaking changes
-
-* All references to TightDB have been changed to Realm.
-* All prefixes changed from `TDB` to `RLM`.
-* `TDBTransaction` and `TDBSmartContext` have merged into `RLMRealm`.
-* Write transactions now take an optional rollback parameter (rather than needing to return a boolean).
-* `addColumnWithName:` and variant methods now return the index of the newly created column if successful, `NSNotFound` otherwise.
-
-### Enhancements
-
-* `createTableWithName:columns:` has been added to `RLMRealm`.
-* Added keyed subscripting for RLMTable's first column if column is of type RLMPropertyTypeString.
-* `setRow:atIndex:` has been added to `RLMTable`.
-* `RLMRealm` constructors now have variants that take an writable initialization block
-* New object interface - tables created/retrieved using `tableWithName:objectClass:` return custom objects
-
-### Bugfixes
-
-* None.
-
-
-0.6.0 Release notes (2014-04-11)
-=============================================================
-
-### API breaking changes
-
-* `contextWithPersistenceToFile:error:` renamed to `contextPersistedAtPath:error:` in `TDBContext`
-* `readWithBlock:` renamed to `readUsingBlock:` in `TDBContext`
-* `writeWithBlock:error:` renamed to `writeUsingBlock:error:` in `TDBContext`
-* `readTable:withBlock:` renamed to `readTable:usingBlock:` in `TDBContext`
-* `writeTable:withBlock:error:` renamed to `writeTable:usingBlock:error:` in `TDBContext`
-* `findFirstRow` renamed to `indexOfFirstMatchingRow` on `TDBQuery`.
-* `findFirstRowFromIndex:` renamed to `indexOfFirstMatchingRowFromIndex:` on `TDBQuery`.
-* Return `NSNotFound` instead of -1 when appropriate.
-* Renamed `castClass` to `castToTytpedTableClass` on `TDBTable`.
-* `removeAllRows`, `removeRowAtIndex`, `removeLastRow`, `addRow` and `insertRow` methods
- on table now return void instead of BOOL.
-
-### Enhancements
-* A `TDBTable` can now be queried using `where:` and `where:orderBy:` taking
- `NSPredicate` and `NSSortDescriptor` as arguments.
-* Added `find:` method on `TDBTable` to find first row matching predicate.
-* `contextWithDefaultPersistence` class method added to `TDBContext`. Will create a context persisted
- to a file in app/documents folder.
-* `renameColumnWithIndex:to:` has been added to `TDBTable`.
-* `distinctValuesInColumnWithIndex` has been added to `TDBTable`.
-* `dateIsBetween::`, `doubleIsBetween::`, `floatIsBetween::` and `intIsBetween::`
- have been added to `TDBQuery`.
-* Column names in Typed Tables can begin with non-capital letters too. The generated `addX`
- selector can look odd. For example, a table with one column with name `age`,
- appending a new row will look like `[table addage:7]`.
-* Mixed typed values are better validated when rows are added, inserted,
- or modified as object literals.
-* `addRow`, `insertRow`, and row updates can be done using objects
- derived from `NSObject`.
-* `where` has been added to `TDBView`and `TDBViewProtocol`.
-* Adding support for "smart" contexts (`TDBSmartContext`).
-
-### Bugfixes
-
-* Modifications of a `TDBView` and `TDBQuery` now throw an exception in a readtransaction.
-
-
-0.5.0 Release notes (2014-04-02)
-=============================================================
-
-The Objective-C API has been updated and your code will break!
-Of notable changes a fast interface has been added.
-This interface includes specific methods to get and set values into Tightdb.
-To use these methods import ``.
-
-### API breaking changes
-
-* `getTableWithName:` renamed to `tableWithName:` in `TDBTransaction`.
-* `addColumnWithName:andType:` renamed to `addColumnWithName:type:` in `TDBTable`.
-* `columnTypeOfColumn:` renamed to `columnTypeOfColumnWithIndex` in `TDBTable`.
-* `columnNameOfColumn:` renamed to `nameOfColumnWithIndex:` in `TDBTable`.
-* `addColumnWithName:andType:` renamed to `addColumnWithName:type:` in `TDBDescriptor`.
-* Fast getters and setters moved from `TDBRow.h` to `TDBRowFast.h`.
-
-### Enhancements
-
-* Added `minDateInColumnWithIndex` and `maxDateInColumnWithIndex` to `TDBQuery`.
-* Transactions can now be started directly on named tables.
-* You can create dynamic tables with initial schema.
-* `TDBTable` and `TDBView` now have a shared protocol so they can easier be used interchangeably.
-
-### Bugfixes
-
-* Fixed bug in 64 bit iOS when inserting BOOL as NSNumber.
-
-
-0.4.0 Release notes (2014-03-26)
-=============================================================
-
-### API breaking changes
-
-* Typed interface Cursor has now been renamed to Row.
-* TDBGroup has been renamed to TDBTransaction.
-* Header files are renamed so names match class names.
-* Underscore (_) removed from generated typed table classes.
-* TDBBinary has been removed; use NSData instead.
-* Underscope (_) removed from generated typed table classes.
-* Constructor for TDBContext has been renamed to contextWithPersistenceToFile:
-* Table findFirstRow and min/max/sum/avg operations has been hidden.
-* Table.appendRow has been renamed to addRow.
-* getOrCreateTable on Transaction has been removed.
-* set*:inColumnWithIndex:atRowIndex: methods have been prefixed with TDB
-* *:inColumnWithIndex:atRowIndex: methods have been prefixed with TDB
-* addEmptyRow on table has been removed. Use [table addRow:nil] instead.
-* TDBMixed removed. Use id and NSObject instead.
-* insertEmptyRow has been removed from table. Use insertRow:nil atIndex:index instead.
-
-#### Enhancements
-
-* Added firstRow, lastRow selectors on view.
-* firstRow and lastRow on table now return nil if table is empty.
-* getTableWithName selector added on group.
-* getting and creating table methods on group no longer take error argument.
-* [TDBQuery parent] and [TDBQuery subtable:] selectors now return self.
-* createTable method added on Transaction. Throws exception if table with same name already exists.
-* Experimental support for pinning transactions on Context.
-* TDBView now has support for object subscripting.
-
-### Bugfixes
-
-* None.
-
-
-0.3.0 Release notes (2014-03-14)
-=============================================================
-
-The Objective-C API has been updated and your code will break!
-
-### API breaking changes
-
-* Most selectors have been renamed in the binding!
-* Prepend TDB-prefix on all classes and types.
-
-### Enhancements
-
-* Return types and parameters changed from size_t to NSUInteger.
-* Adding setObject to TightdbTable (t[2] = @[@1, @"Hello"] is possible).
-* Adding insertRow to TightdbTable.
-* Extending appendRow to accept NSDictionary.
-
-### Bugfixes
-
-* None.
-
-
-0.2.0 Release notes (2014-03-07)
-=============================================================
-
-The Objective-C API has been updated and your code will break!
-
-### API breaking changes
-
-* addRow renamed to addEmptyRow
-
-### Enhancements
-
-* Adding a simple class for version numbering.
-* Adding get-version and set-version targets to build.sh.
-* tableview now supports sort on column with column type bool, date and int
-* tableview has method for checking the column type of a specified column
-* tableview has method for getting the number of columns
-* Adding methods getVersion, getCoreVersion and isAtLeast.
-* Adding appendRow to TightdbTable.
-* Adding object subscripting.
-* Adding method removeColumn on table.
-
-### Bugfixes
-
-* None.
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/Info.plist b/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/Info.plist
deleted file mode 100644
index d67de1a..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/Info.plist
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
- BuildMachineOSBuild
- 15E65
- CFBundleDevelopmentRegion
- English
- CFBundleExecutable
- Realm
- CFBundleIdentifier
- io.Realm.Realm
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- Realm
- CFBundlePackageType
- FMWK
- CFBundleShortVersionString
- 0.98.6
- CFBundleSignature
- ????
- CFBundleSupportedPlatforms
-
- MacOSX
-
- CFBundleVersion
- 0.98.6
- DTCompiler
- com.apple.compilers.llvm.clang.1_0
- DTPlatformBuild
- 7D175
- DTPlatformVersion
- GM
- DTSDKBuild
- 15E60
- DTSDKName
- macosx10.11
- DTXcode
- 0730
- DTXcodeBuild
- 7D175
- NSHumanReadableCopyright
- Copyright © 2014 Realm. All rights reserved.
- UIDeviceFamily
-
- 3
- 2
- 1
- 4
-
-
-
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/LICENSE b/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/LICENSE
deleted file mode 100644
index a194346..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/LICENSE
+++ /dev/null
@@ -1,269 +0,0 @@
-TABLE OF CONTENTS
-
-1. Apache License version 2.0
-2. Realm Components
-3. Export Compliance
-
--------------------------------------------------------------------------------
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "{}"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright {yyyy} {name of copyright owner}
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
-
-REALM COMPONENTS
-
-This software contains components with separate copyright and license terms.
-Your use of these components is subject to the terms and conditions of the
-following licenses.
-
-For the Realm Core component
-
- Realm Core Binary License
-
- Copyright (c) 2011-2014 Realm Inc All rights reserved
-
- Redistribution and use in binary form, with or without modification, is
- permitted provided that the following conditions are met:
-
- 1. You agree not to attempt to decompile, disassemble, reverse engineer or
- otherwise discover the source code from which the binary code was derived.
- You may, however, access and obtain a separate license for most of the
- source code from which this Software was created, at
- http://realm.io/pricing/.
-
- 2. Redistributions in binary form must reproduce the above copyright notice,
- this list of conditions and the following disclaimer in the documentation
- and/or other materials provided with the distribution.
-
- 3. Neither the name of the copyright holder nor the names of its
- contributors may be used to endorse or promote products derived from this
- software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- POSSIBILITY OF SUCH DAMAGE.
-
-EXPORT COMPLIANCE
-
-You understand that the Software may contain cryptographic functions that may be
-subject to export restrictions, and you represent and warrant that you are not
-located in a country that is subject to United States export restriction or embargo,
-including Cuba, Iran, North Korea, Sudan, Syria or the Crimea region, and that you
-are not on the Department of Commerce list of Denied Persons, Unverified Parties,
-or affiliated with a Restricted Entity.
-
-You agree to comply with all export, re-export and import restrictions and
-regulations of the Department of Commerce or other agency or authority of the
-United States or other applicable countries. You also agree not to transfer, or
-authorize the transfer of, directly or indirectly, the Software to any prohibited
-country, including Cuba, Iran, North Korea, Sudan, Syria or the Crimea region,
-or to any person or organization on or affiliated with the Department of
-Commerce lists of Denied Persons, Unverified Parties or Restricted Entities, or
-otherwise in violation of any such restrictions or regulations.
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/strip-frameworks.sh b/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/strip-frameworks.sh
deleted file mode 100644
index 80814ab..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/strip-frameworks.sh
+++ /dev/null
@@ -1,72 +0,0 @@
-################################################################################
-#
-# Copyright 2015 Realm Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-################################################################################
-
-# This script strips all non-valid architectures from dynamic libraries in
-# the application's `Frameworks` directory.
-#
-# The following environment variables are required:
-#
-# BUILT_PRODUCTS_DIR
-# FRAMEWORKS_FOLDER_PATH
-# VALID_ARCHS
-# EXPANDED_CODE_SIGN_IDENTITY
-
-
-# Signs a framework with the provided identity
-code_sign() {
- # Use the current code_sign_identitiy
- echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
- echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1"
- /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1"
-}
-
-# Set working directory to product’s embedded frameworks
-cd "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}"
-
-if [ "$ACTION" = "install" ]; then
- echo "Copy .bcsymbolmap files to .xcarchive"
- find . -name '*.bcsymbolmap' -type f -exec mv {} "${CONFIGURATION_BUILD_DIR}" \;
-else
- # Delete *.bcsymbolmap files from framework bundle unless archiving
- find . -name '*.bcsymbolmap' -type f -exec rm -rf "{}" +\;
-fi
-
-echo "Stripping frameworks"
-
-for file in $(find . -type f -perm +111); do
- # Skip non-dynamic libraries
- if ! [[ "$(file "$file")" == *"dynamically linked shared library"* ]]; then
- continue
- fi
- # Get architectures for current file
- archs="$(lipo -info "${file}" | rev | cut -d ':' -f1 | rev)"
- stripped=""
- for arch in $archs; do
- if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then
- # Strip non-valid architectures in-place
- lipo -remove "$arch" -output "$file" "$file" || exit 1
- stripped="$stripped $arch"
- fi
- done
- if [[ "$stripped" != "" ]]; then
- echo "Stripped $file of architectures:$stripped"
- if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then
- code_sign "${file}"
- fi
- fi
-done
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/Current b/Carthage/Build/Mac/Realm.framework/Versions/Current
deleted file mode 120000
index 8c7e5a6..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/Current
+++ /dev/null
@@ -1 +0,0 @@
-A
\ No newline at end of file
diff --git a/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Info.plist b/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Info.plist
deleted file mode 100644
index fa8327b..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleIdentifier
- com.apple.xcode.dsym.io.realm.RealmSwit
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- dSYM
- CFBundleSignature
- ????
- CFBundleShortVersionString
- 0.98.6
- CFBundleVersion
- 0.98.6
-
-
diff --git a/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift b/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift
deleted file mode 100644
index 5a32668..0000000
Binary files a/Carthage/Build/Mac/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift and /dev/null differ
diff --git a/Carthage/Build/Mac/RealmSwift.framework/Headers b/Carthage/Build/Mac/RealmSwift.framework/Headers
deleted file mode 120000
index a177d2a..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/Headers
+++ /dev/null
@@ -1 +0,0 @@
-Versions/Current/Headers
\ No newline at end of file
diff --git a/Carthage/Build/Mac/RealmSwift.framework/Modules b/Carthage/Build/Mac/RealmSwift.framework/Modules
deleted file mode 120000
index 5736f31..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/Modules
+++ /dev/null
@@ -1 +0,0 @@
-Versions/Current/Modules
\ No newline at end of file
diff --git a/Carthage/Build/Mac/RealmSwift.framework/RealmSwift b/Carthage/Build/Mac/RealmSwift.framework/RealmSwift
deleted file mode 120000
index d2aa146..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/RealmSwift
+++ /dev/null
@@ -1 +0,0 @@
-Versions/Current/RealmSwift
\ No newline at end of file
diff --git a/Carthage/Build/Mac/RealmSwift.framework/Resources b/Carthage/Build/Mac/RealmSwift.framework/Resources
deleted file mode 120000
index 953ee36..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/Resources
+++ /dev/null
@@ -1 +0,0 @@
-Versions/Current/Resources
\ No newline at end of file
diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Headers/RealmSwift-Swift.h b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Headers/RealmSwift-Swift.h
deleted file mode 100644
index a478e34..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Headers/RealmSwift-Swift.h
+++ /dev/null
@@ -1,317 +0,0 @@
-// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29)
-#pragma clang diagnostic push
-
-#if defined(__has_include) && __has_include()
-# include
-#endif
-
-#pragma clang diagnostic ignored "-Wauto-import"
-#include
-#include
-#include
-#include
-
-#if !defined(SWIFT_TYPEDEFS)
-# define SWIFT_TYPEDEFS 1
-# if defined(__has_include) && __has_include()
-# include
-# elif !defined(__cplusplus) || __cplusplus < 201103L
-typedef uint_least16_t char16_t;
-typedef uint_least32_t char32_t;
-# endif
-typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
-typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
-typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
-typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
-typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
-typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
-typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
-typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
-typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
-#endif
-
-#if !defined(SWIFT_PASTE)
-# define SWIFT_PASTE_HELPER(x, y) x##y
-# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
-#endif
-#if !defined(SWIFT_METATYPE)
-# define SWIFT_METATYPE(X) Class
-#endif
-
-#if defined(__has_attribute) && __has_attribute(objc_runtime_name)
-# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
-#else
-# define SWIFT_RUNTIME_NAME(X)
-#endif
-#if defined(__has_attribute) && __has_attribute(swift_name)
-# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
-#else
-# define SWIFT_COMPILE_NAME(X)
-#endif
-#if !defined(SWIFT_CLASS_EXTRA)
-# define SWIFT_CLASS_EXTRA
-#endif
-#if !defined(SWIFT_PROTOCOL_EXTRA)
-# define SWIFT_PROTOCOL_EXTRA
-#endif
-#if !defined(SWIFT_ENUM_EXTRA)
-# define SWIFT_ENUM_EXTRA
-#endif
-#if !defined(SWIFT_CLASS)
-# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted)
-# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
-# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
-# else
-# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
-# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
-# endif
-#endif
-
-#if !defined(SWIFT_PROTOCOL)
-# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
-# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
-#endif
-
-#if !defined(SWIFT_EXTENSION)
-# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
-#endif
-
-#if !defined(OBJC_DESIGNATED_INITIALIZER)
-# if defined(__has_attribute) && __has_attribute(objc_designated_initializer)
-# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
-# else
-# define OBJC_DESIGNATED_INITIALIZER
-# endif
-#endif
-#if !defined(SWIFT_ENUM)
-# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type
-# if defined(__has_feature) && __has_feature(generalized_swift_name)
-# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type
-# else
-# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name)
-# endif
-#endif
-#if defined(__has_feature) && __has_feature(modules)
-@import Realm;
-@import Realm.Private;
-@import Foundation;
-@import ObjectiveC;
-#endif
-
-#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
-#pragma clang diagnostic ignored "-Wduplicate-method-arg"
-@class RLMRealm;
-@class RLMObjectSchema;
-@class RLMSchema;
-@class RLMProperty;
-@class RLMListBase;
-@class RLMOptionalBase;
-
-
-/// In Realm you define your model classes by subclassing Object and adding properties to be persisted. You then instantiate and use your custom subclasses instead of using the Object class directly.
-///
-/// class Dog: Object {
-/// dynamic var name: String = ""
-/// dynamic var adopted: Bool = false
-/// let siblings = List()
-/// }
-///
-///
-/// Supported property types
-/// String
-///
, NSString
-///
Int
-///
Int8
-///
, Int16
-///
, Int32
-///
, Int64
-///
Float
-///
Double
-///
Bool
-///
NSDate
-///
NSData
-///
RealmOptional
-///
for optional numeric propertiesObject
-///
subclasses for to-one relationshipsList
-///
for to-many relationships
-/// String
-///
, NSString
-///
, NSDate
-///
, NSData
-///
and Object
-///
subclass properties can be
-/// optional. Int
-///
, Int8
-///
, Int16, Int32
-///
, Int64
-///
, Float
-///
, Double
-///
, Bool
-///
-/// and List
-///
properties cannot. To store an optional number, instead use
-/// RealmOptional
-///
, RealmOptional
-///
, RealmOptional
-///
, or
-/// RealmOptional
-///
instead, which wraps an optional value of the generic type.
-///
-/// All property types except for List
-///
and RealmOptional
-///
must be declared as
-/// dynamic var
-///
. List
-///
and RealmOptional
-///
properties must be declared as
-/// non-dynamic let
-///
properties.
-///
-/// Querying
-/// You can gets Results
-///
of an Object subclass via the objects(_:)
-///
instance
-/// method on Realm
-///
.
-///
-/// Relationships
-/// See our Cocoa guide for more details.
-SWIFT_CLASS_NAMED("Object")
-@interface RealmSwiftObject : RLMObjectBase
-
-/// Initialize a standalone (unpersisted) Object. Call add(_:) on a Realm to add standalone objects to a realm.
-///
-///
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-
-/// Initialize a standalone (unpersisted) Object with values from an Array or Dictionary. Call add(_:) on a Realm to add standalone objects to a realm.
-///
-/// \param value The value used to populate the object. This can be any key/value coding compliant
-/// object, or a JSON object such as those returned from the methods in NSJSONSerialization
-///
,
-/// or an Array
-///
with one object for each persisted property. An exception will be
-/// thrown if any required properties are not present and no default is set.
-- (nonnull instancetype)initWithValue:(id _Nonnull)value OBJC_DESIGNATED_INITIALIZER;
-
-/// Indicates if an object can no longer be accessed.
-///
-/// An object can no longer be accessed if the object has been deleted from the containing
-/// realm
-///
or if invalidate
-///
is called on the containing realm
-///
.
-@property (nonatomic, readonly, getter=isInvalidated) BOOL invalidated;
-
-/// Returns a human-readable description of this object.
-@property (nonatomic, readonly, copy) NSString * _Nonnull description;
-
-/// Helper to return the class name for an Object subclass.
-@property (nonatomic, readonly, copy) NSString * _Nonnull className;
-
-/// WARNING: This is an internal helper method not intended for public use. :nodoc:
-+ (Class _Nonnull)objectUtilClass:(BOOL)isSwift;
-
-/// Override to designate a property as the primary key for an Object subclass. Only properties of type String and Int can be designated as the primary key. Primary key properties enforce uniqueness for each value whenever the property is set which incurs some overhead. Indexes are created automatically for primary key properties.
-///
-/// \returns Name of the property designated as the primary key, or nil
-///
if the model has no primary key.
-+ (NSString * _Nullable)primaryKey;
-
-/// Override to return an array of property names to ignore. These properties will not be persisted and are treated as transient.
-///
-/// \returns Array
-///
of property names to ignore.
-+ (NSArray * _Nonnull)ignoredProperties;
-
-/// Return an array of property names for properties which should be indexed. Only supported for string and int properties.
-///
-/// \returns Array
-///
of property names to index.
-+ (NSArray * _Nonnull)indexedProperties;
-- (id _Nullable)objectForKeyedSubscript:(NSString * _Nonnull)key;
-- (void)setObject:(id _Nullable)value forKeyedSubscript:(NSString * _Nonnull)key;
-
-/// Returns whether both objects are equal.
-///
-/// Objects are considered equal when they are both from the same Realm and point to the same
-/// underlying object in the database.
-///
-/// \param object Object to compare for equality.
-- (BOOL)isEqual:(id _Nullable)object;
-
-/// WARNING: This is an internal initializer not intended for public use. :nodoc:
-- (nonnull instancetype)initWithRealm:(RLMRealm * _Nonnull)realm schema:(RLMObjectSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER;
-
-/// WARNING: This is an internal initializer not intended for public use. :nodoc:
-- (nonnull instancetype)initWithValue:(id _Nonnull)value schema:(RLMSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER;
-- (RLMListBase * _Nonnull)listForProperty:(RLMProperty * _Nonnull)prop;
-- (RLMOptionalBase * _Nonnull)optionalForProperty:(RLMProperty * _Nonnull)prop;
-@end
-
-
-
-/// Object interface which allows untyped getters and setters for Objects. :nodoc:
-SWIFT_CLASS("_TtC10RealmSwift13DynamicObject")
-@interface DynamicObject : RealmSwiftObject
-- (RLMListBase * _Nonnull)listForProperty:(RLMProperty * _Nonnull)prop;
-- (RLMOptionalBase * _Nonnull)optionalForProperty:(RLMProperty * _Nonnull)prop;
-
-/// :nodoc:
-- (id _Nullable)valueForUndefinedKey:(NSString * _Nonnull)key;
-
-/// :nodoc:
-- (void)setValue:(id _Nullable)value forUndefinedKey:(NSString * _Nonnull)key;
-
-/// :nodoc:
-+ (BOOL)shouldIncludeInDefaultSchema;
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-- (nonnull instancetype)initWithValue:(id _Nonnull)value OBJC_DESIGNATED_INITIALIZER;
-- (nonnull instancetype)initWithRealm:(RLMRealm * _Nonnull)realm schema:(RLMObjectSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER;
-- (nonnull instancetype)initWithValue:(id _Nonnull)value schema:(RLMSchema * _Nonnull)schema OBJC_DESIGNATED_INITIALIZER;
-@end
-
-@class RLMArray;
-
-
-/// :nodoc: Internal class. Do not use directly.
-SWIFT_CLASS("_TtC10RealmSwift8ListBase")
-@interface ListBase : RLMListBase
-
-/// Returns a human-readable description of the objects contained in the List.
-@property (nonatomic, readonly, copy) NSString * _Nonnull description;
-
-/// Returns the number of objects in this List.
-@property (nonatomic, readonly) NSInteger count;
-- (null_unspecified instancetype)initWithArray:(RLMArray * _Null_unspecified)array OBJC_DESIGNATED_INITIALIZER;
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-@end
-
-
-@interface NSDate (SWIFT_EXTENSION(RealmSwift))
-@end
-
-
-
-
-/// :nodoc: Internal class. Do not use directly.
-SWIFT_CLASS_NAMED("ObjectUtil")
-@interface RealmSwiftObjectUtil : NSObject
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-@end
-
-@class RLMResults;
-
-
-/// :nodoc: Internal class. Do not use directly.
-SWIFT_CLASS("_TtC10RealmSwift11ResultsBase")
-@interface ResultsBase : NSObject
-@property (nonatomic, readonly, strong) RLMResults * _Nonnull rlmResults;
-
-/// Returns a human-readable description of the objects contained in these results.
-@property (nonatomic, readonly, copy) NSString * _Nonnull description;
-- (nonnull instancetype)init:(RLMResults * _Nonnull)rlmResults OBJC_DESIGNATED_INITIALIZER;
-- (NSInteger)countByEnumeratingWithState:(NSFastEnumerationState * _Null_unspecified)state objects:(id _Nullable * _Null_unspecified)buffer count:(NSInteger)len;
-@end
-
-#pragma clang diagnostic pop
diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc
deleted file mode 100644
index d7d6ea9..0000000
Binary files a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc and /dev/null differ
diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule
deleted file mode 100644
index 0767e0d..0000000
Binary files a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule and /dev/null differ
diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/module.modulemap b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/module.modulemap
deleted file mode 100644
index 293772c..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/module.modulemap
+++ /dev/null
@@ -1,3 +0,0 @@
-framework module RealmSwift {
- header "RealmSwift-Swift.h"
-}
diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/RealmSwift b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/RealmSwift
deleted file mode 100755
index 8b025f2..0000000
Binary files a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/RealmSwift and /dev/null differ
diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Resources/Info.plist b/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Resources/Info.plist
deleted file mode 100644
index fc59677..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Resources/Info.plist
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- BuildMachineOSBuild
- 15E65
- CFBundleDevelopmentRegion
- English
- CFBundleExecutable
- RealmSwift
- CFBundleIdentifier
- io.realm.RealmSwit
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- RealmSwift
- CFBundlePackageType
- FMWK
- CFBundleShortVersionString
- 0.98.6
- CFBundleSignature
- ????
- CFBundleSupportedPlatforms
-
- MacOSX
-
- CFBundleVersion
- 0.98.6
- DTCompiler
- com.apple.compilers.llvm.clang.1_0
- DTPlatformBuild
- 7D175
- DTPlatformVersion
- GM
- DTSDKBuild
- 15E60
- DTSDKName
- macosx10.11
- DTXcode
- 0730
- DTXcodeBuild
- 7D175
- NSHumanReadableCopyright
- Copyright © 2014 Realm. All rights reserved.
-
-
diff --git a/Carthage/Build/Mac/RealmSwift.framework/Versions/Current b/Carthage/Build/Mac/RealmSwift.framework/Versions/Current
deleted file mode 120000
index 8c7e5a6..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/Versions/Current
+++ /dev/null
@@ -1 +0,0 @@
-A
\ No newline at end of file
diff --git a/Carthage/Build/iOS/AD611D0C-4324-3354-AC55-66A897C4EB29.bcsymbolmap b/Carthage/Build/iOS/09280CE2-1276-346A-9DC2-4766069D38BC.bcsymbolmap
similarity index 73%
rename from Carthage/Build/iOS/AD611D0C-4324-3354-AC55-66A897C4EB29.bcsymbolmap
rename to Carthage/Build/iOS/09280CE2-1276-346A-9DC2-4766069D38BC.bcsymbolmap
index 463bc31..fe73ef0 100644
--- a/Carthage/Build/iOS/AD611D0C-4324-3354-AC55-66A897C4EB29.bcsymbolmap
+++ b/Carthage/Build/iOS/09280CE2-1276-346A-9DC2-4766069D38BC.bcsymbolmap
@@ -1,15 +1,8 @@
BCSymbolMap Version: 1.0
_TFs27_allocateUninitializedArrayurFBwTGSax_Bp_
_TFSaCft12arrayLiteralGSax__GSax_
-_TFEsPs30RangeReplaceableCollectionType15reserveCapacityfWx5Index8Distance_T_
-_TFEsPs30RangeReplaceableCollectionTypeCuRd__s12SequenceTypeWx9Generator7Element_zWd__9GeneratorS2__rfqd__x
-_TFEsPs30RangeReplaceableCollectionType16insertContentsOfuRd__s14CollectionTypeWx9Generator7Element_zWd__S1_S2__rfTqd__2atwx5Index_T_
-_TFEsPs30RangeReplaceableCollectionType13removeAtIndexfwx5IndexWx9Generator7Element_
-_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfT_GSqWx9Generator7Element__
-_TFEsPs30RangeReplaceableCollectionType11removeFirstfT_Wx9Generator7Element_
-_TFEsPs30RangeReplaceableCollectionType11removeFirstfSiT_
-_TFEsPs30RangeReplaceableCollectionType11removeRangefGVs5Rangewx5Index_T_
-_TFEsPs30RangeReplaceableCollectionType9removeAllfT12keepCapacitySb_T_
+objectdestroy
+_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_14LinkingObjectsx___dT__XFo_oGS1_GS2_x___dT__
_TFesRxs14CollectionTypewx11SubSequencezGVs5Slicex_wx5IndexzWxS0_S2__wx8_ElementzWxS0_9Generator7Element_WxS0_S3__zWxS0_S4_S5__WxS0_S4__zGVs17IndexingGeneratorGS1_x__WxS0_11SubSequence_zGS1_x_rS_g9subscriptFGVs5RangewxS2__GS1_x_
_TFEsPs14CollectionType10prefixUpTofwx5Indexwx11SubSequence
_TFEsPs14CollectionType10suffixFromfwx5Indexwx11SubSequence
@@ -29,13 +22,22 @@ _TFEsPs12SequenceType31_customContainsEquatableElementfWx9Generator7Element_GSqS
_TFEsPs14CollectionType18_preprocessingPassurfFxqd__GSqqd___
_TFEsPs14CollectionType24_copyToNativeArrayBufferfT_GVs22_ContiguousArrayBufferWx9Generator7Element__
_TFEsPs12SequenceType13_initializeTofGSpWx9Generator7Element__GSpWxS0_S1___
+_TFEsPs30RangeReplaceableCollectionType15reserveCapacityfWx5Index8Distance_T_
+_TFEsPs30RangeReplaceableCollectionTypeCuRd__s12SequenceTypeWx9Generator7Element_zWd__9GeneratorS2__rfqd__x
+_TFEsPs30RangeReplaceableCollectionType16insertContentsOfuRd__s14CollectionTypeWx9Generator7Element_zWd__S1_S2__rfTqd__2atwx5Index_T_
+_TFEsPs30RangeReplaceableCollectionType13removeAtIndexfwx5IndexWx9Generator7Element_
+_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfT_GSqWx9Generator7Element__
+_TFEsPs30RangeReplaceableCollectionType11removeFirstfT_Wx9Generator7Element_
+_TFEsPs30RangeReplaceableCollectionType11removeFirstfSiT_
+_TFEsPs30RangeReplaceableCollectionType11removeRangefGVs5Rangewx5Index_T_
+_TFEsPs30RangeReplaceableCollectionType9removeAllfT12keepCapacitySb_T_
_TFVC10RealmSwift5Realm13Configurationg16rlmConfigurationCSo21RLMRealmConfiguration
_TFEsPs14CollectionTypeg5firstGSqWx9Generator7Element__
_TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__
-objectdestroy
+objectdestroy.3
_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__
_TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_
-objectdestroy.1
+objectdestroy.5
_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_
_TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__
_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__
@@ -93,22 +95,18 @@ _TTWVSC17NSMatchingOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawVal
_TTWVSC17NSMatchingOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x
_TTSf4gs_gs___TZFsoi2eeFTSSSS_Sb
_TFVs20ManagedBufferPointerlu5valuex
-_TFSaCfGVs12_ArrayBufferx_GSax_
-_TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_
_TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_
-_TFSaCuRd__s12SequenceTypexzWd__9Generator7Element_rfqd__GSax_
-_TFSag5countSi
_TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_
+_TFSag5countSi
_TFSp10initializefxT_
-_TFVs22_ContiguousArrayBufferCfT_GS_x_
-_TFVs22_ContiguousArrayBufferg5countSi
-_TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb
-_TFVs22_ContiguousArrayBuffers5countSi
+_TFSaCuRd__s12SequenceTypexzWd__9Generator7Element_rfqd__GSax_
_TFVs15ContiguousArrayCfT_GS_x_
_TFVs15ContiguousArray6appendfxT_
_TFSa6appendfxT_
_TFs11numericCastu0_Rxs18_SignedIntegerType_S_rFxq_
_TFVs15ContiguousArray15reserveCapacityfSiT_
+_TFVs22_ContiguousArrayBufferCfT_GS_x_
+_TFVs22_ContiguousArrayBufferg5countSi
_TFEsPs14CollectionTypeg7indicesGVs5Rangewx5Index_
_TFVs12_ArrayBufferg8capacitySi
_TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_
@@ -150,43 +148,51 @@ _TTSf4n_n_d___TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TZ
_TTSf4n_n_d___TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element8subsumeswxS0__Sb
_TTSf4n_n_d___TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb
_TTSf4n_n_d___TTSg5VSC26NSRegularExpressionOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb
-objectdestroy.14
+objectdestroy.13
_swift_dead_method_stub
-_TPA__TTRXFdCb_dCSo12RLMMigrationdVs6UInt64_dT__XFo_oS_dS0__dT__.7
_TWturGVs15ContiguousArrayx_s12SequenceTypes11SubSequence
_TWturGSax_s14CollectionTypes11SubSequence
_TTWVSC17NSMatchingOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_
_TTWVSC26NSRegularExpressionOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_
-objectdestroy.3
-objectdestroy.5
-objectdestroy.8
-objectdestroy.11
+objectdestroy.7
+_TWturGVs22_ContiguousArrayBufferx_s9Indexables8_Element
_TWturGVs12AnyGeneratorx_s13GeneratorTypes7Element
_TWturGVs12_ArrayBufferx_s16_ArrayBufferTypes7Element
_TWturGVs12_ArrayBufferx_s9Indexables8_Element
_TWturGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypes7Element
-_TWturGVs22_ContiguousArrayBufferx_s9Indexables8_Element
_TTWVSC26NSRegularExpressionOptionss9Equatable10FoundationZFS0_oi2eefTxx_Sb
_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_g7isEmptySb
-_TPA__TTRXFo_oC10RealmSwift9MigrationdVs6UInt64_dT__XFo_iT9migrationS0_16oldSchemaVersionS1___iT__.13
+objectdestroy.1
+objectdestroy.9
+objectdestroy.11
_TTWVSC26NSRegularExpressionOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawValue
_TWTurGVs15ContiguousArrayx_s12SequenceTypes9GeneratorPs13GeneratorType_
_TWTurGSax_s14CollectionTypes9GeneratorPs13GeneratorType_
_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes9GeneratorPs13GeneratorType_
_TTWVSC26NSRegularExpressionOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x
-_TPA__TFFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_U_FTS5_S4__T_.10
+_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_4Listx___dT__XFo_oGS1_GS2_x___dT__
+_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx___dT__XFo_oGS1_GS2_x___dT__
+_TPA__TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_7Resultsx___dT__XFo_oGS1_GS2_x___dT__
_TWturGSax_s14CollectionTypes9Generator
_TTWVSC17NSMatchingOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb
_TTWVSC26NSRegularExpressionOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb
globalinit_33_47969F13D2F39044D14973F482FBAD86_token0
+metadata
L_selector_data(_rlmArray)
L_selector(_rlmArray)
L_selector_data(count)
L_selector(count)
+metadata.2
L_selector_data(defaultConfiguration)
L_selector(defaultConfiguration)
+L_selector_data(allocWithZone:)
+L_selector(allocWithZone:)
+L_selector_data(initFileURLWithPath:isDirectory:)
+L_selector(initFileURLWithPath:isDirectory:)
L_selector_data(path)
L_selector(path)
+L_selector_data(fileURL)
+L_selector(fileURL)
L_selector_data(inMemoryIdentifier)
L_selector(inMemoryIdentifier)
L_selector_data(encryptionKey)
@@ -197,9 +203,11 @@ globalinit_33_47969F13D2F39044D14973F482FBAD86_token0
L_selector(schemaVersion)
L_selector_data(migrationBlock)
L_selector(migrationBlock)
-metadata
-metadata.2
metadata.4
+metadata.6
+metadata.8
+L_selector_data(deleteRealmIfMigrationNeeded)
+L_selector(deleteRealmIfMigrationNeeded)
L_selector_data(customSchema)
L_selector(customSchema)
L_selector_data(disableFormatUpgrade)
@@ -211,8 +219,7 @@ _TMLCSo12NSDictionary
L_selector(isEqualToObjectSchema:)
L_selector_data(isEqualToProperty:)
L_selector(isEqualToProperty:)
-metadata.6
-metadata.9
+metadata.10
metadata.12
L_selector_data(isEqualToSchema:)
L_selector(isEqualToSchema:)
@@ -251,13 +258,13 @@ field_type_vector_NSRegularExpressionOptions
field_type_vector_NSMatchingOptions
_TMLGCs23_ContiguousArrayStorageVSC26NSRegularExpressionOptions_
_TMLGCs23_ContiguousArrayStorageVSC17NSMatchingOptions_
-metadata.15
+metadata.14
switch.table
-Apple LLVM version 7.3.0 (clang-703.0.29)
--emit-bc /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Aliases.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Error.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/List.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Migration.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Object.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/ObjectSchema.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Optional.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Property.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Realm.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmCollectionType.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmConfiguration.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Results.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Schema.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SortDescriptor.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SwiftVersion.swift /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Util.swift -target armv7-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode-7.3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk -I /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-iphoneos -F /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-iphoneos -application-extension -g -module-cache-path /Users/realm/Library/Developer/Xcode/DerivedData/ModuleCache -serialize-debugging-options -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-generated-files.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-own-target-headers.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-project-headers.hmap -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Products/Release-iphoneos/include -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources/armv7 -Xcc -I/Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources -Xcc -DREALM_HAVE_CONFIG -Xcc -D__ASSERTMACROS__ -Xcc -working-directory/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release -emit-module-doc-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift.swiftdoc -O -module-name RealmSwift -emit-module-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift.swiftmodule -emit-objc-header-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift-Swift.h -serialize-diagnostics-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.dia -emit-dependencies-path /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.d -num-threads 4 -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Error.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/List.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Migration.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Object.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/ObjectSchema.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Optional.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Property.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Realm.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmCollectionType.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmConfiguration.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Results.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Schema.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/SortDescriptor.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/SwiftVersion.bc -o /Users/realm/Library/Developer/Xcode/DerivedData/RealmExamples-hexyjsiebkllhjbpuxqzzjzmsosj/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Util.bc -resource-dir /Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift
+Apple LLVM version 7.3.0 (clang-703.0.31)
+-emit-bc /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Aliases.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Error.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/LinkingObjects.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/List.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Migration.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Object.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/ObjectSchema.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Optional.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Property.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Realm.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmCollectionType.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmConfiguration.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Results.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Schema.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SortDescriptor.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SwiftVersion.swift /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Util.swift -target armv7-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk -I /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Products/Release-iphoneos -F /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Products/Release-iphoneos -application-extension -g -module-cache-path /Users/polquintana/Library/Developer/Xcode/DerivedData/ModuleCache -serialize-debugging-options -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-generated-files.hmap -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-own-target-headers.hmap -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/RealmSwift-project-headers.hmap -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Products/Release-iphoneos/include -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources/armv7 -Xcc -I/Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/DerivedSources -Xcc -DREALM_HAVE_CONFIG -Xcc -D__ASSERTMACROS__ -Xcc -working-directory/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa -emit-module-doc-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift.swiftdoc -O -module-name RealmSwift -emit-module-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift.swiftmodule -emit-objc-header-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmSwift-Swift.h -serialize-diagnostics-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.dia -emit-dependencies-path /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.d -num-threads 4 -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Aliases.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Error.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/LinkingObjects.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/List.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Migration.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Object.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/ObjectSchema.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Optional.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Property.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Realm.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmCollectionType.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/RealmConfiguration.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Results.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Schema.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/SortDescriptor.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/SwiftVersion.bc -o /Users/polquintana/Library/Developer/Xcode/DerivedData/RealmExamples-hcpzwxutrrmrknccugoektjjuplu/Build/Intermediates/Realm.build/Release-iphoneos/RealmSwift.build/Objects-normal/armv7/Util.bc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift
$NSDecimal$_exponent$getter
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa
$NSDecimal$_exponent$setter
$NSDecimal$_length$getter
$NSDecimal$_length$setter
@@ -267,15 +274,13 @@ $NSDecimal$_isCompact$getter
$NSDecimal$_isCompact$setter
$NSDecimal$_reserved$getter
$NSDecimal$_reserved$setter
-Apple Swift version 2.2 (swiftlang-703.0.18.1 clang-703.0.29)
+Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)
+_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_14LinkingObjectsx___dT__XFo_oGS1_GS2_x___dT__
Aliases.swift
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift
-_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfSiSb
-_TFVs15EmptyCollectionCfT_GS_x_
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift
+_TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb
_TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__
_TFVs15ContiguousArrayg5countSi
-_TFSp14initializeFromfTGSpx_5countSi_T_
-_TFVs22_ContiguousArrayBufferg5ownerPs9AnyObject_
_TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_
_TFVs22_ContiguousArrayBufferg10startIndexSi
_TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb
@@ -305,12 +310,18 @@ _TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5I
_TFVs14_IgnorePointerCfT_GS_x_
_TFSa16_copyToNewBufferfSiT_
_TFSa36_reserveCapacityAssumingUniqueBufferfSiT_
+_TFVs22_ContiguousArrayBuffers5countSi
_TFVs12_ArrayBuffers5countSi
_TFVs12_ArrayBufferg19firstElementAddressGSpx_
_TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_
_TFEsPs14_Incrementable17_successorInPlacefT_T_
_TFs10_expectEnduRxs14CollectionTyperFTwx5Indexx_T_
_TFs34_copyCollectionToNativeArrayBufferuRxs14CollectionTyperFxGVs22_ContiguousArrayBufferWx9Generator7Element__
+_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_4Listx___dT__XFo_oGS1_GS2_x___dT__
+_TFEsPs30RangeReplaceableCollectionType17_customRemoveLastfSiSb
+_TFVs15EmptyCollectionCfT_GS_x_
+_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx___dT__XFo_oGS1_GS2_x___dT__
+_TTRGRxC10RealmSwift6ObjectrXFo_iGOS_21RealmCollectionChangeGCS_7Resultsx___dT__XFo_oGS1_GS2_x___dT__
init
_TTSg5VSC17NSMatchingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeCft12arrayLiteralGSawx7Element__x
==
@@ -425,6 +436,7 @@ prefixThrough
suffixFrom
prefixUpTo
_addNotificationBlock
+addNotificationBlock
setValue
valueForKeyPath
valueForKey
@@ -434,22 +446,24 @@ max
min
sorted
indexOf
+invalidated.get
realm.get
_TIFC10RealmSwift7Results6sortedFTSS9ascendingSb_GS0_x_A0_
Results.swift
objectTypes.materialize
inMemoryIdentifier.materialize
-path.materialize
-_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A5_
-_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A3_
-_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A2_
-_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A1_
+fileURL.materialize
+_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A6_
+_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A5_
+_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A3_
+_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A2_
+_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A1_
defaultConfiguration.materialize
next
hashValue.get
_TTWSSs9EquatablesZFS_oi2eefTxx_Sb
_TTSg5O10RealmSwift12NotificationS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb
-_TIFC10RealmSwift5Realm15writeCopyToPathFzTSS13encryptionKeyGSqCSo6NSData__T_A0_
+_TIFC10RealmSwift5Realm14writeCopyToURLFzTCSo5NSURL13encryptionKeyGSqCSo6NSData__T_A0_
Realm.swift
_TIFC10RealmSwift5Realm13dynamicCreateFTSS5valuePs9AnyObject_6updateSb_CS_13DynamicObjectA1_
_TIFC10RealmSwift5Realm13dynamicCreateFTSS5valuePs9AnyObject_6updateSb_CS_13DynamicObjectA0_
@@ -457,7 +471,6 @@ _TIFC10RealmSwift5Realm6createuRxCS_6ObjectrFTMx5valuePs9AnyObject_6updateSb_xA1
_TIFC10RealmSwift5Realm6createuRxCS_6ObjectrFTMx5valuePs9AnyObject_6updateSb_xA0_
_TIFC10RealmSwift5Realm3adduRxs12SequenceTypeWx9Generator7Element_CS_6ObjectrFTx6updateSb_T_A0_
_TIFC10RealmSwift5Realm3addFTCS_6Object6updateSb_T_A0_
-_TIFC10RealmSwift5RealmcFzT13configurationVS0_13Configuration_S0_A_
_TIFC10RealmSwift13RealmOptionalcFTGSqx__GS0_x_A_
Optional.swift
subscript.materialize
@@ -481,20 +494,19 @@ Migration.swift
_TTRXFo_oXFo_oCSo12RLMMigrationdVs6UInt64_dT___oXFo_oC10RealmSwift9MigrationdS0__dT__zoPs9ErrorType__XFo_iXFo_iTS_S0___iT___iXFo_iT9migrationS2_16oldSchemaVersionS0___iT__zoPS3___
_TFZFVC10RealmSwift5Realm13Configuration25fromRLMRealmConfigurationFCSo21RLMRealmConfigurationS1_U_FFTCSo12RLMMigrationVs6UInt64_T_FTCS_9MigrationS4__T_
_TTSg5SSSSs9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb
-_TTSg5SSSSs9Equatables___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb
-path.set
-_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A4_
-_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A0_
+_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A4_
+_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A0_
_TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS
_TTSf4n_n_n_d___TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS
_TMaCSo21RLMRealmConfiguration
_TTSg5FTCSo12RLMMigrationVs6UInt64_T__FT9migrationC10RealmSwift9Migration16oldSchemaVersionS0__T____TFSq3mapurfzFzxqd__GSqqd___
fromRLMRealmConfiguration
+_TTSg5SSSSs9Equatables___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb
+fileURL.set
defaultConfiguration.get
-_TIFVC10RealmSwift5Realm13ConfigurationcFT4pathGSqSS_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS3__T__11objectTypesGSqGSaMCS_6Object___S1_A_
+_TIFVC10RealmSwift5Realm13ConfigurationcFT7fileURLGSqCSo5NSURL_18inMemoryIdentifierGSqSS_13encryptionKeyGSqCSo6NSData_8readOnlySb13schemaVersionVs6UInt6414migrationBlockGSqFT9migrationCS_9Migration16oldSchemaVersionS4__T__28deleteRealmIfMigrationNeededSb11objectTypesGSqGSaMCS_6Object___S1_A_
_TIF10RealmSwift12migrateRealmFTVCS_5Realm13Configuration_GSqCSo7NSError_A_
-_TIF10RealmSwift19schemaVersionAtPathFTSS13encryptionKeyGSqCSo6NSData_5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqVs6UInt64_A1_
-_TIF10RealmSwift19schemaVersionAtPathFTSS13encryptionKeyGSqCSo6NSData_5errorGVs33AutoreleasingUnsafeMutablePointerGSqCSo7NSError___GSqVs6UInt64_A0_
+_TIF10RealmSwift18schemaVersionAtURLFzTCSo5NSURL13encryptionKeyGSqCSo6NSData__Vs6UInt64A0_
removeAll
removeRange
removeFirst
@@ -507,11 +519,13 @@ reserveCapacity
replaceRange
_TIFC10RealmSwift4List6sortedFTSS9ascendingSb_GCS_7Resultsx_A0_
List.swift
+_TIFC10RealmSwift14LinkingObjects6sortedFTSS9ascendingSb_GCS_7Resultsx_A0_
+LinkingObjects.swift
_code.get
rlmError.get
_domain.get
_TFSig9hashValueSi
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Aliases.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Aliases.swift
__swift_memcpy1_1
__swift_memcpy_array1_1
__swift_memmove_array1_1
@@ -532,76 +546,78 @@ _TWaO10RealmSwift5Errors9ErrorTypeS_
_TWaO10RealmSwift5Errors8HashableS_
~=
_TZFsoi2eeFTSSSS_Sb
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Error.swift
-_TToFC10RealmSwift8ListBaseg11descriptionSS
-_TToFC10RealmSwift8ListBaseg5countSi
-_TToFC10RealmSwift8ListBasecfT5arrayGSQCSo8RLMArray__GSQS0__
-_TToFC10RealmSwift8ListBasecfT_S0_
-_TFFC10RealmSwift4Listg5realmGSqCS_5Realm_U_FCSo8RLMRealmS1_
-_TToFC10RealmSwift4Listg11invalidatedSb
-_TToFC10RealmSwift4ListcfT_GS0_x_
-_TToFC10RealmSwift4List11valueForKeyfSSGSqPs9AnyObject__
-_TToFC10RealmSwift4List15valueForKeyPathfSSGSqPs9AnyObject__
-_TToFC10RealmSwift4List8setValuefTGSqPs9AnyObject__6forKeySS_T_
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Error.swift
+_TToFC10RealmSwift18LinkingObjectsBaseg15objectClassNameSS
+_TToFC10RealmSwift18LinkingObjectsBaseg12propertyNameSS
+_TMaCSo10RLMResults
+_TToFC10RealmSwift18LinkingObjectsBase27countByEnumeratingWithStatefTGSpVSC22NSFastEnumerationState_7objectsGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___5countSi_Si
+_TToFC10RealmSwift18LinkingObjectsBasecfT_S0_
+_TToFC10RealmSwift14LinkingObjectsg11invalidatedSb
+_TToFC10RealmSwift14LinkingObjectsg5countSi
+_TToFC10RealmSwift14LinkingObjectsg11descriptionSS
+_TToFC10RealmSwift14LinkingObjects11valueForKeyfSSGSqPs9AnyObject__
+_TToFC10RealmSwift14LinkingObjects15valueForKeyPathfSSGSqPs9AnyObject__
+_TToFC10RealmSwift14LinkingObjects8setValuefTGSqPs9AnyObject__6forKeySS_T_
_TFC10RealmSwift7ResultsCfCSo10RLMResultsGS0_x_
-_TFFC10RealmSwift4List6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_
+_TFFC10RealmSwift14LinkingObjects6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_
_TTRG__RxC10RealmSwift6Objectd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrXFo_oS4__oPs9AnyObject_zoPs9ErrorType__XFo_iS4__iPS5__zoPS6___
-_TToFC10RealmSwift4List13removeAtIndexfSiT_
-_TToFC10RealmSwift4List10removeLastfT_T_
-_TToFC10RealmSwift4List9removeAllfT_T_
-_TToFC10RealmSwift4List4movefT4fromSi2toSi_T_
-_TToFC10RealmSwift4List4swapfTSiSi_T_
-_TTRXFo_oCSo8RLMArrayoCSo7NSError_dT__XFdCb_dS_dS0__dT__
+_TFFC10RealmSwift14LinkingObjects20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
+_TZFO10RealmSwift21RealmCollectionChange8fromObjcfTx6changeGSqCSo19RLMCollectionChange_5errorGSqCSo7NSError__GS0_x_
+_TTRXFo_oGSqCSo10RLMResults_oGSqCSo19RLMCollectionChange_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0__dGSqS1___dT__
_TFC10RealmSwift12RLMGeneratorCfT10collectionPSo13RLMCollection__GS0_x_
-_TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_
-_TFEsPs12SequenceType7reversefT_GSaWx9Generator7Element__
-_TFVs17IndexingGenerator4nextfT_GSqwx8_Element_
+_TFFC10RealmSwift14LinkingObjects21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
_TTSg5SSSSs10Streamables___TFs27_toStringReadOnlyStreamableuRxs10StreamablerFxSS
-_TFs4swapurFTRxRx_T_
-_TFSaap9subscriptFSix
-_TFVs17IndexingGeneratorCfxGS_x_
+_TTSg5SS___TFSa9_getCountfT_Si
_TTSf4n_gs___TF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_
_TMaGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__
_TPA__TTRG__RxC10RealmSwift6Objectd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrXFo_oS4__oPs9AnyObject_zoPs9ErrorType__XFo_iS4__iPS5__zoPS6___
-_TPA__TFFC10RealmSwift4List20addNotificationBlockFFGS0_x_T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayCSo7NSError_T_
+_TPA__TFFC10RealmSwift14LinkingObjects20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
block_copy_helper
block_destroy_helper
-_TPA__TFFC10RealmSwift4List21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayS2__T_
-_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_7Element
-_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_
-_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs9Indexable_
-_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs12SequenceType_
-_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_
-_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9Generator
-_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9GeneratorPs13GeneratorType_
-_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_11SubSequence
-get_field_types_ListBase
-get_field_types_List
-create_generic_metadata_List
-_TMaGCs23_ContiguousArrayStorageSS_
-_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9Generator
-_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_
-_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_8_Element
-block_destroy_helper.8
-_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequence
-block_copy_helper.7
-_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9GeneratorPs13GeneratorType_
-L_selector_data(initWithArray:)
-L_selector(initWithArray:)
-L_selector_data(allocWithZone:)
-L_selector(allocWithZone:)
-L_selector_data(init)
-L_selector(init)
+_TPA__TFFC10RealmSwift14LinkingObjects21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
+_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_7Element
+_TWIuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_
+_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_11SubSequencePs9Indexable_
+_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_11SubSequencePs12SequenceType_
+_TWIuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_
+_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_9Generator
+_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_9GeneratorPs13GeneratorType_
+_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_11SubSequence
+get_field_types_LinkingObjectsBase
+get_field_types_LinkingObjects
+create_generic_metadata_LinkingObjects
+_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_9Generator
+_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s9IndexableS_8_Element
+block_destroy_helper.6
+_TWtuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_11SubSequence
+block_copy_helper.5
+_TWTuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_9GeneratorPs13GeneratorType_
+L_selector_data(countByEnumeratingWithState:objects:count:)
+L_selector(countByEnumeratingWithState:objects:count:)
+_TMLCSo10RLMResults
+L_selector_data(emptyDetachedResults)
+L_selector(emptyDetachedResults)
+L_selector_data(object)
+L_selector(object)
L_selector_data(dealloc)
L_selector(dealloc)
+L_selector_data(isAttached)
+L_selector(isAttached)
L_selector_data(realm)
L_selector(realm)
L_selector_data(isInvalidated)
L_selector(isInvalidated)
L_selector_data(className)
L_selector(className)
-L_selector_data(initWithObjectClassName:)
-L_selector(initWithObjectClassName:)
+L_selector_data(init)
+L_selector(init)
+_TMLGCs23_ContiguousArrayStorageSS_
+L_selector_data(objectClassName)
+L_selector(objectClassName)
+L_selector_data(initWithPattern:options:error:)
+L_selector(initWithPattern:options:error:)
+L_selector_data(stringByReplacingMatchesInString:options:range:withTemplate:)
+L_selector(stringByReplacingMatchesInString:options:range:withTemplate:)
L_selector_data(indexOfObject:)
L_selector(indexOfObject:)
L_selector_data(indexOfObjectWithPredicate:)
@@ -614,8 +630,6 @@ _PROTOCOL__TtPs9AnyObject_
L_selector(predicateWithFormat:argumentArray:)
L_selector_data(objectAtIndexedSubscript:)
L_selector(objectAtIndexedSubscript:)
-L_selector_data(setObject:atIndexedSubscript:)
-L_selector(setObject:atIndexedSubscript:)
L_selector_data(firstObject)
L_selector(firstObject)
L_selector_data(lastObject)
@@ -637,68 +651,135 @@ _TWLGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_
_TMLGVs10ArraySliceV10RealmSwift14SortDescriptor_
L_selector_data(sortedResultsUsingDescriptors:)
L_selector(sortedResultsUsingDescriptors:)
-L_selector_data(predicateWithValue:)
-L_selector(predicateWithValue:)
-L_selector_data(addObject:)
-L_selector(addObject:)
-L_selector_data(insertObject:atIndex:)
-L_selector(insertObject:atIndex:)
-L_selector_data(removeObjectAtIndex:)
-L_selector(removeObjectAtIndex:)
-L_selector_data(removeLastObject)
-L_selector(removeLastObject)
-L_selector_data(removeAllObjects)
-L_selector(removeAllObjects)
-L_selector_data(replaceObjectAtIndex:withObject:)
-L_selector(replaceObjectAtIndex:withObject:)
-L_selector_data(moveObjectAtIndex:toIndex:)
-L_selector(moveObjectAtIndex:toIndex:)
-L_selector_data(exchangeObjectAtIndex:withObjectAtIndex:)
-L_selector(exchangeObjectAtIndex:withObjectAtIndex:)
+L_selector_data(minOfProperty:)
+L_selector(minOfProperty:)
+L_selector_data(maxOfProperty:)
+L_selector(maxOfProperty:)
+L_selector_data(sumOfProperty:)
+L_selector(sumOfProperty:)
+L_selector_data(averageOfProperty:)
+L_selector(averageOfProperty:)
+_TMLCSo8NSNumber
block_descriptor
L_selector_data(addNotificationBlock:)
L_selector(addNotificationBlock:)
-block_descriptor.9
-_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_
-_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_
-_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_
-_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_
-L_selector_data(descriptionWithMaxDepth:)
-_METACLASS_DATA__TtC10RealmSwift8ListBase
-_INSTANCE_METHODS__TtC10RealmSwift8ListBase
-_PROPERTIES__TtC10RealmSwift8ListBase
-_DATA__TtC10RealmSwift8ListBase
-_TWoFC10RealmSwift8ListBaseP33_027551CC6B6B2DBBB6CF4A740CB6E5D623descriptionWithMaxDepthfSuSS
-_TMfC10RealmSwift8ListBase
+block_descriptor.7
+_TWGuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_
+_TWGuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_
+_TWGuRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_
+_PROTOCOL_NSFastEnumeration
+l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration
+l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration
+L_selector_data(propertyName)
+_TWvdvC10RealmSwift18LinkingObjectsBaseP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_
+_TWvdvC10RealmSwift18LinkingObjectsBaseP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_
+_TWvdvC10RealmSwift18LinkingObjectsBaseP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_
+L_selector_data(attachToObject:property:)
+L_selector_data(rlmResults)
+L_selector_data(initFromClassName:property:)
+L_selector_data(.cxx_destruct)
+_PROTOCOLS__TtC10RealmSwift18LinkingObjectsBase
+_METACLASS_DATA__TtC10RealmSwift18LinkingObjectsBase
+_INSTANCE_METHODS__TtC10RealmSwift18LinkingObjectsBase
+_PROTOCOLS__TtC10RealmSwift18LinkingObjectsBase.8
+_IVARS__TtC10RealmSwift18LinkingObjectsBase
+_PROPERTIES__TtC10RealmSwift18LinkingObjectsBase
+_DATA__TtC10RealmSwift18LinkingObjectsBase
+_TWoFC10RealmSwift18LinkingObjectsBasegP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_
+_TWoFC10RealmSwift18LinkingObjectsBasesP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_
+_TWoFC10RealmSwift18LinkingObjectsBasemP33_25CFEE8474EDA10420AA87D5D977CE2216cachedRLMResultsGSqCSo10RLMResults_
+_TWoFC10RealmSwift18LinkingObjectsBasegP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_
+_TWoFC10RealmSwift18LinkingObjectsBasesP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_
+_TWoFC10RealmSwift18LinkingObjectsBasemP33_25CFEE8474EDA10420AA87D5D977CE226objectGSqCSo19RLMWeakObjectHandle_
+_TWoFC10RealmSwift18LinkingObjectsBasegP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_
+_TWoFC10RealmSwift18LinkingObjectsBasesP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_
+_TWoFC10RealmSwift18LinkingObjectsBasemP33_25CFEE8474EDA10420AA87D5D977CE228propertyGSqCSo11RLMProperty_
+_TMfC10RealmSwift18LinkingObjectsBase
L_selector_data(invalidated)
-L_selector_data(removeAtIndex:)
-L_selector_data(removeLast)
-L_selector_data(removeAll)
-L_selector_data(moveFrom:to:)
-L_selector_data(swap::)
-_INSTANCE_METHODS__TtC10RealmSwift4List
-_PROPERTIES__TtC10RealmSwift4List
+_INSTANCE_METHODS__TtC10RealmSwift14LinkingObjects
+_PROPERTIES__TtC10RealmSwift14LinkingObjects
got._TMp10RealmSwift19RealmCollectionType
-got._TMps30RangeReplaceableCollectionType
got._TMps14CollectionType
got._TMps9Indexable
got._TMps12SequenceType
-field_type_vector_ListBase
-L_selector_data(getObjects:range:)
-L_selector(getObjects:range:)
-L_selector_data(objectAtIndex:)
-L_selector(objectAtIndex:)
+field_type_vector_LinkingObjectsBase
+_TMLGSqCSo10RLMResults_
+_TMLGSqCSo19RLMWeakObjectHandle_
+_TMLCSo19RLMWeakObjectHandle
+_TMLGSqCSo11RLMProperty_
+_TMLCSo11RLMProperty
+L_selector_data(initWithObject:)
+L_selector(initWithObject:)
L_selector_data(sortDescriptorWithProperty:ascending:)
L_selector(sortDescriptorWithProperty:ascending:)
-_TMLGCs23_ContiguousArrayStorageSS_
-L_selector_data(objectClassName)
-L_selector(objectClassName)
-L_selector(descriptionWithMaxDepth:)
-L_selector_data(initWithPattern:options:error:)
-L_selector(initWithPattern:options:error:)
-L_selector_data(stringByReplacingMatchesInString:options:range:withTemplate:)
-L_selector(stringByReplacingMatchesInString:options:range:withTemplate:)
+_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration
+_PROTOCOL_METHOD_TYPES_NSFastEnumeration
objc_classes
+_TTSg5VSC26NSRegularExpressionOptions___TFSag8endIndexSi
+_TTSg5VSC26NSRegularExpressionOptions___TFSag10startIndexSi
+_TTSg5VSC26NSRegularExpressionOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator
+_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_
+_TTSg5VSC26NSRegularExpressionOptions___TFSag9subscriptFSix
+_TTSg5VSC17NSMatchingOptions___TFSag8endIndexSi
+_TTSg5VSC17NSMatchingOptions___TFSag10startIndexSi
+_TTSg5VSC17NSMatchingOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator
+_TTSg5GSaVSC17NSMatchingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_
+_TTSg5VSC17NSMatchingOptions___TFSag9subscriptFSix
+_TTSg5Vs18_StringBufferIVars_Vs6UInt16___TFVs11_HeapBufferg6_valueGSpx_
+_TTSf4s_n_n___TFVs13_StringBuffer4growfTGVs5RangeGSPVs7RawByte__12newUsedCountSi_Sb
+_TFVs13_StringBufferg8capacitySi
+_TMaGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_
+_TTSf4n_n_n_d___TFVs13_StringBufferCfT8capacitySi11initialSizeSi12elementWidthSi_S_
+_TFFVs11_StringCoreg11cocoaBufferGSqPs9AnyObject__U_FPS0__PS0__
+_TFVs11_StringCore12_copyInPlacefT7newSizeSi11newCapacitySi15minElementWidthSi_T_
+_TFFVs11_StringCore20representableAsASCIIFT_SbU_FVs6UInt16Sb
+_TTSf1cl57_TTRXFo_dVs6UInt16_dSbzoPs9ErrorType__XFo_iS__dSbzoPS0___XFo_dVs6UInt16_dSbzoPs9ErrorType___n___TTSg5GSRVs6UInt16_GSRS__s12SequenceTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_S__GVs5SliceGSRS______TFEsPs12SequenceType8containsfzFzWx9Generator7Element_SbSb
+_TFVs11_StringCore14_claimCapacityfTSi15minElementWidthSi_TSiVs14COpaquePointer_
+_TTSf4gs_n___TFVs11_StringCore6appendfS_T_
+_TTWSus21BitwiseOperationsTypesZFS_oi1ofTxx_x
+rlmSortDescriptorValue.get
+objectClassName.get
+propertyName.get
+attachTo
+_TToFC10RealmSwift18LinkingObjectsBaseg10rlmResultsCSo10RLMResults
+_TMaCSo11RLMProperty
+_TMaGSqCSo11RLMProperty_
+_TMaCSo19RLMWeakObjectHandle
+_TMaGSqCSo19RLMWeakObjectHandle_
+_TMaGSqCSo10RLMResults_
+_TMaC10RealmSwift18LinkingObjectsBase
+_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s12SequenceTypeS_
+_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s9IndexableS_
+_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_s14CollectionTypeS_
+_TWauRxC10RealmSwift6ObjectrGCS_14LinkingObjectsx_S_19RealmCollectionTypeS_
+deinit
+_TMaCSo8NSNumber
+_TMaGVs10ArraySliceV10RealmSwift14SortDescriptor_
+_TWlGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_s13GeneratorTypes
+_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s9Indexables
+_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s12SequenceTypes
+_TMaGSaV10RealmSwift14SortDescriptor_
+_TTSg5V10RealmSwift14SortDescriptor___TFSaCft12arrayLiteralGSax__GSax_
+_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg15_elementPointerGSpq__
+_TTSg5V10RealmSwift14SortDescriptor___TFSaCfGVs12_ArrayBufferx_GSax_
+_TTSg5V10RealmSwift14SortDescriptor___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_
+_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg13_valuePointerGSpx_
+_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
+_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_
+_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_
+_TTSg5V10RealmSwift14SortDescriptor___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__
+_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_elementOffsetSi
+_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg12_valueOffsetSi
+_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__
+_TMaGCs23_ContiguousArrayStorageV10RealmSwift14SortDescriptor_
+_TTSg5V10RealmSwift14SortDescriptor___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_
+_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_alignmentMaskSi
+last.get
+_TMaGSqCSo9RLMObject_
+_TIF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_A0_
+_TMaPs9AnyObject_
+_TMaCSo9RLMObject
+notFoundToNil
_TTWVVSS9UTF16View5Indexs16ForwardIndexTypesFS1_10distanceTofxwx8Distance
_TFSSg5utf16VSS9UTF16View
_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer10getElementfSix
@@ -708,8 +789,10 @@ _TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffers5countSi
_TTSg5VSC17NSMatchingOptions___TFVs12_ArrayBuffers5countSi
_TTSg5VSC17NSMatchingOptions___TFSaCfT19_uninitializedCountSi_GSax_
_TTSg5VSC17NSMatchingOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__
+_TTWSis14_IncrementablesFS_17_successorInPlacefT_T_
_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer10getElementfSix
_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_
+_TTWSis9EquatablesZFS_oi2eefTxx_Sb
_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBufferg5countSi
_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffers5countSi
_TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBuffers5countSi
@@ -717,7 +800,6 @@ _TTSg5VSC26NSRegularExpressionOptions___TFVs12_ArrayBufferCfT_GS_x_
_TTSg5VSC26NSRegularExpressionOptions___TFSaCfT19_uninitializedCountSi_GSax_
_TTSg5VSC26NSRegularExpressionOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__
_TFSSCft19stringInterpolationGSaSS__SS
-_TTSg5SS___TFSa9_getCountfT_Si
_TFSSCfT26stringInterpolationSegmentSS_SS
_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg15_elementPointerGSpq__
_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg13_valuePointerGSpx_
@@ -726,6 +808,7 @@ _TTSg5SS___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayS
_TTSg5SS___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__
_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_elementOffsetSi
_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg12_valueOffsetSi
+_TMaGCs23_ContiguousArrayStorageSS_
_TTSg5VSC17NSMatchingOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_
gsub
_TTSg5VSC26NSRegularExpressionOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_
@@ -735,31 +818,157 @@ _TTSg5SS___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_
_TTSg5SS___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_
_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__
_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_alignmentMaskSi
+_TTSf4s_s___TFFs26_unimplemented_initializerFTVs12StaticString8initNameS_4fileS_4lineSu6columnSu_T_U0_FGSRVs5UInt8_T_
+countByEnumeratingWithState
+_TTSg5CSo10RLMResultsS_s9Equatable5Realm___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb
+rlmResults.get
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/LinkingObjects.swift
+_TToFC10RealmSwift8ListBaseg11descriptionSS
+_TToFC10RealmSwift8ListBaseg5countSi
+_TToFC10RealmSwift8ListBasecfT5arrayGSQCSo8RLMArray__GSQS0__
+_TToFC10RealmSwift8ListBasecfT_S0_
+_TFFC10RealmSwift4Listg5realmGSqCS_5Realm_U_FCSo8RLMRealmS1_
+_TToFC10RealmSwift4Listg11invalidatedSb
+_TToFC10RealmSwift4ListcfT_GS0_x_
+_TToFC10RealmSwift4List11valueForKeyfSSGSqPs9AnyObject__
+_TToFC10RealmSwift4List15valueForKeyPathfSSGSqPs9AnyObject__
+_TToFC10RealmSwift4List8setValuefTGSqPs9AnyObject__6forKeySS_T_
+_TFFC10RealmSwift4List6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GCS_7Resultsx_U_FS4_Ps9AnyObject_
+_TToFC10RealmSwift4List13removeAtIndexfSiT_
+_TToFC10RealmSwift4List10removeLastfT_T_
+_TToFC10RealmSwift4List9removeAllfT_T_
+_TToFC10RealmSwift4List4movefT4fromSi2toSi_T_
+_TToFC10RealmSwift4List4swapfTSiSi_T_
+_TFFC10RealmSwift4List20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
+_TTRXFo_oGSqCSo8RLMArray_oGSqCSo19RLMCollectionChange_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0__dGSqS1___dT__
+_TFEsPs12SequenceType7reversefT_GSaWx9Generator7Element__
+_TFVs17IndexingGenerator4nextfT_GSqwx8_Element_
+_TFFC10RealmSwift4List21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
+_TFSaCfGVs12_ArrayBufferx_GSax_
+_TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_
+_TFs4swapurFTRxRx_T_
+_TFSaap9subscriptFSix
+_TFVs17IndexingGeneratorCfxGS_x_
+_TFVs12_ArrayBufferg5countSi
+_TFVs12_ArrayBufferg41_unconditionalMutableSubscriptBaseAddressGSpx_
+_TPA__TFFC10RealmSwift4List20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
+_TPA__TFFC10RealmSwift4List21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo8RLMArray_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
+_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_7Element
+_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_
+_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs9Indexable_
+_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequencePs12SequenceType_
+_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_
+_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9Generator
+_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_9GeneratorPs13GeneratorType_
+_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_11SubSequence
+get_field_types_ListBase
+get_field_types_List
+create_generic_metadata_List
+_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9Generator
+_TWIuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_
+_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_8_Element
+block_destroy_helper.8
+_TWtuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_11SubSequence
+block_copy_helper.7
+_TWTuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_9GeneratorPs13GeneratorType_
+L_selector_data(initWithArray:)
+L_selector(initWithArray:)
+L_selector_data(initWithObjectClassName:)
+L_selector(initWithObjectClassName:)
+L_selector_data(setObject:atIndexedSubscript:)
+L_selector(setObject:atIndexedSubscript:)
+L_selector_data(predicateWithValue:)
+L_selector(predicateWithValue:)
+L_selector_data(addObject:)
+L_selector(addObject:)
+L_selector_data(insertObject:atIndex:)
+L_selector(insertObject:atIndex:)
+L_selector_data(removeObjectAtIndex:)
+L_selector(removeObjectAtIndex:)
+L_selector_data(removeLastObject)
+L_selector(removeLastObject)
+L_selector_data(removeAllObjects)
+L_selector(removeAllObjects)
+L_selector_data(replaceObjectAtIndex:withObject:)
+L_selector(replaceObjectAtIndex:withObject:)
+L_selector_data(moveObjectAtIndex:toIndex:)
+L_selector(moveObjectAtIndex:toIndex:)
+L_selector_data(exchangeObjectAtIndex:withObjectAtIndex:)
+L_selector(exchangeObjectAtIndex:withObjectAtIndex:)
+block_descriptor.9
+_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_
+_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_
+_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_
+_TWGuRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_
+L_selector_data(descriptionWithMaxDepth:)
+_METACLASS_DATA__TtC10RealmSwift8ListBase
+_INSTANCE_METHODS__TtC10RealmSwift8ListBase
+_PROPERTIES__TtC10RealmSwift8ListBase
+_DATA__TtC10RealmSwift8ListBase
+_TWoFC10RealmSwift8ListBaseP33_027551CC6B6B2DBBB6CF4A740CB6E5D623descriptionWithMaxDepthfSuSS
+_TMfC10RealmSwift8ListBase
+L_selector_data(removeAtIndex:)
+L_selector_data(removeLast)
+L_selector_data(removeAll)
+L_selector_data(moveFrom:to:)
+L_selector_data(swap::)
+_INSTANCE_METHODS__TtC10RealmSwift4List
+_PROPERTIES__TtC10RealmSwift4List
+got._TMps30RangeReplaceableCollectionType
+field_type_vector_ListBase
+L_selector_data(getObjects:range:)
+L_selector(getObjects:range:)
+L_selector_data(objectAtIndex:)
+L_selector(objectAtIndex:)
+L_selector(descriptionWithMaxDepth:)
descriptionWithMaxDepth
_TTRGRxC10RealmSwift6ObjectrXFo_oCSo8RLMRealm_oCS_5RealmzoPs9ErrorType__XFo_iS1__iS2_zoPS3___
-rlmSortDescriptorValue.get
-_TFFC10RealmSwift4List20addNotificationBlockFFGS0_x_T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayCSo7NSError_T_
+_TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_
+_TFSa9_getCountfT_Si
_TFVs12_ArrayBuffer28isUniquelyReferencedOrPinnedfT_Sb
_TFVs12_ArrayBuffer38isMutableAndUniquelyReferencedOrPinnedfT_Sb
+_TZFVs20ManagedBufferPointerg14_alignmentMaskSi
+_TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__
+_TFs30_isBridgedVerbatimToObjectiveCurFMxSb
+_TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_
+_TFVs20ManagedBufferPointerg19_allocatedByteCountSi
+_TFVs20ManagedBufferPointerg21allocatedElementCountSi
_TFVs12_ArrayBufferg21needsElementTypeCheckSb
+_TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_
+_TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___
_TFVs12_ArrayBuffer18_typeCheckSlowPathfSiT_
_TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_
+_TFSp14initializeFromfTGSpx_5countSi_T_
+_TFVs22_ContiguousArrayBufferg5ownerPs9AnyObject_
_TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_
_TFVs12_ArrayBufferg10startIndexSi
_TZFSa11_copyBufferfRGVs12_ArrayBufferx_T_
_TFSa29_makeMutableAndUniqueOrPinnedfT_T_
+_TFVs12_ArrayBufferg21deferredTypeCheckMaskSi
_TFVs12_ArrayBufferg20_isNativeTypeCheckedSb
+_TFVs20ManagedBufferPointerg13_valuePointerGSpx_
_TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_
_TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_
_TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken
_TFSa22_checkSubscript_nativefSiT_
-_TFVs12_ArrayBufferg41_unconditionalMutableSubscriptBaseAddressGSpx_
+_TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
+_TZFVs20ManagedBufferPointerg12_valueOffsetSi
+_TZFVs20ManagedBufferPointerg14_elementOffsetSi
+_TFVs20ManagedBufferPointerg15_elementPointerGSpq__
_TFSa18_getElementAddressfSiGSpx_
+_TFs25_isClassOrObjCExistentialurFMxSb
+_TFVs12_ArrayBufferg9_isNativeSb
+_TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_
_TFVs12_ArrayBufferg5ownerPs9AnyObject_
+_TZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassfTPMPs9AnyObject_8creatingSb_T_
+_TIZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassFTPMPs9AnyObject_8creatingSb_T_A0_
+_TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__
+_TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_
+_TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_
+_TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase
_TFVs12_ArrayBufferg11nativeOwnerPs9AnyObject_
_TFSa33_getOwnerWithSemanticLabel_nativefT_Bo
_TFSa16_getOwner_nativefT_Bo
-_TFFC10RealmSwift4List21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTCSo8RLMArrayS2__T_
_TMaC10RealmSwift8ListBase
_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s12SequenceTypeS_
_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s9IndexableS_
@@ -767,44 +976,14 @@ _TWauRxC10RealmSwift6ObjectrGCS_4Listx_s14CollectionTypeS_
_TWauRxC10RealmSwift6ObjectrGCS_4Listx_s30RangeReplaceableCollectionTypeS_
_TWauRxC10RealmSwift6ObjectrGCS_4Listx_S_19RealmCollectionTypeS_
_TTSg5SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si___TFVs14RangeGenerator4nextfT_GSqx_
-_TTWSis9EquatablesZFS_oi2eefTxx_Sb
-_TTWSis14_IncrementablesFS_17_successorInPlacefT_T_
-deinit
-addNotificationBlock
swap
move
replace
removeLast
-_TMaGVs10ArraySliceV10RealmSwift14SortDescriptor_
-_TWlGVs17IndexingGeneratorGSaV10RealmSwift14SortDescriptor__uRxs9IndexablerGS_x_s13GeneratorTypes
-_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s9Indexables
-_TWlGSaV10RealmSwift14SortDescriptor_urGSax_s12SequenceTypes
-_TMaGSaV10RealmSwift14SortDescriptor_
-_TTSg5V10RealmSwift14SortDescriptor___TFSaCft12arrayLiteralGSax__GSax_
-_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg15_elementPointerGSpq__
-_TTSg5V10RealmSwift14SortDescriptor___TFSaCfGVs12_ArrayBufferx_GSax_
-_TTSg5V10RealmSwift14SortDescriptor___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_
-_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg13_valuePointerGSpx_
-_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
-_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_
-_TTSg5V10RealmSwift14SortDescriptor___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_
-_TTSg5V10RealmSwift14SortDescriptor___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__
-_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_elementOffsetSi
-_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg12_valueOffsetSi
-_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__
-_TMaGCs23_ContiguousArrayStorageV10RealmSwift14SortDescriptor_
-_TTSg5V10RealmSwift14SortDescriptor___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_
-_TTSg5Vs10_ArrayBody_V10RealmSwift14SortDescriptor___TZFVs20ManagedBufferPointerg14_alignmentMaskSi
-last.get
subscript.set
-_TIF10RealmSwift21throwForNegativeIndexFTSi13parameterNameSS_T_A0_
-_TMaPs9AnyObject_
-_TMaCSo9RLMObject
-notFoundToNil
-invalidated.get
_TPA__TTRGRxC10RealmSwift6ObjectrXFo_oCSo8RLMRealm_oCS_5RealmzoPs9ErrorType__XFo_iS1__iS2_zoPS3___
_TTSg5CSo8RLMRealm_C10RealmSwift5Realm___TFSq3mapurfzFzxqd__GSqqd___
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/List.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/List.swift
_TTRXFo_oGSqCSo9RLMObject_oGSqS___dT__XFdCb_dGSqS__dGSqS___dT__
_TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_
_TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__
@@ -818,14 +997,13 @@ get_field_types_Migration
_TMaCSo15RLMObjectSchema
_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_
_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__
-objectdestroy.7
block_destroy_helper.10
_TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__
block_copy_helper.9
-L_selector_data(schemaVersionAtPath:encryptionKey:error:)
-L_selector(schemaVersionAtPath:encryptionKey:error:)
-L_selector_data(setPath:)
-L_selector(setPath:)
+L_selector_data(schemaVersionAtURL:encryptionKey:error:)
+L_selector(schemaVersionAtURL:encryptionKey:error:)
+L_selector_data(setInMemoryIdentifier:)
+L_selector(setInMemoryIdentifier:)
L_selector_data(setEncryptionKey:)
L_selector(setEncryptionKey:)
L_selector_data(setReadOnly:)
@@ -834,19 +1012,22 @@ block_copy_helper.9
L_selector(setSchemaVersion:)
L_selector_data(setMigrationBlock:)
L_selector(setMigrationBlock:)
+L_selector_data(setDeleteRealmIfMigrationNeeded:)
+L_selector(setDeleteRealmIfMigrationNeeded:)
L_selector_data(setCustomSchema:)
L_selector(setCustomSchema:)
L_selector_data(setDisableFormatUpgrade:)
L_selector(setDisableFormatUpgrade:)
L_selector_data(migrateRealm:)
L_selector(migrateRealm:)
-L_selector_data(setInMemoryIdentifier:)
-L_selector(setInMemoryIdentifier:)
+L_selector_data(initFileURLWithPath:)
+L_selector(initFileURLWithPath:)
+L_selector_data(setFileURL:)
+L_selector(setFileURL:)
L_selector_data(oldSchema)
L_selector(oldSchema)
L_selector_data(newSchema)
L_selector(newSchema)
-metadata.8
block_descriptor.11
L_selector_data(enumerateObjects:block:)
L_selector(enumerateObjects:block:)
@@ -854,6 +1035,8 @@ block_descriptor.11
L_selector(createObject:withValue:)
L_selector_data(deleteDataForClassName:)
L_selector(deleteDataForClassName:)
+L_selector_data(renamePropertyForClass:oldName:newName:)
+L_selector(renamePropertyForClass:oldName:newName:)
_METACLASS_DATA__TtC10RealmSwift9Migration
_IVARS__TtC10RealmSwift9Migration
_DATA__TtC10RealmSwift9Migration
@@ -894,27 +1077,30 @@ _TTSg5CSo15RLMObjectSchema___TFSag9subscriptFSix
_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_
_TTSg5CSo15RLMObjectSchema___TFSag8endIndexSi
_TTSg5CSo15RLMObjectSchema___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_
-_TMaGSqCSo9RLMObject_
_TFFC10RealmSwift9Migration9enumerateFTSSFT9oldObjectGSqCS_13DynamicObject_9newObjectGSqS1___T__T_U_FTGSqCSo9RLMObject_GSqS2___T_
_TMaCSo12RLMMigration
_TMaC10RealmSwift9Migration
+renamePropertyForClass
deleteData
delete
create
enumerate
newSchema.get
oldSchema.get
+_TTSg5CSo5NSURLS_s9Equatable10Foundation___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb
+_TFFVC10RealmSwift5Realm13Configurationg7fileURLGSqCSo5NSURL_U_FSSS2_
accessorMigrationBlock
_TFFVC10RealmSwift5Realm13Configurationg16rlmConfigurationCSo21RLMRealmConfigurationU_FFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS4__T_
_TTRXFo_oXFo_oC10RealmSwift9MigrationdVs6UInt64_dT___oXFo_oCSo12RLMMigrationdS1__dT__zoPs9ErrorType__XFo_iXFo_iT9migrationS0_16oldSchemaVersionS1___iT___iXFo_iTS2_S1___iT__zoPS3___
-path.get
+_TTSg5SS_CSo5NSURL___TFSq3mapurfzFzxqd__GSqqd___
+inMemoryIdentifier.get
_TTSg5FT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__FTCSo12RLMMigrationS1__T____TFSq3mapurfzFzxqd__GSqqd___
rlmConfiguration.get
-inMemoryIdentifier.get
+fileURL.get
migrateRealm
_TMaCSo8RLMRealm
-schemaVersionAtPath
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Migration.swift
+schemaVersionAtURL
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Migration.swift
_TToFC10RealmSwift6ObjectcfT_S0_
_TToFC10RealmSwift6ObjectcfT5valuePs9AnyObject__S0_
_TToFC10RealmSwift6Objectg11invalidatedSb
@@ -923,7 +1109,6 @@ _TToFC10RealmSwift6Objectg9classNameSS
_TToZFC10RealmSwift6Object15objectUtilClassfSbPMPs9AnyObject_
_TToZFC10RealmSwift6Object10primaryKeyfT_GSqSS_
_TToZFC10RealmSwift6Object17ignoredPropertiesfT_GSaSS_
-_TFs15_arrayForceCastu0_rFGSax_GSaq__
_TToFC10RealmSwift6Objectg9subscriptFSSGSqPs9AnyObject__
_TToFC10RealmSwift6Objects9subscriptFSSGSqPs9AnyObject__
_TToFC10RealmSwift6Object7isEqualfGSqPs9AnyObject__Sb
@@ -933,6 +1118,8 @@ _TFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBas
_TToFC10RealmSwift13DynamicObject15listForPropertyfCSo11RLMPropertyCSo11RLMListBase
_TFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase
_TToFC10RealmSwift13DynamicObject19optionalForPropertyfCSo11RLMPropertyCSo15RLMOptionalBase
+_TFC10RealmSwift13DynamicObject25linkingObjectsForPropertyfCSo11RLMPropertyGSqCS_18LinkingObjectsBase_
+_TToFC10RealmSwift13DynamicObject25linkingObjectsForPropertyfCSo11RLMPropertyGSqCS_18LinkingObjectsBase_
_TToFC10RealmSwift13DynamicObject20valueForUndefinedKeyfSSGSqPs9AnyObject__
_TToFC10RealmSwift13DynamicObject8setValuefTGSqPs9AnyObject__15forUndefinedKeySS_T_
_TToZFC10RealmSwift13DynamicObject28shouldIncludeInDefaultSchemafT_Sb
@@ -941,16 +1128,9 @@ _TToFC10RealmSwift13DynamicObjectcfT5valuePs9AnyObject__S0_
_TToFC10RealmSwift13DynamicObjectcfT5realmCSo8RLMRealm6schemaCSo15RLMObjectSchema_S0_
_TToFC10RealmSwift13DynamicObjectcfT5valuePs9AnyObject_6schemaCSo9RLMSchema_S0_
_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesFPs9AnyObject_CSo7NSArrayU0_FT5labelGSqSS_5valueP__GSqSS_
-_TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb
+_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesFPs9AnyObject_CSo12NSDictionaryU0_FT5labelGSqSS_5valueP__GSqTSSCS_18LinkingObjectsBase__
_TToFC10RealmSwift10ObjectUtilcfT_S0_
globalinit_33_47969F13D2F39044D14973F482FBAD86_func0
-_TFVs12_ArrayBuffer19requestNativeBufferfT_GSqGVs22_ContiguousArrayBufferx__
-_TFSaCfT20_immutableCocoaArrayPs16_NSArrayCoreType__GSax_
-_TFVs12_ArrayBuffer13_asCocoaArrayfT_Ps16_NSArrayCoreType_
-_TFVs22_ContiguousArrayBuffer30withUnsafeMutableBufferPointerurfzFzGSrx_qd__qd__
-_TFFs15_arrayForceCastu0_rFGSax_GSaq__U_FGSrQ0__T_
-_TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__
-_TFVs22_ContiguousArrayBuffer13_asCocoaArrayfT_Ps16_NSArrayCoreType_
_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__
_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__
_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__
@@ -958,19 +1138,24 @@ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TZFOs25_VariantDictionaryStorage24m
_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__
_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__
_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_
-_TFVs12_ArrayBufferg5countSi
_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_
_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_
_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_
_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_
_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__
_TTSg5SS_GC10RealmSwift4ListCS_13DynamicObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__
_TTSg5SS_CSo15RLMOptionalBase___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__
+_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__
+_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__
_TTSg5SS___TFSa16_copyToNewBufferfSiT_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa16_copyToNewBufferfSiT_
_TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_SS_GVs17IndexingGeneratorGS_SS__GS1_GS_SS__s13GeneratorTypes_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferSS_GS6_SS_s14CollectionTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS_GS6_SS_s9IndexablesGS6_SS_s12SequenceTypes_GS1_GS6_SS__GS1_GS6_SS__S2_s_SS_SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_SS__SS_SS_SS___TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
_TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS1_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s14CollectionTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s9IndexablesGS6_T5labelGSqSS_5valueP___s12SequenceTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
+_TTSg5GVs12_ArrayBufferTSSC10RealmSwift18LinkingObjectsBase__GS_TSSS1___s16_ArrayBufferTypes_TSSS1___GVs17IndexingGeneratorGS_TSSS1____GS3_GS_TSSS1____s13GeneratorTypes_TSSS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferTSSS1___GS8_TSSS1___s14CollectionTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1___GS8_TSSS1___s9IndexablesGS8_TSSS1___s12SequenceTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1____TSSS1___TSSS1___TSSS1_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
_TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s16_ArrayBufferTypes_T5labelGSqSS_5valueP___GVs17IndexingGeneratorGS_T5labelGSqSS_5valueP____GS1_GS_T5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s14CollectionTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP___GS6_T5labelGSqSS_5valueP___s9IndexablesGS6_T5labelGSqSS_5valueP___s12SequenceTypes_GS1_GS6_T5labelGSqSS_5valueP____GS1_GS6_T5labelGSqSS_5valueP____S2_s_T5labelGSqSS_5valueP___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T5labelGSqSS_5valueP____T5labelGSqSS_5valueP___T5labelGSqSS_5valueP___T5labelGSqSS_5valueP_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray16_copyToNewBufferfSiT_
_TTSf4n_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__
@@ -995,18 +1180,28 @@ _TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferT5labelGSqSS_5valueP___GS_T5la
_TTSf4s_n_n___TTSg5SS___TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_
_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferSS_GS_SS_s16_ArrayBufferTypes_GVs14_IgnorePointerSS_GS1_SS_s20_PointerFunctionTypes_SS_GVs17IndexingGeneratorGS_SS__GS3_GS_SS__s13GeneratorTypes_SS_GVs12_SliceBufferSS_GS5_SS_s14CollectionTypes_GS3_GS5_SS__GS3_GS5_SS__S4_s_SS_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS5_SS_GS5_SS_s9IndexablesGS5_SS_s12SequenceTypes_GS3_GS5_SS__GS3_GS5_SS__S4_s_SS_SiSiS7_s_SiSiS8_s_SiSiS9_s_Si_GS5_SS__SS_SS_SS___TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_
_TTSf4g_n___TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s12SequenceTypes_GVs17IndexingGeneratorGSaT5labelGSqSS_5valueP____GS0_GSaT5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___GVs10ArraySliceT5labelGSqSS_5valueP____SS___TFEsPs12SequenceType7flatMapurfzFzWx9Generator7Element_GSqqd___GSaqd___
+_TTSf4s_n_n___TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_
+_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferTSSC10RealmSwift18LinkingObjectsBase__GS_TSSS1___s16_ArrayBufferTypes_GVs14_IgnorePointerTSSS1___GS3_TSSS1___s20_PointerFunctionTypes_TSSS1___GVs17IndexingGeneratorGS_TSSS1____GS5_GS_TSSS1____s13GeneratorTypes_TSSS1___GVs12_SliceBufferTSSS1___GS7_TSSS1___s14CollectionTypes_GS5_GS7_TSSS1____GS5_GS7_TSSS1____S6_s_TSSS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_TSSS1___GS7_TSSS1___s9IndexablesGS7_TSSS1___s12SequenceTypes_GS5_GS7_TSSS1____GS5_GS7_TSSS1____S6_s_TSSS1___SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_TSSS1____TSSS1___TSSS1___TSSS1_____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_
+_TTSf4g_n___TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s12SequenceTypes_GVs17IndexingGeneratorGSaT5labelGSqSS_5valueP____GS0_GSaT5labelGSqSS_5valueP____s13GeneratorTypes_T5labelGSqSS_5valueP___GVs10ArraySliceT5labelGSqSS_5valueP____TSSC10RealmSwift18LinkingObjectsBase____TFEsPs12SequenceType7flatMapurfzFzWx9Generator7Element_GSqqd___GSaqd___
_TTSf4g_n___TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_
_TTSf4g_n_n___TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E621getOptionalPropertiesFPs9AnyObject_CSo12NSDictionaryU_FTGVs10DictionarySSPS1___T5labelGSqSS_5valueP___GS3_SSPS1___
+_TTSf4n_d___TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__
+_TTSf4g_d___TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__
+_TTSf4g_d___TTSg5SSSSs8Hashables_SS___TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__
+_TTSf4g_s_g___TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesFPs9AnyObject_CSo12NSDictionaryU1_FTGVs10DictionarySSGS3_SSSS__TSSCS_18LinkingObjectsBase__GS3_SSGS3_SSSS__
+_TMaGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___
+_TMaGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___
+_TPA__TTRXFo_oGSqSS_iP__oGSqTSSC10RealmSwift18LinkingObjectsBase__zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqTSSS0___zoPS1___
_TPA__TTRXFo_oGSqSS_iP__oGSqSS_zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqSS_zoPS___
_TMaGCs28_NativeDictionaryStorageImplSSCSo15RLMOptionalBase_
_TMaGCs28_NativeDictionaryStorageImplSSGC10RealmSwift4ListCS0_13DynamicObject__
-_TPA__TFFs15_arrayForceCastu0_rFGSax_GSaq__U_FGSrQ0__T_
-objectdestroy.9
-_TPA__TTRG0_rXFo_dGSrq___dT_zoPs9ErrorType__XFo_dGSrq___iT_zoPS___
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_
_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_
+_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_
_TToZFC10RealmSwift6Object17indexedPropertiesfT_GSaSS_
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_
L_selector_data(sharedSchema)
L_selector(sharedSchema)
L_selector_data(partialSharedSchema)
@@ -1038,6 +1233,7 @@ _TWvdvC10RealmSwift13DynamicObjectP33_95A69397B44B27F7A8F436871D45D9E618optional
L_selector_data(isEqual:)
L_selector_data(listForProperty:)
L_selector_data(optionalForProperty:)
+L_selector_data(linkingObjectsForProperty:)
_CLASS_METHODS_RealmSwiftObject
_METACLASS_DATA_RealmSwiftObject
_INSTANCE_METHODS_RealmSwiftObject
@@ -1047,7 +1243,6 @@ _TMfC10RealmSwift6Object
L_selector_data(valueForUndefinedKey:)
L_selector_data(setValue:forUndefinedKey:)
L_selector_data(shouldIncludeInDefaultSchema)
-L_selector_data(.cxx_destruct)
_CLASS_METHODS__TtC10RealmSwift13DynamicObject
_METACLASS_DATA__TtC10RealmSwift13DynamicObject
_INSTANCE_METHODS__TtC10RealmSwift13DynamicObject
@@ -1057,11 +1252,14 @@ _TMfC10RealmSwift13DynamicObject
L_selector_data(swiftVersion)
L_selector_data(ignoredPropertiesForClass:)
L_selector_data(indexedPropertiesForClass:)
+L_selector_data(linkingObjectsPropertiesForClass:)
L_selector_data(getGenericListPropertyNames:)
L_selector_data(initializeListProperty:property:array:)
L_selector_data(initializeOptionalProperty:property:)
L_selector_data(getOptionalProperties:)
L_selector_data(requiredPropertiesForClass:)
+L_selector_data(getLinkingObjectsProperties:)
+L_selector_data(initializeLinkingObjectsProperty:property:)
_CLASS_METHODS_RealmSwiftObjectUtil
_METACLASS_DATA_RealmSwiftObjectUtil
_INSTANCE_METHODS_RealmSwiftObjectUtil
@@ -1069,11 +1267,14 @@ _DATA_RealmSwiftObjectUtil
_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E612swiftVersionfT_CSo8NSString
_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E625ignoredPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_
_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E625indexedPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_
+_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E632linkingObjectsPropertiesForClassfPMPs9AnyObject_GSqCSo12NSDictionary_
_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesfPs9AnyObject_CSo7NSArray
_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E622initializeListPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty5arrayCSo8RLMArray_T_
_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E626initializeOptionalPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty_T_
_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E621getOptionalPropertiesfPs9AnyObject_CSo12NSDictionary
_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E626requiredPropertiesForClassfPMPs9AnyObject_GSqCSo7NSArray_
+_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesfPs9AnyObject_CSo12NSDictionary
+_TWoZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E632initializeLinkingObjectsPropertyfTCSo13RLMObjectBase8propertyCSo11RLMProperty_T_
_TMfC10RealmSwift10ObjectUtil
field_type_vector_ObjectUtil
field_type_vector_DynamicObject
@@ -1082,11 +1283,27 @@ _TMLGVs10DictionarySSCSo15RLMOptionalBase_
field_type_vector_Object
_TMLP_
_TMLPs17CustomReflectable_
-_TMLGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__
_TMLGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___
_TMLT5labelGSqSS_5valueP__
_TMLGSqSS_
_TMLGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___
+_TMLGCs29_NativeDictionaryStorageOwnerSSGVs10DictionarySSSS__
+_TMLGVs10DictionarySSSS_
+_TMLTSSC10RealmSwift18LinkingObjectsBase_
+_TMLGCs23_ContiguousArrayStorageTSSSS__
+_TMLTSSSS_
+_TMLGCs29_NativeDictionaryStorageOwnerSSSS_
+_TMLGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___
+_PROTOCOL__TtPs17_NSStringCoreType_
+l_OBJC_LABEL_PROTOCOL_$__TtPs17_NSStringCoreType_
+l_OBJC_PROTOCOL_REFERENCE_$__TtPs17_NSStringCoreType_
+L_selector_data(objectForKey:)
+L_selector(objectForKey:)
+_TMLGCs28_NativeDictionaryStorageImplSSGVs10DictionarySSSS__
+_TMLGCs28_NativeDictionaryStorageImplSSSS_
+_TMLGCs23_ContiguousArrayStorageTSSC10RealmSwift18LinkingObjectsBase__
+_TMLPMP_
+_TMLGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__
_TMLGSqCSo8NSString_
_TMLCSo8NSString
_TMLGSqCSo6NSDate_
@@ -1102,19 +1319,11 @@ _TMLGC10RealmSwift13RealmOptionalVs5Int64_
_TMLGC10RealmSwift13RealmOptionalSf_
_TMLGC10RealmSwift13RealmOptionalSd_
_TMLGC10RealmSwift13RealmOptionalSb_
-_TMLPMP_
_TMLCSo8NSObject
L_selector_data(initWithName:reason:userInfo:)
L_selector(initWithName:reason:userInfo:)
L_selector_data(raise)
L_selector(raise)
-_PROTOCOL__TtPs17_NSStringCoreType_
-l_OBJC_LABEL_PROTOCOL_$__TtPs17_NSStringCoreType_
-l_OBJC_PROTOCOL_REFERENCE_$__TtPs17_NSStringCoreType_
-L_selector_data(objectForKey:)
-L_selector(objectForKey:)
-L_selector_data(countByEnumeratingWithState:objects:count:)
-L_selector(countByEnumeratingWithState:objects:count:)
_TMLGCs28_NativeDictionaryStorageImplSSPs9AnyObject__
L_selector_data(setProperty:)
L_selector(setProperty:)
@@ -1122,10 +1331,8 @@ _TMLGCs28_NativeDictionaryStorageImplSSPs9AnyObject__
L_selector(setObject:)
L_selector_data(set_rlmArray:)
L_selector(set_rlmArray:)
-_TMLGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___
_TMLGCs28_NativeDictionaryStorageImplSSCSo15RLMOptionalBase_
_TMLGCs28_NativeDictionaryStorageImplSSGC10RealmSwift4ListCS0_13DynamicObject__
-metadata.10
_PROTOCOL__TtPs14_NSCopyingType_
l_OBJC_LABEL_PROTOCOL_$__TtPs14_NSCopyingType_
l_OBJC_PROTOCOL_REFERENCE_$__TtPs14_NSCopyingType_
@@ -1151,42 +1358,6 @@ _TMaTSuSuSuSuSu_
Object.swift
_TMaGSpSu_
_TMaGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___
-_TFOs17_ValueOrReferenceCurfMxS_
-_TFOs12_BridgeStyleCurfMxS_
-_TFs34_conditionallyBridgeFromObjectiveCurFTPs9AnyObject_Mx_GSqx_
-_TFs31_arrayConditionalBridgeElementsu0_rFGSax_GSqGSaq___
-_TZFVs20ManagedBufferPointerg14_alignmentMaskSi
-_TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__
-_TFs30_isBridgedVerbatimToObjectiveCurFMxSb
-_TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_
-_TFVs20ManagedBufferPointerg19_allocatedByteCountSi
-_TFVs20ManagedBufferPointerg21allocatedElementCountSi
-_TFSa9_getCountfT_Si
-_TFSrCfT5startGSpx_5countSi_GSrx_
-_TZFVs20ManagedBufferPointerg14_elementOffsetSi
-_TFVs20ManagedBufferPointerg15_elementPointerGSpq__
-_TFFVs22_ContiguousArrayBuffer30withUnsafeMutableBufferPointerurFzFzGSrx_qd__qd__L_6$deferfT_T_
-_TFSrg11baseAddressGSpx_
-_TTRG0_rXFo_dGSrq___dT_zoPs9ErrorType__XFo_dGSrq___iT_zoPS___
-_TFVs12_ArrayBufferCfT7nsArrayPs16_NSArrayCoreType__GS_x_
-_TFVs12_ArrayBufferg9_isNativeSb
-_TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_
-_TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
-_TZFVs20ManagedBufferPointerg12_valueOffsetSi
-_TFVs20ManagedBufferPointerg13_valuePointerGSpx_
-_TFCs27_ContiguousArrayStorageBaseg17staticElementTypePMP_
-_TFVs22_ContiguousArrayBuffer24storesOnlyElementsOfTypeurfMqd__Sb
-_TFs25_isClassOrObjCExistentialurFMxSb
-_TZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassfTPMPs9AnyObject_8creatingSb_T_
-_TIZFVs20ManagedBufferPointer28_sanityCheckValidBufferClassFTPMPs9AnyObject_8creatingSb_T_A0_
-_TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__
-_TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_
-_TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_
-_TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase
-_TFVs12_ArrayBufferg21deferredTypeCheckMaskSi
-_TFVs12_ArrayBuffer39downcastToBufferWithDeferredTypeCheckOfurfMqd__GS_qd___
-_TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_
-_TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___
_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___
_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_
_TTSg5GC10RealmSwift4ListCS_13DynamicObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x
@@ -1221,10 +1392,12 @@ _TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_
_TTSg5SS_CSo15RLMOptionalBase___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_
listForProperty
optionalForProperty
+linkingObjectsForProperty
_TF10RealmSwiftau20swiftLanguageVersionSS
swiftVersion
ignoredPropertiesForClass
indexedPropertiesForClass
+linkingObjectsPropertiesForClass
_TTRXFo_oGSqSS_iP__oGSqSS_zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqSS_zoPS___
_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg19_allocatedByteCountSi
_TTSg5SS___TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi
@@ -1252,66 +1425,10 @@ _TTSg5SS___TFVs22_ContiguousArrayBufferg8capacitySi
_TTSg5SS___TFVs22_ContiguousArrayBufferg5countSi
_TTSg5SS___TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb
_TTSg5SS___TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb
-_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGeneratorCfxGS_x_
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer10getElementfSix
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg9subscriptFSix
-_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x
-_TTSg5T5labelGSqSS_5valueP_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_
-_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_
-_TTSg5T5labelGSqSS_5valueP_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken
-_TTSg5T5labelGSqSS_5valueP_____TFSag9subscriptFSix
-_TTSg5T5labelGSqSS_5valueP_____TFSag8endIndexSi
-_TTSg5T5labelGSqSS_5valueP_____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator
_TTSg5SS___TFSa36_reserveCapacityAssumingUniqueBufferfSiT_
_TTSg5SS___TFSa6appendfxT_
_TTSg5SS___TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_
-_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_
-_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg19_allocatedByteCountSi
-_TMaGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg21allocatedElementCountSi
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_
-_TTSg5T5labelGSqSS_5valueP_____TFSp18moveInitializeFromfTGSpx_5countSi_T_
-_TTSg5T5labelGSqSS_5valueP_____TFSp7destroyfSiT_
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_
-_TTSg5T5labelGSqSS_5valueP_____TFSp14initializeFromfTGSpx_5countSi_T_
-_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerlu5valuex
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg10startIndexSi
-_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_
-_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__
-_TTSg5T5labelGSqSS_5valueP_____TFSp10initializefxT_
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_elementOffsetSi
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffers5countSi
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg8capacitySi
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg5countSi
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg12_valueOffsetSi
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb
-_TTSg5T5labelGSqSS_5valueP_____TFSaCfGVs12_ArrayBufferx_GSax_
-_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_
-_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__
-_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__
-_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArrayCfT_GS_x_
-_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT_GS_x_
-_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_
-_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_
-_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray6appendfxT_
-_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_
-_TTRXFo_oGSqSS_iP__dSbzoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___dSbzoPS___
_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getGenericListPropertyNamesFPs9AnyObject_CSo7NSArrayU_FT5labelGSqSS_5valueP__Sb
-_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_______TFEsPs12SequenceType6filterfzFzWx9Generator7Element_SbGSaWxS0_S1___
getGenericListPropertyNames
initializeListProperty
_TTSg5CSo15RLMOptionalBase___TFSp4movefT_x
@@ -1349,29 +1466,7 @@ _TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFOs25_VariantDictionaryStorage11up
_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionarys9subscriptFxGSqq__
_TTSg5SSSSs8Hashables_CSo15RLMOptionalBase___TFVs10Dictionaryg9subscriptFxGSqq__
initializeOptionalProperty
-_TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__
-_TMaGSqPMP__
-_TFs19_isClassSuperMirrorFPMP_Sb
-_TFEsPs11_MirrorType12_superMirrorfT_GSqPS___
-_TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__
-_TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___
-_TPA__TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___
-_TPA__TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__
-_TMaPMPs9AnyObject_
-_TWlGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__uRxs9IndexablerGS_x_s13GeneratorTypes
-_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s12SequenceTypes
-_TWlGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s13GeneratorTypes
-_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_S2_s
-_TMaGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__
-_TMaGVs5SliceVVs6Mirror14LegacyChildren_
-_TMaGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_
-_TMaGCs14_CollectionBoxVVs6Mirror14LegacyChildren_
-_TMaGCs21_RandomAccessIndexBoxSi_
-_TPA__TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__
-_TTSf4n_n_n_d___TFVs6MirrorCfT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_
_TTSg5SS_Ps9AnyObject____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__
-_TFZFCs28_NativeDictionaryStorageImpl6createFSiGS_xq__U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_
-_TTSg5Vs29_HashedContainerStorageHeader_Vs5UInt8___TFZFCs13ManagedBuffer6createFTSi12initialValueFGCs18ManagedProtoBufferxq__x_GS_xq__U_FTPs9AnyObject_FPS1__Si_Q_
_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi
_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi
_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi
@@ -1385,36 +1480,19 @@ _TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_nextfSiSi
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5keyAtfSix
-__swift_memmove_array32_4
-__swift_memcpy_array32_4
-__swift_copy_outline_pointer
-_TwalVSC28_SwiftNSFastEnumerationState
-_TwTkVSC28_SwiftNSFastEnumerationState
-__swift_memcpy32_4
-_TwCpVSC28_SwiftNSFastEnumerationState
-_TwdeVSC28_SwiftNSFastEnumerationState
-_TwprVSC28_SwiftNSFastEnumerationState
-_TwCPVSC28_SwiftNSFastEnumerationState
-_TwXXVSC28_SwiftNSFastEnumerationState
-_TMaGSqPs9AnyObject__
_TTSg5Ps9AnyObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x
-_TTSg5SS___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb
_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader
_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpls6_countSi
_TTSg5Ps9AnyObject____TFSp10initializefxT_
-_TTSg5SS___TFSp10initializefxT_
_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd
_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6_countSi
_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_
_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader
_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi
-_TMaPs17_NSStringCoreType_
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage7_bucketfxSi
-_TTWSSs8HashablesFS_g9hashValueSi
-_TTSf4s___TFSSg9hashValueSi
_TMaCSo8NSObject
throwRealmException
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__
@@ -1432,7 +1510,6 @@ _TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_
_TTSg5TSSPs9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_
_TTSg5TSSPs9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__
_TTSg5TSSPs9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_
-_TMaPMP_
_TTSg5PMP____TFSSCurfxSS
_TTSg5PMP____TFSSCurfT26stringInterpolationSegmentx_SS
_TTWOVs6Mirror12DisplayStyles9EquatablesZFS1_oi2eefTxx_Sb
@@ -1455,28 +1532,329 @@ _TTSg5OVs6Mirror12DisplayStyleS0_s9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_G
_TTSg5CSo15RLMOptionalBase___TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionarys9subscriptFxGSqq__
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__
-_TTSf4s_n___TFs9_abstractFTVs12StaticString4lineSu_T_
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__
-_TMaGCs20_AnyGeneratorBoxBaseT5labelGSqSS_5valueP___
-_TTSg5T5labelGSqSS_5valueP_____TTWurGVs20AnyForwardCollectionx_s12SequenceTypesFS0_8generatefT_wx9Generator
-_TMaGSqSS_
-_TMaT5labelGSqSS_5valueP__
-_TMaGCs17_AnyCollectionBoxT5labelGSqSS_5valueP___
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__
_TMaGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__
_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__
+_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__
+_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_____GVs10DictionarySSPs9AnyObject_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__
+_TTRXFo_oGVs10DictionarySSPs9AnyObject__oGSqSS_iP__oGS_SSPS0___zoPs9ErrorType__XFo_iGS_SSPS0___iT5labelGSqSS_5valueP___iGS_SSPS0___zoPS1___
+getOptionalProperties
+requiredPropertiesForClass
+_TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__
+_TMaPMP_
+_TMaGSqPMP__
+_TFs19_isClassSuperMirrorFPMP_Sb
+_TFEsPs11_MirrorType12_superMirrorfT_GSqPS___
+_TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__
+_TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___
+_TPA__TTRXFo_iT__iGSqVs6Mirror__XFo__oGSqS___
+_TPA__TFFVs6MirrorcFT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_U_FT_GSqS__
+_TMaPMPs9AnyObject_
+_TWlGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__uRxs9IndexablerGS_x_s13GeneratorTypes
+_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s12SequenceTypes
+_TWlGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_s13GeneratorTypes
+_TWlGVs5SliceVVs6Mirror14LegacyChildren_uRxs9IndexablerGS_x_S2_s
+_TMaGVs17IndexingGeneratorGVs5SliceVVs6Mirror14LegacyChildren__
+_TMaGVs5SliceVVs6Mirror14LegacyChildren_
+_TMaGVs17IndexingGeneratorVVs6Mirror14LegacyChildren_
+_TMaGCs14_CollectionBoxVVs6Mirror14LegacyChildren_
+_TMaGCs21_RandomAccessIndexBoxSi_
+_TPA__TZFVs6Mirror19_noSuperclassMirrorfT_GSqS__
+_TTSf4n_n_n_d___TFVs6MirrorCfT6legacyPs11_MirrorType_11subjectTypePMP_20makeSuperclassMirrorGSqFT_GSqS____S_
+_TTRXFo_oGSqSS_iP__oGSqTSSC10RealmSwift18LinkingObjectsBase__zoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___iGSqTSSS0___zoPS1___
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_
+_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg19_allocatedByteCountSi
+_TMaGCs23_ContiguousArrayStorageTSSC10RealmSwift18LinkingObjectsBase__
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi
+_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg21allocatedElementCountSi
+_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__
+_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TZFVs20ManagedBufferPointerg14_alignmentMaskSi
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferCfT_GS_x_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_
+_TTSg5GVs12_ArrayBufferTSSC10RealmSwift18LinkingObjectsBase__GS_TSSS1___s16_ArrayBufferTypes_TSSS1___GVs17IndexingGeneratorGS_TSSS1____GS3_GS_TSSS1____s13GeneratorTypes_TSSS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferTSSS1___GS8_TSSS1___s14CollectionTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1___GS8_TSSS1___s9IndexablesGS8_TSSS1___s12SequenceTypes_GS3_GS8_TSSS1____GS3_GS8_TSSS1____S4_s_TSSS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_TSSS1____TSSS1___TSSS1___TSSS1_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp14initializeFromfTGSpx_5countSi_T_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp18moveInitializeFromfTGSpx_5countSi_T_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp7destroyfSiT_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s9IndexablesFS0_g8endIndexwx5Index
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg10startIndexSi
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferx__
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_
+_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerlu5valuex
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferwx7Element__
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSp10initializefxT_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg8capacitySi
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb
+_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGeneratorCfxGS_x_
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer10getElementfSix
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg9subscriptFSix
+_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x
+_TTSg5T5labelGSqSS_5valueP_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_
+_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_
+_TTSg5T5labelGSqSS_5valueP_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken
+_TTSg5T5labelGSqSS_5valueP_____TFSag9subscriptFSix
+_TTSg5T5labelGSqSS_5valueP_____TFSag8endIndexSi
+_TTSg5T5labelGSqSS_5valueP_____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSaCft12arrayLiteralGSax__GSax_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg19firstElementAddressGSpx_
+_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TZFVs20ManagedBufferPointerg12_valueOffsetSi
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffers5countSi
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffers5countSi
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferCfT_GS_x_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSaCfT19_uninitializedCountSi_GSax_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TZFSa22_allocateUninitializedfSiTGSax_GSpx__
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa36_reserveCapacityAssumingUniqueBufferfSiT_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa6appendfxT_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_
+_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_
+_TTSg5GSaT5labelGSqSS_5valueP___GSaT5labelGSqSS_5valueP___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_T5labelGSqSS_5valueP_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_
+_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBuffer10getElementfSix
+_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__
+_TMaTSSGVs10DictionarySSSS__
+_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TZFVs20ManagedBufferPointerg14_elementOffsetSi
+_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_
+_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x
+_TTSg5TSSGVs10DictionarySSSS_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x
+_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_
+_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb
+_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_
+_TTSg5TSSGVs10DictionarySSSS_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken
+_TTSg5GSaTSSGVs10DictionarySSSS___GSaTSSGS_SSSS___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSGS_SSSS_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_
+_TTSg5TSSGVs10DictionarySSSS_____TFSag8endIndexSi
+_TTSg5TSSGVs10DictionarySSSS_____TFSag10startIndexSi
+_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
+_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg5countSi
+_TTSg5TSSGVs10DictionarySSSS_____TFSa9_getCountfT_Si
+_TTSg5TSSGVs10DictionarySSSS_____TFSag5countSi
+_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBufferg5countSi
+_TTSg5TSSGVs10DictionarySSSS_____TFSag9subscriptFSix
+_TTSg5GSaTSSGVs10DictionarySSSS___GSaTSSGS_SSSS___s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSGS_SSSS___GS4_TSSGS_SSSS___s9IndexablesGS4_TSSGS_SSSS___s12SequenceTypes_GVs17IndexingGeneratorGS4_TSSGS_SSSS____GS7_GS4_TSSGS_SSSS____s13GeneratorTypes_TSSGS_SSSS___SiSiS1_s_SiSiS2_s_SiSiS3_s_Si_GS4_TSSGS_SSSS____TSSGS_SSSS___TSSGS_SSSS_____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_
+_TTSg5SS_SS___TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__
+_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi
+_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi
+_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi
+_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__
+_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_
+_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_
+_TMaGCs28_NativeDictionaryStorageImplSSSS_
+_TTSf4n_d___TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__
+_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageg11_bucketMaskSi
+_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb
+_TTSg5SSSSs8Hashables_SS___TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__
+_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5_nextfSiSi
+_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5keyAtfSix
+_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader
+_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImpls6_countSi
+_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_
+_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader
+_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg9_capacitySi
+_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer10getElementfSix
+_TTSg5TSSSS____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_
+_TTSg5TSSSS____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x
+_TTSg5TSSSS____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x
+_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_
+_TTSg5TSSSS____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb
+_TTSg5TSSSS____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_
+_TTSg5TSSSS____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken
+_TTSg5GSaTSSSS__GSaTSSSS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSSS____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_
+_TTSg5TSSSS____TFSag8endIndexSi
+_TTSg5TSSSS____TFSag10startIndexSi
+_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg12_valueOffsetSi
+_TTSg5TSSSS____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_
+_TTSg5TSSSS____TFVs12_ArrayBufferg9_isNativeSb
+_TTSg5TSSSS____TFVs12_ArrayBufferg5countSi
+_TTSg5TSSSS____TFSa9_getCountfT_Si
+_TTSg5TSSSS____TFSag5countSi
+_TTSg5TSSSS____TFVs22_ContiguousArrayBufferg5countSi
+_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage7_bucketfxSi
+_TTSg5TSSSS____TFSag9subscriptFSix
+_TTSg5GSaTSSSS__GSaTSSSS__s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSSS__GS3_TSSSS__s9IndexablesGS3_TSSSS__s12SequenceTypes_GVs17IndexingGeneratorGS3_TSSSS___GS6_GS3_TSSSS___s13GeneratorTypes_TSSSS__SiSiS0_s_SiSiS1_s_SiSiS2_s_Si_GS3_TSSSS___TSSSS__TSSSS____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_
+_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__
+_TTSg5TSSSS____TFSp7destroyfSiT_
+_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg13_valuePointerGSpx_
+_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg15_elementPointerGSpq__
+_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg14_elementOffsetSi
+_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
+_TTSg5TSSSS____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_
+_TTSg5TSSSS____TFCs23_ContiguousArrayStoraged
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorageg11_bucketMaskSi
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage5_nextfSiSi
+_TTSg5SS_GVs10DictionarySSSS____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__
+_TFZFCs28_NativeDictionaryStorageImpl6createFSiGS_xq__U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_
+_TTSg5Vs29_HashedContainerStorageHeader_Vs5UInt8___TFZFCs13ManagedBuffer6createFTSi12initialValueFGCs18ManagedProtoBufferxq__x_GS_xq__U_FTPs9AnyObject_FPS1__Si_Q_
+_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi
+_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi
+_TTSg5SS_GVs10DictionarySSSS____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi
+_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__
+_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_
+_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_
+_TMaGCs28_NativeDictionaryStorageImplSSGVs10DictionarySSSS__
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage5keyAtfSix
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb
+__swift_memmove_array32_4
+__swift_memcpy_array32_4
+__swift_copy_outline_pointer
+_TwalVSC28_SwiftNSFastEnumerationState
+_TwTkVSC28_SwiftNSFastEnumerationState
+__swift_memcpy32_4
+_TwCpVSC28_SwiftNSFastEnumerationState
+_TwdeVSC28_SwiftNSFastEnumerationState
+_TwprVSC28_SwiftNSFastEnumerationState
+_TwCPVSC28_SwiftNSFastEnumerationState
+_TwXXVSC28_SwiftNSFastEnumerationState
+_TMaGSqPs9AnyObject__
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__
+_TTSg5GVs10DictionarySSSS____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x
+_TTSg5SS___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__
+_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader
+_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImpls6_countSi
+_TTSg5GVs10DictionarySSSS____TFSp10initializefxT_
+_TTSg5SS___TFSp10initializefxT_
+_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd
+_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg6_countSi
+_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_
+_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader
+_TTSg5SS_GVs10DictionarySSSS____TFCs28_NativeDictionaryStorageImplg9_capacitySi
+_TMaPs17_NSStringCoreType_
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs24_NativeDictionaryStorage7_bucketfxSi
+_TTWSSs8HashablesFS_g9hashValueSi
+_TTSf4s___TFSSg9hashValueSi
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg19_allocatedByteCountSi
+_TMaGCs23_ContiguousArrayStorageT5labelGSqSS_5valueP___
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg21allocatedElementCountSi
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_
+_TTSg5T5labelGSqSS_5valueP_____TFSp18moveInitializeFromfTGSpx_5countSi_T_
+_TTSg5T5labelGSqSS_5valueP_____TFSp7destroyfSiT_
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_
+_TTSg5T5labelGSqSS_5valueP_____TFSp14initializeFromfTGSpx_5countSi_T_
+_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerlu5valuex
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg10startIndexSi
+_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_
+_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__
+_TTSf4s_n___TFs9_abstractFTVs12StaticString4lineSu_T_
+_TTSg5T5labelGSqSS_5valueP_____TFSp10initializefxT_
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg14_elementOffsetSi
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffers5countSi
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg8capacitySi
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferg5countSi
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TZFVs20ManagedBufferPointerg12_valueOffsetSi
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb
+_TTSg5C10RealmSwift18LinkingObjectsBaseS0_s9EquatableS____TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs10Dictionarys9subscriptFxGSqq__
+_TTSg5SSSSs8Hashables_SS___TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__
+_TMaGCs29_NativeDictionaryStorageOwnerSSSS_
+_TTSg5SSSSs8Hashables_SS___TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__
+_TTSg5SSSSs8Hashables_SS___TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__
+_TTSg5TSSSS____TFSaCfGVs12_ArrayBufferx_GSax_
+_TTSg5TSSSS____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__
+_TTSg5SSSSs8Hashables_SS___TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__
+_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_
+_TTSg5TSSSS____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_
+_TTSg5TSSSS____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__
+_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__
+_TMaTSSSS_
+_TMaGCs23_ContiguousArrayStorageTSSSS__
+_TTSg5TSSSS____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator
+_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg15_elementPointerGSpq__
+_TMaTSSC10RealmSwift18LinkingObjectsBase_
+_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TZFVs20ManagedBufferPointerg14_elementOffsetSi
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer10getElementfSix
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg9subscriptFSix
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken
+_TTSg5GSaTSSC10RealmSwift18LinkingObjectsBase__GSaTSSS0___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSS0_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBufferg5countSi
+_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg13_valuePointerGSpx_
+_TTSg5Vs10_ArrayBody_TSSC10RealmSwift18LinkingObjectsBase____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg9_isNativeSb
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs12_ArrayBufferg5countSi
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSa9_getCountfT_Si
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSag8endIndexSi
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__
+_TMaGVs10DictionarySSSS_
+_TMaGCs29_NativeDictionaryStorageOwnerSSGVs10DictionarySSSS__
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__
+_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_
+_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg9_isNativeSb
+_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferg19firstElementAddressGSpx_
+_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_
+_TTSg5Vs10_ArrayBody_TSSGVs10DictionarySSSS_____TZFVs20ManagedBufferPointerg12_valueOffsetSi
+_TTSg5TSSGVs10DictionarySSSS_____TFVs22_ContiguousArrayBuffers5countSi
+_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBuffers5countSi
+_TTSg5TSSGVs10DictionarySSSS_____TFVs12_ArrayBufferCfT_GS_x_
+_TTSg5TSSGVs10DictionarySSSS_____TFSaCfT19_uninitializedCountSi_GSax_
+_TTSg5TSSGVs10DictionarySSSS_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__
+_TTSg5TSSGVs10DictionarySSSS_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_
+_TTSg5T5labelGSqSS_5valueP_____TFSaCfGVs12_ArrayBufferx_GSax_
+_TTSg5T5labelGSqSS_5valueP_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_
+_TTSg5T5labelGSqSS_5valueP_____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__
+_TTSg5T5labelGSqSS_5valueP_____TTWurGVs20AnyForwardCollectionx_s12SequenceTypesFS0_8generatefT_wx9Generator
+_TMaGSqSS_
+_TMaT5labelGSqSS_5valueP__
+_TTSg5Vs10_ArrayBody_T5labelGSqSS_5valueP_____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__
+_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArrayCfT_GS_x_
+_TTSg5T5labelGSqSS_5valueP_____TFVs22_ContiguousArrayBufferCfT_GS_x_
_TMaPs17CustomReflectable_
_TMaP_
-_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__
_TTSg5T5labelGSqSS_5valueP_____TFVs12AnyGenerator4nextfT_GSqx_
_TTSg5T5labelGSqSS_5valueP_____TFCs20_AnyGeneratorBoxBase4nextfT_GSqx_
_TTSg5T5labelGSqSS_5valueP_____TFVs20AnyForwardCollection8generatefT_GVs12AnyGeneratorx_
_TTSg5T5labelGSqSS_5valueP_____TFCs15_AnySequenceBox8generatefT_GVs12AnyGeneratorx_
-_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_____GVs10DictionarySSPs9AnyObject_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__
-_TTRXFo_oGVs10DictionarySSPs9AnyObject__oGSqSS_iP__oGS_SSPS0___zoPs9ErrorType__XFo_iGS_SSPS0___iT5labelGSqSS_5valueP___iGS_SSPS0___zoPS1___
+_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg14_alignmentMaskSi
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_
+_TTSg5GSaTSSC10RealmSwift18LinkingObjectsBase__GSaTSSS0___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSS0_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_
+_TTSg5TSSC10RealmSwift18LinkingObjectsBase____TFSag9subscriptFSix
+_TTRXFo_oGVs10DictionarySSGS_SSSS__oSSoC10RealmSwift18LinkingObjectsBase_oGS_SSGS_SSSS__zoPs9ErrorType__XFo_iGS_SSGS_SSSS__iTSSS1___iGS_SSGS_SSSS__zoPS2___
+_TTSg5SSSSs8Hashables_GVs10DictionarySSSS____TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__
+_TTSg5GSaTSSC10RealmSwift18LinkingObjectsBase__GSaTSSS0___s12SequenceTypes_GVs17IndexingGeneratorGSaTSSS0____GS2_GSaTSSS0____s13GeneratorTypes_TSSS0___GVs10ArraySliceTSSS0____GVs10DictionarySSGS5_SSSS_____TFEsPs12SequenceType6reduceurfzTqd__7combineFzTqd__Wx9Generator7Element__qd___qd__
+_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_
+_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_
+_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray6appendfxT_
+_TTSg5T5labelGSqSS_5valueP_____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_
+_TTSg5C10RealmSwift18LinkingObjectsBaseS0_s9EquatableS____TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb
+_TTRXFo_oGSqSS_iP__dSbzoPs9ErrorType__XFo_iT5labelGSqSS_5valueP___dSbzoPS___
+_TFZFC10RealmSwift10ObjectUtilP33_95A69397B44B27F7A8F436871D45D9E627getLinkingObjectsPropertiesFPs9AnyObject_CSo12NSDictionaryU_FT5labelGSqSS_5valueP__Sb
+_TTSg5GVs20AnyForwardCollectionT5labelGSqSS_5valueP___GS_T5labelGSqSS_5valueP___s12SequenceTypes_GVs12AnyGeneratorT5labelGSqSS_5valueP___GS1_T5labelGSqSS_5valueP___s13GeneratorTypes_T5labelGSqSS_5valueP___GVs5SliceGS_T5labelGSqSS_5valueP_______TFEsPs12SequenceType6filterfzFzWx9Generator7Element_SbGSaWxS0_S1___
_TFVs6MirrorCfT10reflectingP__S_
-getOptionalProperties
-requiredPropertiesForClass
+getLinkingObjectsProperties
+initializeLinkingObjectsProperty
_TMaGVs10DictionarySSCSo15RLMOptionalBase_
_TMaGVs10DictionarySSGC10RealmSwift4ListCS0_13DynamicObject__
_TMaC10RealmSwift10ObjectUtil
@@ -1504,7 +1882,6 @@ _TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10Dictionary
_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__
_TTSg5SSSSs8Hashables_GC10RealmSwift4ListCS0_13DynamicObject____TFVs10Dictionaryg9subscriptFxGSqq__
dynamicList
-linkingObjects
_TTSg5SS___TFSaCft12arrayLiteralGSax__GSax_
_TTSg5SS___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_
_TTSg5SS___TFVs12_ArrayBufferg9_isNativeSb
@@ -1519,7 +1896,7 @@ objectUtilClass
className.get
objectSchema.get
_TMaCSo9RLMSchema
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Object.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Object.swift
_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray15reserveCapacityfSiT_
_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
@@ -1530,7 +1907,6 @@ _TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferC10RealmSwift8Property_GS_S1__
_TMaGCs23_ContiguousArrayStorageC10RealmSwift8Property_
L_selector_data(properties)
L_selector(properties)
-_TMLCSo11RLMProperty
L_selector_data(primaryKeyProperty)
L_selector(primaryKeyProperty)
L_selector(objectForKeyedSubscript:)
@@ -1618,7 +1994,6 @@ _TTSg5CSo11RLMProperty___TTWurGSax_s14CollectionTypesFS_g5countWx5Index8Distance
_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg9_isNativeSb
_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg5countSi
_TTSg5CSo11RLMProperty___TFSa9_getCountfT_Si
-_TMaCSo11RLMProperty
_TTWSis14_IncrementablesFS_9successorfT_x
_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_
_TTSg5C10RealmSwift8Property___TFVs15ContiguousArray6appendfxT_
@@ -1634,7 +2009,7 @@ _TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_
_TTSg5CSo11RLMProperty___TFSag5countSi
_TTSg5CSo11RLMProperty___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_
properties.get
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/ObjectSchema.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/ObjectSchema.swift
_TF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24realmOptionalToAnyObjectuRxS_17RealmOptionalTyperFGSqx_GSqPs9AnyObject__
_TF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_
_TFF10RealmSwiftP33_77C6D4FF4772B363C1472583F262C7BD24anyObjectToRealmOptionaluRxS_17RealmOptionalTyperFGSqPs9AnyObject__GSqx_U_FSiVs4Int8
@@ -1683,7 +2058,7 @@ _TWaVs4Int810RealmSwift17RealmOptionalTypeS0_
_TWaSi10RealmSwift17RealmOptionalTypeS_
value.set
value.get
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Optional.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Optional.swift
get_field_types_Property
L_selector_data(indexed)
L_selector(indexed)
@@ -1698,17 +2073,17 @@ Property.swift
_TMaC10RealmSwift8Property
_TWaC10RealmSwift8Propertys9EquatableS_
_TWaC10RealmSwift8Propertys23CustomStringConvertibleS_
-objectClassName.get
optional.get
indexed.get
type.get
name.get
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Property.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Property.swift
_TTRXFo__dT__XFdCb__dT__
+_TFFC10RealmSwift5Realm20addNotificationBlockFFT12notificationOS_12Notification5realmS0__T_CSo20RLMNotificationTokenU_FTSSCSo8RLMRealm_T_
_TTRXFo_oSSoCSo8RLMRealm_dT__XFdCb_dCSo8NSStringdS__dT__
-_TFF10RealmSwift41rlmNotificationBlockFromNotificationBlockFFT12notificationOS_12Notification5realmCS_5Realm_T_FTSSCSo8RLMRealm_T_U_FTSSS2__T_
_TTSg5SS___TFCs23_ContiguousArrayStoraged
-_TPA__TFF10RealmSwift41rlmNotificationBlockFromNotificationBlockFFT12notificationOS_12Notification5realmCS_5Realm_T_FTSSCSo8RLMRealm_T_U_FTSSS2__T_
+objectdestroy.79
+_TPA__TFFC10RealmSwift5Realm20addNotificationBlockFFT12notificationOS_12Notification5realmS0__T_CSo20RLMNotificationTokenU_FTSSCSo8RLMRealm_T_
get_field_types_Realm
_TwxsO10RealmSwift12Notification
_TwxgO10RealmSwift12Notification
@@ -1716,7 +2091,6 @@ _TwugO10RealmSwift12Notification
_TwupO10RealmSwift12Notification
_TwuiO10RealmSwift12Notification
get_field_types_Notification
-objectdestroy.13
objectdestroy.16
objectdestroy.19
objectdestroy.22
@@ -1734,7 +2108,6 @@ objectdestroy.61
objectdestroy.64
objectdestroy.67
objectdestroy.70
-objectdestroy.79
block_destroy_helper.26
block_destroy_helper.50
block_destroy_helper.74
@@ -1763,8 +2136,6 @@ _TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT_
_TPA__TFF10RealmSwift22accessorMigrationBlockFFT9migrationCS_9Migration16oldSchemaVersionVs6UInt64_T_FTCSo12RLMMigrationS1__T_U_FTS2_S1__T_.66
_TPA__TTRXFo_oCSo12RLMMigrationdVs6UInt64_dT__XFo_iTS_S0___iT__.69
_TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.72
-L_selector_data(isReadOnly)
-L_selector(isReadOnly)
L_selector_data(schema)
L_selector(schema)
L_selector_data(configuration)
@@ -1773,7 +2144,6 @@ _TPA__TTRXFo_iTCSo12RLMMigrationVs6UInt64__iT__XFo_oS_dS0__dT__.72
L_selector(isEmpty)
L_selector_data(realmWithConfiguration:error:)
L_selector(realmWithConfiguration:error:)
-metadata.14
metadata.17
metadata.20
metadata.23
@@ -1812,8 +2182,6 @@ block_descriptor.78
_TMLGC10RealmSwift7ResultsCS_13DynamicObject_
metadata.80
block_descriptor.83
-L_selector_data(removeNotification:)
-L_selector(removeNotification:)
L_selector_data(autorefresh)
L_selector(autorefresh)
L_selector_data(setAutorefresh:)
@@ -1822,10 +2190,8 @@ block_descriptor.83
L_selector(refresh)
L_selector_data(invalidate)
L_selector(invalidate)
-L_selector_data(writeCopyToPath:error:)
-L_selector(writeCopyToPath:error:)
-L_selector_data(writeCopyToPath:encryptionKey:error:)
-L_selector(writeCopyToPath:encryptionKey:error:)
+L_selector_data(writeCopyToURL:encryptionKey:error:)
+L_selector(writeCopyToURL:encryptionKey:error:)
_METACLASS_DATA__TtC10RealmSwift5Realm
_IVARS__TtC10RealmSwift5Realm
_DATA__TtC10RealmSwift5Realm
@@ -1834,17 +2200,6 @@ _TMfO10RealmSwift12Notification
field_type_vector_Notification
field_type_vector_Realm
_TMLCSo8RLMRealm
-_TTSg5Vs18_StringBufferIVars_Vs6UInt16___TFVs11_HeapBufferg6_valueGSpx_
-_TTSf4s_n_n___TFVs13_StringBuffer4growfTGVs5RangeGSPVs7RawByte__12newUsedCountSi_Sb
-_TFVs13_StringBufferg8capacitySi
-_TMaGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_
-_TTSf4n_n_n_d___TFVs13_StringBufferCfT8capacitySi11initialSizeSi12elementWidthSi_S_
-_TFFVs11_StringCoreg11cocoaBufferGSqPs9AnyObject__U_FPS0__PS0__
-_TFVs11_StringCore12_copyInPlacefT7newSizeSi11newCapacitySi15minElementWidthSi_T_
-_TFFVs11_StringCore20representableAsASCIIFT_SbU_FVs6UInt16Sb
-_TTSf1cl57_TTRXFo_dVs6UInt16_dSbzoPs9ErrorType__XFo_iS__dSbzoPS0___XFo_dVs6UInt16_dSbzoPs9ErrorType___n___TTSg5GSRVs6UInt16_GSRS__s12SequenceTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_S__GVs5SliceGSRS______TFEsPs12SequenceType8containsfzFzWx9Generator7Element_SbSb
-_TFVs11_StringCore14_claimCapacityfTSi15minElementWidthSi_TSiVs14COpaquePointer_
-_TTSf4gs_n___TFVs11_StringCore6appendfS_T_
_TTSg5SS___TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_
_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer10getElementfSix
_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__
@@ -1875,13 +2230,11 @@ _TWaO10RealmSwift12Notifications8HashableS_
_TWaO10RealmSwift12Notifications9EquatableS_
_TWaC10RealmSwift5Realms9EquatableS_
add
-writeCopyToPath
+writeCopyToURL
invalidate
refresh
autorefresh.set
autorefresh.get
-removeNotification
-rlmNotificationBlockFromNotificationBlock
_TMaGSqC10RealmSwift13DynamicObject_
dynamicObjectForPrimaryKey
_TMaGSQPs9AnyObject__
@@ -1901,16 +2254,14 @@ beginWrite
write
configuration.get
schema.get
-readOnly.get
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Realm.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Realm.swift
_TFC10RealmSwift12RLMGeneratorcfT10collectionPSo13RLMCollection__GS0_x_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5realmGSqCS_5Realm_
+_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11invalidatedSb
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5countSi
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11descriptionSS
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffxGSqSi_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffCSo11NSPredicateGSqSi_
-_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOfftSSGSaPs9AnyObject___GSqSi_
-_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterftSSGSaPs9AnyObject___GCS_7Resultsx_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6filterfCSo11NSPredicateGCS_7Resultsx_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sortedfTSS9ascendingSb_GCS_7Resultsx_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultsx_
@@ -1925,19 +2276,18 @@ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg8e
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase11valueForKeyfSSGSqPs9AnyObject__
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase15valueForKeyPathfSSGSqPs9AnyObject__
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8setValuefTGSqPs9AnyObject__6forKeySS_T_
-_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationToken
+_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationToken
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasecfT_GS0_x_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseD
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBased
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectioncfT4basex_GS0_x_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionCfT4basex_GS0_x_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong5realmGSqCS_5Realm_
+_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong11invalidatedSb
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong5countSi
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong11descriptionSS
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOffwx7ElementGSqSi_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOffCSo11NSPredicateGSqSi_
-_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection7indexOfftSSGSaPs9AnyObject___GSqSi_
-_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6filterftSSGSaPs9AnyObject___GCS_7Resultswx7Element_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6filterfCSo11NSPredicateGCS_7Resultswx7Element_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6sortedfTSS9ascendingSb_GCS_7Resultswx7Element_
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrfqd__GCS_7Resultswx7Element_
@@ -1952,13 +2302,10 @@ _TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiong8endIn
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection11valueForKeyfSSGSqPs9AnyObject__
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection15valueForKeyPathfSSGSqPs9AnyObject__
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection8setValuefTGSqPs9AnyObject__6forKeySS_T_
-_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionwx7Element__GSqCSo7NSError__T_CSo20RLMNotificationToken
+_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection21_addNotificationBlockfFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionwx7Element__T_CSo20RLMNotificationToken
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectionD
_TFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollectiond
_TWtuRxC10RealmSwift6ObjectrGCS_12RLMGeneratorx_s13GeneratorTypeS_7Element
-_TWIuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_
-_TWIuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_
-_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_11SubSequence
_TWIuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_
_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequencePs9Indexable_
_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequencePs12SequenceType_
@@ -1967,37 +2314,51 @@ _TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_9Generato
_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_9GeneratorPs13GeneratorType_
_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_11SubSequence
get_field_types_RLMGenerator
+get_field_types_RealmCollectionChange
+_TwXXO10RealmSwift21RealmCollectionChange
+_TwCPO10RealmSwift21RealmCollectionChange
+_TwprO10RealmSwift21RealmCollectionChange
+_TwdeO10RealmSwift21RealmCollectionChange
+_TwxxO10RealmSwift21RealmCollectionChange
+_TwCpO10RealmSwift21RealmCollectionChange
+_TwcpO10RealmSwift21RealmCollectionChange
+_TwcaO10RealmSwift21RealmCollectionChange
+_TwTkO10RealmSwift21RealmCollectionChange
+_TwtkO10RealmSwift21RealmCollectionChange
+_TwtaO10RealmSwift21RealmCollectionChange
+_TwalO10RealmSwift21RealmCollectionChange
+_TwTKO10RealmSwift21RealmCollectionChange
+_TwXxO10RealmSwift21RealmCollectionChange
+_TwCcO10RealmSwift21RealmCollectionChange
+_TwTtO10RealmSwift21RealmCollectionChange
+_TwtTO10RealmSwift21RealmCollectionChange
+_TwugO10RealmSwift21RealmCollectionChange
+_TwupO10RealmSwift21RealmCollectionChange
+_TwuiO10RealmSwift21RealmCollectionChange
+create_generic_metadata_RealmCollectionChange
get_field_types__AnyRealmCollectionBase
create_generic_metadata__AnyRealmCollectionBase
get_field_types__AnyRealmCollection
create_generic_metadata__AnyRealmCollection
get_field_types_AnyRealmCollection
create_generic_metadata_AnyRealmCollection
-_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_9Generator
-_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_9Generator
+_TTSg5CSo8NSNumber___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_
+_TTSf4g___TTSg5CSo8NSNumber_Si___TFs31_arrayConditionalBridgeElementsu0_rFGSax_GSqGSaq___
_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_9Generator
-_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_7Element
-_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s9IndexableS_8_Element
_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_7Element
_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s9IndexableS_8_Element
-_TWtuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequence
_TWtuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_11SubSequence
-_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequencePs9Indexable_
-_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_11SubSequencePs12SequenceType_
-_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_9GeneratorPs13GeneratorType_
-_TWTuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_9GeneratorPs13GeneratorType_
_TWTuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_9GeneratorPs13GeneratorType_
create_generic_metadata_RLMGenerator
-_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_
-_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_
-_TWGuRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_
_TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_
_TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_
_TWGuRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_
_TWvdvC10RealmSwift12RLMGeneratorP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E13generatorBaseC10Foundation15NSFastGenerator
_IVARS__TtC10RealmSwift12RLMGenerator
+_TMLGSaSi_
_TMnC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase
_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5realmGSqCS_5Realm_
+_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11invalidatedSb
_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg5countSi
_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg11descriptionSS
_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase7indexOffxGSqSi_
@@ -2018,7 +2379,7 @@ _TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseg
_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase11valueForKeyfSSGSqPs9AnyObject__
_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase15valueForKeyPathfSSGSqPs9AnyObject__
_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase8setValuefTGSqPs9AnyObject__6forKeySS_T_
-_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationToken
+_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase21_addNotificationBlockfFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationToken
_TWoFC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBaseCfT_GS0_x_
_TMPC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBase
_TMnC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection
@@ -2028,19 +2389,75 @@ _TMPC10RealmSwiftP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E19_AnyRealmCollection
_TWvdvC10RealmSwift18AnyRealmCollectionP33_C451EF67DAF1C7CDA8816B8CF2B3BF2E4baseGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_
_IVARS__TtC10RealmSwift18AnyRealmCollection
got._TMps13GeneratorType
+_TMLCSo7NSError
+L_selector_data(deletions)
+L_selector(deletions)
+L_selector_data(insertions)
+L_selector(insertions)
+L_selector_data(modifications)
+L_selector(modifications)
+_TMLGCs23_ContiguousArrayStorageSi_
RealmCollectionType.swift
+_TTSg5CSo8NSNumber_Ps9AnyObject____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___
+_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBufferg5countSi
+_TTSg5Vs10_ArrayBody_CSo8NSNumber___TZFVs20ManagedBufferPointerg12_valueOffsetSi
+_TTSg5Si___TFSaCfGVs12_ArrayBufferx_GSax_
+_TTSg5Si___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_
+_TTSg5Si___TFVs22_ContiguousArrayBuffers5countSi
+_TTSg5Vs10_ArrayBody_CSo8NSNumber___TFVs20ManagedBufferPointerg15_elementPointerGSpq__
+_TTSg5Vs10_ArrayBody_CSo8NSNumber___TZFVs20ManagedBufferPointerg14_elementOffsetSi
+_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBuffer10getElementfSix
+_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBufferg9subscriptFSix
+_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_
+_TTSg5Vs10_ArrayBody_CSo8NSNumber___TFVs20ManagedBufferPointerg13_valuePointerGSpx_
+_TTSg5Vs10_ArrayBody_CSo8NSNumber___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
+_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_
+_TTSg5CSo8NSNumber___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_
+_TTSg5Si___TFSp10initializefxT_
+_TTSg5Si___TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb
+_TTSg5Si___TFs34_conditionallyBridgeFromObjectiveCurFTPs9AnyObject_Mx_GSqx_
+_TTSg5CSo8NSNumber___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x
+_TTSg5CSo8NSNumber___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_
+_TTSg5CSo8NSNumber___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken
+_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb
+_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb
+_TTSg5CSo8NSNumber___TFSa29_hoistableIsNativeTypeCheckedfT_Sb
+_TTSg5GSaCSo8NSNumber_GSaS__s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS4_S__s9IndexablesGS4_S__s12SequenceTypes_GVs17IndexingGeneratorGS4_S___GS7_GS4_S___s13GeneratorTypes_S__SiSiS1_s_SiSiS2_s_SiSiS3_s_Si_GS4_S___S__S____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_
+_TTSg5CSo8NSNumber___TFSag8endIndexSi
+_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg13_valuePointerGSpx_
+_TTSg5Si___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_
+_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg19_allocatedByteCountSi
+_TTSg5Vs10_ArrayBody_Si___TZFVs20ManagedBufferPointerg14_elementOffsetSi
+_TMaGCs23_ContiguousArrayStorageSi_
+_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg9_isNativeSb
+_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg5countSi
+_TTSg5CSo8NSNumber___TFSa9_getCountfT_Si
+_TTSg5GSaCSo8NSNumber_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_
+_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_
+_TTSg5CSo8NSNumber___TFSag9subscriptFSix
+_TTSg5CSo8NSNumber___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x
+_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg15_elementPointerGSpq__
+_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerg21allocatedElementCountSi
+_TTSg5Vs10_ArrayBody_Si___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__
+_TTSg5Vs10_ArrayBody_Si___TZFVs20ManagedBufferPointerg14_alignmentMaskSi
+_TTSg5Si___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_
+_TTSg5Vs10_ArrayBody_Si___TZFVs20ManagedBufferPointerg12_valueOffsetSi
+_TTSg5Si___TFVs22_ContiguousArrayBufferCfT_GS_x_
+_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_
+_TTSg5CSo8NSNumber___TFSag5countSi
+_TTSg5CSo8NSNumber___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_
+_TTSg5CSo8NSNumber_Si___TFs15_arrayForceCastu0_rFGSax_GSaq__
+_TTSg5GSaSi____TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb
+fromObjc
+_TMaCSo7NSError
+_TMaGSaSi_
_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s12SequenceTypeS_
_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s9IndexableS_
_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s23CustomStringConvertibleS_
_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_s14CollectionTypeS_
_TWauRxC10RealmSwift6ObjectrGCS_18AnyRealmCollectionx_S_19RealmCollectionTypeS_
-_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s12SequenceTypeS_
-_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s9IndexableS_
-_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s23CustomStringConvertibleS_
-_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_s14CollectionTypeS_
-_TWauRxC10RealmSwift6ObjectrGCS_P33_C451EF67DAF1C7CDA8816B8CF2B3BF2E23_AnyRealmCollectionBasex_S_19RealmCollectionTypeS_
_TWauRxC10RealmSwift6ObjectrGCS_12RLMGeneratorx_s13GeneratorTypeS_
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmCollectionType.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmCollectionType.swift
_TTSg5MC10RealmSwift6Object___TFVs15ContiguousArray15reserveCapacityfSiT_
_TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS3_GS_MS1___s13GeneratorTypes_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferMS1__GS8_MS1__s14CollectionTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1__GS8_MS1__s9IndexablesGS8_MS1__s12SequenceTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1___MS1__MS1__MS1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
_TTSg5GVs22_ContiguousArrayBufferMC10RealmSwift6Object_GS_MS1__s16_ArrayBufferTypes_MS1__GVs17IndexingGeneratorGS_MS1___GS3_GS_MS1___s13GeneratorTypes_MS1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferMS1__GS8_MS1__s14CollectionTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1__GS8_MS1__s9IndexablesGS8_MS1__s12SequenceTypes_GS3_GS8_MS1___GS3_GS8_MS1___S4_s_MS1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_MS1___MS1__MS1__MS1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
@@ -2057,12 +2474,12 @@ _TwCpVC10RealmSwift5Realm13Configuration
_TwcpVC10RealmSwift5Realm13Configuration
_TwcaVC10RealmSwift5Realm13Configuration
_TwTkVC10RealmSwift5Realm13Configuration
-__swift_memcpy61_8
+__swift_memcpy65_8
_TwtaVC10RealmSwift5Realm13Configuration
_TwalVC10RealmSwift5Realm13Configuration
_TwXxVC10RealmSwift5Realm13Configuration
_TwCcVC10RealmSwift5Realm13Configuration
-__swift_memmove_array64_8
+__swift_memmove_array72_8
get_field_types_Configuration
_TMaGCs23_ContiguousArrayStoragePMPs9AnyObject__
_TPA__TTRXFo_iT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64__iT__XFo_oS0_dS1__dT__.30
@@ -2182,24 +2599,17 @@ _TFFFVC10RealmSwift5Realm13Configurationg11objectTypesGSqGSaMCS_6Object__U_FCSo9
_TTSg5GSaCSo15RLMObjectSchema_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__MC10RealmSwift6Object___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___
_TTSg5MC10RealmSwift6Object___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_
_TTSg5CSo15RLMObjectSchema___TFSag5countSi
-_TTSg5VSC26NSRegularExpressionOptions___TFSag8endIndexSi
-_TTSg5VSC26NSRegularExpressionOptions___TFSag10startIndexSi
-_TTSg5VSC26NSRegularExpressionOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator
-_TTSg5GSaVSC26NSRegularExpressionOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_
-_TTSg5VSC26NSRegularExpressionOptions___TFSag9subscriptFSix
-_TTSg5VSC17NSMatchingOptions___TFSag8endIndexSi
-_TTSg5VSC17NSMatchingOptions___TFSag10startIndexSi
-_TTSg5VSC17NSMatchingOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator
-_TTSg5GSaVSC17NSMatchingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_
-_TTSg5VSC17NSMatchingOptions___TFSag9subscriptFSix
-_TTWSus21BitwiseOperationsTypesZFS_oi1ofTxx_x
_TMaGSqCSo9RLMSchema_
_TMaT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_
_TMaFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T_
_TMaGSqFT9migrationC10RealmSwift9Migration16oldSchemaVersionVs6UInt64_T__
_TMaVC10RealmSwift5Realm13Configuration
_TWaVC10RealmSwift5Realm13Configurations23CustomStringConvertibleS_
+_TTRXFo_oSS_oCSo5NSURLzoPs9ErrorType__XFo_iSS_iS_zoPS0___
defaultConfiguration.set
+deleteRealmIfMigrationNeeded.materialize
+deleteRealmIfMigrationNeeded.set
+deleteRealmIfMigrationNeeded.get
migrationBlock.materialize
migrationBlock.set
migrationBlock.get
@@ -2208,6 +2618,7 @@ schemaVersion.set
schemaVersion.get
readOnly.materialize
readOnly.set
+readOnly.get
encryptionKey.materialize
encryptionKey.set
encryptionKey.get
@@ -2221,11 +2632,12 @@ _TTSg5GSaMC10RealmSwift6Object__CSo9RLMSchema___TFSq3mapurfzFzxqd__GSqqd___
_TTRXFo_oGSaMC10RealmSwift6Object__oCSo9RLMSchemazoPs9ErrorType__XFo_iGSaMS0___iS1_zoPS2___
_TTSg5GSaPMPs9AnyObject_____TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb
inMemoryIdentifier.set
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/RealmConfiguration.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/RealmConfiguration.swift
_TToFC10RealmSwift11ResultsBaseg10rlmResultsCSo10RLMResults
_TToFC10RealmSwift11ResultsBaseg11descriptionSS
_TToFC10RealmSwift11ResultsBase27countByEnumeratingWithStatefTGSpVSC22NSFastEnumerationState_7objectsGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___5countSi_Si
_TToFC10RealmSwift11ResultsBasecfT_S0_
+_TToFC10RealmSwift7Resultsg11invalidatedSb
_TToFC10RealmSwift7Resultsg5countSi
_TFC10RealmSwift7ResultscfCSo10RLMResultsGS0_x_
_TToFC10RealmSwift7ResultscfCSo10RLMResultsGS0_x_
@@ -2233,11 +2645,10 @@ _TToFC10RealmSwift7Results11valueForKeyfSSGSqPs9AnyObject__
_TToFC10RealmSwift7Results15valueForKeyPathfSSGSqPs9AnyObject__
_TToFC10RealmSwift7Results8setValuefTGSqPs9AnyObject__6forKeySS_T_
_TFFC10RealmSwift7Results6sorteduRd__s12SequenceTypeWd__9Generator7Element_zVS_14SortDescriptorrFqd__GS0_x_U_FS4_Ps9AnyObject_
-_TFFC10RealmSwift7Results20addNotificationBlockFFTGSqGS0_x__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS1___T_
-_TTRXFo_oGSqCSo10RLMResults_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0___dT__
-_TFFC10RealmSwift7Results21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS2___T_
-_TPA__TFFC10RealmSwift7Results20addNotificationBlockFFTGSqGS0_x__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS1___T_
-_TPA__TFFC10RealmSwift7Results21_addNotificationBlockFFTGSqGCS_18AnyRealmCollectionx__GSqCSo7NSError__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqS2___T_
+_TFFC10RealmSwift7Results20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
+_TFFC10RealmSwift7Results21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
+_TPA__TFFC10RealmSwift7Results20addNotificationBlockFFGOS_21RealmCollectionChangeGS0_x__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
+_TPA__TFFC10RealmSwift7Results21_addNotificationBlockFFGOS_21RealmCollectionChangeGCS_18AnyRealmCollectionx__T_CSo20RLMNotificationTokenU_FTGSqCSo10RLMResults_GSqCSo19RLMCollectionChange_GSqCSo7NSError__T_
_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_7Element
_TWIuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_
_TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequencePs9Indexable_
@@ -2251,27 +2662,11 @@ get_field_types_Results
create_generic_metadata_Results
_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_9Generator
_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s9IndexableS_8_Element
-block_destroy_helper.6
_TWtuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_11SubSequence
-block_copy_helper.5
_TWTuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_9GeneratorPs13GeneratorType_
-L_selector_data(minOfProperty:)
-L_selector(minOfProperty:)
-L_selector_data(maxOfProperty:)
-L_selector(maxOfProperty:)
-L_selector_data(sumOfProperty:)
-L_selector(sumOfProperty:)
-L_selector_data(averageOfProperty:)
-L_selector(averageOfProperty:)
-_TMLCSo8NSNumber
-block_descriptor.7
_TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_S_19RealmCollectionTypeS_
_TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_s14CollectionTypeS_
_TWGuRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_
-_PROTOCOL_NSFastEnumeration
-l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration
-l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration
-L_selector_data(rlmResults)
L_selector_data(init:)
_PROTOCOLS__TtC10RealmSwift11ResultsBase
_METACLASS_DATA__TtC10RealmSwift11ResultsBase
@@ -2285,13 +2680,6 @@ _INSTANCE_METHODS__TtC10RealmSwift7Results
_PROPERTIES__TtC10RealmSwift7Results
got.OBJC_CLASS_$_NSDate
field_type_vector_ResultsBase
-_TMLCSo10RLMResults
-_PROTOCOL_INSTANCE_METHODS_NSFastEnumeration
-_PROTOCOL_METHOD_TYPES_NSFastEnumeration
-_TTSg5CSo10RLMResultsCSo8NSObjects9Equatable10ObjectiveC___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb
-_TTSg5CSo10RLMResultsCSo8NSObjects9Equatable10ObjectiveC___TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb
-rlmResults.get
-_TMaCSo10RLMResults
_TMaC10RealmSwift11ResultsBase
_TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s12SequenceTypeS_
_TWauRxC10RealmSwift6ObjectrGCS_7Resultsx_s9IndexableS_
@@ -2312,10 +2700,7 @@ _TWaVs4Int810RealmSwift10MinMaxTypeS0_
_TWaSi10RealmSwift10MinMaxTypeS_
_TWaSf10RealmSwift10MinMaxTypeS_
_TWaSd10RealmSwift10MinMaxTypeS_
-_TTSf4s_s___TFFs26_unimplemented_initializerFTVs12StaticString8initNameS_4fileS_4lineSu6columnSu_T_U0_FGSRVs5UInt8_T_
-countByEnumeratingWithState
-_TMaCSo8NSNumber
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Results.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Results.swift
_TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray15reserveCapacityfSiT_
_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
_TTSg5GVs22_ContiguousArrayBufferC10RealmSwift12ObjectSchema_GS_S1__s16_ArrayBufferTypes_S1__GVs17IndexingGeneratorGS_S1___GS3_GS_S1___s13GeneratorTypes_S1__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS1__GS8_S1__s14CollectionTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1__GS8_S1__s9IndexablesGS8_S1__s12SequenceTypes_GS3_GS8_S1___GS3_GS8_S1___S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_S1___S1__S1__S1____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_
@@ -2387,7 +2772,7 @@ _TTSg5C10RealmSwift12ObjectSchema___TFVs15ContiguousArray40_makeUniqueAndReserve
_TTRXFo_oCSo15RLMObjectSchema_oC10RealmSwift12ObjectSchemazoPs9ErrorType__XFo_iS__iS1_zoPS2___
_TTSg5GSaCSo15RLMObjectSchema_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S__C10RealmSwift12ObjectSchema___TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___
_TTSg5C10RealmSwift12ObjectSchema___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Schema.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Schema.swift
_TwXXV10RealmSwift14SortDescriptor
_TwCPV10RealmSwift14SortDescriptor
_TwprV10RealmSwift14SortDescriptor
@@ -2419,8 +2804,8 @@ _TWaV10RealmSwift14SortDescriptors23CustomStringConvertibleS_
ascending.get
property.get
reversed
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SortDescriptor.swift
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/SwiftVersion.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SortDescriptor.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/SwiftVersion.swift
Util.swift
throwForNegativeIndex
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/RealmSwift/Util.swift
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/RealmSwift/Util.swift
diff --git a/Carthage/Build/iOS/49654D04-27D6-3F4B-AD17-76EF4408CD37.bcsymbolmap b/Carthage/Build/iOS/17E4C2A3-7FF4-3384-9868-7425D8366A20.bcsymbolmap
similarity index 57%
rename from Carthage/Build/iOS/49654D04-27D6-3F4B-AD17-76EF4408CD37.bcsymbolmap
rename to Carthage/Build/iOS/17E4C2A3-7FF4-3384-9868-7425D8366A20.bcsymbolmap
index 85b4fa2..69bd540 100644
--- a/Carthage/Build/iOS/49654D04-27D6-3F4B-AD17-76EF4408CD37.bcsymbolmap
+++ b/Carthage/Build/iOS/17E4C2A3-7FF4-3384-9868-7425D8366A20.bcsymbolmap
@@ -1,76 +1,40 @@
BCSymbolMap Version: 1.0
-_ZN5realm9TableViewD1Ev
-__clang_call_terminate
-_ZNK5realm5_impl10AsyncQuery21is_for_current_threadEv
-_ZN5realm13TableViewBaseC2Ev
-_ZN5realm9TableViewD0Ev
-_ZNK5realm13TableViewBase15get_column_baseEm
-_ZNK5realm13TableViewBase4sizeEv
-_ZNK5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_18ConstSourcePayloadE
-_ZN5realm9TableView18clone_for_handoverERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEENS_20MutableSourcePayloadE
-_ZN5realm9TableView23apply_and_consume_patchERNSt3__110unique_ptrINS_22TableViewHandoverPatchENS1_14default_deleteIS3_EEEERNS_5GroupE
-_ZN5realm10RowIndexesD1Ev
-_ZN5realm10RowIndexesD0Ev
-_ZNK5realm10RowIndexes14sync_if_neededEv
-_ZNK5realm10RowIndexes10is_in_syncEv
-_ZN5realm19ColumnBaseWithIndexD2Ev
-_ZNK5realm19ColumnBaseWithIndex16has_search_indexEv
-_ZNK5realm19ColumnBaseWithIndex16get_search_indexEv
-_ZN5realm19ColumnBaseWithIndex16get_search_indexEv
-_ZN5realm10ColumnBase39set_search_index_allow_duplicate_valuesEb
-_ZN5realm6ColumnIxE18replace_root_arrayENSt3__110unique_ptrINS_5ArrayENS2_14default_deleteIS4_EEEE
-_ZNK5realm10ColumnBase21get_subtable_accessorEm
-_ZN5realm10ColumnBase25discard_subtable_accessorEm
-_ZN5realm10ColumnBase19adj_acc_insert_rowsEmm
-_ZN5realm10ColumnBase17adj_acc_erase_rowEm
-_ZN5realm10ColumnBase17adj_acc_move_overEmm
-_ZN5realm10ColumnBase17adj_acc_swap_rowsEmm
-_ZN5realm10ColumnBase24adj_acc_clear_root_tableEv
-_ZN5realm10ColumnBase4markEi
-_ZN5realm10ColumnBase30bump_link_origin_table_versionEv
-_ZN5realm10ColumnBase26do_discard_child_accessorsEv
-_ZNK5realm6ColumnIxE7get_valEm
-_ZNK5realm14ColumnTemplateIxE14compare_valuesEmm
-_ZThn16_NK5realm6ColumnIxE7get_valEm
-_ZN5realm12ArrayIntegerD1Ev
-_ZN5realm12ArrayIntegerD0Ev
-_ZN5realm5Array16update_child_refEmm
-_ZNK5realm5Array13get_child_refEm
-_ZNK5realm5Array12GetWidthTypeEv
-_ZN5realm10LogicErrorD1Ev
-_ZN5realm5_impl17NullableOrNothingINS_12ArrayIntegerEE8set_nullERS2_m
-_ZN5realm6BpTreeIxE14SetNullHandlerD1Ev
-_ZN5realm6BpTreeIxE14SetNullHandler6updateENS_6MemRefEPNS_11ArrayParentEmm
-_ZN5realm6BpTreeIxE14SetNullHandlerD0Ev
-_ZN5realm6BpTreeIxE17LeafValueInserter11leaf_insertENS_6MemRefERNS_11ArrayParentEmRNS_9AllocatorEmRNS_5Array10TreeInsertIS2_EE
-_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev
-_ZNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev
-_ZThn16_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev
-_ZThn16_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev
-_ZTv0_n24_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev
-_ZTv0_n24_NSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev
-_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED1Ev
-_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEED0Ev
-_ZNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE7seekposENS_4fposI11__mbstate_tEEj
-_ZNSt3__116__pad_and_outputIcNS_11char_traitsIcEEEENS_19ostreambuf_iteratorIT_T0_EES6_PKS4_S8_S8_RNS_8ios_baseES4_
-_ZN5realm6BpTreeIxE12EraseHandlerD1Ev
-_ZN5realm6BpTreeIxE12EraseHandler15erase_leaf_elemENS_6MemRefEPNS_11ArrayParentEmm
-_ZN5realm6BpTreeIxE12EraseHandler12destroy_leafENS_6MemRefE
-_ZN5realm6BpTreeIxE12EraseHandler20replace_root_by_leafENS_6MemRefE
-_ZN5realm6BpTreeIxE12EraseHandler26replace_root_by_empty_leafEv
-_ZN5realm6BpTreeIxE12EraseHandlerD0Ev
-_ZN5realm6BpTreeIxE13UpdateHandlerD1Ev
-_ZN5realm6BpTreeIxE13UpdateHandler6updateENS_6MemRefEPNS_11ArrayParentEmm
-_ZN5realm6BpTreeIxE13UpdateHandlerD0Ev
-_ZN5realm10BpTreeBase7destroyEv
-_ZN5realm6BpTreeIxE12SliceHandler10slice_leafENS_6MemRefEmmRNS_9AllocatorE
-_ZN5realm6ColumnIxE13CreateHandler11create_leafEm
-_ZNK5realm5Table10unbind_ptrEv
-_ZNKSt3__114default_deleteIN5realm22TableViewHandoverPatchEEclEPS2_
-_ZN5realm13TableViewBaseD2Ev
-_ZN5realm13TableViewBaseaSEOS0_
-_ZN5realm11SharedGroup10BadVersionD1Ev
-_ZN5realm11SharedGroup10BadVersionD0Ev
+_ZNSt3__16vectorIN12_GLOBAL__N_17RowInfoENS_9allocatorIS2_EEE7reserveEm
+_ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator3RowENS_9allocatorIS3_EEE7reserveEm
+_ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator3RowENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE
+_ZNSt3__16__sortIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEvT0_SG_T_
+_ZNSt3__17__sort3IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_T_
+_ZNSt3__17__sort4IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_T_
+_ZNSt3__17__sort5IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_SG_T_
+_ZNSt3__127__insertion_sort_incompleteIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_8PNS1_34LongestCommonSubsequenceCalculator3RowEEEbT0_SG_T_
+_ZNSt3__16__sortIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEvT0_SG_T_
+_ZNSt3__17__sort3IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_T_
+_ZNSt3__17__sort4IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_T_
+_ZNSt3__17__sort5IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_SG_T_
+_ZNSt3__127__insertion_sort_incompleteIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE3$_9PNS1_34LongestCommonSubsequenceCalculator3RowEEEbT0_SG_T_
+_ZN12_GLOBAL__N_134LongestCommonSubsequenceCalculator20find_longest_matchesEmmmm
+_ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator5MatchENS_9allocatorIS3_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS3_RS5_EE
+_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEvT0_S9_T_
+_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_T_
+_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_S9_T_
+_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_S9_S9_T_
+_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_3PNS1_19CollectionChangeSet4MoveEEEbT0_S9_T_
+_ZNSt3__16vectorIN12_GLOBAL__N_17RowInfoENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE
+_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEvT0_SI_T_
+_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_T_
+_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_T_
+_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_SI_T_
+_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_4PN12_GLOBAL__N_17RowInfoEEEbT0_SI_T_
+_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEvT0_SI_T_
+_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_T_
+_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_T_
+_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_SI_T_
+_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_5PN12_GLOBAL__N_17RowInfoEEEbT0_SI_T_
+_ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEvT0_SI_T_
+_ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_T_
+_ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_T_
+_ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEjT0_SI_SI_SI_SI_T_
+_ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEEbE3$_7PN12_GLOBAL__N_17RowInfoEEEbT0_SI_T_
_ZNSt3__117bad_function_callD1Ev
_ZNSt3__117bad_function_callD0Ev
.str
@@ -83,477 +47,834 @@ _ZNSt3__117bad_function_callD0Ev
.str.7
.str.8
.str.9
-.str.10
-.str.11
-.str.12
-_ZTSN5realm9TableViewE
-_ZTIN5realm9TableViewE
-_ZTSN5realm10RowIndexesE
-_ZTIN5realm10RowIndexesE
-_ZTSN5realm6ColumnIxEE
-_ZTSN5realm14ColumnTemplateIxEE
-_ZTSN5realm18ColumnTemplateBaseE
-_ZTIN5realm18ColumnTemplateBaseE
-_ZTIN5realm14ColumnTemplateIxEE
-_ZTIN5realm6ColumnIxEE
-_ZTSN5realm12ArrayIntegerE
-_ZTIN5realm12ArrayIntegerE
-.str.13
-.str.14
-.str.15
-.str.16
-_ZTSN5realm6BpTreeIxE14SetNullHandlerE
-_ZTSN5realm5Array13UpdateHandlerE
-_ZTIN5realm5Array13UpdateHandlerE
-_ZTIN5realm6BpTreeIxE14SetNullHandlerE
-.str.17
-.str.18
-.str.19
-.str.20
-.str.21
-.str.22
-.str.23
-.str.24
-_ZTSNSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE
-_ZTINSt3__118basic_stringstreamIcNS_11char_traitsIcEENS_9allocatorIcEEEE
-_ZTSNSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEEE
-_ZTINSt3__115basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEEE
-.str.25
-.str.26
-.str.27
-.str.28
-.str.29
-.str.30
-.str.31
-.str.32
-_ZTSN5realm6BpTreeIxE12EraseHandlerE
-_ZTSN5realm5Array12EraseHandlerE
-_ZTIN5realm5Array12EraseHandlerE
-_ZTIN5realm6BpTreeIxE12EraseHandlerE
-.str.33
-.str.34
-.str.35
-_ZTSN5realm6BpTreeIxE13UpdateHandlerE
-_ZTIN5realm6BpTreeIxE13UpdateHandlerE
-.str.36
-.str.37
-.str.39
-.str.40
-.str.41
-_ZTSN5realm6BpTreeIxE12SliceHandlerE
-_ZTSN5realm10BpTreeBase12SliceHandlerE
-_ZTIN5realm10BpTreeBase12SliceHandlerE
-_ZTIN5realm6BpTreeIxE12SliceHandlerE
-_ZTSN5realm6ColumnIxE13CreateHandlerE
-_ZTSN5realm10ColumnBase13CreateHandlerE
-_ZTIN5realm10ColumnBase13CreateHandlerE
-_ZTIN5realm6ColumnIxE13CreateHandlerE
-.str.42
-.str.43
-_ZTSN5realm11SharedGroup10BadVersionE
-_ZTIN5realm11SharedGroup10BadVersionE
_ZTSNSt3__117bad_function_callE
_ZTINSt3__117bad_function_callE
-Apple LLVM version 7.3.0 (clang-703.0.29)
-operator*
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release
-operator bool
-operator=
-__libcpp_compressed_pair_imp
-__compressed_pair
-unique_ptr
-get_deleter
-forward >
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/type_traits
-move > &>
-import_from_handover
-core/include/realm/group_shared.hpp
-function
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/functional
-operator[]
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector
-clear
-forward
+Apple LLVM version 7.3.0 (clang-703.0.31)
~bad_function_call
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/functional
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa
+exception
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/exception
bad_function_call
operator()
-~unique_ptr
-first
-operator->
-forward >
-release
-move > &>
-~BadVersion
-BadVersion
-import_from_handover
-forward > >
-second
-reset
-move *&>
-forward
-Handover
-export_for_handover
-load
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/atomic
-get
-empty
-__wrap_iter
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator
-__unwrap_iter
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/algorithm
-__move
-move
+__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *>
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/algorithm
+__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *>
+__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *>
+__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *>
+__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *>
+operator()<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo>
+/Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp
+__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &, (anonymous namespace)::RowInfo *>
+sort<(anonymous namespace)::RowInfo *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15) &>
+sort<(anonymous namespace)::RowInfo, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:624:15)>
+__wrap_iter<(anonymous namespace)::RowInfo *>
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/iterator
+operator-
+__unwrap_iter<(anonymous namespace)::RowInfo *>
+__move<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo>
+move<(anonymous namespace)::RowInfo *, (anonymous namespace)::RowInfo *>
__annotate_shrink
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector
__destruct_at_end
-__wrap_iter
-__make_iter
-begin
-cbegin
+operator==
+operator!=
base
-operator-
+operator-
erase
-operator-
-__distance >
-distance >
-operator==
-operator()
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/async_query.cpp
-find_if, (lambda at /Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/impl/async_query.cpp:78:27)>
-end > >
-begin > >
+operator()<(anonymous namespace)::RowInfo>
+find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:621:35) &>
+remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:621:35)>
+__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *>
+__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *>
+__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *>
+__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *>
+__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *>
+__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &, (anonymous namespace)::RowInfo *>
+sort<(anonymous namespace)::RowInfo *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47) &>
+sort<(anonymous namespace)::RowInfo, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:581:47)>
+__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *>
+__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *>
+__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *>
+__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *>
+__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *>
+swap<(anonymous namespace)::RowInfo>
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/type_traits
+__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &, (anonymous namespace)::RowInfo *>
+sort<(anonymous namespace)::RowInfo *, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47) &>
+sort<(anonymous namespace)::RowInfo, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:572:47)>
+end > >
+begin > >
+second
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/memory
+__alloc
+max_size
+__max_size
+__recommend
+__push_back_slow_path<(anonymous namespace)::RowInfo>
+__done
+move<(anonymous namespace)::RowInfo &>
+forward<(anonymous namespace)::RowInfo>
+construct<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo>
+__construct<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo>
+__RAII_IncreaseAnnotator
+push_back
+operator[]
size
-store
-~function
+first
__end_cap
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__split_buffer
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__split_buffer
capacity
+clear
~__split_buffer
__invalidate_all_iterators
__annotate_new
-move
-swap
-move_if_noexcept
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/utility
-__construct_backward
+move<(anonymous namespace)::RowInfo *&>
+swap<(anonymous namespace)::RowInfo *>
+__construct_backward<(anonymous namespace)::RowInfo>
data
__annotate_contiguous_container
__annotate_delete
__swap_out_circular_buffer
-__alloc
allocate
-forward &>
+__libcpp_compressed_pair_imp
+forward &>
+__compressed_pair
__split_buffer
-max_size
-__max_size
-__recommend
-__push_back_slow_path
-__done
-forward
-Callback
-Realm/ObjectStore/impl/async_query.hpp
-construct
-__construct
-__RAII_IncreaseAnnotator
-push_back
-operator!=
-move
-swap
-move
-swap
-swap
-shared_ptr
-move &>
-~lock_guard
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base
-lock_guard
-forward > >
-unlock
-core/include/realm/util/thread.hpp
-~LockGuard
-move *&>
-max
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/limits
-VersionID
-forward
-lock
-LockGuard
-export_for_handover
-~Handover
+reserve
allocator
-forward
+forward<(anonymous namespace)::RowInfo *>
__vector_base
vector
-~shared_ptr
-bad_weak_ptr
-shared_ptr
-shared_from_this
+operator*
+operator++
+operator==<(anonymous namespace)::RowInfo *, (anonymous namespace)::RowInfo *>
+operator!=<(anonymous namespace)::RowInfo *>
end
-__bit_iterator
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__bit_reference
-__copy_unaligned >, true>
-__to_raw_pointer
-min >
-min
-__copy_aligned >, true>
-copy >, true>
-operator-
-__distance >, true, 0> >
-distance >, true, 0> >
-__construct_at_end >, true, 0> >
-__external_cap_to_internal
-__internal_cap_to_external
-forward >
-select_on_container_copy_construction
-~vector
-move, std::__1::default_delete > > &>
-move, std::__1::default_delete > > &>
-move
-operator!=
+__wrap_iter
+__make_iter
+begin
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/unordered_map
+__destroy
+destroy
+__destroy
+destroy
+reset
+~unique_ptr
+release
+forward
+pair, void *> *>, bool>
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/utility
+get
+forward
+forward, void *> *> >
+pair, void *> *>, bool &, void>
+ceil
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cmath
+__is_hash_power2
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__hash_table
+__clz
+__next_hash_pow2
+__rehash
+rehash
+__node_insert_unique
+unique_ptr
+move, void *>, std::__1::__hash_map_node_destructor, void *> > > > &>
+addressof
+/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__functional_base
+construct
+__construct
+get_deleter
+operator->
+addressof
+construct
+__construct
+forward, void *> > > >
+move, void *> > > &>
+__hash_map_node_destructor
+__construct_node_with_key
+addressof >
+pointer_to
+find
+__hash_const_iterator
+forward, void *> > > >
+forward, void *> *>
+move, void *> > > &>
+__hash_node_destructor
+remove
+find
+__erase_unique
+Realm/ObjectStore/index_set.hpp
+back
+operator--
+front
+__advance > >
+advance > >
+prev > >
+operator!=
+next_chunk
+offset
+outer
+operator==
+operator== > >
+operator!= > >
+cbegin
+operator+
+__insertion_sort_incomplete<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *>
+__insertion_sort_3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *>
+__sort5<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *>
+__sort4<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *>
+__sort3<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *>
+swap
+operator()
+__sort<(lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:146:15) &, realm::CollectionChangeSet::Move *>
+sort
+sort
+__push_back_slow_path
operator==
-/Applications/Xcode-7.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/thread
-is_for_current_thread
-~__vector_base
-/Users/realm/workspace/create_github_release_cocoa/realm-cocoa-mar-v0.98.6-release/Realm/ObjectStore/results.hpp
-move
-move &>
-__move_assign_alloc
+operator!=
+__hash_map_iterator
+__hash_iterator
+operator()
+find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:127:53) &>
+remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:127:53)>
+move
+swap
+__construct_forward
+__construct_backward
+__construct_at_end >
+forward &>
+__unwrap_iter
+__copy
+copy, realm::CollectionChangeSet::Move *>
+__move_backward
+move_backward
+forward
+construct
+__construct
+__move_range
+forward
+construct
+__construct
+__construct_range_forward, realm::CollectionChangeSet::Move *>
+operator+=
+__advance >
+advance >
+operator-
+__distance >
+distance >
+insert >
+find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:83:31) &>
+remove_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:83:31)>
+__wrap_iter
+operator-
+__unwrap_iter
+__move
+move
+operator==
+operator!=
+operator-
+move
+pop_back
+find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:54:61)>
+find_if, (lambda at /Users/polquintana/Xcode/RealmResultsController/Carthage/Checkouts/realm-cocoa/Realm/ObjectStore/impl/collection_change_builder.cpp:52:55) &>
+remove_if