*customRequestHeaders;
-
-/**
- A map of hostname to file URL for pinned certificates to use for HTTPS requests.
-
- When initiating a HTTPS connection to a server, if this dictionary contains an
- entry for the server's hostname, only the certificates stored in the file (or
- any certificates signed by it, if the file contains a CA cert) will be accepted
- when initiating a connection to a server. This prevents certain certain kinds
- of man-in-the-middle (MITM) attacks, and can also be used to trust a self-signed
- certificate which would otherwise be untrusted.
-
- On macOS, the certificate files may be in any of the formats supported by
- SecItemImport(), including PEM and .cer (see SecExternalFormat for a complete
- list of possible formats). On iOS and other platforms, only DER .cer files are
- supported.
-
- For example, to pin example.com to a .cer file included in your bundle:
-
-
- RLMSyncManager.sharedManager.pinnedCertificatePaths = @{
- @"example.com": [NSBundle.mainBundle pathForResource:@"example.com" ofType:@"cer"]
- };
-
- */
-@property (nullable, nonatomic, copy) NSDictionary *pinnedCertificatePaths;
-
-/// The sole instance of the singleton.
-+ (instancetype)sharedManager NS_REFINED_FOR_SWIFT;
-
-/// :nodoc:
-- (instancetype)init __attribute__((unavailable("RLMSyncManager cannot be created directly")));
-
-/// :nodoc:
-+ (instancetype)new __attribute__((unavailable("RLMSyncManager cannot be created directly")));
-
-NS_ASSUME_NONNULL_END
-
-@end
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncPermission.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncPermission.h
deleted file mode 100644
index 8a21c74..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncPermission.h
+++ /dev/null
@@ -1,502 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2017 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
-
-@protocol RLMPermission, RLMPermissionUser;
-@class RLMPermission, RLMPermissionUser, RLMPermissionRole,
- RLMArray, RLMLinkingObjects;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- A permission which can be applied to a Realm, Class, or specific Object.
-
- Permissions are applied by adding the permission to the RLMRealmPermission singleton
- object, the RLMClassPermission object for the desired class, or to a user-defined
- RLMArray property on a specific Object instance. The meaning of each of
- the properties of RLMPermission depend on what the permission is applied to, and so are
- left undocumented here. See `RLMRealmPrivileges`, `RLMClassPrivileges`, and
- `RLMObjectPrivileges` for details about what each of the properties mean when applied to
- that type.
- */
-@interface RLMPermission : RLMObject
-/// The Role which this Permission applies to. All users within the Role are
-/// granted the permissions specified by the fields below any
-/// objects/classes/realms which use this Permission.
-///
-/// This property cannot be modified once set.
-@property (nonatomic) RLMPermissionRole *role;
-
-/// Whether the user can read the object to which this Permission is attached.
-@property (nonatomic) bool canRead;
-/// Whether the user can modify the object to which this Permission is attached.
-@property (nonatomic) bool canUpdate;
-/// Whether the user can delete the object to which this Permission is attached.
-///
-/// This field is only applicable to Permissions attached to Objects, and not
-/// to Realms or Classes.
-@property (nonatomic) bool canDelete;
-/// Whether the user can add or modify Permissions for the object which this
-/// Permission is attached to.
-@property (nonatomic) bool canSetPermissions;
-/// Whether the user can subscribe to queries for this object type.
-///
-/// This field is only applicable to Permissions attached to Classes, and not
-/// to Realms or Objects.
-@property (nonatomic) bool canQuery;
-/// Whether the user can create new objects of the type this Permission is attached to.
-///
-/// This field is only applicable to Permissions attached to Classes, and not
-/// to Realms or Objects.
-@property (nonatomic) bool canCreate;
-/// Whether the user can modify the schema of the Realm which this
-/// Permission is attached to.
-///
-/// This field is only applicable to Permissions attached to Realms, and not
-/// to Realms or Objects.
-@property (nonatomic) bool canModifySchema;
-
-/**
- Returns the Permission object for the named Role in the array, creating it if needed.
-
- This function should be used in preference to manually querying the array for
- the applicable Permission as it ensures that there is exactly one Permission
- for the given Role in the array, merging duplicates or creating and adding new
- ones as needed.
-*/
-+ (RLMPermission *)permissionForRoleNamed:(NSString *)roleName inArray:(RLMArray *)array;
-
-/**
- Returns the Permission object for the named Role on the Realm, creating it if needed.
-
- This function should be used in preference to manually querying for the
- applicable Permission as it ensures that there is exactly one Permission for
- the given Role on the Realm, merging duplicates or creating and adding new ones
- as needed.
-*/
-+ (RLMPermission *)permissionForRoleNamed:(NSString *)roleName onRealm:(RLMRealm *)realm;
-
-/**
- Returns the Permission object for the named Role on the Class, creating it if needed.
-
- This function should be used in preference to manually querying for the
- applicable Permission as it ensures that there is exactly one Permission for
- the given Role on the Class, merging duplicates or creating and adding new ones
- as needed.
-*/
-+ (RLMPermission *)permissionForRoleNamed:(NSString *)roleName onClass:(Class)cls realm:(RLMRealm *)realm;
-
-/**
- Returns the Permission object for the named Role on the named class, creating it if needed.
-
- This function should be used in preference to manually querying for the
- applicable Permission as it ensures that there is exactly one Permission for
- the given Role on the Class, merging duplicates or creating and adding new ones
- as needed.
-*/
-+ (RLMPermission *)permissionForRoleNamed:(NSString *)roleName onClassNamed:(NSString *)className realm:(RLMRealm *)realm;
-
-/**
- Returns the Permission object for the named Role on the object, creating it if needed.
-
- This function should be used in preference to manually querying for the
- applicable Permission as it ensures that there is exactly one Permission for
- the given Role on the Realm, merging duplicates or creating and adding new ones
- as needed.
-
- The given object must have a RLMArray property defined on it. If
- more than one such property is present, the first will be used.
-*/
-+ (RLMPermission *)permissionForRoleNamed:(NSString *)roleName onObject:(RLMObject *)object;
-@end
-
-/**
- A Role within the permissions system.
-
- A Role consists of a name for the role and a list of users which are members of the role.
- Roles are granted privileges on Realms, Classes and Objects, and in turn grant those
- privileges to all users which are members of the role.
-
- A role named "everyone" is automatically created in new Realms, and all new users which
- connect to the Realm are automatically added to it. Any other roles you wish to use are
- managed as normal Realm objects.
- */
-@interface RLMPermissionRole : RLMObject
-/// The name of the Role
-@property (nonatomic) NSString *name;
-/// The users which belong to the role
-@property (nonatomic) RLMArray *users;
-@end
-
-/**
- A representation of a sync user within the permissions system.
-
- RLMPermissionUser objects are created automatically for each sync user which connects to
- a Realm, and can also be created manually if you wish to grant permissions to a user
- which has not yet connected to this Realm.
- */
-@interface RLMPermissionUser : RLMObject
-/// The unique Realm Object Server user ID string identifying this user. This will have
-/// the same value as `-[RLMSyncUser identity]`.
-@property (nonatomic) NSString *identity;
-
-/// The user's private role. This will be initialized to a role named for the user's
-/// identity that contains this user as its only member.
-@property (nonatomic) RLMPermissionRole *role;
-
-/// Roles which this user belongs to.
-@property (nonatomic, readonly) RLMLinkingObjects *roles;
-
-/// Get the user object in the given Realm, creating it if needed.
-+ (RLMPermissionUser *)userInRealm:(RLMRealm *)realm withIdentity:(NSString *)identity;
-@end
-
-/**
- A singleton object which describes Realm-wide permissions.
-
- An object of this type is automatically created in the Realm for you, and more objects
- cannot be created manually. Call `+[RLMRealmPermission objectInRealm:]` to obtain the
- instance for a specific Realm.
-
- See `RLMRealmPrivileges` for the meaning of permissions applied to a Realm.
- */
-@interface RLMRealmPermission : RLMObject
-/// The permissions for the Realm.
-@property (nonatomic) RLMArray *permissions;
-
-/// Retrieve the singleton object for the given Realm. This will return `nil`
-/// for non-partial-sync Realms.
-+ (nullable instancetype)objectInRealm:(RLMRealm *)realm;
-@end
-
-/**
- An object which describes class-wide permissions.
-
- An instance of this object is automatically created in the Realm for class in your schema,
- and should not be created manually. Call `+[RLMClassPermission objectInRealm:forClassNamed:]`
- or `+[RLMClassPermission objectInRealm:forClass:]` to obtain the existing instance, or
- query `RLMClassPermission` as normal.
- */
-@interface RLMClassPermission : RLMObject
-/// The name of the class which these permissions apply to.
-@property (nonatomic) NSString *name;
-/// The permissions for this class.
-@property (nonatomic) RLMArray *permissions;
-
-/// Retrieve the object for the named RLMObject subclass. This will return `nil`
-/// for non-partial-sync Realms.
-+ (nullable instancetype)objectInRealm:(RLMRealm *)realm forClassNamed:(NSString *)className;
-/// Retrieve the object for the given RLMObject subclass. This will return `nil`
-/// for non-partial-sync Realms.
-+ (nullable instancetype)objectInRealm:(RLMRealm *)realm forClass:(Class)cls;
-@end
-
-/**
- A description of the actual privileges which apply to a Realm.
-
- This is a combination of all of the privileges granted to all of the Roles which the
- current User is a member of, obtained by calling `-[RLMRealm privilegesForRealm]` on
- the Realm.
-
- By default, all operations are permitted, and each privilege field indicates an operation
- which may be forbidden.
- */
-struct RLMRealmPrivileges {
- /// If `false`, the current User is not permitted to see the Realm at all. This can
- /// happen only if the Realm was created locally and has not yet been synchronized.
- bool read : 1;
-
- /// If `false`, no modifications to the Realm are permitted. Write transactions can
- /// be performed locally, but any changes made will be reverted by the server.
- /// `setPermissions` and `modifySchema` will always be `false` when this is `false`.
- bool update : 1;
-
- /// If `false`, no modifications to the permissions property of the RLMRealmPermissions
- /// object for are permitted. Write transactions can be performed locally, but any
- /// changes made will be reverted by the server.
- ///
- /// Note that if invalide privilege changes are made, `-[RLMRealm privilegesFor*:]`
- /// will return results reflecting those invalid changes until synchronization occurs.
- ///
- /// Even if this field is `true`, note that the user will be unable to grant
- /// privileges to a Role which they do not themselves have.
- ///
- /// Adding or removing Users from a Role is controlled by Update privileges on that
- /// Role, and not by this value.
- bool setPermissions : 1;
-
- /// If `false`, the user is not permitted to add new object types to the Realm or add
- /// new properties to existing objec types. Defining new RLMObject subclasses (and not
- /// excluding them from the schema with `-[RLMRealmConfiguration setObjectClasses:]`)
- /// will result in the application crashing if the object types are not first added on
- /// the server by a more privileged user.
- bool modifySchema : 1;
-};
-
-/**
- A description of the actual privileges which apply to a Class within a Realm.
-
- This is a combination of all of the privileges granted to all of the Roles which the
- current User is a member of, obtained by calling `-[RLMRealm privilegesForClass:]` or
- `-[RLMRealm privilegesForClassNamed:]` on the Realm.
-
- By default, all operations are permitted, and each privilege field indicates an operation
- which may be forbidden.
- */
-struct RLMClassPrivileges {
- /// If `false`, the current User is not permitted to see objects of this type, and
- /// attempting to query this class will always return empty results.
- ///
- /// Note that Read permissions are transitive, and so it may be possible to read an
- /// object which the user does not directly have Read permissions for by following a
- /// link to it from an object they do have Read permissions for. This does not apply
- /// to any of the other permission types.
- bool read : 1;
-
- /// If `false`, creating new objects of this type is not permitted. Write transactions
- /// creating objects can be performed locally, but the objects will be deleted by the
- /// server when synchronization occurs.
- ///
- /// For objects with Primary Keys, it may not be locally determinable if Create or
- /// Update privileges are applicable. It may appear that you are creating a new object,
- /// but an object with that Primary Key may already exist and simply not be visible to
- /// you, in which case it is actually an Update operation.
- bool create : 1;
-
- /// If `false`, no modifications to objects of this type are permitted. Write
- /// transactions modifying the objects can be performed locally, but any changes made
- /// will be reverted by the server.
- ///
- /// Deleting an object is considered a modification, and is governed by this privilege.
- bool update : 1;
-
- /// If `false`, the User is not permitted to create new subscriptions for this class.
- /// Local queries against the objects within the Realm will work, but new
- /// subscriptions will never add objects to the Realm.
- bool subscribe : 1;
-
- /// If `false`, no modifications to the permissions property of the RLMClassPermissions
- /// object for this type are permitted. Write transactions can be performed locally,
- /// but any changes made will be reverted by the server.
- ///
- /// Note that if invalid privilege changes are made, `-[RLMRealm privilegesFor*:]`
- /// will return results reflecting those invalid changes until synchronization occurs.
- ///
- /// Even if this field is `true`, note that the user will be unable to grant
- /// privileges to a Role which they do not themselves have.
- bool setPermissions : 1;
-};
-
-/**
- A description of the actual privileges which apply to a specific RLMObject.
-
- This is a combination of all of the privileges granted to all of the Roles which the
- current User is a member of, obtained by calling `-[RLMRealm privilegesForObject:]` on
- the Realm.
-
- By default, all operations are permitted, and each privilege field indicates an operation
- which may be forbidden.
- */
-struct RLMObjectPrivileges {
- /// If `false`, the current User is not permitted to read this object directly.
- ///
- /// Objects which cannot be read by a user will appear in a Realm due to that read
- /// permissions are transitive. All objects which a readable object links to are
- /// themselves implicitly readable. If the link to an object with `read=false` is
- /// removed, the object will be deleted from the local Realm.
- bool read : 1;
-
- /// If `false`, modifying the fields of this type is not permitted. Write
- /// transactions modifying the objects can be performed locally, but any changes made
- /// will be reverted by the server.
- ///
- /// Note that even if this is `true`, the user may not be able to modify the
- /// `RLMArray *` property of the object (if it exists), as that is
- /// governed by `setPermissions`.
- bool update : 1;
-
- /// If `false`, deleting this object is not permitted. Write transactions which delete
- /// the object can be performed locally, but the server will restore it.
- ///
- /// It is possible to have `update` but not `delete` privileges, or vice versa. For
- /// objects with primary keys, `delete` but not `update` is ill-advised, as an object
- /// can be updated by deleting and recreating it.
- bool del : 1;
-
- /// If `false`, modifying the privileges of this specific object is not permitted.
- ///
- /// Object-specific permissions are set by declaring a `RLMArray *`
- /// property on the `RLMObject` subclass. Modifications to this property are
- /// controlled by `setPermissions` rather than `update`.
- ///
- /// Even if this field is `true`, note that the user will be unable to grant
- /// privileges to a Role which they do not themselves have.
- bool setPermissions : 1;
-};
-
-/// :nodoc:
-FOUNDATION_EXTERN id RLMPermissionForRole(RLMArray *array, id role);
-
-/**
- Access levels which can be granted to Realm Mobile Platform users
- for specific synchronized Realms, using the permissions APIs.
-
- Note that each access level guarantees all allowed actions provided
- by less permissive access levels. Specifically, users with write
- access to a Realm can always read from that Realm, and users with
- administrative access can always read or write from the Realm.
- */
-typedef RLM_CLOSED_ENUM(NSUInteger, RLMSyncAccessLevel) {
- /// No access whatsoever.
- RLMSyncAccessLevelNone = 0,
- /**
- User can only read the contents of the Realm.
-
- @warning Users who have read-only access to a Realm should open the
- Realm using `+[RLMRealm asyncOpenWithConfiguration:callbackQueue:callback:]`.
- Attempting to directly open the Realm is an error; in this
- case the Realm must be deleted and re-opened.
- */
- RLMSyncAccessLevelRead = 1,
- /// User can read and write the contents of the Realm.
- RLMSyncAccessLevelWrite = 2,
- /// User can read, write, and administer the Realm, including
- /// granting permissions to other users.
- RLMSyncAccessLevelAdmin = 3,
-};
-
-/**
- A property on which a `RLMResults` can be queried or filtered.
-
- @warning If building `NSPredicate`s using format strings including these string
- constants, use %K instead of %@ as the substitution parameter.
- */
-typedef NSString * RLMSyncPermissionSortProperty NS_STRING_ENUM;
-
-/// Sort by the Realm Object Server path to the Realm to which the permission applies.
-extern RLMSyncPermissionSortProperty const RLMSyncPermissionSortPropertyPath;
-/// Sort by the identity of the user to whom the permission applies.
-extern RLMSyncPermissionSortProperty const RLMSyncPermissionSortPropertyUserID;
-/// Sort by the date the permissions were last updated.
-extern RLMSyncPermissionSortProperty const RLMSyncPermissionSortPropertyUpdated;
-
-/**
- A value representing a permission granted to the specified user(s) to access the specified Realm(s).
-
- `RLMSyncPermission` is immutable and can be accessed from any thread.
-
- See https://realm.io/docs/realm-object-server/#permissions for general documentation.
- */
-@interface RLMSyncPermission : NSObject
-
-/**
- The Realm Object Server path to the Realm to which this permission applies (e.g. "/path/to/realm").
-
- Specify "*" if this permission applies to all Realms managed by the server.
- */
-@property (nonatomic, readonly) NSString *path;
-
-/**
- The access level described by this permission.
- */
-@property (nonatomic, readonly) RLMSyncAccessLevel accessLevel;
-
-/// Whether the access level allows the user to read from the Realm.
-@property (nonatomic, readonly) BOOL mayRead;
-
-/// Whether the access level allows the user to write to the Realm.
-@property (nonatomic, readonly) BOOL mayWrite;
-
-/// Whether the access level allows the user to administer the Realm.
-@property (nonatomic, readonly) BOOL mayManage;
-
-/**
- Create a new sync permission value, for use with permission APIs.
-
- @param path The Realm Object Server path to the Realm whose permission should be modified
- (e.g. "/path/to/realm"). Pass "*" to apply to all Realms managed by the user.
- @param identity The Realm Object Server identity of the user who should be granted access to
- the Realm at `path`.
- Pass "*" to apply to all users managed by the server.
- @param accessLevel The access level to grant.
- */
-- (instancetype)initWithRealmPath:(NSString *)path
- identity:(NSString *)identity
- accessLevel:(RLMSyncAccessLevel)accessLevel;
-
-/**
- Create a new sync permission value, for use with permission APIs.
-
- @param path The Realm Object Server path to the Realm whose permission should be modified
- (e.g. "/path/to/realm"). Pass "*" to apply to all Realms managed by the user.
- @param username The username (often an email address) of the user who should be granted access
- to the Realm at `path`.
- @param accessLevel The access level to grant.
- */
-- (instancetype)initWithRealmPath:(NSString *)path
- username:(NSString *)username
- accessLevel:(RLMSyncAccessLevel)accessLevel;
-
-/**
- The identity of the user to whom this permission is granted, or "*"
- if all users are granted this permission. Nil if the permission is
- defined in terms of a key-value pair.
- */
-@property (nullable, nonatomic, readonly) NSString *identity;
-
-/**
- If the permission is defined in terms of a key-value pair, the key
- describing the type of criterion used to determine what users the
- permission applies to. Otherwise, nil.
- */
-@property (nullable, nonatomic, readonly) NSString *key;
-
-/**
- If the permission is defined in terms of a key-value pair, a string
- describing the criterion value used to determine what users the
- permission applies to. Otherwise, nil.
- */
-@property (nullable, nonatomic, readonly) NSString *value;
-
-/**
- When this permission was last updated.
- */
-@property (nonatomic, readonly) NSDate *updatedAt;
-
-/// :nodoc:
-- (instancetype)init __attribute__((unavailable("Use the designated initializer")));
-
-/// :nodoc:
-+ (instancetype)new __attribute__((unavailable("Use the designated initializer")));
-
-// MARK: - Migration assistance
-
-/// :nodoc:
-@property (nullable, nonatomic, readonly) NSString *userId __attribute__((unavailable("Renamed to `identity`")));
-
-/// :nodoc:
-- (instancetype)initWithRealmPath:(NSString *)path
- userID:(NSString *)identity
- accessLevel:(RLMSyncAccessLevel)accessLevel
-__attribute__((unavailable("Renamed to `-initWithRealmPath:identity:accessLevel:`")));
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncSession.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncSession.h
deleted file mode 100644
index 1ea5075..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncSession.h
+++ /dev/null
@@ -1,236 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2016 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 "RLMRealm.h"
-
-/**
- The current state of the session represented by a session object.
- */
-typedef NS_ENUM(NSUInteger, RLMSyncSessionState) {
- /// The sync session is actively communicating or attempting to communicate
- /// with the Realm Object Server. A session is considered Active even if
- /// it is not currently connected. Check the connection state instead if you
- /// wish to know if the connection is currently online.
- RLMSyncSessionStateActive,
- /// The sync session is not attempting to communicate with the Realm Object
- /// Server, due to the user logging out or synchronization being paused.
- RLMSyncSessionStateInactive,
- /// The sync session encountered a fatal error and is permanently invalid; it should be discarded.
- RLMSyncSessionStateInvalid
-};
-
-/**
- The current state of a sync session's connection. Sessions which are not in
- the Active state will always be Disconnected.
- */
-typedef NS_ENUM(NSUInteger, RLMSyncConnectionState) {
- /// The sync session is not connected to the server, and is not attempting
- /// to connect, either because the session is inactive or because it is
- /// waiting to retry after a failed connection.
- RLMSyncConnectionStateDisconnected,
- /// The sync session is attempting to connect to the Realm Object Server.
- RLMSyncConnectionStateConnecting,
- /// The sync session is currently connected to the Realm Object Server.
- RLMSyncConnectionStateConnected,
-};
-
-/**
- The transfer direction (upload or download) tracked by a given progress notification block.
-
- Progress notification blocks can be registered on sessions if your app wishes to be informed
- how many bytes have been uploaded or downloaded, for example to show progress indicator UIs.
- */
-typedef RLM_CLOSED_ENUM(NSUInteger, RLMSyncProgressDirection) {
- /// For monitoring upload progress.
- RLMSyncProgressDirectionUpload,
- /// For monitoring download progress.
- RLMSyncProgressDirectionDownload,
-};
-
-/**
- The desired behavior of a progress notification block.
-
- Progress notification blocks can be registered on sessions if your app wishes to be informed
- how many bytes have been uploaded or downloaded, for example to show progress indicator UIs.
- */
-typedef NS_ENUM(NSUInteger, RLMSyncProgressMode) {
- /**
- The block will be called indefinitely, or until it is unregistered by calling
- `-[RLMProgressNotificationToken invalidate]`.
-
- Notifications will always report the latest number of transferred bytes, and the
- most up-to-date number of total transferrable bytes.
- */
- RLMSyncProgressModeReportIndefinitely,
- /**
- The block will, upon registration, store the total number of bytes
- to be transferred. When invoked, it will always report the most up-to-date number
- of transferrable bytes out of that original number of transferrable bytes.
-
- When the number of transferred bytes reaches or exceeds the
- number of transferrable bytes, the block will be unregistered.
- */
- RLMSyncProgressModeForCurrentlyOutstandingWork,
-};
-
-@class RLMSyncUser, RLMSyncConfiguration, RLMSyncErrorActionToken;
-
-/**
- The type of a progress notification block intended for reporting a session's network
- activity to the user.
-
- `transferredBytes` refers to the number of bytes that have been uploaded or downloaded.
- `transferrableBytes` refers to the total number of bytes transferred, and pending transfer.
- */
-typedef void(^RLMProgressNotificationBlock)(NSUInteger transferredBytes, NSUInteger transferrableBytes);
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- A token object corresponding to a progress notification block on a session object.
-
- To stop notifications manually, call `-invalidate` on it. Notifications should be stopped before
- the token goes out of scope or is destroyed.
- */
-@interface RLMProgressNotificationToken : RLMNotificationToken
-@end
-
-/**
- An object encapsulating a Realm Object Server "session". Sessions represent the
- communication between the client (and a local Realm file on disk), and the server
- (and a remote Realm at a given URL stored on a Realm Object Server).
-
- Sessions are always created by the SDK and vended out through various APIs. The
- lifespans of sessions associated with Realms are managed automatically. Session
- objects can be accessed from any thread.
- */
-@interface RLMSyncSession : NSObject
-
-/// The session's current state.
-///
-/// This property is not KVO-compliant.
-@property (nonatomic, readonly) RLMSyncSessionState state;
-
-/// The session's current connection state.
-///
-/// This property is KVO-compliant and can be observed to be notified of changes.
-/// Be warned that KVO observers for this property may be called on a background
-/// thread.
-@property (atomic, readonly) RLMSyncConnectionState connectionState;
-
-/// The Realm Object Server URL of the remote Realm this session corresponds to.
-@property (nullable, nonatomic, readonly) NSURL *realmURL;
-
-/// The user that owns this session.
-- (nullable RLMSyncUser *)parentUser;
-
-/**
- If the session is valid, return a sync configuration that can be used to open the Realm
- associated with this session.
- */
-- (nullable RLMSyncConfiguration *)configuration;
-
-/**
- Temporarily suspend syncronization and disconnect from the server.
-
- The session will not attempt to connect to Realm Object Server until `resume`
- is called or the Realm file is closed and re-opened.
- */
-- (void)suspend;
-
-/**
- Resume syncronization and reconnect to Realm Object Server after suspending.
-
- This is a no-op if the session was already active or if the session is invalid.
- Newly created sessions begin in the Active state and do not need to be resumed.
- */
-- (void)resume;
-
-/**
- Register a progress notification block.
-
- Multiple blocks can be registered with the same session at once. Each block
- will be invoked on a side queue devoted to progress notifications.
-
- If the session has already received progress information from the
- synchronization subsystem, the block will be called immediately. Otherwise, it
- will be called as soon as progress information becomes available.
-
- The token returned by this method must be retained as long as progress
- notifications are desired, and the `-invalidate` method should be called on it
- when notifications are no longer needed and before the token is destroyed.
-
- If no token is returned, the notification block will never be called again.
- There are a number of reasons this might be true. If the session has previously
- experienced a fatal error it will not accept progress notification blocks. If
- the block was configured in the `RLMSyncProgressForCurrentlyOutstandingWork`
- mode but there is no additional progress to report (for example, the number
- of transferrable bytes and transferred bytes are equal), the block will not be
- called again.
-
- @param direction The transfer direction (upload or download) to track in this progress notification block.
- @param mode The desired behavior of this progress notification block.
- @param block The block to invoke when notifications are available.
-
- @return A token which must be held for as long as you want notifications to be delivered.
-
- @see `RLMSyncProgressDirection`, `RLMSyncProgress`, `RLMProgressNotificationBlock`, `RLMProgressNotificationToken`
- */
-- (nullable RLMProgressNotificationToken *)addProgressNotificationForDirection:(RLMSyncProgressDirection)direction
- mode:(RLMSyncProgressMode)mode
- block:(RLMProgressNotificationBlock)block
-NS_REFINED_FOR_SWIFT;
-
-/**
- Given an error action token, immediately handle the corresponding action.
-
- @see `RLMSyncErrorClientResetError`, `RLMSyncErrorPermissionDeniedError`
- */
-+ (void)immediatelyHandleError:(RLMSyncErrorActionToken *)token;
-
-/**
- Get the sync session for the given Realm if it is a synchronized Realm, or `nil`
- if it is not.
- */
-+ (nullable RLMSyncSession *)sessionForRealm:(RLMRealm *)realm;
-
-@end
-
-// MARK: - Error action token
-
-#pragma mark - Error action token
-
-/**
- An opaque token returned as part of certain errors. It can be
- passed into certain APIs to perform certain actions.
-
- @see `RLMSyncErrorClientResetError`, `RLMSyncErrorPermissionDeniedError`
- */
-@interface RLMSyncErrorActionToken : NSObject
-
-/// :nodoc:
-- (instancetype)init __attribute__((unavailable("This type cannot be created directly")));
-
-/// :nodoc:
-+ (instancetype)new __attribute__((unavailable("This type cannot be created directly")));
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncSubscription.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncSubscription.h
deleted file mode 100644
index 307daef..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncSubscription.h
+++ /dev/null
@@ -1,416 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2018 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
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- `RLMSyncSubscriptionState` is an enumeration representing the possible state of a sync subscription.
- */
-typedef RLM_CLOSED_ENUM(NSInteger, RLMSyncSubscriptionState) {
- /**
- An error occurred while creating the subscription or while the server was processing it.
- */
- RLMSyncSubscriptionStateError = -1,
-
- /**
- The subscription is being created, but has not yet been written to the synced Realm.
- */
- RLMSyncSubscriptionStateCreating = 2,
-
- /**
- The subscription has been created, and is waiting to be processed by the server.
- */
- RLMSyncSubscriptionStatePending = 0,
-
- /**
- The subscription has been processed by the server, and objects matching the subscription
- are now being synchronized to this client.
- */
- RLMSyncSubscriptionStateComplete = 1,
-
- /**
- This subscription has been removed.
- */
- RLMSyncSubscriptionStateInvalidated = 3,
-};
-
-/**
- `RLMSyncSubscription` represents a subscription to a set of objects in a synced Realm.
-
- When query-based sync is enabled for a synchronized Realm, the server only
- synchronizes objects to the client when they match a sync subscription
- registered by that client. A subscription consists of of a query (represented
- by an `RLMResults`) and an optional name.
-
- The state of the subscription can be observed using
- [Key-Value Observing](https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html)
- on the `state` property.
-
- Subscriptions are created using `-[RLMResults subscribe]` or
- `-[RLMResults subscribeWithName:]`. Existing subscriptions for a Realm can be
- looked up with `-[RLMRealm subscriptions]` or `-[RLMRealm subscriptionWithName:]`.
- */
-@interface RLMSyncSubscription : NSObject
-
-/**
- The unique name for this subscription.
-
- This will be `nil` if this object was created with `-[RLMResults subscribe]`.
- Subscription objects read from a Realm with `-[RLMRealm subscriptions]` will
- always have a non-`nil` name and subscriptions which were not explicitly named
- will have an automatically generated one.
- */
-@property (nonatomic, readonly, nullable) NSString *name;
-
-/**
- The current state of the subscription. See `RLMSyncSubscriptionState`.
- */
-@property (nonatomic, readonly) RLMSyncSubscriptionState state;
-
-/**
- The error which occurred when registering this subscription, if any.
-
- Will be non-nil only when `state` is `RLMSyncSubscriptionStateError`.
- */
-@property (nonatomic, readonly, nullable) NSError *error;
-
-/**
- The raw query which this subscription is running on the server.
-
- This string is a serialized representation of the RLMResults which the
- subscription was created from. This representation does *not* use NSPredicate
- syntax, and is not guaranteed to remain consistent between versions of Realm.
- Any use of this other than manual inspection when debugging is likely to be
- incorrect.
-
- This is `nil` while the subscription is in the Creating state.
- */
-@property (nonatomic, readonly, nullable) NSString *query;
-
-/**
- When this subscription was first created.
-
- This value will be `nil` for subscriptions created with older versions of Realm
- which did not store the creation date. Newly created subscriptions should
- always have a non-nil creation date.
- */
-@property (nonatomic, readonly, nullable) NSDate *createdAt;
-
-/**
- When this subscription was last updated.
-
- This value will be `nil` for subscriptions created with older versions of Realm
- which did not store the update date. Newly created subscriptions should
- always have a non-nil update date.
-
- The update date is the time when the subscription was last updated by a call
- to `-[RLMResults subscribeWithOptions:]`, and not when the set of objects which
- match the subscription last changed.
- */
-@property (nonatomic, readonly, nullable) NSDate *updatedAt;
-
-/**
- When this subscription will be automatically removed.
-
- If the `timeToLive` parameter is set when creating a sync subscription, the
- subscription will be automatically removed the first time that any subscription
- is created, modified, or deleted after that time has elapsed.
-
- This property will be `nil` if the `timeToLive` option was not enabled.
- */
-@property (nonatomic, readonly, nullable) NSDate *expiresAt;
-
-/**
- How long this subscription will persist after last being updated.
-
- If the `timeToLive` parameter is set when creating a sync subscription, the
- subscription will be automatically removed the first time that any subscription
- is created, modified, or deleted after that time has elapsed.
-
- This property will be NaN if the `timeToLive` option was not enabled.
- */
-@property (nonatomic, readonly) NSTimeInterval timeToLive;
-
-/**
- Remove this subscription.
-
- Removing a subscription will delete all objects from the local Realm that were
- matched only by that subscription and not any remaining subscriptions. The
- deletion is performed by the server, and so has no immediate impact on the
- contents of the local Realm. If the device is currently offline, the removal
- will not be processed until the device returns online.
-
- Unsubscribing is an asynchronous operation and will not immediately remove the
- subscription from the Realm's list of subscriptions. Observe the state property
- to be notified of when the subscription has actually been removed.
- */
-- (void)unsubscribe;
-
-#pragma mark - Unavailable Methods
-
-/**
- `-[RLMSyncSubscription init]` is not available because `RLMSyncSubscription` cannot be created directly.
- */
-- (instancetype)init __attribute__((unavailable("RLMSyncSubscription cannot be created directly")));
-
-/**
- `+[RLMSyncSubscription new]` is not available because `RLMSyncSubscription` cannot be created directly.
- */
-+ (instancetype)new __attribute__((unavailable("RLMSyncSubscription cannot be created directly")));
-
-@end
-
-/**
- Configuration options for query-based sync subscriptions.
- */
-@interface RLMSyncSubscriptionOptions : NSObject
-/**
- The name of the subscription.
-
- Naming a subscription makes it possible to look up a subscription by name
- (using `-[RLMRealm subscriptionWithName:]`) or update an existing
- subscription rather than creating a new one.
- */
-@property (nonatomic, copy, nullable) NSString *name;
-
-/**
- Whether this should update an existing subscription with the same name.
-
- By default trying to create a subscription with a name that's already in use
- will fail unless the new subscription is an exact match for the existing one.
- If this is set to YES, instead the existing subscription will be updated using
- the query and options from the new subscription. This only works if the new
- subscription is for the same type of objects as the existing subscription.
- Trying to overwrite a subscription with a subscription of a different type of
- objects will fail.
-
- The `updatedAt` and (if `timeToLive` is used) `expiresAt` properties are
- updated whenever a subscription is overwritten even if nothing else has changed.
- */
-@property (nonatomic) BOOL overwriteExisting;
-
-/**
- How long (in seconds) a subscription should persist after being created.
-
- By default subscriptions are persistent, and last until they are explicitly
- removed by calling `unsubscribe()`. Subscriptions can instead be made temporary
- by setting the time to live to how long the subscription should remain. After
- that time has elapsed the subscription will be automatically removed.
-
- A time to live of 0 or less disables subscription expiration.
- */
-@property (nonatomic) NSTimeInterval timeToLive;
-
-/**
- The maximum number of top-level matches to include in this subscription.
-
- If more top-level objects than the limit match the query, only the first
- `limit` objects will be included. This respects the sort and distinct order of
- the query being subscribed to for the determination of what the "first" objects
- are.
-
- The limit does not count or apply to objects which are added indirectly due to
- being linked to by the objects in the subscription or due to being listed in
- `includeLinkingObjectProperties`. If the limit is larger than the number of
- objects which match the query, all objects will be included. A limit of zero is
- treated as unlimited.
- */
-@property (nonatomic) NSUInteger limit;
-
-/**
- Which RLMLinkingObjects properties should be included in the subscription.
-
- Outgoing links (i.e. `RLMArray` and `RLMObject` properties) are automatically
- included in sync subscriptions. That is, if you subscribe to a query which
- matches one object, every object which is reachable via links from that object
- are also included in the subscription.
-
- By default, RLMLinkingObjects properties do not work this way. Instead, they
- only report objects which happen to be included in a subscription. By naming
- a RLMLinkingObjects property in this array, it can instead be treated as if
- it was a RLMArray and include all objects which link to this object.
-
- Any keypath which ends in a RLMLinkingObject property can be included in this
- array, including ones involving intermediate links.
- */
-@property (nonatomic, copy, nullable) NSArray *includeLinkingObjectProperties;
-@end
-
-/**
- Support for subscribing to the results of object queries in a synced Realm.
- */
-@interface RLMResults (SyncSubscription)
-
-/**
- Subscribe to the query represented by this `RLMResults`.
-
- Subscribing to a query asks the server to synchronize all objects to the
- client which match the query, along with all objects which are reachable
- from those objects via links. This happens asynchronously, and the local
- client Realm may not immediately have all objects which match the query.
- Observe the `state` property of the returned subscription object to be
- notified of when the subscription has been processed by the server and
- all objects matching the query are available.
-
- The subscription will not be explicitly named. A name will be automatically
- generated for internal use. The exact format of this name may change without
- warning and should not be depended on.
-
- @return An object representing the newly-created subscription.
-
- @see RLMSyncSubscription
-*/
-- (RLMSyncSubscription *)subscribe;
-
-/**
- Subscribe to the query represented by this `RLMResults`.
-
- Subscribing to a query asks the server to synchronize all objects to the
- client which match the query, along with all objects which are reachable
- from those objects via links. This happens asynchronously, and the local
- client Realm may not immediately have all objects which match the query.
- Observe the `state` property of the returned subscription object to be
- notified of when the subscription has been processed by the server and
- all objects matching the query are available.
-
- Creating a new subscription with the same name and query as an existing
- subscription will not create a new subscription, but instead will return
- an object referring to the existing sync subscription. This means that
- performing the same subscription twice followed by removing it once will
- result in no subscription existing.
-
- The newly created subscription will not be reported by
- `-[RLMRealm subscriptions]` or `-[RLMRealm subscriptionWithName:]` until
- `state` has transitioned from `RLMSyncSubscriptionStateCreating` to any of the
- other states.
-
- @param subscriptionName The name of the subscription.
-
- @return An object representing the newly-created subscription.
-
- @see RLMSyncSubscription
-*/
-- (RLMSyncSubscription *)subscribeWithName:(nullable NSString *)subscriptionName;
-
-/**
- Subscribe to a subset of the query represented by this `RLMResults`.
-
- Subscribing to a query asks the server to synchronize all objects to the
- client which match the query, along with all objects which are reachable
- from those objects via links. This happens asynchronously, and the local
- client Realm may not immediately have all objects which match the query.
- Observe the `state` property of the returned subscription object to be
- notified of when the subscription has been processed by the server and
- all objects matching the query are available.
-
- Creating a new subscription with the same name and query as an existing
- subscription will not create a new subscription, but instead will return
- an object referring to the existing sync subscription. This means that
- performing the same subscription twice followed by removing it once will
- result in no subscription existing.
-
- The newly created subscription will not be reported by
- `-[RLMRealm subscriptions]` or `-[RLMRealm subscriptionWithName:]` until
- `state` has transitioned from `RLMSyncSubscriptionStateCreating` to any of the
- other states.
-
- The number of top-level matches may optionally be limited. This limit
- respects the sort and distinct order of the query being subscribed to,
- if any. Please note that the limit does not count or apply to objects
- which are added indirectly due to being linked to by the objects in the
- subscription. If the limit is larger than the number of objects which
- match the query, all objects will be included.
-
- @param subscriptionName The name of the subscription
- @param limit The maximum number of objects to include in the subscription.
-
- @return The subscription
-
- @see RLMSyncSubscription
- */
-- (RLMSyncSubscription *)subscribeWithName:(nullable NSString *)subscriptionName limit:(NSUInteger)limit;
-
-/**
- Subscribe to a subset of the query represented by this `RLMResults`.
-
- Subscribing to a query asks the server to synchronize all objects to the
- client which match the query, along with all objects which are reachable
- from those objects via links. This happens asynchronously, and the local
- client Realm may not immediately have all objects which match the query.
- Observe the `state` property of the returned subscription object to be
- notified of when the subscription has been processed by the server and
- all objects matching the query are available.
-
- Creating a new subscription with the same name and query as an existing
- subscription will not create a new subscription, but instead will return
- an object referring to the existing sync subscription. This means that
- performing the same subscription twice followed by removing it once will
- result in no subscription existing.
-
- The newly created subscription will not be reported by
- `-[RLMRealm subscriptions]` or `-[RLMRealm subscriptionWithName:]` until
- `state` has transitioned from `RLMSyncSubscriptionStateCreating` to any of the
- other states.
-
- @param options The additional configuration options for the subscription.
- @return The subscription.
-
- @see RLMSyncSubscription
- */
-- (RLMSyncSubscription *)subscribeWithOptions:(RLMSyncSubscriptionOptions *)options;
-@end
-
-/**
- Support for managing existing subscriptions to object queries in a Realm.
- */
-@interface RLMRealm (SyncSubscription)
-/**
- Get a list of the query-based sync subscriptions made for this Realm.
-
- This list includes all subscriptions which are currently in the states `Pending`,
- `Created`, and `Error`. Newly created subscriptions which are still in the
- `Creating` state are not included, and calling this immediately after calling
- `-[RLMResults subscribe]` will typically not include that subscription. Similarly,
- because unsubscription happens asynchronously, this may continue to include
- subscriptions after `-[RLMSyncSubscription unsubscribe]` is called on them.
-
- This method can only be called on a Realm which is using query-based sync and
- will throw an exception if called on a non-synchronized or full-sync Realm.
- */
-- (RLMResults *)subscriptions;
-
-/**
- Look up a specific query-based sync subscription by name.
-
- Subscriptions are created asynchronously, so calling this immediately after
- calling `subscribeWithName:` on a `RLMResults` will typically return `nil`.
- Only subscriptions which are currently in the states `Pending`, `Created`,
- and `Error` can be retrieved with this method.
-
- This method can only be called on a Realm which is using query-based sync and
- will throw an exception if called on a non-synchronized or full-sync Realm.
-
- @return The named subscription, or `nil` if no subscription exists with that name.
- */
-- (nullable RLMSyncSubscription *)subscriptionWithName:(NSString *)name;
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncUser.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncUser.h
deleted file mode 100644
index a412b84..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncUser.h
+++ /dev/null
@@ -1,526 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2016 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 "RLMRealmConfiguration.h"
-#import "RLMResults.h"
-#import "RLMSyncCredentials.h"
-#import "RLMSyncPermission.h"
-
-@class RLMSyncUser, RLMSyncUserInfo, RLMSyncCredentials, RLMSyncPermission, RLMSyncSession, RLMRealm;
-
-/**
- The state of the user object.
- */
-typedef NS_ENUM(NSUInteger, RLMSyncUserState) {
- /// The user is logged out. Call `logInWithCredentials:...` with valid credentials to log the user back in.
- RLMSyncUserStateLoggedOut,
- /// The user is logged in, and any Realms associated with it are syncing with the Realm Object Server.
- RLMSyncUserStateActive,
- /// The user has encountered a fatal error state, and cannot be used.
- RLMSyncUserStateError,
-};
-
-/// A block type used for APIs which asynchronously vend an `RLMSyncUser`.
-typedef void(^RLMUserCompletionBlock)(RLMSyncUser * _Nullable, NSError * _Nullable);
-
-/// A block type used to report the status of a password change operation.
-/// If the `NSError` argument is nil, the operation succeeded.
-typedef void(^RLMPasswordChangeStatusBlock)(NSError * _Nullable);
-
-/// A block type used to report the status of a permission apply or revoke operation.
-/// If the `NSError` argument is nil, the operation succeeded.
-typedef void(^RLMPermissionStatusBlock)(NSError * _Nullable);
-
-/// A block type used to report the status of a permission offer operation.
-typedef void(^RLMPermissionOfferStatusBlock)(NSString * _Nullable, NSError * _Nullable);
-
-/// A block type used to report the status of a permission offer response operation.
-typedef void(^RLMPermissionOfferResponseStatusBlock)(NSURL * _Nullable, NSError * _Nullable);
-
-/// A block type used to asynchronously report results of a permissions get operation.
-/// Exactly one of the two arguments will be populated.
-typedef void(^RLMPermissionResultsBlock)(RLMResults * _Nullable, NSError * _Nullable);
-
-/// A block type used to asynchronously report results of a user info retrieval.
-/// Exactly one of the two arguments will be populated.
-typedef void(^RLMRetrieveUserBlock)(RLMSyncUserInfo * _Nullable, NSError * _Nullable);
-
-/// A block type used to report an error related to a specific user.
-typedef void(^RLMUserErrorReportingBlock)(RLMSyncUser * _Nonnull, NSError * _Nonnull);
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- A `RLMSyncUser` instance represents a single Realm Object Server user account.
-
- A user may have one or more credentials associated with it. These credentials
- uniquely identify the user to the authentication provider, and are used to sign
- into a Realm Object Server user account.
-
- Note that user objects are only vended out via SDK APIs, and cannot be directly
- initialized. User objects can be accessed from any thread.
- */
-@interface RLMSyncUser : NSObject
-
-/**
- A dictionary of all valid, logged-in user identities corresponding to their user objects.
- */
-+ (NSDictionary *)allUsers NS_REFINED_FOR_SWIFT;
-
-/**
- The logged-in user. `nil` if none exists.
-
- @warning Throws an exception if more than one logged-in user exists.
- */
-+ (nullable RLMSyncUser *)currentUser NS_REFINED_FOR_SWIFT;
-
-/**
- The unique Realm Object Server user ID string identifying this user.
- */
-@property (nullable, nonatomic, readonly) NSString *identity;
-
-/**
- The user's refresh token used to access the Realm Object Server.
-
- This is required to make HTTP requests to Realm Object Server's REST API
- for functionality not exposed natively. It should be treated as sensitive data.
- */
-@property (nullable, nonatomic, readonly) NSString *refreshToken;
-
-/**
- The URL of the authentication server this user will communicate with.
- */
-@property (nullable, nonatomic, readonly) NSURL *authenticationServer;
-
-/**
- Whether the user is a Realm Object Server administrator. Value reflects the
- state at the time of the last successful login of this user.
- */
-@property (nonatomic, readonly) BOOL isAdmin;
-
-/**
- The current state of the user.
- */
-@property (nonatomic, readonly) RLMSyncUserState state;
-
-#pragma mark - Lifecycle
-
-/**
- Create, log in, and asynchronously return a new user object, specifying a custom
- timeout for the network request and a custom queue to run the callback upon.
- Credentials identifying the user must be passed in. The user becomes available in
- the completion block, at which point it is ready for use.
- */
-+ (void)logInWithCredentials:(RLMSyncCredentials *)credentials
- authServerURL:(NSURL *)authServerURL
- timeout:(NSTimeInterval)timeout
- callbackQueue:(dispatch_queue_t)callbackQueue
- onCompletion:(RLMUserCompletionBlock)completion NS_REFINED_FOR_SWIFT;
-
-/**
- Create, log in, and asynchronously return a new user object.
-
- If the login completes successfully, the completion block will invoked with
- a `RLMSyncUser` object representing the logged-in user. This object can be
- used to open synchronized Realms. If the login fails, the completion block
- will be invoked with an error.
-
- The completion block always runs on the main queue.
-
- @param credentials A credentials value identifying the user to be logged in.
- @param authServerURL The URL of the authentication server (e.g. "http://realm.example.org:9080").
- @param completion A callback block that returns a user object or an error,
- indicating the completion of the login operation.
- */
-+ (void)logInWithCredentials:(RLMSyncCredentials *)credentials
- authServerURL:(NSURL *)authServerURL
- onCompletion:(RLMUserCompletionBlock)completion
-NS_SWIFT_UNAVAILABLE("Use the full version of this API.");
-
-
-/**
- Returns the default configuration for the user. The default configuration
- points to the default query-based Realm on the server the user authenticated against.
- */
-- (RLMRealmConfiguration *)configuration NS_REFINED_FOR_SWIFT;
-
-/**
- Create a query-based configuration instance for the given url.
-
- @param url The unresolved absolute URL to the Realm on the Realm Object Server,
- e.g. "realm://example.org/~/path/to/realm". "Unresolved" means the
- path should contain the wildcard marker `~`, which will automatically
- be filled in with the user identity by the Realm Object Server.
- @return A default configuration object with the sync configuration set to use the given URL.
- */
-- (RLMRealmConfiguration *)configurationWithURL:(nullable NSURL *)url NS_REFINED_FOR_SWIFT;
-
-/**
- Create a configuration instance for the given url.
-
- @param url The unresolved absolute URL to the Realm on the Realm Object Server,
- e.g. "realm://example.org/~/path/to/realm". "Unresolved" means the
- path should contain the wildcard marker `~`, which will automatically
- be filled in with the user identity by the Realm Object Server.
- @param fullSynchronization If YES, all objects in the server Realm are
- automatically synchronized, and the query subscription
- methods cannot be used.
- @return A default configuration object with the sync configuration set to use
- the given URL and options.
- */
-- (RLMRealmConfiguration *)configurationWithURL:(nullable NSURL *)url
- fullSynchronization:(bool)fullSynchronization NS_REFINED_FOR_SWIFT;
-
-/**
- Create a configuration instance for the given url.
-
- @param url The unresolved absolute URL to the Realm on the Realm Object Server,
- e.g. "realm://example.org/~/path/to/realm". "Unresolved" means the
- path should contain the wildcard marker `~`, which will automatically
- be filled in with the user identity by the Realm Object Server.
- @param fullSynchronization If YES, all objects in the server Realm are
- automatically synchronized, and the query subscription
- methods cannot be used.
- @param enableSSLValidation If NO, invalid SSL certificates for the server will
- not be rejected. THIS SHOULD NEVER BE USED IN
- PRODUCTION AND EXISTS ONLY FOR TESTING PURPOSES.
- @param urlPrefix A prefix which is prepending to URLs constructed for
- the server. This should normally be `nil`, and customized only
- to match corresponding settings on the server.
- @return A default configuration object with the sync configuration set to use
- the given URL and options.
- */
-- (RLMRealmConfiguration *)configurationWithURL:(nullable NSURL *)url
- fullSynchronization:(bool)fullSynchronization
- enableSSLValidation:(bool)enableSSLValidation
- urlPrefix:(nullable NSString *)urlPrefix NS_REFINED_FOR_SWIFT;
-
-/**
- Log a user out, destroying their server state, unregistering them from the SDK,
- and removing any synced Realms associated with them from on-disk storage on
- next app launch. If the user is already logged out or in an error state, this
- method does nothing.
-
- This method should be called whenever the application is committed to not using
- a user again unless they are recreated.
- Failing to call this method may result in unused files and metadata needlessly
- taking up space.
- */
-- (void)logOut;
-
-/**
- An optional error handler which can be set to notify the host application when
- the user encounters an error. Errors reported by this error handler are always
- `RLMSyncAuthError`s.
-
- @note Check for `RLMSyncAuthErrorInvalidAccessToken` to see if the user has
- been remotely logged out because its refresh token expired, or because the
- third party authentication service providing the user's identity has
- logged the user out.
-
- @warning Regardless of whether an error handler is installed, certain user errors
- will automatically cause the user to enter the logged out state.
- */
-@property (nullable, nonatomic) RLMUserErrorReportingBlock errorHandler NS_REFINED_FOR_SWIFT;
-
-#pragma mark - Sessions
-
-/**
- Retrieve a valid session object belonging to this user for a given URL, or `nil`
- if no such object exists.
- */
-- (nullable RLMSyncSession *)sessionForURL:(NSURL *)url;
-
-/**
- Retrieve all the valid sessions belonging to this user.
- */
-- (NSArray *)allSessions;
-
-#pragma mark - Passwords
-
-/**
- Change this user's password asynchronously.
-
- @warning Changing a user's password using an authentication server that doesn't
- use HTTPS is a major security flaw, and should only be done while
- testing.
-
- @param newPassword The user's new password.
- @param completion Completion block invoked when login has completed or failed.
- The callback will be invoked on a background queue provided
- by `NSURLSession`.
- */
-- (void)changePassword:(NSString *)newPassword completion:(RLMPasswordChangeStatusBlock)completion;
-
-/**
- Change an arbitrary user's password asynchronously.
-
- @note The current user must be an admin user for this operation to succeed.
-
- @warning Changing a user's password using an authentication server that doesn't
- use HTTPS is a major security flaw, and should only be done while
- testing.
-
- @param newPassword The user's new password.
- @param userID The identity of the user whose password should be changed.
- @param completion Completion block invoked when login has completed or failed.
- The callback will be invoked on a background queue provided
- by `NSURLSession`.
- */
-- (void)changePassword:(NSString *)newPassword forUserID:(NSString *)userID completion:(RLMPasswordChangeStatusBlock)completion;
-
-/**
- Ask the server to send a password reset email to the given email address.
-
- If `email` is an email address which is associated with a user account that was
- registered using the "password" authentication service, the server will send an
- email to that address with a password reset token. No error is reported if the
- email address is invalid or not associated with an account.
-
- @param serverURL The authentication server URL for the user.
- @param email The email address to send the email to.
- @param completion A block which will be called when the request completes or
- fails. The callback will be invoked on a background queue
- provided by `NSURLSession`, and not on the calling queue.
- */
-+ (void)requestPasswordResetForAuthServer:(NSURL *)serverURL
- userEmail:(NSString *)email
- completion:(RLMPasswordChangeStatusBlock)completion;
-
-/**
- Change a user's password using a one-time password reset token.
-
- By default, the password reset email sent by ROS will link to a web site where
- the user can select a new password, and the app will not need to call this
- method. If you wish to instead handle this within your native app, you must
- change the `baseURL` in the server configuration for `PasswordAuthProvider` to
- a scheme registered for your app, extract the token from the URL, and call this
- method after prompting the user for a new password.
-
- @warning Changing a user's password using an authentication server that doesn't
- use HTTPS is a major security flaw, and should only be done while
- testing.
-
- @param serverURL The authentication server URL for the user.
- @param token The one-time use token from the URL.
- @param newPassword The user's new password.
- @param completion A block which will be called when the request completes or
- fails. The callback will be invoked on a background queue
- provided by `NSURLSession`, and not on the calling queue.
- */
-+ (void)completePasswordResetForAuthServer:(NSURL *)serverURL
- token:(NSString *)token
- password:(NSString *)newPassword
- completion:(RLMPasswordChangeStatusBlock)completion;
-
-/**
- Ask the server to send a confirmation email to the given email address.
-
- If `email` is an email address which is associated with a user account that was
- registered using the "password" authentication service, the server will send an
- email to that address with a confirmation token. No error is reported if the
- email address is invalid or not associated with an account.
-
- @param serverURL The authentication server URL for the user.
- @param email The email address to send the email to.
- @param completion A block which will be called when the request completes or
- fails. The callback will be invoked on a background queue
- provided by `NSURLSession`, and not on the calling queue.
- */
-+ (void)requestEmailConfirmationForAuthServer:(NSURL *)serverURL
- userEmail:(NSString *)email
- completion:(RLMPasswordChangeStatusBlock)completion;
-
-/**
- Confirm a user's email using a one-time confirmation token.
-
- By default, the confirmation email sent by ROS will link to a web site with
- a generic "thank you for confirming your email" message, and the app will not
- need to call this method. If you wish to instead handle this within your native
- app, you must change the `baseURL` in the server configuration for
- `PasswordAuthProvider` to a scheme registered for your app, extract the token
- from the URL, and call this method.
-
- @param serverURL The authentication server URL for the user.
- @param token The one-time use token from the URL.
- @param completion A block which will be called when the request completes or
- fails. The callback will be invoked on a background queue
- provided by `NSURLSession`, and not on the calling queue.
- */
-+ (void)confirmEmailForAuthServer:(NSURL *)serverURL
- token:(NSString *)token
- completion:(RLMPasswordChangeStatusBlock)completion;
-
-#pragma mark - Administrator
-
-/**
- Given a Realm Object Server authentication provider and a provider identifier for a user
- (for example, a username), look up and return user information for that user.
-
- @param providerUserIdentity The username or identity of the user as issued by the authentication provider.
- In most cases this is different from the Realm Object Server-issued identity.
- @param provider The authentication provider that manages the user whose information is desired.
- @param completion Completion block invoked when request has completed or failed.
- The callback will be invoked on a background queue provided
- by `NSURLSession`.
- */
-- (void)retrieveInfoForUser:(NSString *)providerUserIdentity
- identityProvider:(RLMIdentityProvider)provider
- completion:(RLMRetrieveUserBlock)completion;
-
-#pragma mark - Permissions
-
-/**
- Asynchronously retrieve all permissions associated with the user calling this method.
-
- The results will be returned through the callback block, or an error if the operation failed.
- The callback block will be run on the same thread the method was called on.
-
- @warning This method must be called from a thread with a currently active run loop. Unless
- you have manually configured a run loop on a side thread, this will usually be the
- main thread.
- */
-- (void)retrievePermissionsWithCallback:(RLMPermissionResultsBlock)callback NS_REFINED_FOR_SWIFT;
-
-/**
- Apply a given permission.
-
- The operation will take place asynchronously, and the callback will be used to report whether
- the permission change succeeded or failed. The user calling this method must have the right
- to grant the given permission, or else the operation will fail.
-
- @see `RLMSyncPermission`
- */
-- (void)applyPermission:(RLMSyncPermission *)permission callback:(RLMPermissionStatusBlock)callback;
-
-/**
- Revoke a given permission.
-
- The operation will take place asynchronously, and the callback will be used to report whether
- the permission change succeeded or failed. The user calling this method must have the right
- to grant the given permission, or else the operation will fail.
-
- @see `RLMSyncPermission`
- */
-- (void)revokePermission:(RLMSyncPermission *)permission callback:(RLMPermissionStatusBlock)callback;
-
-/**
- Create a permission offer for a Realm.
-
- A permission offer is used to grant access to a Realm this user manages to another
- user. Creating a permission offer produces a string token which can be passed to the
- recepient in any suitable way (for example, via e-mail).
-
- The operation will take place asynchronously. The token can be accepted by the recepient
- using the `-[RLMSyncUser acceptOfferForToken:callback:]` method.
-
- @param url The URL of the Realm for which the permission offer should pertain. This
- may be the URL of any Realm which this user is allowed to manage. If the URL
- has a `~` wildcard it will be replaced with this user's user identity.
- @param accessLevel What access level to grant to whoever accepts the token.
- @param expirationDate Optionally, a date which indicates when the offer expires. If the
- recepient attempts to accept the offer after the date it will be rejected.
- @param callback A callback indicating whether the operation succeeded or failed. If it
- succeeded the token will be passed in as a string.
-
- @see `acceptOfferForToken:callback:`
- */
-- (void)createOfferForRealmAtURL:(NSURL *)url
- accessLevel:(RLMSyncAccessLevel)accessLevel
- expiration:(nullable NSDate *)expirationDate
- callback:(RLMPermissionOfferStatusBlock)callback NS_REFINED_FOR_SWIFT;
-
-/**
- Accept a permission offer.
-
- Pass in a token representing a permission offer. The operation will take place asynchronously.
- If the operation succeeds, the callback will be passed the URL of the Realm for which the
- offer applied, so the Realm can be opened.
-
- The token this method accepts can be created by the offering user through the
- `-[RLMSyncUser createOfferForRealmAtURL:accessLevel:expiration:callback:]` method.
-
- @see `createOfferForRealmAtURL:accessLevel:expiration:callback:`
- */
-- (void)acceptOfferForToken:(NSString *)token
- callback:(RLMPermissionOfferResponseStatusBlock)callback;
-
-/// :nodoc:
-- (instancetype)init __attribute__((unavailable("RLMSyncUser cannot be created directly")));
-/// :nodoc:
-+ (instancetype)new __attribute__((unavailable("RLMSyncUser cannot be created directly")));
-
-@end
-
-#pragma mark - User info classes
-
-/**
- A data object representing a user account associated with a user.
-
- @see `RLMSyncUserInfo`
- */
-@interface RLMSyncUserAccountInfo : NSObject
-
-/// The authentication provider which manages this user account.
-@property (nonatomic, readonly) RLMIdentityProvider provider;
-
-/// The username or identity of this user account.
-@property (nonatomic, readonly) NSString *providerUserIdentity;
-
-/// :nodoc:
-- (instancetype)init __attribute__((unavailable("RLMSyncUserAccountInfo cannot be created directly")));
-/// :nodoc:
-+ (instancetype)new __attribute__((unavailable("RLMSyncUserAccountInfo cannot be created directly")));
-
-@end
-
-/**
- A data object representing information about a user that was retrieved from a user lookup call.
- */
-@interface RLMSyncUserInfo : NSObject
-
-/**
- An array of all the user accounts associated with this user.
- */
-@property (nonatomic, readonly) NSArray *accounts;
-
-/**
- The identity issued to this user by the Realm Object Server.
- */
-@property (nonatomic, readonly) NSString *identity;
-
-/**
- Metadata about this user stored on the Realm Object Server.
- */
-@property (nonatomic, readonly) NSDictionary *metadata;
-
-/**
- Whether the user is flagged on the Realm Object Server as an administrator.
- */
-@property (nonatomic, readonly) BOOL isAdmin;
-
-/// :nodoc:
-- (instancetype)init __attribute__((unavailable("RLMSyncUserInfo cannot be created directly")));
-/// :nodoc:
-+ (instancetype)new __attribute__((unavailable("RLMSyncUserInfo cannot be created directly")));
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncUtil.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncUtil.h
deleted file mode 100644
index 5867d74..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMSyncUtil.h
+++ /dev/null
@@ -1,222 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2016 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
-
-/// A token originating from the Realm Object Server.
-typedef NSString* RLMServerToken;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/// A user info key for use with `RLMSyncErrorClientResetError`.
-extern NSString *const kRLMSyncPathOfRealmBackupCopyKey;
-
-/// A user info key for use with certain error types.
-extern NSString *const kRLMSyncErrorActionTokenKey;
-
-/**
- The error domain string for all SDK errors related to errors reported
- by the synchronization manager error handler, as well as general sync
- errors that don't fall into any of the other categories.
- */
-extern NSString *const RLMSyncErrorDomain;
-
-/**
- The error domain string for all SDK errors related to the authentication
- endpoint.
- */
-extern NSString *const RLMSyncAuthErrorDomain;
-
-/**
- The error domain string for all SDK errors related to the permissions
- system and APIs.
- */
-extern NSString *const RLMSyncPermissionErrorDomain;
-
-/**
- An error related to a problem that might be reported by the synchronization manager
- error handler, or a callback on a sync-related API that performs asynchronous work.
- */
-typedef RLM_ERROR_ENUM(NSInteger, RLMSyncError, RLMSyncErrorDomain) {
-
- /// An error that indicates a problem with the session (a specific Realm opened for sync).
- RLMSyncErrorClientSessionError = 4,
-
- /// An error that indicates a problem with a specific user.
- RLMSyncErrorClientUserError = 5,
-
- /**
- An error that indicates an internal, unrecoverable problem
- with the underlying synchronization engine.
- */
- RLMSyncErrorClientInternalError = 6,
-
- /**
- An error that indicates the Realm needs to be reset.
-
- A synced Realm may need to be reset because the Realm Object Server encountered an
- error and had to be restored from a backup. If the backup copy of the remote Realm
- is of an earlier version than the local copy of the Realm, the server will ask the
- client to reset the Realm.
-
- The reset process is as follows: the local copy of the Realm is copied into a recovery
- directory for safekeeping, and then deleted from the original location. The next time
- the Realm for that URL is opened, the Realm will automatically be re-downloaded from the
- Realm Object Server, and can be used as normal.
-
- Data written to the Realm after the local copy of the Realm diverged from the backup
- remote copy will be present in the local recovery copy of the Realm file. The
- re-downloaded Realm will initially contain only the data present at the time the Realm
- was backed up on the server.
-
- The client reset process can be initiated in one of two ways.
-
- The `userInfo` dictionary contains an opaque token object under the key
- `kRLMSyncErrorActionTokenKey`. This token can be passed into
- `+[RLMSyncSession immediatelyHandleError:]` in order to immediately perform the client
- reset process. This should only be done after your app closes and invalidates every
- instance of the offending Realm on all threads (note that autorelease pools may make this
- difficult to guarantee).
-
- If `+[RLMSyncSession immediatelyHandleError:]` is not called, the client reset process
- will be automatically carried out the next time the app is launched and the
- `RLMSyncManager` singleton is accessed.
-
- The value for the `kRLMSyncPathOfRealmBackupCopyKey` key in the `userInfo` dictionary
- describes the path of the recovered copy of the Realm. This copy will not actually be
- created until the client reset process is initiated.
-
- @see `-[NSError rlmSync_errorActionToken]`, `-[NSError rlmSync_clientResetBackedUpRealmPath]`
- */
- RLMSyncErrorClientResetError = 7,
-
- /**
- An error that indicates an authentication error occurred.
-
- The `kRLMSyncUnderlyingErrorKey` key in the user info dictionary will contain the
- underlying error, which is guaranteed to be under the `RLMSyncAuthErrorDomain`
- error domain.
- */
- RLMSyncErrorUnderlyingAuthError = 8,
-
- /**
- An error that indicates the user does not have permission to perform an operation
- upon a synced Realm. For example, a user may receive this error if they attempt to
- open a Realm they do not have at least read access to, or write to a Realm they only
- have read access to.
-
- This error may also occur if a user incorrectly opens a Realm they have read-only
- permissions to without using the `asyncOpen()` APIs.
-
- A Realm that suffers a permission denied error is, by default, flagged so that its
- local copy will be deleted the next time the application starts.
-
- The `userInfo` dictionary contains an opaque token object under the key
- `kRLMSyncErrorActionTokenKey`. This token can be passed into
- `+[RLMSyncSession immediatelyHandleError:]` in order to immediately delete the local
- copy. This should only be done after your app closes and invalidates every instance
- of the offending Realm on all threads (note that autorelease pools may make this
- difficult to guarantee).
-
- @warning It is strongly recommended that, if a Realm has encountered a permission denied
- error, its files be deleted before attempting to re-open it.
-
- @see `-[NSError rlmSync_errorActionToken]`
- */
- RLMSyncErrorPermissionDeniedError = 9,
-};
-
-/// An error which is related to authentication to a Realm Object Server.
-typedef RLM_ERROR_ENUM(NSInteger, RLMSyncAuthError, RLMSyncAuthErrorDomain) {
- /// An error that indicates that the response received from the authentication server was malformed.
- RLMSyncAuthErrorBadResponse = 1,
-
- /// An error that indicates that the supplied Realm path was invalid, or could not be resolved by the authentication
- /// server.
- RLMSyncAuthErrorBadRemoteRealmPath = 2,
-
- /// An error that indicates that the response received from the authentication server was an HTTP error code. The
- /// `userInfo` dictionary contains the actual error code value.
- RLMSyncAuthErrorHTTPStatusCodeError = 3,
-
- /// An error that indicates a problem with the session (a specific Realm opened for sync).
- RLMSyncAuthErrorClientSessionError = 4,
-
- /// An error that indicates that the provided credentials are ill-formed.
- RLMSyncAuthErrorInvalidParameters = 601,
-
- /// An error that indicates that no Realm path was included in the URL.
- RLMSyncAuthErrorMissingPath = 602,
-
- /// An error that indicates that the provided credentials are invalid.
- RLMSyncAuthErrorInvalidCredential = 611,
-
- /// An error that indicates that the user with provided credentials does not exist.
- RLMSyncAuthErrorUserDoesNotExist = 612,
-
- /// An error that indicates that the user cannot be registered as it exists already.
- RLMSyncAuthErrorUserAlreadyExists = 613,
-
- /// An error that indicates the path is invalid or the user doesn't have access to that Realm.
- RLMSyncAuthErrorAccessDeniedOrInvalidPath = 614,
-
- /// An error that indicates the refresh token was invalid.
- RLMSyncAuthErrorInvalidAccessToken = 615,
-
- /// An error that indicates the permission offer is expired.
- RLMSyncAuthErrorExpiredPermissionOffer = 701,
-
- /// An error that indicates the permission offer is ambiguous.
- RLMSyncAuthErrorAmbiguousPermissionOffer = 702,
-
- /// An error that indicates the file at the given path can't be shared.
- RLMSyncAuthErrorFileCannotBeShared = 703,
-};
-
-/**
- An error related to the permissions subsystem.
- */
-typedef RLM_ERROR_ENUM(NSInteger, RLMSyncPermissionError, RLMSyncPermissionErrorDomain) {
- /**
- An error that indicates a permission change operation failed. The `userInfo`
- dictionary contains the underlying error code and a message (if any).
- */
- RLMSyncPermissionErrorChangeFailed = 1,
-
- /**
- An error that indicates that attempting to retrieve permissions failed.
- */
- RLMSyncPermissionErrorGetFailed = 2,
-
- /**
- An error that indicates that trying to create a permission offer failed.
- */
- RLMSyncPermissionErrorOfferFailed = 3,
-
- /**
- An error that indicates that trying to accept a permission offer failed.
- */
- RLMSyncPermissionErrorAcceptOfferFailed = 4,
-
- /**
- An error that indicates that an internal error occurred.
- */
- RLMSyncPermissionErrorInternal = 5,
-};
-
-NS_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMThreadSafeReference.h b/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMThreadSafeReference.h
deleted file mode 100644
index a935ebe..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/RLMThreadSafeReference.h
+++ /dev/null
@@ -1,106 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2016 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 RLMRealm;
-
-NS_ASSUME_NONNULL_BEGIN
-
-/**
- Objects of types which conform to `RLMThreadConfined` can be managed by a Realm, which will make
- them bound to a thread-specific `RLMRealm` instance. Managed objects must be explicitly exported
- and imported to be passed between threads.
-
- Managed instances of objects conforming to this protocol can be converted to a thread-safe
- reference for transport between threads by passing to the
- `+[RLMThreadSafeReference referenceWithThreadConfined:]` constructor.
-
- Note that only types defined by Realm can meaningfully conform to this protocol, and defining new
- classes which attempt to conform to it will not make them work with `RLMThreadSafeReference`.
- */
-@protocol RLMThreadConfined
-// Conformance to the `RLMThreadConfined_Private` protocol will be enforced at runtime.
-
-/**
- The Realm which manages the object, or `nil` if the object is unmanaged.
-
- Unmanaged objects are not confined to a thread and cannot be passed to methods expecting a
- `RLMThreadConfined` object.
- */
-@property (nonatomic, readonly, nullable) RLMRealm *realm;
-
-/// Indicates if the object can no longer be accessed because it is now invalid.
-@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
-
-@end
-
-/**
- An object intended to be passed between threads containing a thread-safe reference to its
- thread-confined object.
-
- To resolve a thread-safe reference on a target Realm on a different thread, pass to
- `-[RLMRealm resolveThreadSafeReference:]`.
-
- @warning A `RLMThreadSafeReference` object must be resolved at most once.
- Failing to resolve a `RLMThreadSafeReference` will result in the source version of the
- Realm being pinned until the reference is deallocated.
-
- @note Prefer short-lived `RLMThreadSafeReference`s as the data for the version of the source Realm
- will be retained until all references have been resolved or deallocated.
-
- @see `RLMThreadConfined`
- @see `-[RLMRealm resolveThreadSafeReference:]`
- */
-@interface RLMThreadSafeReference<__covariant Confined : id> : NSObject
-
-/**
- Create a thread-safe reference to the thread-confined object.
-
- @param threadConfined The thread-confined object to create a thread-safe reference to.
-
- @note You may continue to use and access the thread-confined object after passing it to this
- constructor.
- */
-+ (instancetype)referenceWithThreadConfined:(Confined)threadConfined;
-
-/**
- Indicates if the reference can no longer be resolved because an attempt to resolve it has already
- occurred. References can only be resolved once.
- */
-@property (nonatomic, readonly, getter = isInvalidated) BOOL invalidated;
-
-#pragma mark - Unavailable Methods
-
-/**
- `-[RLMThreadSafeReference init]` is not available because `RLMThreadSafeReference` cannot be
- created directly. `RLMThreadSafeReference` instances must be obtained by calling
- `-[RLMRealm resolveThreadSafeReference:]`.
- */
-- (instancetype)init __attribute__((unavailable("RLMThreadSafeReference cannot be created directly")));
-
-/**
- `-[RLMThreadSafeReference new]` is not available because `RLMThreadSafeReference` cannot be
- created directly. `RLMThreadSafeReference` instances must be obtained by calling
- `-[RLMRealm resolveThreadSafeReference:]`.
- */
-+ (instancetype)new __attribute__((unavailable("RLMThreadSafeReference cannot be created directly")));
-
-@end
-
-NS_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 f460336..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Headers/Realm.h
+++ /dev/null
@@ -1,41 +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
-#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 42845f6..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Modules/module.modulemap
+++ /dev/null
@@ -1,31 +0,0 @@
-framework module Realm {
- umbrella header "Realm.h"
-
- export *
- module * { export * }
-
- explicit module Private {
- header "RLMAccessor.h"
- header "RLMArray_Private.h"
- header "RLMCollection_Private.h"
- header "RLMListBase.h"
- header "RLMObject_Private.h"
- header "RLMObjectBase_Dynamic.h"
- header "RLMObjectBase_Private.h"
- header "RLMObjectSchema_Private.h"
- header "RLMObjectStore.h"
- header "RLMOptionalBase.h"
- header "RLMProperty_Private.h"
- header "RLMRealm_Private.h"
- header "RLMRealmConfiguration_Private.h"
- header "RLMResults_Private.h"
- header "RLMSchema_Private.h"
- header "RLMSyncConfiguration_Private.h"
- header "RLMSyncUtil_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 59c625a..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMAccessor.h
+++ /dev/null
@@ -1,53 +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, RLMProperty, RLMObjectBase;
-
-NS_ASSUME_NONNULL_BEGIN
-
-//
-// Accessors Class Creation/Caching
-//
-
-// get accessor classes for an object class - generates classes if not cached
-Class RLMManagedAccessorClassForObjectClass(Class objectClass, RLMObjectSchema *schema, const char *name);
-Class RLMUnmanagedAccessorClassForObjectClass(Class objectClass, RLMObjectSchema *schema);
-
-//
-// Dynamic getters/setters
-//
-FOUNDATION_EXTERN void RLMDynamicValidatedSet(RLMObjectBase *obj, NSString *propName, id __nullable val);
-FOUNDATION_EXTERN id __nullable RLMDynamicGet(RLMObjectBase *obj, RLMProperty *prop);
-FOUNDATION_EXTERN id __nullable RLMDynamicGetByName(RLMObjectBase *obj, NSString *propName, bool asList);
-
-// by property/column
-void RLMDynamicSet(RLMObjectBase *obj, RLMProperty *prop, id val);
-
-//
-// 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);
-
-NS_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 02b908a..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMArray_Private.h
+++ /dev/null
@@ -1,32 +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
-
-NS_ASSUME_NONNULL_BEGIN
-
-@interface RLMArray ()
-- (instancetype)initWithObjectClassName:(NSString *)objectClassName;
-- (instancetype)initWithObjectType:(RLMPropertyType)type optional:(BOOL)optional;
-- (NSString *)descriptionWithMaxDepth:(NSUInteger)depth;
-@end
-
-void RLMArrayValidateMatchingObjectType(RLMArray *array, id value);
-
-NS_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMCollection_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMCollection_Private.h
deleted file mode 100644
index 4c3f882..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMCollection_Private.h
+++ /dev/null
@@ -1,26 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2016 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
-
-@protocol RLMFastEnumerable;
-
-void RLMCollectionSetValueForKey(id collection, NSString *key, id value);
-FOUNDATION_EXTERN NSString *RLMDescriptionWithMaxDepth(NSString *name, id collection, NSUInteger depth);
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 0151cfb..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMListBase.h
+++ /dev/null
@@ -1,33 +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;
-
-NS_ASSUME_NONNULL_BEGIN
-
-// 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
-
-NS_ASSUME_NONNULL_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 99699e5..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMMigration_Private.h
+++ /dev/null
@@ -1,40 +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
-
-namespace realm {
- class Schema;
-}
-
-NS_ASSUME_NONNULL_BEGIN
-
-@interface RLMMigration ()
-
-@property (nonatomic, strong) RLMRealm *oldRealm;
-@property (nonatomic, strong) RLMRealm *realm;
-
-- (instancetype)initWithRealm:(RLMRealm *)realm oldRealm:(RLMRealm *)oldRealm schema:(realm::Schema &)schema;
-
-- (void)execute:(RLMMigrationBlock)block;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectBase_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectBase_Private.h
deleted file mode 100644
index c2d0722..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectBase_Private.h
+++ /dev/null
@@ -1,28 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2017 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
-
-NS_ASSUME_NONNULL_BEGIN
-
-// RLMObjectBase private
-@interface RLMObjectBase ()
-+ (void)initializeLinkedObjectSchemas;
-@end
-
-NS_ASSUME_NONNULL_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 deca77d..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectSchema_Private.h
+++ /dev/null
@@ -1,71 +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
-
-NS_ASSUME_NONNULL_BEGIN
-
-// RLMObjectSchema private
-@interface RLMObjectSchema () {
-@public
- bool _isSwiftClass;
-}
-
-/// The object type name reported to the object store and core.
-@property (nonatomic, readonly) NSString *objectName;
-
-// writable redeclaration
-@property (nonatomic, readwrite, copy) NSArray *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 unmanagedClass;
-
-@property (nonatomic, readwrite, nullable) RLMProperty *primaryKeyProperty;
-
-@property (nonatomic, copy) NSArray *computedProperties;
-@property (nonatomic, readonly) NSArray *swiftGenericProperties;
-
-// returns a cached or new schema for a given object class
-+ (instancetype)schemaForObjectClass:(Class)objectClass;
-@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 recommended
- 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 of RLMProperty instances describing the managed properties for this type.
-
- @return An initialized instance of RLMObjectSchema.
- */
-- (instancetype)initWithClassName:(NSString *)objectClassName objectClass:(Class)objectClass properties:(NSArray *)properties;
-@end
-
-NS_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 a21c009..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObjectStore.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
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-@class RLMRealm, RLMSchema, RLMObjectBase, RLMResults, RLMProperty;
-
-typedef NS_ENUM(NSUInteger, RLMUpdatePolicy) {
- RLMUpdatePolicyError = 0,
- RLMUpdatePolicyUpdateChanged = 1,
- RLMUpdatePolicyUpdateAll = 2,
-};
-
-NS_ASSUME_NONNULL_BEGIN
-
-void RLMVerifyHasPrimaryKey(Class cls);
-
-//
-// Accessor Creation
-//
-
-// create or get cached accessors for the given schema
-void RLMRealmCreateAccessors(RLMSchema *schema);
-
-
-//
-// Adding, Removing, Getting Objects
-//
-
-// add an object to the given realm
-void RLMAddObjectToRealm(RLMObjectBase *object, RLMRealm *realm, RLMUpdatePolicy);
-
-// 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 * _Nullable predicate)
-NS_RETURNS_RETAINED;
-
-// get an object with the given primary key
-id _Nullable RLMGetObject(RLMRealm *realm, NSString *objectClassName, id _Nullable key) NS_RETURNS_RETAINED;
-
-// create object from array or dictionary
-RLMObjectBase *RLMCreateObjectInRealmWithValue(RLMRealm *realm, NSString *className,
- id _Nullable value, RLMUpdatePolicy updatePolicy)
-NS_RETURNS_RETAINED;
-
-//
-// Accessor Creation
-//
-
-
-// switch List<> properties from being backed by unmanaged RLMArrays to RLMManagedArray
-void RLMInitializeSwiftAccessorGenerics(RLMObjectBase *object);
-
-#ifdef __cplusplus
-}
-
-namespace realm {
- class Table;
- template class BasicRowExpr;
- using RowExpr = BasicRowExpr;
-}
-class RLMClassInfo;
-
-// Create accessors
-RLMObjectBase *RLMCreateObjectAccessor(RLMRealm *realm, RLMClassInfo& info,
- NSUInteger index) NS_RETURNS_RETAINED;
-RLMObjectBase *RLMCreateObjectAccessor(RLMRealm *realm, RLMClassInfo& info,
- realm::RowExpr row) NS_RETURNS_RETAINED;
-#endif
-
-NS_ASSUME_NONNULL_END
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 33a13ae..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMObject_Private.h
+++ /dev/null
@@ -1,147 +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
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class RLMProperty, RLMArray, RLMSwiftPropertyMetadata;
-typedef NS_ENUM(int32_t, RLMPropertyType);
-
-// RLMObject accessor and read/write realm
-@interface RLMObjectBase () {
-@public
- RLMRealm *_realm;
- __unsafe_unretained RLMObjectSchema *_objectSchema;
-}
-
-// unmanaged initializer
-- (instancetype)initWithValue:(id)value schema:(RLMSchema *)schema NS_DESIGNATED_INITIALIZER;
-
-// live accessor initializer
-- (instancetype)initWithRealm:(__unsafe_unretained RLMRealm *const)realm
- schema:(RLMObjectSchema *)schema NS_DESIGNATED_INITIALIZER;
-
-// shared schema for this class
-+ (nullable RLMObjectSchema *)sharedSchema;
-
-// provide injection point for alternative Swift object util class
-+ (Class)objectUtilClass:(BOOL)isSwift;
-
-@end
-
-@interface RLMObject ()
-
-// unmanaged initializer
-- (instancetype)initWithValue:(id)value schema:(RLMSchema *)schema NS_DESIGNATED_INITIALIZER;
-
-// live accessor initializer
-- (instancetype)initWithRealm:(__unsafe_unretained RLMRealm *const)realm
- schema:(RLMObjectSchema *)schema NS_DESIGNATED_INITIALIZER;
-
-@end
-
-@interface RLMDynamicObject : RLMObject
-
-@end
-
-// A reference to an object's row that doesn't keep the object accessor alive.
-// Used by some Swift property types, such as LinkingObjects, to avoid retain cycles
-// with their containing object.
-@interface RLMWeakObjectHandle : NSObject
-
-- (instancetype)initWithObject:(RLMObjectBase *)object;
-
-// Consumes the row, so can only usefully be called once.
-@property (nonatomic, readonly) RLMObjectBase *object;
-
-@end
-
-// Calls valueForKey: and re-raises NSUndefinedKeyExceptions
-FOUNDATION_EXTERN id _Nullable RLMValidatedValueForProperty(id object, NSString *key, NSString *className);
-
-// Compare two RLObjectBases
-FOUNDATION_EXTERN BOOL RLMObjectBaseAreEqual(RLMObjectBase * _Nullable o1, RLMObjectBase * _Nullable o2);
-
-typedef void (^RLMObjectNotificationCallback)(NSArray *_Nullable propertyNames,
- NSArray *_Nullable oldValues,
- NSArray *_Nullable newValues,
- NSError *_Nullable error);
-FOUNDATION_EXTERN RLMNotificationToken *RLMObjectAddNotificationBlock(RLMObjectBase *obj, RLMObjectNotificationCallback block);
-
-// Returns whether the class is a descendent of RLMObjectBase
-FOUNDATION_EXTERN BOOL RLMIsObjectOrSubclass(Class klass);
-
-// Returns whether the class is an indirect descendant of RLMObjectBase
-FOUNDATION_EXTERN BOOL RLMIsObjectSubclass(Class klass);
-
-// For unit testing purposes, allow an Objective-C class named FakeObject to also be used
-// as the base class of managed objects. This allows for testing invalid schemas.
-FOUNDATION_EXTERN void RLMSetTreatFakeObjectAsRLMObject(BOOL flag);
-
-// Get ObjectUil class for objc or swift
-FOUNDATION_EXTERN Class RLMObjectUtilClass(BOOL isSwift);
-
-FOUNDATION_EXTERN const NSUInteger RLMDescriptionMaxDepth;
-
-@interface RLMObjectUtil : NSObject
-
-+ (nullable NSArray *)ignoredPropertiesForClass:(Class)cls;
-+ (nullable NSArray *)indexedPropertiesForClass:(Class)cls;
-+ (nullable NSDictionary *> *)linkingObjectsPropertiesForClass:(Class)cls;
-
-// Precondition: these must be returned in ascending order.
-+ (nullable NSArray *)getSwiftProperties:(id)obj;
-
-+ (nullable NSDictionary *)getOptionalProperties:(id)obj;
-+ (nullable NSArray *)requiredPropertiesForClass:(Class)cls;
-
-@end
-
-typedef NS_ENUM(NSUInteger, RLMSwiftPropertyKind) {
- RLMSwiftPropertyKindList,
- RLMSwiftPropertyKindLinkingObjects,
- RLMSwiftPropertyKindOptional,
- RLMSwiftPropertyKindNilLiteralOptional, // For Swift optional properties that reflect as nil
- RLMSwiftPropertyKindOther,
-};
-
-// Metadata that describes a Swift generic property.
-@interface RLMSwiftPropertyMetadata : NSObject
-
-@property (nonatomic, strong) NSString *propertyName;
-@property (nullable, nonatomic, strong) NSString *className;
-@property (nullable, nonatomic, strong) NSString *linkedPropertyName;
-@property (nonatomic) RLMPropertyType propertyType;
-@property (nonatomic) RLMSwiftPropertyKind kind;
-
-+ (instancetype)metadataForOtherProperty:(NSString *)propertyName;
-
-+ (instancetype)metadataForListProperty:(NSString *)propertyName;
-
-+ (instancetype)metadataForLinkingObjectsProperty:(NSString *)propertyName
- className:(NSString *)className
- linkedPropertyName:(NSString *)linkedPropertyName;
-
-+ (instancetype)metadataForOptionalProperty:(NSString *)propertyName type:(RLMPropertyType)type;
-
-+ (instancetype)metadataForNilLiteralOptionalProperty:(NSString *)propertyName;
-
-@end
-
-NS_ASSUME_NONNULL_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 d5b2430..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMOptionalBase.h
+++ /dev/null
@@ -1,36 +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
-
-NS_ASSUME_NONNULL_BEGIN
-
-@class RLMObjectBase, RLMProperty;
-
-@interface RLMOptionalBase : NSProxy
-- (instancetype)init;
-@end
-
-FOUNDATION_EXTERN id _Nullable RLMGetOptional(RLMOptionalBase *);
-FOUNDATION_EXTERN void RLMSetOptional(RLMOptionalBase *, id _Nullable);
-
-void RLMInitializeManagedOptional(RLMOptionalBase *, RLMObjectBase *parent, RLMProperty *prop);
-void RLMInitializeUnmanagedOptional(RLMOptionalBase *, RLMObjectBase *parent, RLMProperty *prop);
-
-NS_ASSUME_NONNULL_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 1e4e5ec..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMProperty_Private.h
+++ /dev/null
@@ -1,136 +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;
-
-NS_ASSUME_NONNULL_BEGIN
-
-BOOL RLMPropertyTypeIsComputed(RLMPropertyType propertyType);
-FOUNDATION_EXTERN void RLMValidateSwiftPropertyName(NSString *name);
-
-// Translate an rlmtype to a string representation
-static inline NSString *RLMTypeToString(RLMPropertyType type) {
- switch (type) {
- case RLMPropertyTypeString:
- return @"string";
- case RLMPropertyTypeInt:
- return @"int";
- case RLMPropertyTypeBool:
- return @"bool";
- case RLMPropertyTypeDate:
- return @"date";
- case RLMPropertyTypeData:
- return @"data";
- case RLMPropertyTypeDouble:
- return @"double";
- case RLMPropertyTypeFloat:
- return @"float";
- case RLMPropertyTypeAny:
- return @"any";
- case RLMPropertyTypeObject:
- return @"object";
- case RLMPropertyTypeLinkingObjects:
- return @"linking objects";
- }
- return @"Unknown";
-}
-
-// private property interface
-@interface RLMProperty () {
-@public
- RLMPropertyType _type;
- Ivar _swiftIvar;
-}
-
-- (instancetype)initWithName:(NSString *)name
- indexed:(BOOL)indexed
- linkPropertyDescriptor:(nullable RLMPropertyDescriptor *)linkPropertyDescriptor
- property:(objc_property_t)property;
-
-- (instancetype)initSwiftPropertyWithName:(NSString *)name
- indexed:(BOOL)indexed
- linkPropertyDescriptor:(nullable RLMPropertyDescriptor *)linkPropertyDescriptor
- property:(objc_property_t)property
- instance:(RLMObjectBase *)objectInstance;
-
-- (instancetype)initSwiftListPropertyWithName:(NSString *)name
- instance:(id)object;
-
-- (instancetype)initSwiftOptionalPropertyWithName:(NSString *)name
- indexed:(BOOL)indexed
- ivar:(Ivar)ivar
- propertyType:(RLMPropertyType)propertyType;
-
-- (instancetype)initSwiftLinkingObjectsPropertyWithName:(NSString *)name
- ivar:(Ivar)ivar
- objectClassName:(nullable NSString *)objectClassName
- linkOriginPropertyName:(nullable NSString *)linkOriginPropertyName;
-
-// private setters
-@property (nonatomic, readwrite) NSString *name;
-@property (nonatomic, readwrite, assign) RLMPropertyType type;
-@property (nonatomic, readwrite) BOOL indexed;
-@property (nonatomic, readwrite) BOOL optional;
-@property (nonatomic, copy, nullable) NSString *objectClassName;
-
-// private properties
-@property (nonatomic, readwrite) NSString *columnName;
-@property (nonatomic, assign) NSUInteger index;
-@property (nonatomic, assign) BOOL isPrimary;
-@property (nonatomic, assign) Ivar swiftIvar;
-
-// getter and setter names
-@property (nonatomic, copy) NSString *getterName;
-@property (nonatomic, copy) NSString *setterName;
-@property (nonatomic) SEL getterSel;
-@property (nonatomic) SEL setterSel;
-
-- (RLMProperty *)copyWithNewName:(NSString *)name;
-
-@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.
- @param linkOriginPropertyName The property name of the origin of a link. Used for linking objects properties.
-
- @return An initialized instance of RLMProperty.
- */
-- (instancetype)initWithName:(NSString *)name
- type:(RLMPropertyType)type
- objectClassName:(nullable NSString *)objectClassName
- linkOriginPropertyName:(nullable NSString *)linkOriginPropertyName
- indexed:(BOOL)indexed
- optional:(BOOL)optional;
-@end
-
-NS_ASSUME_NONNULL_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 b3e4784..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealmConfiguration_Private.h
+++ /dev/null
@@ -1,45 +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;
-
-NS_ASSUME_NONNULL_BEGIN
-
-@interface RLMRealmConfiguration ()
-
-@property (nonatomic, readwrite) bool cache;
-@property (nonatomic, readwrite) bool dynamic;
-@property (nonatomic, readwrite) bool disableFormatUpgrade;
-@property (nonatomic, copy, nullable) RLMSchema *customSchema;
-@property (nonatomic, copy) NSString *pathOnDisk;
-
-// Get the default confiugration without copying it
-+ (RLMRealmConfiguration *)rawDefaultConfiguration;
-
-+ (void)resetRealmConfigurationState;
-
-- (void)setCustomSchemaWithoutCopying:(nullable RLMSchema *)schema;
-@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);
-
-NS_ASSUME_NONNULL_END
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 a2368c3..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMRealm_Private.h
+++ /dev/null
@@ -1,54 +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, RLMSyncSubscription;
-
-NS_ASSUME_NONNULL_BEGIN
-
-// Disable syncing files to disk. Cannot be re-enabled. Use only for tests.
-FOUNDATION_EXTERN void RLMDisableSyncToDisk(void);
-
-FOUNDATION_EXTERN NSData * _Nullable RLMRealmValidatedEncryptionKey(NSData *key);
-
-FOUNDATION_EXTERN RLMSyncSubscription *RLMCastToSyncSubscription(id obj);
-
-// Translate an in-flight exception resulting from an operation on 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;
-
-- (void)registerEnumerator:(RLMFastEnumerator *)enumerator;
-- (void)unregisterEnumerator:(RLMFastEnumerator *)enumerator;
-- (void)detachAllEnumerators;
-
-- (void)sendNotifications:(RLMNotification)notification;
-- (void)verifyThread;
-- (void)verifyNotificationsAreSupported:(bool)isCollection;
-
-@end
-
-NS_ASSUME_NONNULL_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 f74b4fd..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMResults_Private.h
+++ /dev/null
@@ -1,32 +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;
-
-NS_ASSUME_NONNULL_BEGIN
-
-@interface RLMResults ()
-@property (nonatomic, readonly, getter=isAttached) BOOL attached;
-
-+ (instancetype)emptyDetachedResults;
-
-@end
-
-NS_ASSUME_NONNULL_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 7ef4917..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSchema_Private.h
+++ /dev/null
@@ -1,58 +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
-
-NS_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 *)classes;
-
-@property (nonatomic, readwrite, copy) NSArray *objectSchema;
-
-// schema based on runtime objects
-+ (instancetype)sharedSchema;
-
-// schema based upon all currently registered object classes
-+ (instancetype)partialSharedSchema;
-
-// private schema based upon all currently registered object classes.
-// includes classes that are excluded from the default schema.
-+ (instancetype)partialPrivateSharedSchema;
-
-// class for string
-+ (nullable Class)classForString:(NSString *)className;
-
-+ (nullable RLMObjectSchema *)sharedSchemaForClass:(Class)cls;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSyncConfiguration_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSyncConfiguration_Private.h
deleted file mode 100644
index 07bf0a2..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSyncConfiguration_Private.h
+++ /dev/null
@@ -1,48 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2016 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
-
-NS_ASSUME_NONNULL_BEGIN
-
-typedef RLM_CLOSED_ENUM(NSUInteger, RLMSyncStopPolicy) {
- RLMSyncStopPolicyImmediately,
- RLMSyncStopPolicyLiveIndefinitely,
- RLMSyncStopPolicyAfterChangesUploaded,
-};
-
-@interface RLMSyncConfiguration ()
-
-- (instancetype)initWithUser:(RLMSyncUser *)user
- realmURL:(NSURL *)url
- isPartial:(BOOL)isPartial
- urlPrefix:(nullable NSString *)urlPrefix
- stopPolicy:(RLMSyncStopPolicy)stopPolicy
- enableSSLValidation:(BOOL)enableSSLValidation
- certificatePath:(nullable NSURL *)certificatePath;
-
-@property (nonatomic, readwrite) RLMSyncStopPolicy stopPolicy;
-
-// Internal-only APIs
-@property (nullable, nonatomic) NSURL *customFileURL;
-
-@end
-
-NS_ASSUME_NONNULL_END
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSyncPermissionResults.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSyncPermissionResults.h
deleted file mode 100644
index 461da2b..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSyncPermissionResults.h
+++ /dev/null
@@ -1,27 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2017 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 "RLMResults.h"
-
-@class RLMSyncPermission;
-
-// A private subclass of `RLMResults`.
-@interface RLMSyncPermissionResults : RLMResults
-@end
diff --git a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSyncUtil_Private.h b/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSyncUtil_Private.h
deleted file mode 100644
index d4c044f..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/PrivateHeaders/RLMSyncUtil_Private.h
+++ /dev/null
@@ -1,135 +0,0 @@
-////////////////////////////////////////////////////////////////////////////
-//
-// Copyright 2016 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
-
-typedef NS_ENUM(NSUInteger, RLMSyncSystemErrorKind) {
- // Specific
- RLMSyncSystemErrorKindClientReset,
- RLMSyncSystemErrorKindPermissionDenied,
- // General
- RLMSyncSystemErrorKindClient,
- RLMSyncSystemErrorKindConnection,
- RLMSyncSystemErrorKindSession,
- RLMSyncSystemErrorKindUser,
- RLMSyncSystemErrorKindUnknown,
-};
-
-@class RLMSyncUser;
-
-typedef void(^RLMSyncCompletionBlock)(NSError * _Nullable, NSDictionary * _Nullable);
-typedef void(^RLMSyncBasicErrorReportingBlock)(NSError * _Nullable);
-
-typedef NSString* RLMServerPath;
-
-NS_ASSUME_NONNULL_BEGIN
-
-extern RLMIdentityProvider const RLMIdentityProviderAccessToken;
-extern RLMIdentityProvider const RLMIdentityProviderRealm;
-
-extern NSString *const kRLMSyncAppIDKey;
-extern NSString *const kRLMSyncDataKey;
-extern NSString *const kRLMSyncErrorJSONKey;
-extern NSString *const kRLMSyncErrorStatusCodeKey;
-extern NSString *const kRLMSyncIdentityKey;
-extern NSString *const kRLMSyncIsAdminKey;
-extern NSString *const kRLMSyncNewPasswordKey;
-extern NSString *const kRLMSyncPasswordKey;
-extern NSString *const kRLMSyncPathKey;
-extern NSString *const kRLMSyncTokenKey;
-extern NSString *const kRLMSyncProviderKey;
-extern NSString *const kRLMSyncProviderIDKey;
-extern NSString *const kRLMSyncRegisterKey;
-extern NSString *const kRLMSyncUnderlyingErrorKey;
-extern NSString *const kRLMSyncUserIDKey;
-
-FOUNDATION_EXTERN uint8_t RLMGetComputedPermissions(RLMRealm *realm, id _Nullable object);
-
-#define RLM_SYNC_UNINITIALIZABLE \
-- (instancetype)init __attribute__((unavailable("This type cannot be created directly"))); \
-+ (instancetype)new __attribute__((unavailable("This type cannot be created directly")));
-
-NS_ASSUME_NONNULL_END
-
-/// A macro to parse a string out of a JSON dictionary, or return nil.
-#define RLM_SYNC_PARSE_STRING_OR_ABORT(json_macro_val, key_macro_val, prop_macro_val) \
-{ \
-id data = json_macro_val[key_macro_val]; \
-if (![data isKindOfClass:[NSString class]]) { return nil; } \
-self.prop_macro_val = data; \
-} \
-
-#define RLM_SYNC_PARSE_OPTIONAL_STRING(json_macro_val, key_macro_val, prop_macro_val) \
-{ \
-id data = json_macro_val[key_macro_val]; \
-if (![data isKindOfClass:[NSString class]]) { data = nil; } \
-self.prop_macro_val = data; \
-} \
-
-#define RLM_SYNC_PARSE_OPTIONAL_BOOL(json_macro_val, key_macro_val, prop_macro_val) \
-{ \
-id data = json_macro_val[key_macro_val]; \
-if (![data isKindOfClass:[NSNumber class]]) { data = @NO; } \
-self.prop_macro_val = [data boolValue]; \
-} \
-
-/// A macro to parse a double out of a JSON dictionary, or return nil.
-#define RLM_SYNC_PARSE_DOUBLE_OR_ABORT(json_macro_val, key_macro_val, prop_macro_val) \
-{ \
-id data = json_macro_val[key_macro_val]; \
-if (![data isKindOfClass:[NSNumber class]]) { return nil; } \
-self.prop_macro_val = [data doubleValue]; \
-} \
-
-/// A macro to build a sub-model out of a JSON dictionary, or return nil.
-#define RLM_SYNC_PARSE_MODEL_OR_ABORT(json_macro_val, key_macro_val, class_macro_val, prop_macro_val) \
-{ \
-id raw = json_macro_val[key_macro_val]; \
-if (![raw isKindOfClass:[NSDictionary class]]) { return nil; } \
-id model = [[class_macro_val alloc] initWithDictionary:raw]; \
-if (!model) { return nil; } \
-self.prop_macro_val = model; \
-} \
-
-/// A macro to build an array of sub-models out of a JSON dictionary, or return nil.
-#define RLM_SYNC_PARSE_MODEL_ARRAY_OR_ABORT(json_macro_val, key_macro_val, class_macro_val, prop_macro_val) \
-{ \
-NSArray *jsonArray = json_macro_val[key_macro_val]; \
-if (![jsonArray isKindOfClass:[NSArray class]]) { return nil; } \
-NSMutableArray *buffer = [NSMutableArray array]; \
-for (id value in jsonArray) { \
-id next = nil; \
-if ([value isKindOfClass:[NSDictionary class]]) { next = [[class_macro_val alloc] initWithDictionary:value]; } \
-if (!next) { return nil; } \
-[buffer addObject:next]; \
-} \
-self.prop_macro_val = [buffer copy]; \
-} \
-
-#define RLM_SYNC_PARSE_OPTIONAL_MODEL(json_macro_val, key_macro_val, class_macro_val, prop_macro_val) \
-{ \
-id model; \
-id raw = json_macro_val[key_macro_val]; \
-if (![raw isKindOfClass:[NSDictionary class]]) { model = nil; } \
-else { model = [[class_macro_val alloc] initWithDictionary:raw]; } \
-self.prop_macro_val = model; \
-} \
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 17c082a..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 39e633d..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/CHANGELOG.md
+++ /dev/null
@@ -1,3776 +0,0 @@
-3.16.1 Release notes (2019-05-31)
-=============================================================
-
-### Fixed
-
-* The static type passed at compile time to `realm.create()` was checked for a
- primary key rather than the actual type passed at runtime, resulting in
- exceptions like "''RealmSwiftObject' does not have a primary key and can not
- be updated'" being thrown even if the object type being created has a primary
- key. (since 3.16.0, [#6159](https://github.com/realm/realm-cocoa/issues/6159)).
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.21.0 or later.
-* Carthage release for Swift is built with Xcode 10.2.1.
-
-3.16.0 Release notes (2019-05-29)
-=============================================================
-
-### Enhancements
-
-* Add an option to only set the properties which have values different from the
- existing ones when updating an existing object with
- `Realm.create()`/`-[RLMObject createOrUpdateInRealm:withValue:]`. This makes
- notifications report only the properties which have actually changed, and
- improves Object Server performance by reducing the number of operations to
- merge. (Issue: [#5970](https://github.com/realm/realm-cocoa/issues/5970),
- PR: [#6149](https://github.com/realm/realm-cocoa/pull/6149)).
-* Using `-[RLMRealm * asyncOpenWithConfiguration:callbackQueue:]`/`Realm.asyncOpen()` to open a
- synchronized Realm which does not exist on the local device now uses an
- optimized transfer method to download the initial data for the Realm, greatly
- speeding up the first start time for applications which use full
- synchronization. This is currently not applicable to query-based
- synchronization. (PR: [#6106](https://github.com/realm/realm-cocoa/pull/6106)).
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.21.0 or later.
-* Carthage release for Swift is built with Xcode 10.2.1.
-
-3.15.0 Release notes (2019-05-06)
-=============================================================
-
-The minimum version of Realm Object Server has been increased to 3.21.0 and
-attempting to connect to older versions will produce protocol mismatch errors.
-Realm Cloud has already been upgraded to this version, and users using that do
-not need to worry about this.
-
-### Enhancements
-
-* Add `createdAt`, `updatedAt`, `expiresAt` and `timeToLive` properties to
- `RLMSyncSubscription`/`SyncSubscription`. These properties will be `nil` for
- subscriptions created with older versions of Realm, but will be automatically
- populated for newly-created subscriptions.
-* Add support for transient subscriptions by setting the `timeToLive` when
- creating the subscription. The next time a subscription is created or updated
- after that time has elapsed the subscription will be automatically removed.
-* Add support for updating existing subscriptions with a new query or limit.
- This is done by passing `update: true` (in swift) or setting
- `options.overwriteExisting = YES` (in obj-c) when creating the subscription,
- which will make it update the existing subscription with the same name rather
- than failing if one already exists with that name.
-* Add an option to include the objects from
- `RLMLinkingObjects`/`LinkingObjects` properties in sync subscriptions,
- similarly to how `RLMArray`/`List` automatically pull in the contained
- objects.
-* Improve query performance for chains of OR conditions (or an IN condition) on
- an unindexed integer or string property.
- ([Core PR #2888](https://github.com/realm/realm-core/pull/2888) and
- [Core PR #3250](https://github.com/realm/realm-core/pull/3250)).
-* Improve query performance for equality conditions on indexed integer properties.
- ([Core PR #3272](https://github.com/realm/realm-core/pull/3272)).
-* Adjust the file allocation algorithm to reduce fragmentation caused by large
- numbers of small blocks.
-* Improve file allocator logic to reduce fragmentation and improve commit
- performance after many writes. ([Core PR #3278](https://github.com/realm/realm-core/pull/3278)).
-
-### Fixed
-
-* Making a query that compares two integer properties could cause a
- segmentation fault on x86 (i.e. macOS only).
- ([Core PR #3253](https://github.com/realm/realm-core/pull/3256)).
-* The `downloadable_bytes` parameter passed to sync progress callbacks reported
- a value which correlated to the amount of data left to download, but not
- actually the number of bytes which would be downloaded.
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.21.0 or later.
-* Carthage release for Swift is built with Xcode 10.2.1.
-
-3.14.2 Release notes (2019-04-25)
-=============================================================
-
-### Enhancements
-
-* Updating `RLMSyncManager.customRequestHeaders` will immediately update all
- currently active sync session with the new headers rather than requiring
- manually closing the Realm and reopening it.
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.11.0 or later.
-* Carthage release for Swift is built with Xcode 10.2.1.
-
-3.14.1 Release notes (2019-04-04)
-=============================================================
-
-### Fixed
-
-* Fix "Cannot find interface declaration for 'RealmSwiftObject', superclass of
- 'MyRealmObjectClass'" errors when building for a simulator with Xcode 10.2
- with "Install Objective-C Compatibility Header" enabled.
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.11.0 or later.
-* Carthage release for Swift is built with Xcode 10.2.
-
-3.14.0 Release notes (2019-03-27)
-=============================================================
-
-### Enhancements
-
-* Reduce memory usage when committing write transactions.
-* Improve performance of compacting encrypted Realm files.
- ([PR #3221](https://github.com/realm/realm-core/pull/3221)).
-* Add a Xcode 10.2 build to the release package.
-
-### Fixed
-
-* Fix a memory leak whenever Realm makes a HTTP(s) request to the Realm Object
- Server (Issue [#6058](https://github.com/realm/realm-cocoa/issues/6058), since 3.8.0).
-* Fix an assertion failure when creating an object in a synchronized Realm
- after creating an object with a null int primary key in the same write
- transaction.
- ([PR #3227](https://github.com/realm/realm-core/pull/3227)).
-* Fix some new warnings when building with Xcode 10.2 beta.
-* Properly clean up sync sessions when the last Realm object using the session
- is deallocated while the session is explicitly suspended (since 3.9.0).
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.11.0 or later.
-* Carthage release for Swift is built with Xcode 10.2.
-
-### Internal
-
-* Throw an exception rather than crashing with an assertion failure in more
- cases when opening invalid Realm files.
-* Upgrade to REALM_CORE_VERSION=5.14.0
-* Upgrade to REALM_SYNC_VERSION=3.15.1
-
-3.13.1 Release notes (2019-01-03)
-=============================================================
-
-### Fixed
-
-* Fix a crash when iterating over `Realm.subscriptions()` using for-in.
- (Since 3.13.0, PR [#6050](https://github.com/realm/realm-cocoa/pull/6050)).
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.11.0 or later.
-
-3.13.0 Release notes (2018-12-14)
-=============================================================
-
-### Enhancements
-
-* Add `Realm.subscriptions()`/`-[RLMRealm subscriptions]` and
- `Realm.subscription(named:)`/`-[RLMRealm subscriptionWithName:]` to enable
- looking up existing query-based sync subscriptions.
- (PR: https://github.com/realm/realm-cocoa/pull/6029).
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.11.0 or later.
-
-3.12.0 Release notes (2018-11-26)
-=============================================================
-
-### Enhancements
-
-* Add a User-Agent header to HTTP requests made to the Realm Object Server. By
- default, this contains information about the Realm library version and your
- app's bundle ID. The application identifier can be customized by setting
- `RLMSyncManager.sharedManager.userAgent`/`SyncManager.shared.userAgent` prior
- to opening a synchronized Realm.
- (PR: https://github.com/realm/realm-cocoa/pull/6007).
-* Add Xcode 10.1 binary to the prebuilt package.
-
-### Fixed
-
-* None.
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.11.0 or later.
-
-### Internal
-
-* None.
-
-
-3.11.2 Release notes (2018-11-15)
-=============================================================
-
-### Enhancements
-
-* Improve the performance of the merge algorithm used for integrating remote
- changes from the server. In particular, changesets involving many objects
- which all link to a single object should be greatly improved.
-
-### Fixed
-
-* Fix a memory leak when removing notification blocks from collections.
- PR: [#702](https://github.com/realm/realm-object-store/pull/702), since 1.1.0.
-* Fix re-sorting or distincting an already-sorted Results using values from
- linked objects. Previously the unsorted order was used to read the values
- from the linked objects.
- PR [#3102](https://github.com/realm/realm-core/pull/3102), since 3.1.0.
-* Fix a set of bugs which could lead to bad changeset assertions when using
- sync. The assertions would look something like the following:
- `[realm-core-5.10.0] Assertion failed: ndx < size() with (ndx, size()) = [742, 742]`.
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.11.0 or later.
-
-### Internal
-
-* None.
-
-
-3.11.1 Release notes (2018-10-19)
-=============================================================
-
-### Enhancements
-
-* None.
-
-### Fixed
-
-* Fix `SyncUser.requestEmailConfirmation` not triggering the email confirmation
- flow on ROS. (PR [#5953](https://github.com/realm/realm-cocoa/pull/5953), since 3.5.0)
-* Add some missing validation in the getters and setters of properties on
- managed Realm objects, which would sometimes result in an application
- crashing with a segfault rather than the appropriate exception being thrown
- when trying to write to an object which has been deleted.
- (PR [#5952](https://github.com/realm/realm-cocoa/pull/5952), since 2.8.0)
-
-### Compatibility
-
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* Realm Object Server: 3.11.0 or later.
-
-### Internal
-
-* None.
-
-
-3.11.0 Release notes (2018-10-04)
-=============================================================
-
-### Enhancements
-* Reduce memory usage when integrating synchronized changes sent by ROS.
-* Devices will now report download progress for read-only Realms, allowing the
- server to compact Realms more aggressively and reducing the amount of
- server-side storage space required.
-
-### Fixed
-* Fix a crash when adding an object with a non-`@objc` `String?` property which
- has not been explicitly ignored to a Realm on watchOS 5 (and possibly other
- platforms when building with Xcode 10).
- (Issue: [5929](https://github.com/realm/realm-cocoa/issues/5929)).
-* Fix some merge algorithm bugs which could result in `BadChangesetError`
- being thrown when integrating changes sent by the server.
-
-### Compatibility
-* File format: Generates Realms with format v9 (Reads and upgrades all previous formats)
-* **NOTE!!!
- You will need to upgrade your Realm Object Server to at least version 3.11.0
- or use [Realm Cloud](https://cloud.realm.io).
- If you try to connect to a ROS v3.10.x or previous, you will see an error
- like `Wrong protocol version in Sync HTTP request, client protocol version = 25,
- server protocol version = 24`.**
-
-### Internal
-* Update to Sync 3.12.2.
-
-
-3.10.0 Release notes (2018-09-19)
-=============================================================
-
-Prebuilt binaries are now built for Xcode 9.2, 9.3, 9.4 and 10.0.
-
-Older versions of Xcode are still supported when building from source, but you
-should be migrating to at least Xcode 9.2 as soon as possible.
-
-### Enhancements
-
-* Add support for Watch Series 4 by adding an arm64_32 slice to the library.
-
-3.9.0 Release notes (2018-09-10)
-=============================================================
-
-### Enhancements
-
-* Expose RLMSyncUser.refreshToken publicly so that it can be used for custom
- HTTP requests to Realm Object Server.
-* Add RLMSyncSession.connectionState, which reports whether the session is
- currently connected to the Realm Object Server or if it is offline.
-* Add `-suspend` and `-resume` methods to `RLMSyncSession` to enable manually
- pausing data synchronization.
-* Add support for limiting the number of objects matched by a query-based sync
- subscription. This requires a server running ROS 3.10.1 or newer.
-
-### Bugfixes
-
-* Fix crash when getting the description of a `MigrationObject` which has
- `List` properties.
-* Fix crash when calling `dynamicList()` on a `MigrationObject`.
-
-3.8.0 Release notes (2018-09-05)
-=============================================================
-
-### Enhancements
-
-* Remove some old and no longer applicable migration logic which created an
- unencrypted file in the sync metadata directory containing a list of ROS URLs
- connected to.
-* Add support for pinning SSL certificates used for https and realms
- connections by setting `RLMSyncManager.sharedManager.pinnedCertificatePaths`
- in obj-c and `SyncManager.shared.pinnedCertificatePaths` in Swift.
-
-### Bugfixes
-
-* Fix warnings when building Realm as a static framework with CocoaPods.
-
-3.7.6 Release notes (2018-08-08)
-=============================================================
-
-### Enhancements
-
-* Speed up the actual compaction when using compact-on-launch.
-* Reduce memory usage when locally merging changes from sync.
-* When first connecting to a server, wait to begin uploading changes until
- after all changes have been downloaded to reduce the server-side load for
- query-based sync.
-
-3.7.5 Release notes (2018-07-23)
-=============================================================
-
-### Enhancements
-
-* Improve performance of applying remote changesets from sync.
-* Improve performance of creating objects with string primary keys.
-* Improve performance of large write transactions.
-* Adjust file space allocation strategy to reduce fragmentation, producing
- smaller Realm files and typically better performance.
-* Close network connections immediately when a sync session is destroyed.
-* Report more information in `InvalidDatabase` exceptions.
-
-### Bugfixes
-
-* Fix permission denied errors for RLMPlatform.h when building with CocoaPods
- and Xcode 10 beta 3.
-* Fix a use-after-free when canceling a write transaction which could result in
- incorrect "before" values in KVO observations (typically `nil` when a non-nil
- value is expected).
-* Fix several bugs in the merge algorithm that could lead to memory corruption
- and crashes with errors like "bad changeset" and "unreachable code".
-
-3.7.4 Release notes (2018-06-19)
-=============================================================
-
-### Bugfixes
-
-* Fix a bug which could potentially flood Realm Object Server with PING
- messages after a client device comes back online.
-
-3.7.3 Release notes (2018-06-18)
-=============================================================
-
-### Enhancements
-
-* Avoid performing potentially large amounts of pointless background work for
- LinkingObjects instances which are accessed and then not immediate deallocated.
-
-### Bugfixes
-
-* Fix crashes which could result from extremely fragmented Realm files.
-* Fix a bug that could result in a crash with the message "bad changeset error"
- when merging changesets from the server.
-
-3.7.2 Release notes (2018-06-13)
-=============================================================
-
-### Enhancements
-
-* Add some additional consistency checks that will hopefully produce better
- errors when the "prev_ref + prev_size <= ref" assertion failure occurs.
-
-### Bugfixes
-
-* Fix a problem in the changeset indexing algorithm that would sometimes
- cause "bad permission object" and "bad changeset" errors.
-* Fix a large number of linking warnings about symbol visibility by aligning
- compiler flags used.
-* Fix large increase in size of files produced by `Realm.writeCopy()` introduced in 3.6.0.
-
-3.7.1 Release notes (2018-06-07)
-=============================================================
-
-* Add support for compiling Realm Swift with Xcode 10 beta 1.
-
-3.7.0 Release notes (2018-06-06)
-=============================================================
-
-The feature known as Partial Sync has been renamed to Query-based
-Synchronization. This has impacted a number of API's. See below for the
-details.
-
-### Deprecations
-
-* `+[RLMSyncConfiguration initWithUser] has been deprecated in favor of `-[RLMSyncUser configurationWithURL:url].
-* `+[RLMSyncConfiguration automaticConfiguration] has been deprecated in favor of `-[RLMSyncUser configuration].
-* `+[RLMSyncConfiguration automaticConfigurationForUser] has been deprecated in favor of `-[RLMSyncUser configuration].
-* `-[RLMSyncConfiguration isPartial] has been deprecated in favor of `-[RLMSyncConfiguration fullSynchronization]`.
-
-### Enhancements
-
-* Add `-[RLMRealm syncSession]` and `Realm.syncSession` to obtain the session used for a synchronized Realm.
-* Add `-[RLMSyncUser configuration]`. Query-based sync is the default sync mode for this configuration.
-* Add `-[RLMSyncUser configurationWithURL:url]`. Query-based sync is the default sync mode for this configuration.
-
-3.6.0 Release notes (2018-05-29)
-=============================================================
-
-### Enhancements
-
-* Improve performance of sync metadata operations and resolving thread-safe
- references.
-* `shouldCompactOnLaunch` is now supported for compacting the local data of
- synchronized Realms.
-
-### Bugfixes
-
-* Fix a potential deadlock when a sync session progress callback held the last
- strong reference to the sync session.
-* Fix some cases where comparisons to `nil` in queries were not properly
- serialized when subscribing to a query.
-* Don't delete objects added during a migration after a call to `-[RLMMigration
- deleteDataForClassName:]`.
-* Fix incorrect results and/or crashes when multiple `-[RLMMigration
- enumerateObjects:block:]` blocks deleted objects of the same type.
-* Fix some edge-cases where `-[RLMMigration enumerateObjects:block:]`
- enumerated the incorrect objects following deletions.
-* Restore the pre-3.5.0 behavior for Swift optional properties missing an ivar
- rather than crashing.
-
-3.5.0 Release notes (2018-04-25)
-=============================================================
-
-### Enhancements
-
-* Add wrapper functions for email confirmation and password reset to `SyncUser`.
-
-### Bugfixes
-
-* Fix incorrect results when using optional chaining to access a RealmOptional
- property in Release builds, or otherwise interacting with a RealmOptional
- object after the owning Object has been deallocated.
-
-3.4.0 Release notes (2018-04-19)
-=============================================================
-
-The prebuilt binary for Carthage is now built for Swift 4.1.
-
-### Enhancements
-
-* Expose `RLMSyncManager.authorizationHeaderName`/`SyncManager.authorizationHeaderName`
- as a way to override the transport header for Realm Object Server authorization.
-* Expose `RLMSyncManager.customRequestHeaders`/`SyncManager.customRequestHeaders`
- which allows custom HTTP headers to be appended on requests to the Realm Object Server.
-* Expose `RLMSSyncConfiguration.urlPrefix`/`SyncConfiguration.urlPrefix` as a mechanism
- to replace the default path prefix in Realm Sync WebSocket requests.
-
-3.3.2 Release notes (2018-04-03)
-=============================================================
-
-Add a prebuilt binary for Xcode 9.3.
-
-3.3.1 Release notes (2018-03-28)
-=============================================================
-
-Realm Object Server v3.0.0 or newer is required when using synchronized Realms.
-
-### Enhancements
-
-* Expose `RLMObject.object(forPrimaryKey:)` as a factory method for Swift so
- that it is callable with recent versions of Swift.
-
-### Bugfixes
-
-* Exclude the RLMObject-derived Permissions classes from the types repored by
- `Realm.Configuration.defaultConfiguration.objectTypes` to avoid a failed
- cast.
-* Cancel pending `Realm.asyncOpen()` calls when authentication fails with a
- non-transient error such as missing the Realm path in the URL.
-* Fix "fcntl() inside prealloc()" errors on APFS.
-
-3.3.0 Release notes (2018-03-19)
-=============================================================
-
-Realm Object Server v3.0.0 or newer is required when using synchronized Realms.
-
-### Enhancements
-
-* Add `Realm.permissions`, `Realm.permissions(forType:)`, and `Realm.permissions(forClassNamed:)` as convenience
- methods for accessing the permissions of the Realm or a type.
-
-### Bugfixes
-
-* Fix `+[RLMClassPermission objectInRealm:forClass:]` to work for classes that are part of the permissions API,
- such as `RLMPermissionRole`.
-* Fix runtime errors when applications define an `Object` subclass with the
- same name as one of the Permissions object types.
-
-3.2.0 Release notes (2018-03-15)
-=============================================================
-
-Realm Object Server v3.0.0 or newer is required when using synchronized Realms.
-
-### Enhancements
-
-* Added an improved API for adding subscriptions in partially-synchronized Realms. `Results.subscribe()` can be
- used to subscribe to any result set, and the returned `SyncSubscription` object can be used to observe the state
- of the subscription and ultimately to remove the subscription. See the documentation for more information
- ().
-* Added a fine-grained permissions system for use with partially-synchronized Realms. This allows permissions to be
- defined at the level of individual objects or classes. See the documentation for more information
- ().
-* Added `SyncConfiguration.automatic()` and `SyncConfiguration.automatic(user:)`.
- These methods return a `Realm.Configuration` appropriate for syncing with the default
- synced Realm for the current (or specified) user. These should be considered the preferred methods
- for accessing synced Realms going forwards.
-* Added `+[RLMSyncSession sessionForRealm:]` to retrieve the sync session corresponding to a `RLMRealm`.
-
-### Bugfixes
-
-* Fix incorrect initalization of `RLMSyncManager` that made it impossible to
- set `errorHandler`.
-* Fix compiler warnings when building with Xcode 9.3.
-* Fix some warnings when running with UBsan.
-
-3.2.0-rc.1 Release notes (2018-03-14)
-=============================================================
-
-Realm Object Server v3.0.0-rc.1 or newer is required when using synchronized Realms.
-
-### Enhancements
-
-* Added `SyncConfiguration.automatic()` and `SyncConfiguration.automatic(user:)`.
- These methods return a `Realm.Configuration` appropriate for syncing with the default
- synced Realm for the current (or specified). These should be considered the preferred methods
- for accessing synced Realms going forwards.
-* A role is now automatically created for each user with that user as its only member.
- This simplifies the common use case of restricting access to specific objects to a single user.
- This role can be accessed at `PermissionUser.role`.
-* Improved error reporting when the server rejects a schema change due to a lack of permissions.
-
-### Bugfixes
-
-* Fix incorrect initalization of `RLMSyncManager` that made it impossible to
- set `errorHandler`.
-* Fix compiler warnings when building with Xcode 9.3.
-
-3.2.0-beta.3 Release notes (2018-03-01)
-=============================================================
-
-Realm Object Server v3.0.0-alpha.9 or newer is required when using synchronized Realms.
-
-### Bugfixes
-
-* Fix a crash that would occur when using partial sync with Realm Object Server v3.0.0-alpha.9.
-
-3.2.0-beta.2 Release notes (2018-02-28)
-=============================================================
-
-Realm Object Server v3.0.0-alpha.8 or newer is required when using synchronized Realms.
-
-### Enhancements
-
-* Added `findOrCreate(forRoleNamed:)` and `findOrCreate(forRole:)` to `List`
- to simplify the process of adding permissions for a role.
-* Added `+permissionForRoleNamed:inArray:`, `+permissionForRoleNamed:onRealm:`,
- `+permissionForRoleNamed:onClass:realm:`, `+permissionForRoleNamed:onClassNamed:realm:`,
- and `+permissionForRoleNamed:onObject:` to `RLMSyncPermission` to simplify the process
- of adding permissions for a role.
-* Added `+[RLMSyncSession sessionForRealm:]` to retrieve the sync session corresponding to a `RLMRealm`.
-
-### Bugfixes
-
-* `PermissionRole.users` and `PermissionUser.roles` are now public as intended.
-* Fixed the handling of `setPermissions` in `-[RLMRealm privilegesForRealm]` and related methods.
-
-3.2.0-beta.1 Release notes (2018-02-19)
-=============================================================
-
-### Enhancements
-
-* Added an improved API for adding subscriptions in partially-synchronized Realms. `Results.subscribe()` can be
- used to subscribe to any result set, and the returned `SyncSubscription` object can be used to observe the state
- of the subscription and ultimately to remove the subscription.
-* Added a fine-grained permissions system for use with partially-synchronized Realms. This allows permissions to be
- defined at the level of individual objects or classes. See `Permission` and related types for more information.
-
-### Bugfixes
-
-* Fix some warnings when running with UBsan.
-
-3.1.1 Release notes (2018-02-03)
-=============================================================
-
-Prebuilt Swift frameworks for Carthage are now built with Xcode 9.2.
-
-### Bugfixes
-
-* Fix a memory leak when opening Realms with an explicit `objectTypes` array
- from Swift.
-
-3.1.0 Release notes (2018-01-16)
-=============================================================
-
-* Prebuilt frameworks are now included for Swift 3.2.3 and 4.0.3.
-* Prebuilt frameworks are no longer included for Swift 3.0.x.
-* Building from source with Xcode versions prior to Xcode 8.3 is no longer supported.
-
-### Enhancements
-
-* Add `Results.distinct(by:)` / `-[RLMResults distinctResultsUsingKeyPaths:]`, which return a `Results`
- containing only objects with unique values at the given key paths.
-* Improve performance of change checking for notifications in certain cases.
-* Realm Object Server errors not explicitly recognized by the client are now reported to the application
- regardless.
-* Add support for JSON Web Token as a sync credential source.
-* Add support for Nickname and Anonymous Auth as a sync credential source.
-* Improve allocator performance when writing to a highly fragmented file. This
- should significantly improve performance when inserting large numbers of
- objects which have indexed properties.
-* Improve write performance for complex object graphs involving many classes
- linking to each other.
-
-### Bugfixes
-
-* Add a missing check for a run loop in the permission API methods which
- require one.
-* Fix some cases where non-fatal sync errors were being treated as fatal errors.
-
-3.0.2 Release notes (2017-11-08)
-=============================================================
-
-Prebuilt frameworks are now included for Swift 3.2.2 and 4.0.2.
-
-### Bugfixes
-
-* Fix a crash when a linking objects property is retrieved from a model object instance via
- Swift subscripting.
-* Fix incorrect behavior if a call to `posix_fallocate` is interrupted.
-
-3.0.1 Release notes (2017-10-26)
-=============================================================
-
-### Bugfixes
-
-* Explicitly exclude KVO-generated object subclasses from the schema.
-* Fix regression where the type of a Realm model class is not properly determined, causing crashes
- when a type value derived at runtime by `type(of:)` is passed into certain APIs.
-* Fix a crash when an `Object` subclass has implicitly ignored `let`
- properties.
-* Fix several cases where adding a notification block from within a
- notification callback could produce incorrect results.
-
-3.0.0 Release notes (2017-10-16)
-=============================================================
-
-### Breaking Changes
-* iOS 7 is no longer supported.
-* Synchronized Realms require a server running Realm Object Server v2.0 or higher.
-* Computed properties on Realm object types are detected and no
- longer added to the automatically generated schema.
-* The Objective-C and Swift `create(_:, value: update:)` APIs now
- correctly nil out nullable properties when updating an existing
- object when the `value` argument specifies nil or `NSNull` for
- the property value.
-* `-[RLMRealm addOrUpdateObjects:]` and `-[RLMRealm deleteObjects:]` now
- require their argument to conform to `NSFastEnumeration`, to match similar
- APIs that also take collections.
-* The way interactive sync errors (client reset and permission denied)
- are delivered to the user has been changed. Instead of a block which can
- be invoked to immediately delete the offending Realm file, an opaque
- token object of type `RLMSyncErrorActionToken` will be returned in the
- error object's `userInfo` dictionary. This error object can be passed
- into the new `+[RLMSyncSession immediatelyHandleError:]` API to delete
- the files.
-* The return types of the `SyncError.clientResetInfo()` and
- `SyncError.deleteRealmUserInfo()` APIs have been changed. They now return
- `RLMSyncErrorActionToken`s or `SyncError.ActionToken`s instead of closures.
-* The class methods `Object.className()`, `Object.objectUtilClass()`, and
- the property `Object.isInvalidated` can no longer be overriden.
-* The callback which runs when a sync user login succeeds or fails
- now runs on the main queue by default, or can be explicitly specified
- by a new `callbackQueue` parameter on the `{RLM}SyncUser.logIn(...)` API.
-* Fix empty strings, binary data, and null on the right side of `BEGINSWITH`,
- `ENDSWITH` and `CONTAINS` operators in predicates to match Foundation's
- semantics of never matching any strings or data.
-* Swift `Object` comparison and hashing behavior now works the same way as
- that of `RLMObject` (objects are now only considered equatable if their
- model class defines a primary key).
-* Fix the way the hash property works on `Object` when the object model has
- no primary key.
-* Fix an issue where if a Swift model class defined non-generic managed
- properties after generic Realm properties (like `List`), the schema
- would be constructed incorrectly. Fixes an issue where creating such
- models from an array could fail.
-* Loosen `RLMArray` and `RLMResults`'s generic constraint from `RLMObject` to
- `NSObject`. This may result in having to add some casts to disambiguate
- types.
-* Remove `RLMSyncPermissionResults`. `RLMSyncPermission`s are now vended out
- using a `RLMResults`. This results collection supports all normal collection
- operations except for setting values using key-value coding (since
- `RLMSyncPermission`s are immutable) and the property aggregation operations.
-* `RLMSyncUserInfo` has been significantly enhanced. It now contains metadata
- about a user stored on the Realm Object Server, as well as a list of all user account
- data associated with that user.
-* Starting with Swift 4, `List` now conforms to `MutableCollection` instead of
- `RangeReplaceableCollection`. For Swift 4, the empty collection initializer has been
- removed, and default implementations of range replaceable collection methods that
- make sense for `List` have been added.
-* `List.removeLast()` now throws an exception if the list is empty, to more closely match
- the behavior of the standard library's `Collection.removeLast()` implementation.
-* `RealmCollection`'s associated type `Element` has been renamed `ElementType`.
-* The following APIs have been renamed:
-
-| Old API | New API |
-|:------------------------------------------------------------|:---------------------------------------------------------------|
-| `NotificationToken.stop()` | `NotificationToken.invalidate()` |
-| `-[RLMNotificationToken stop]` | `-[RLMNotificationToken invalidate]` |
-| `RealmCollection.addNotificationBlock(_:)` | `RealmCollection.observe(_:)` |
-| `RLMSyncProgress` | `RLMSyncProgressMode` |
-| `List.remove(objectAtIndex:)` | `List.remove(at:)` |
-| `List.swap(_:_:)` | `List.swapAt(_:_:)` |
-| `SyncPermissionValue` | `SyncPermission` |
-| `RLMSyncPermissionValue` | `RLMSyncPermission` |
-| `-[RLMSyncPermission initWithRealmPath:userID:accessLevel]` | `-[RLMSyncPermission initWithRealmPath:identity:accessLevel:]` |
-| `RLMSyncPermission.userId` | `RLMSyncPermission.identity` |
-| `-[RLMRealm addOrUpdateObjectsInArray:]` | `-[RLMRealm addOrUpdateObjects:]` |
-
-* The following APIs have been removed:
-
-| Removed API | Replacement |
-|:-------------------------------------------------------------|:------------------------------------------------------------------------------------------|
-| `Object.className` | None, was erroneously present. |
-| `RLMPropertyTypeArray` | `RLMProperty.array` |
-| `PropertyType.array` | `Property.array` |
-| `-[RLMArray sortedResultsUsingProperty:ascending:]` | `-[RLMArray sortedResultsUsingKeyPath:ascending:]` |
-| `-[RLMCollection sortedResultsUsingProperty:ascending:]` | `-[RLMCollection sortedResultsUsingKeyPath:ascending:]` |
-| `-[RLMResults sortedResultsUsingProperty:ascending:]` | `-[RLMResults sortedResultsUsingKeyPath:ascending:]` |
-| `+[RLMSortDescriptor sortDescriptorWithProperty:ascending:]` | `+[RLMSortDescriptor sortDescriptorWithKeyPath:ascending:]` |
-| `RLMSortDescriptor.property` | `RLMSortDescriptor.keyPath` |
-| `AnyRealmCollection.sorted(byProperty:ascending:)` | `AnyRealmCollection.sorted(byKeyPath:ascending:)` |
-| `List.sorted(byProperty:ascending:)` | `List.sorted(byKeyPath:ascending:)` |
-| `LinkingObjects.sorted(byProperty:ascending:)` | `LinkingObjects.sorted(byKeyPath:ascending:)` |
-| `Results.sorted(byProperty:ascending:)` | `Results.sorted(byKeyPath:ascending:)` |
-| `SortDescriptor.init(property:ascending:)` | `SortDescriptor.init(keyPath:ascending:)` |
-| `SortDescriptor.property` | `SortDescriptor.keyPath` |
-| `+[RLMRealm migrateRealm:configuration:]` | `+[RLMRealm performMigrationForConfiguration:error:]` |
-| `RLMSyncManager.disableSSLValidation` | `RLMSyncConfiguration.enableSSLValidation` |
-| `SyncManager.disableSSLValidation` | `SyncConfiguration.enableSSLValidation` |
-| `RLMSyncErrorBadResponse` | `RLMSyncAuthErrorBadResponse` |
-| `RLMSyncPermissionResults` | `RLMResults` |
-| `SyncPermissionResults` | `Results` |
-| `RLMSyncPermissionChange` | `-[RLMSyncUser applyPermission:callback]` / `-[RLMSyncUser deletePermission:callback:]` |
-| `-[RLMSyncUser permissionRealmWithError:]` | `-[RLMSyncUser retrievePermissionsWithCallback:]` |
-| `RLMSyncPermissionOffer` | `-[RLMSyncUser createOfferForRealmAtURL:accessLevel:expiration:callback:]` |
-| `RLMSyncPermissionOfferResponse` | `-[RLMSyncUser acceptOfferForToken:callback:]` |
-| `-[NSError rlmSync_clientResetBlock]` | `-[NSError rlmSync_errorActionToken]` / `-[NSError rlmSync_clientResetBackedUpRealmPath]` |
-| `-[NSError rlmSync_deleteRealmBlock]` | `-[NSError rlmSync_errorActionToken]` |
-
-### Enhancements
-* `List` can now contain values of types `Bool`, `Int`, `Int8`, `Int16`,
- `Int32`, `Int64`, `Float`, `Double`, `String`, `Data`, and `Date` (and
- optional versions of all of these) in addition to `Object` subclasses.
- Querying `List`s containing values other than `Object` subclasses is not yet
- implemented.
-* `RLMArray` can now be constrained with the protocols `RLMBool`, `RLMInt`,
- `RLMFloat`, `RLMDouble`, `RLMString`, `RLMData`, and `RLMDate` in addition to
- protocols defined with `RLM_ARRAY_TYPE`. By default `RLMArray`s of
- non-`RLMObject` types can contain null. Indicating that the property is
- required (by overriding `+requiredProperties:`) will instead make the values
- within the array required. Querying `RLMArray`s containing values other than
- `RLMObject` subclasses is not yet implemented.
-* Add a new error code to denote 'permission denied' errors when working
- with synchronized Realms, as well as an accompanying block that can be
- called to inform the binding that the offending Realm's files should be
- deleted immediately. This allows recovering from 'permission denied'
- errors in a more robust manner. See the documentation for
- `RLMSyncErrorPermissionDeniedError` for more information.
-* Add Swift `Object.isSameObject(as:_)` API to perform the same function as
- the existing Objective-C API `-[RLMObject isEqualToObject:]`.
-* Opening a synced Realm whose local copy was created with an older version of
- Realm Mobile Platfrom when a migration is not possible to the current version
- will result in an `RLMErrorIncompatibleSyncedFile` / `incompatibleSyncedFile`
- error. When such an error occurs, the original file is moved to a backup
- location, and future attempts to open the synchronized Realm will result in a new
- file being created. If you wish to migrate any data from the backup Realm you can
- open it using the backup Realm configuration available on the error object.
-* Add a preview of partial synchronization. Partial synchronization allows a
- synchronized Realm to be opened in such a way that only objects requested by
- the user are synchronized to the device. You can use it by setting the
- `isPartial` property on a `SyncConfiguration`, opening the Realm, and then
- calling `Realm.subscribe(to:where:callback:)` with the type of object you're
- interested in, a string containing a query determining which objects you want
- to subscribe to, and a callback which will report the results. You may add as
- many subscriptions to a synced Realm as necessary.
-
-### Bugfixes
-* Realm no longer throws an "unsupported instruction" exception in some cases
- when opening a synced Realm asynchronously.
-* Realm Swift APIs that filter or look up the index of an object based on a
- format string now properly handle optional arguments in their variadic argument
- list.
-* `-[RLMResults indexOfObject:]` now properly accounts for access
- level.
-* Fix a race condition that could lead to a crash accessing to the freed configuration object
- if a default configuration was set from a different thread.
-* Fixed an issue that crash when enumerating after clearing data during migration.
-* Fix a bug where a synced Realm couldn't be reopened even after a successful client reset
- in some cases.
-* Fix a bug where the sync subsystem waited too long in certain cases to reconnect to the server.
-* Fix a bug where encrypted sync-related metadata was incorrectly deleted from upgrading users,
- resulting in all users being logged out.
-* Fix a bug where permission-related data continued to be synced to a client even after the user
- that data belonged to logged out.
-* Fix an issue where collection notifications might be delivered inconsistently if a notification
- callback was added within another callback for the same collection.
-
-3.0.0-rc.2 Release notes (2017-10-14)
-=============================================================
-
-### Enhancements
-* Reinstate `RLMSyncPermissionSortPropertyUserID` to allow users to sort permissions
- to their own Realms they've granted to others.
-
-### Bugfixes
-* `-[RLMResults indexOfObject:]` now properly accounts for access
- level.
-* Fix a race condition that could lead to a crash accessing to the freed configuration object
- if a default configuration was set from a different thread.
-* Fixed an issue that crash when enumerating after clearing data during migration.
-* Fix a bug where a synced Realm couldn't be reopened even after a successful client reset
- in some cases.
-* Fix a bug where the sync subsystem waited too long in certain cases to reconnect to the server.
-* Fix a bug where encrypted sync-related metadata was incorrectly deleted from upgrading users,
- resulting in all users being logged out.
-* Fix a bug where permission-related data continued to be synced to a client even after the user
- that data belonged to logged out.
-* Fix an issue where collection notifications might be delivered inconsistently if a notification
- callback was added within another callback for the same collection.
-
-3.0.0-rc.1 Release notes (2017-10-03)
-=============================================================
-
-### Breaking Changes
-* Remove `RLMSyncPermissionSortPropertyUserID` to reflect changes in how the
- Realm Object Server reports permissions for a user.
-* Remove `RLMSyncPermissionOffer` and `RLMSyncPermissionOfferResponse` classes
- and associated helper methods and functions. Use the
- `-[RLMSyncUser createOfferForRealmAtURL:accessLevel:expiration:callback:]`
- and `-[RLMSyncUser acceptOfferForToken:callback:]` methods instead.
-
-### Bugfixes
-
-* The keychain item name used by Realm to manage the encryption keys for
- sync-related metadata is now set to a per-app name based on the bundle
- identifier. Keys that were previously stored within the single, shared Realm
- keychain item will be transparently migrated to the per-application keychain
- item.
-* Fix downloading of the Realm core binaries when Xcode's command-line tools are
- set as the active developer directory for command-line interactions.
-* Fix a crash that could occur when resolving a ThreadSafeReference to a `List`
- whose parent object had since been deleted.
-
-3.0.0-beta.4 Release notes (2017-09-22)
-=============================================================
-
-### Breaking Changes
-
-* Rename `List.remove(objectAtIndex:)` to `List.remove(at:)` to match the name
- used by 'RangeReplaceableCollection'.
-* Rename `List.swap()` to `List.swapAt()` to match the name used by 'Array'.
-* Loosen `RLMArray` and `RLMResults`'s generic constraint from `RLMObject` to
- `NSObject`. This may result in having to add some casts to disambiguate
- types.
-* Remove `RLMPropertyTypeArray` in favor of a separate bool `array` property on
- `RLMProperty`/`Property`.
-* Remove `RLMSyncPermissionResults`. `RLMSyncPermission`s are now vended out
- using a `RLMResults`. This results collection supports all normal collection
- operations except for setting values using KVO (since `RLMSyncPermission`s are
- immutable) and the property aggregation operations.
-* `RealmCollection`'s associated type `Element` has been renamed `ElementType`.
-* Realm Swift collection types (`List`, `Results`, `AnyRealmCollection`, and
- `LinkingObjects` have had their generic type parameter changed from `T` to
- `Element`).
-* `RealmOptional`'s generic type parameter has been changed from `T` to `Value`.
-* `RLMSyncUserInfo` has been significantly enhanced. It now contains metadata
- about a user stored on the Realm Object Server, as well as a list of all user account
- data associated with that user.
-* Starting with Swift 4, `List` now conforms to `MutableCollection` instead of
- `RangeReplaceableCollection`. For Swift 4, the empty collection initializer has been
- removed, and default implementations of range replaceable collection methods that
- make sense for `List` have been added.
-* `List.removeLast()` now throws an exception if the list is empty, to more closely match
- the behavior of the standard library's `Collection.removeLast()` implementation.
-
-### Enhancements
-
-* `List` can now contain values of types `Bool`, `Int`, `Int8`, `Int16`,
- `Int32`, `Int64`, `Float`, `Double`, `String`, `Data`, and `Date` (and
- optional versions of all of these) in addition to `Object` subclasses.
- Querying `List`s containing values other than `Object` subclasses is not yet
- implemented.
-* `RLMArray` can now be constrained with the protocols `RLMBool`, `RLMInt`,
- `RLMFloat`, `RLMDouble`, `RLMString`, `RLMData`, and `RLMDate` in addition to
- protocols defined with `RLM_ARRAY_TYPE`. By default `RLMArray`s of
- non-`RLMObject` types can contain null. Indicating that the property is
- required (by overriding `+requiredProperties:`) will instead make the values
- within the array required. Querying `RLMArray`s containing values other than
- `RLMObject` subclasses is not yet implemented.
-* Opening a synced Realm whose local copy was created with an older version of
- Realm Mobile Platfrom when a migration is not possible to the current version
- will result in an `RLMErrorIncompatibleSyncedFile` / `incompatibleSyncedFile`
- error. When such an error occurs, the original file is moved to a backup
- location, and future attempts to open the synchronized Realm will result in a new
- file being created. If you wish to migrate any data from the backup Realm you can
- open it using the backup Realm configuration available on the error object.
-* Add preview support for partial synchronization. Partial synchronization is
- allows a synchronized Realm to be opened in such a way that only objects
- requested by the user are synchronized to the device. You can use it by setting
- the `isPartial` property on a `SyncConfiguration`, opening the Realm, and then
- calling `Realm.subscribe(to:where:callback:)` with the type of object you're
- interested in, a string containing a query determining which objects you want
- to subscribe to, and a callback which will report the results. You may add as
- many subscriptions to a synced Realm as necessary.
-
-### Bugfixes
-
-* Realm Swift APIs that filter or look up the index of an object based on a
- format string now properly handle optional arguments in their variadic argument
- list.
-
-3.0.0-beta.3 Release notes (2017-08-23)
-=============================================================
-
-### Breaking Changes
-
-* iOS 7 is no longer supported.
-* Computed properties on Realm object types are detected and no
- longer added to the automatically generated schema.
-* `-[RLMRealm addOrUpdateObjectsInArray:]` has been renamed to
- `-[RLMRealm addOrUpdateObjects:]` for consistency with similar methods
- that add or delete objects.
-* `-[RLMRealm addOrUpdateObjects:]` and `-[RLMRealm deleteObjects:]` now
- require their argument to conform to `NSFastEnumeration`, to match similar
- APIs that also take collections.
-* Remove deprecated `{RLM}SyncPermission` and `{RLM}SyncPermissionChange`
- classes.
-* `{RLM}SyncPermissionValue` has been renamed to just `{RLM}SyncPermission`.
- Its `userId` property has been renamed `identity`, and its
- `-initWithRealmPath:userID:accessLevel:` initializer has been renamed
- `-initWithRealmPath:identity:accessLevel:`.
-* Remove deprecated `-[RLMSyncUser permissionRealmWithError:]` and
- `SyncUser.permissionRealm()` APIs. Use the new permissions system.
-* Remove deprecated error `RLMSyncErrorBadResponse`. Use
- `RLMSyncAuthErrorBadResponse` instead.
-* The way interactive sync errors (client reset and permission denied)
- are delivered to the user has been changed. Instead of a block which can
- be invoked to immediately delete the offending Realm file, an opaque
- token object of type `RLMSyncErrorActionToken` will be returned in the
- error object's `userInfo` dictionary. This error object can be passed
- into the new `+[RLMSyncSession immediatelyHandleError:]` API to delete
- the files.
-* Remove `-[NSError rlmSync_clientResetBlock]` and
- `-[NSError rlmSync_deleteRealmBlock]` APIs.
-* The return types of the `SyncError.clientResetInfo()` and
- `SyncError.deleteRealmUserInfo()` APIs have been changed. They now return
- `RLMSyncErrorActionToken`s or `SyncError.ActionToken`s instead of closures.
-* The (erroneously added) instance property `Object.className` has been
- removed.
-* The class methods `Object.className()`, `Object.objectUtilClass()`, and
- the property `Object.isInvalidated` can no longer be overriden.
-* The callback which runs when a sync user login succeeds or fails
- now runs on the main queue by default, or can be explicitly specified
- by a new `callbackQueue` parameter on the `{RLM}SyncUser.logIn(...)` API.
-* Rename `{RLM}NotificationToken.stop()` to `invalidate()` and
- `{RealmCollection,SyncPermissionResults}.addNotificationBlock(_:)` to
- `observe(_:)` to mirror Foundation's new KVO APIs.
-* The `RLMSyncProgress` enum has been renamed `RLMSyncProgressMode`.
-* Remove deprecated `{RLM}SyncManager.disableSSLValidation` property. Disable
- SSL validation on a per-Realm basis by setting the `enableSSLValidation`
- property on `{RLM}SyncConfiguration` instead.
-* Fix empty strings, binary data, and null on the right side of `BEGINSWITH`,
- `ENDSWITH` and `CONTAINS` operators in predicates to match Foundation's
- semantics of never matching any strings or data.
-* Swift `Object` comparison and hashing behavior now works the same way as
- that of `RLMObject` (objects are now only considered equatable if their
- model class defines a primary key).
-* Fix the way the hash property works on `Object` when the object model has
- no primary key.
-* Fix an issue where if a Swift model class defined non-generic managed
- properties after generic Realm properties (like `List`), the schema
- would be constructed incorrectly. Fixes an issue where creating such
- models from an array could fail.
-
-### Enhancements
-
-* Add Swift `Object.isSameObject(as:_)` API to perform the same function as
- the existing Objective-C API `-[RLMObject isEqualToObject:]`.
-* Expose additional authentication-related errors that might be reported by
- a Realm Object Server.
-* An error handler can now be registered on `{RLM}SyncUser`s in order to
- report authentication-related errors that affect the user.
-
-### Bugfixes
-
-* Sync users are now automatically logged out upon receiving certain types
- of errors that indicate they are no longer logged into the server. For
- example, users who are authenticated using third-party credentials will find
- themselves logged out of the Realm Object Server if the third-party identity
- service indicates that their credential is no longer valid.
-* Address high CPU usage and hangs in certain cases when processing collection
- notifications in highly-connected object graphs.
-
-3.0.0-beta.2 Release notes (2017-07-26)
-=============================================================
-
-### Breaking Changes
-
-* Remove the following deprecated Objective-C APIs:
- `-[RLMArray sortedResultsUsingProperty:ascending:]`,
- `-[RLMCollection sortedResultsUsingProperty:ascending:]`,
- `-[RLMResults sortedResultsUsingProperty:ascending:]`,
- `+[RLMSortDescriptor sortDescriptorWithProperty:ascending:]`,
- `RLMSortDescriptor.property`.
- These APIs have been superseded by equivalent APIs that take
- or return key paths instead of property names.
-* Remove the following deprecated Objective-C API:
- `+[RLMRealm migrateRealm:configuration:]`.
- Please use `+[RLMRealm performMigrationForConfiguration:error:]` instead.
-* Remove the following deprecated Swift APIs:
- `AnyRealmCollection.sorted(byProperty:, ascending:)`,
- `LinkingObjects.sorted(byProperty:, ascending:)`,
- `List.sorted(byProperty:, ascending:)`,
- `Results.sorted(byProperty:, ascending:)`,
- `SortDescriptor.init(property:, ascending:)`,
- `SortDescriptor.property`.
- These APIs have been superseded by equivalent APIs that take
- or return key paths instead of property names.
-* The Objective-C and Swift `create(_:, value: update:)` APIs now
- correctly nil out nullable properties when updating an existing
- object when the `value` argument specifies nil or `NSNull` for
- the property value.
-
-### Enhancements
-
-* It is now possible to create and log in multiple Realm Object Server users
- with the same identity if they originate from different servers. Note that
- if the URLs are different aliases for the same authentication server each
- user will still be treated as separate (e.g. they will have their own copy
- of each synchronized Realm opened using them). It is highly encouraged that
- users defined using the access token credential type be logged in with an
- authentication server URL specified; this parameter will become mandatory
- in a future version of the SDK.
-* Add `-[RLMSyncUser retrieveInfoForUser:identityProvider:completion:]`
- API allowing administrator users to retrieve information about a user based
- on their provider identity (for example, a username). Requires any edition
- of the Realm Object Server 1.8.2 or later.
-
-### Bugfixes
-
-* Realm no longer throws an "unsupported instruction" exception in some cases
- when opening a synced Realm asynchronously.
-
-3.0.0-beta Release notes (2017-07-14)
-=============================================================
-
-### Breaking Changes
-
-* Synchronized Realms require a server running Realm Object Server v2.0 or higher.
-
-### Enhancements
-
-* Add a new error code to denote 'permission denied' errors when working
- with synchronized Realms, as well as an accompanying block that can be
- called to inform the binding that the offending Realm's files should be
- deleted immediately. This allows recovering from 'permission denied'
- errors in a more robust manner. See the documentation for
- `RLMSyncErrorPermissionDeniedError` for more information.
-* Add `-[RLMSyncPermissionValue initWithRealmPath:username:accessLevel:]`
- API allowing permissions to be applied to a user based on their username
- (usually, an email address). Requires any edition of the Realm Object
- Server 1.6.0 or later.
-* Improve performance of creating Swift objects which contain at least one List
- property.
-
-### Bugfixes
-
-* `List.description` now reports the correct types for nested lists.
-* Fix unmanaged object initialization when a nested property type returned
- `false` from `Object.shouldIncludeInDefaultSchema()`.
-* Don't clear RLMArrays on self-assignment.
-
-2.10.2 Release notes (2017-09-27)
-=============================================================
-
-### Bugfixes
-
-* The keychain item name used by Realm to manage the encryption keys for
- sync-related metadata is now set to a per-app name based on the bundle
- identifier. Keys that were previously stored within the single, shared Realm
- keychain item will be transparently migrated to the per-application keychain
- item.
-* Fix downloading of the Realm core binaries when Xcode's command-line tools are
- set as the active developer directory for command-line interactions.
-* Fix a crash that could occur when resolving a ThreadSafeReference to a `List`
- whose parent object had since been deleted.
-
-2.10.1 Release notes (2017-09-14)
-=============================================================
-
-Swift binaries are now produced for Swift 3.0, 3.0.1, 3.0.2, 3.1, 3.2 and 4.0.
-
-### Enhancements
-
-* Auxiliary files are excluded from backup by default.
-
-### Bugfixes
-
-* Fix more cases where assigning an RLMArray property to itself would clear the
- RLMArray.
-
-2.10.0 Release notes (2017-08-21)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Expose additional authentication-related errors that might be reported by
- a Realm Object Server.
-* An error handler can now be registered on `{RLM}SyncUser`s in order to
- report authentication-related errors that affect the user.
-
-### Bugfixes
-
-* Sorting Realm collection types no longer throws an exception on iOS 7.
-* Sync users are now automatically logged out upon receiving certain types
- of errors that indicate they are no longer logged into the server. For
- example, users who are authenticated using third-party credentials will find
- themselves logged out of the Realm Object Server if the third-party identity
- service indicates that their credential is no longer valid.
-* Address high CPU usage and hangs in certain cases when processing collection
- notifications in highly-connected object graphs.
-
-2.9.1 Release notes (2017-08-01)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* The `shouldCompactOnLaunch` block is no longer invoked if the Realm at that
- path is already open on other threads.
-* Fix an assertion failure in collection notifications when changes are made to
- the schema via sync while the notification block is active.
-
-2.9.0 Release notes (2017-07-26)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Add a new error code to denote 'permission denied' errors when working
- with synchronized Realms, as well as an accompanying block that can be
- called to inform the binding that the offending Realm's files should be
- deleted immediately. This allows recovering from 'permission denied'
- errors in a more robust manner. See the documentation for
- `RLMSyncErrorPermissionDeniedError` for more information.
-* Add `-[RLMSyncPermissionValue initWithRealmPath:username:accessLevel:]`
- API allowing permissions to be applied to a user based on their username
- (usually, an email address). Requires any edition of the Realm Object
- Server 1.6.0 or later.
-* Improve performance of creating Swift objects which contain at least one List
- property.
-* It is now possible to create and log in multiple Realm Object Server users
- with the same identity if they originate from different servers. Note that
- if the URLs are different aliases for the same authentication server each
- user will still be treated as separate (e.g. they will have their own copy
- of each synchronized Realm opened using them). It is highly encouraged that
- users defined using the access token credential type be logged in with an
- authentication server URL specified; this parameter will become mandatory
- in a future version of the SDK.
-* Add `-[RLMSyncUser retrieveInfoForUser:identityProvider:completion:]`
- API allowing administrator users to retrieve information about a user based
- on their provider identity (for example, a username). Requires any edition
- of the Realm Object Server 1.8.2 or later.
-
-### Bugfixes
-
-* `List.description` now reports the correct types for nested lists.
-* Fix unmanaged object initialization when a nested property type returned
- `false` from `Object.shouldIncludeInDefaultSchema()`.
-* Don't clear RLMArrays on self-assignment.
-
-2.8.3 Release notes (2017-06-20)
-=============================================================
-
-### Bugfixes
-
-* Properly update RealmOptional properties when adding an object with `add(update: true)`.
-* Add some missing quotes in error messages.
-* Fix a performance regression when creating objects with primary keys.
-
-2.8.2 Release notes (2017-06-16)
-=============================================================
-
-### Bugfixes
-
-* Fix an issue where synchronized Realms would eventually disconnect from the
- remote server if the user object used to define their sync configuration
- was destroyed.
-* Restore support for changing primary keys in migrations (broken in 2.8.0).
-* Revert handling of adding objects with nil properties to a Realm to the
- pre-2.8.0 behavior.
-
-2.8.1 Release notes (2017-06-12)
-=============================================================
-
-Add support for building with Xcode 9 Beta 1.
-
-### Bugfixes
-
-* Fix setting a float property to NaN.
-* Fix a crash when using compact on launch in combination with collection
- notifications.
-
-2.8.0 Release notes (2017-06-02)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Enable encryption on watchOS.
-* Add `-[RLMSyncUser changePassword:forUserID:completion:]` API to change an
- arbitrary user's password if the current user has administrative privileges
- and using Realm's 'password' authentication provider.
- Requires any edition of the Realm Object Server 1.6.0 or later.
-
-### Bugfixes
-
-* Suppress `-Wdocumentation` warnings in Realm C++ headers when using CocoaPods
- with Xcode 8.3.2.
-* Throw an appropriate error rather than crashing when an RLMArray is assigned
- to an RLMArray property of a different type.
-* Fix crash in large (>4GB) encrypted Realm files.
-* Improve accuracy of sync progress notifications.
-* Fix an issue where synchronized Realms did not connect to the remote server
- in certain situations, such as when an application was offline when the Realms
- were opened but later regained network connectivity.
-
-2.7.0 Release notes (2017-05-03)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Use reachability API to minimize the reconnection delay if the network
- connection was lost.
-* Add `-[RLMSyncUser changePassword:completion:]` API to change the current
- user's password if using Realm's 'password' authentication provider.
- Requires any edition of the Realm Object Server 1.4.0 or later.
-* `{RLM}SyncConfiguration` now has an `enableSSLValidation` property
- (and default parameter in the Swift initializer) to allow SSL validation
- to be specified on a per-server basis.
-* Transactions between a synced Realm and a Realm Object Server can now
- exceed 16 MB in size.
-* Add new APIs for changing and retrieving permissions for synchronized Realms.
- These APIs are intended to replace the existing Realm Object-based permissions
- system. Requires any edition of the Realm Object Server 1.1.0 or later.
-
-### Bugfixes
-
-* Support Realm model classes defined in Swift with overridden Objective-C
- names (e.g. `@objc(Foo) class SwiftFoo: Object {}`).
-* Fix `-[RLMMigration enumerateObjects:block:]` returning incorrect `oldObject`
- objects when enumerating a class name after previously deleting a `newObject`.
-* Fix an issue where `Realm.asyncOpen(...)` would fail to work when opening a
- synchronized Realm for which the user only had read permissions.
-* Using KVC to set a `List` property to `nil` now clears it to match the
- behavior of `RLMArray` properties.
-* Fix crash from `!m_awaiting_pong` assertion failure when using synced Realms.
-* Fix poor performance or hangs when performing case-insensitive queries on
- indexed string properties that contain many characters that don't differ
- between upper and lower case (e.g., numbers, punctuation).
-
-2.6.2 Release notes (2017-04-21)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fix an issue where calling `Realm.asyncOpen(...)` with a synchronized Realm
- configuration would fail with an "Operation canceled" error.
-* Fix initial collection notification sometimes not being delivered for synced
- Realms.
-* Fix circular links sometimes resulting in objects not being marked as
- modified in change notifications.
-
-2.6.1 Release notes (2017-04-18)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fix an issue where calling `Realm.asyncOpen(...)` with a synchronized Realm
- configuration would crash in error cases rather than report the error.
- This is a small source breaking change if you were relying on the error
- being reported to be a `Realm.Error`.
-
-2.6.0 Release notes (2017-04-18)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Add a `{RLM}SyncUser.isAdmin` property indicating whether a user is a Realm
- Object Server administrator.
-* Add an API to asynchronously open a Realm and deliver it to a block on a
- given queue. This performs all work needed to get the Realm to
- a usable state (such as running potentially time-consuming migrations) on a
- background thread before dispatching to the given queue. In addition,
- synchronized Realms wait for all remote content available at the time the
- operation began to be downloaded and available locally.
-* Add `shouldCompactOnLaunch` block property when configuring a Realm to
- determine if it should be compacted before being returned.
-* Speed up case-insensitive queries on indexed string properties.
-* Add RLMResults's collection aggregate methods to RLMArray.
-* Add support for calling the aggregate methods on unmanaged Lists.
-
-### Bugfixes
-
-* Fix a deadlock when multiple processes open a Realm at the same time.
-* Fix `value(forKey:)`/`value(forKeyPath:)` returning incorrect values for `List` properties.
-
-2.5.1 Release notes (2017-04-05)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fix CocoaPods installation with static libraries and multiple platforms.
-* Fix uncaught "Bad version number" exceptions on the notification worker thread
- followed by deadlocks when Realms refresh.
-
-2.5.0 Release notes (2017-03-28)
-=============================================================
-
-Files written by Realm this version cannot be read by earlier versions of Realm.
-Old files can still be opened and files open in read-only mode will not be
-modified.
-
-If using synchronized Realms, the Realm Object Server must be running version
-1.3.0 or later.
-
-Swift binaries are now produced for Swift 3.0, 3.0.1, 3.0.2 and 3.1.
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Add support for multi-level object equality comparisons against `NULL`.
-* Add support for the `[d]` modifier on string comparison operators to perform
- diacritic-insensitive comparisons.
-* Explicitly mark `[[RLMRealm alloc] init]` as unavailable.
-* Include the name of the problematic class in the error message when an
- invalid property type is marked as the primary key.
-
-### Bugfixes
-
-* Fix incorrect column type assertions which could occur after schemas were
- merged by sync.
-* Eliminate an empty write transaction when opening a synced Realm.
-* Support encrypting synchronized Realms by respecting the `encryptionKey` value
- of the Realm's configuration.
-* Fix crash when setting an `{NS}Data` property close to 16MB.
-* Fix for reading `{NS}Data` properties incorrectly returning `nil`.
-* Reduce file size growth in cases where Realm versions were pinned while
- starting write transactions.
-* Fix an assertion failure when writing to large `RLMArray`/`List` properties.
-* Fix uncaught `BadTransactLog` exceptions when pulling invalid changesets from
- synchronized Realms.
-* Fix an assertion failure when an observed `RLMArray`/`List` is deleted after
- being modified.
-
-2.4.4 Release notes (2017-03-13)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Add `(RLM)SyncPermission` class to allow reviewing access permissions for
- Realms. Requires any edition of the Realm Object Server 1.1.0 or later.
-* Further reduce the number of files opened per thread-specific Realm on macOS,
- iOS and watchOS.
-
-### Bugfixes
-
-* Fix a crash that could occur if new Realm instances were created while the
- application was exiting.
-* Fix a bug that could lead to bad version number errors when delivering
- change notifications.
-* Fix a potential use-after-free bug when checking validity of results.
-* Fix an issue where a sync session might not close properly if it receives
- an error while being torn down.
-* Fix some issues where a sync session might not reconnect to the server properly
- or get into an inconsistent state if revived after invalidation.
-* Fix an issue where notifications might not fire when the children of an
- observed object are changed.
-* Fix an issue where progress notifications on sync sessions might incorrectly
- report out-of-date values.
-* Fix an issue where multiple threads accessing encrypted data could result in
- corrupted data or crashes.
-* Fix an issue where certain `LIKE` queries could hang.
-* Fix an issue where `-[RLMRealm writeCopyToURL:encryptionKey:error]` could create
- a corrupt Realm file.
-* Fix an issue where incrementing a synced Realm's schema version without actually
- changing the schema could cause a crash.
-
-2.4.3 Release notes (2017-02-20)
-=============================================================
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Avoid copying copy-on-write data structures, which can grow the file, when the
- write does not actually change existing values.
-* Improve performance of deleting all objects in an RLMResults.
-* Reduce the number of files opened per thread-specific Realm on macOS.
-* Improve startup performance with large numbers of `RLMObject`/`Object`
- subclasses.
-
-### Bugfixes
-
-* Fix synchronized Realms not downloading remote changes when an access token
- expires and there are no local changes to upload.
-* Fix an issue where values set on a Realm object using `setValue(value:, forKey:)`
- that were not themselves Realm objects were not properly converted into Realm
- objects or checked for validity.
-* Fix an issue where `-[RLMSyncUser sessionForURL:]` could erroneously return a
- non-nil value when passed in an invalid URL.
-* `SyncSession.Progress.fractionTransferred` now returns 1 if there are no
- transferrable bytes.
-* Fix sync progress notifications registered on background threads by always
- dispatching on a dedicated background queue.
-* Fix compilation issues with Xcode 8.3 beta 2.
-* Fix incorrect sync progress notification values for Realms originally created
- using a version of Realm prior to 2.3.0.
-* Fix LLDB integration to be able to display summaries of `RLMResults` once more.
-* Reject Swift properties with names which cause them to fall in to ARC method
- families rather than crashing when they are accessed.
-* Fix sorting by key path when the declared property order doesn't match the order
- of properties in the Realm file, which can happen when properties are added in
- different schema versions.
-
-2.4.2 Release notes (2017-01-30)
-=============================================================
-
-### Bugfixes
-
-* Fix an issue where RLMRealm instances could end up in the autorelease pool
- for other threads.
-
-2.4.1 Release notes (2017-01-27)
-=============================================================
-
-### Bugfixes
-
-* Fix an issue where authentication tokens were not properly refreshed
- automatically before expiring.
-
-2.4.0 Release notes (2017-01-26)
-=============================================================
-
-This release drops support for compiling with Swift 2.x.
-Swift 3.0.0 is now the minimum Swift version supported.
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Add change notifications for individual objects with an API similar to that
- of collection notifications.
-
-### Bugfixes
-
-* Fix Realm Objective-C compilation errors with Xcode 8.3 beta 1.
-* Fix several error handling issues when renewing expired authentication
- tokens for synchronized Realms.
-* Fix a race condition leading to bad_version exceptions being thrown in
- Realm's background worker thread.
-
-2.3.0 Release notes (2017-01-19)
-=============================================================
-
-### Sync Breaking Changes
-
-* Make `PermissionChange`'s `id` property a primary key.
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Add `SyncPermissionOffer` and `SyncPermissionOfferResponse` classes to allow
- creating and accepting permission change events to synchronized Realms between
- different users.
-* Support monitoring sync transfer progress by registering notification blocks
- on `SyncSession`. Specify the transfer direction (`.upload`/`.download`) and
- mode (`.reportIndefinitely`/`.forCurrentlyOutstandingWork`) to monitor.
-
-### Bugfixes
-
-* Fix a call to `commitWrite(withoutNotifying:)` committing a transaction that
- would not have triggered a notification incorrectly skipping the next
- notification.
-* Fix incorrect results and crashes when conflicting object insertions are
- merged by the synchronization mechanism when there is a collection
- notification registered for that object type.
-
-2.2.0 Release notes (2017-01-12)
-=============================================================
-
-### Sync Breaking Changes (In Beta)
-
-* Sync-related error reporting behavior has been changed. Errors not related
- to a particular user or session are only reported if they are classed as
- 'fatal' by the underlying sync engine.
-* Added `RLMSyncErrorClientResetError` to `RLMSyncError` enum.
-
-### API Breaking Changes
-
-* The following Objective-C APIs have been deprecated in favor of newer or preferred versions:
-
-| Deprecated API | New API |
-|:------------------------------------------------------------|:------------------------------------------------------------|
-| `-[RLMArray sortedResultsUsingProperty:]` | `-[RLMArray sortedResultsUsingKeyPath:]` |
-| `-[RLMCollection sortedResultsUsingProperty:]` | `-[RLMCollection sortedResultsUsingKeyPath:]` |
-| `-[RLMResults sortedResultsUsingProperty:]` | `-[RLMResults sortedResultsUsingKeyPath:]` |
-| `+[RLMSortDescriptor sortDescriptorWithProperty:ascending]` | `+[RLMSortDescriptor sortDescriptorWithKeyPath:ascending:]` |
-| `RLMSortDescriptor.property` | `RLMSortDescriptor.keyPath` |
-
-* The following Swift APIs have been deprecated in favor of newer or preferred versions:
-
-| Deprecated API | New API |
-|:------------------------------------------------------|:-------------------------------------------------|
-| `LinkingObjects.sorted(byProperty:ascending:)` | `LinkingObjects.sorted(byKeyPath:ascending:)` |
-| `List.sorted(byProperty:ascending:)` | `List.sorted(byKeyPath:ascending:)` |
-| `RealmCollection.sorted(byProperty:ascending:)` | `RealmCollection.sorted(byKeyPath:ascending:)` |
-| `Results.sorted(byProperty:ascending:)` | `Results.sorted(byKeyPath:ascending:)` |
-| `SortDescriptor(property:ascending:)` | `SortDescriptor(keyPath:ascending:)` |
-| `SortDescriptor.property` | `SortDescriptor.keyPath` |
-
-### Enhancements
-
-* Introduce APIs for safely passing objects between threads. Create a
- thread-safe reference to a thread-confined object by passing it to the
- `+[RLMThreadSafeReference referenceWithThreadConfined:]`/`ThreadSafeReference(to:)`
- constructor, which you can then safely pass to another thread to resolve in
- the new Realm with `-[RLMRealm resolveThreadSafeReference:]`/`Realm.resolve(_:)`.
-* Realm collections can now be sorted by properties over to-one relationships.
-* Optimized `CONTAINS` queries to use Boyer-Moore algorithm
- (around 10x speedup on large datasets).
-
-### Bugfixes
-
-* Setting `deleteRealmIfMigrationNeeded` now also deletes the Realm if a file
- format migration is required, such as when moving from a file last accessed
- with Realm 0.x to 1.x, or 1.x to 2.x.
-* Fix queries containing nested `SUBQUERY` expressions.
-* Fix spurious incorrect thread exceptions when a thread id happens to be
- reused while an RLMRealm instance from the old thread still exists.
-* Fixed various bugs in aggregate methods (max, min, avg, sum).
-
-2.1.2 Release notes (2016--12-19)
-=============================================================
-
-This release adds binary versions of Swift 3.0.2 frameworks built with Xcode 8.2.
-
-### Sync Breaking Changes (In Beta)
-
-* Rename occurences of "iCloud" with "CloudKit" in APIs and comments to match
- naming in the Realm Object Server.
-
-### API Breaking Changes
-
-* None.
-
-### Enhancements
-
-* Add support for 'LIKE' queries (wildcard matching).
-
-### Bugfixes
-
-* Fix authenticating with CloudKit.
-* Fix linker warning about "Direct access to global weak symbol".
-
-2.1.1 Release notes (2016-12-02)
-=============================================================
-
-### Enhancements
-
-* Add `RealmSwift.ObjectiveCSupport.convert(object:)` methods to help write
- code that interoperates between Realm Objective-C and Realm Swift APIs.
-* Throw exceptions when opening a Realm with an incorrect configuration, like:
- * `readOnly` set with a sync configuration.
- * `readOnly` set with a migration block.
- * migration block set with a sync configuration.
-* Greatly improve performance of write transactions which make a large number of
- changes to indexed properties, including the automatic migration when opening
- files written by Realm 1.x.
-
-### Bugfixes
-
-* Reset sync metadata Realm in case of decryption error.
-* Fix issue preventing using synchronized Realms in Xcode Playgrounds.
-* Fix assertion failure when migrating a model property from object type to
- `RLMLinkingObjects` type.
-* Fix a `LogicError: Bad version number` exception when using `RLMResults` with
- no notification blocks and explicitly called `-[RLMRealm refresh]` from that
- thread.
-* Logged-out users are no longer returned from `+[RLMSyncUser currentUser]` or
- `+[RLMSyncUser allUsers]`.
-* Fix several issues which could occur when the 1001st object of a given type
- was created or added to an RLMArray/List, including crashes when rerunning
- existing queries and possibly data corruption.
-* Fix a potential crash when the application exits due to a race condition in
- the destruction of global static variables.
-* Fix race conditions when waiting for sync uploads or downloads to complete
- which could result in crashes or the callback being called too early.
-
-2.1.0 Release notes (2016-11-18)
-=============================================================
-
-### Sync Breaking Changes (In Beta)
-
-* None.
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Add the ability to skip calling specific notification blocks when committing
- a write transaction.
-
-### Bugfixes
-
-* Deliver collection notifications when beginning a write transaction which
- advances the read version of a Realm (previously only Realm-level
- notifications were sent).
-* Fix some scenarios which would lead to inconsistent states when using
- collection notifications.
-* Fix several race conditions in the notification functionality.
-* Don't send Realm change notifications when canceling a write transaction.
-
-2.0.4 Release notes (2016-11-14)
-=============================================================
-
-### Sync Breaking Changes (In Beta)
-
-* Remove `RLMAuthenticationActions` and replace
- `+[RLMSyncCredential credentialWithUsername:password:actions:]` with
- `+[RLMSyncCredential credentialsWithUsername:password:register:]`.
-* Rename `+[RLMSyncUser authenticateWithCredential:]` to
- `+[RLMSyncUser logInWithCredentials:]`.
-* Rename "credential"-related types and methods to
- `RLMSyncCredentials`/`SyncCredentials` and consistently refer to credentials
- in the plural form.
-* Change `+[RLMSyncUser all]` to return a dictionary of identifiers to users and
- rename to:
- * `+[RLMSyncUser allUsers]` in Objective-C.
- * `SyncUser.allUsers()` in Swift 2.
- * `SyncUser.all` in Swift 3.
-* Rename `SyncManager.sharedManager()` to `SyncManager.shared` in Swift 3.
-* Change `Realm.Configuration.syncConfiguration` to take a `SyncConfiguration`
- struct rather than a named tuple.
-* `+[RLMSyncUser logInWithCredentials:]` now invokes its callback block on a
- background queue.
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Add `+[RLMSyncUser currentUser]`.
-* Add the ability to change read, write and management permissions for
- synchronized Realms using the management Realm obtained via the
- `-[RLMSyncUser managementRealmWithError:]` API and the
- `RLMSyncPermissionChange` class.
-
-### Bugfixes
-
-* None.
-
-2.0.3 Release notes (2016-10-27)
-=============================================================
-
-This release adds binary versions of Swift 3.0.1 frameworks built with Xcode 8.1
-GM seed.
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fix a `BadVersion` exception caused by a race condition when delivering
- collection change notifications.
-* Fix an assertion failure when additional model classes are added and
- `deleteRealmIfMigrationNeeded` is enabled.
-* Fix a `BadTransactLog` exception when deleting an `RLMResults` in a synced
- Realm.
-* Fix an assertion failure when a write transaction is in progress at the point
- of process termination.
-* Fix a crash that could occur when working with a `RLMLinkingObject` property
- of an unmanaged object.
-
-2.0.2 Release notes (2016-10-05)
-=============================================================
-
-This release is not protocol-compatible with previous version of the Realm
-Mobile Platform.
-
-### API breaking changes
-
-* Rename Realm Swift's `User` to `SyncUser` to make clear that it relates to the
- Realm Mobile Platform, and to avoid potential conflicts with other `User` types.
-
-### Bugfixes
-
-* Fix Realm headers to be compatible with pre-C++11 dialects of Objective-C++.
-* Fix incorrect merging of RLMArray/List changes when objects with the same
- primary key are created on multiple devices.
-* Fix bad transaction log errors after deleting objects on a different device.
-* Fix a BadVersion error when a background worker finishes running while older
- results from that worker are being delivered to a different thread.
-
-2.0.1 Release notes (2016-09-29)
-=============================================================
-
-### Bugfixes
-
-* Fix an assertion failure when opening a Realm file written by a 1.x version
- of Realm which has an indexed nullable int or bool property.
-
-2.0.0 Release notes (2016-09-27)
-=============================================================
-
-This release introduces support for the Realm Mobile Platform!
-See for an overview
-of these great new features.
-
-### API breaking changes
-
-* By popular demand, `RealmSwift.Error` has been moved from the top-level
- namespace into a `Realm` extension and is now `Realm.Error`, so that it no
- longer conflicts with `Swift.Error`.
-* Files written by Realm 2.0 cannot be read by 1.x or earlier versions. Old
- files can still be opened.
-
-### Enhancements
-
-* The .log, .log_a and .log_b files no longer exist and the state tracked in
- them has been moved to the main Realm file. This reduces the number of open
- files needed by Realm, improves performance of both opening and writing to
- Realms, and eliminates a small window where committing write transactions
- would prevent other processes from opening the file.
-
-### Bugfixes
-
-* Fix an assertion failure when sorting by zero properties.
-* Fix a mid-commit crash in one process also crashing all other processes with
- the same Realm open.
-* Properly initialize new nullable float and double properties added to
- existing objects to null rather than 0.
-* Fix a stack overflow when objects with indexed string properties had very
- long common prefixes.
-* Fix a race condition which could lead to crashes when using async queries or
- collection notifications.
-* Fix a bug which could lead to incorrect state when an object which links to
- itself is deleted from the Realm.
-
-1.1.0 Release notes (2016-09-16)
-=============================================================
-
-This release brings official support for Xcode 8, Swift 2.3 and Swift 3.0.
-Prebuilt frameworks are now built with Xcode 7.3.1 and Xcode 8.0.
-
-### API breaking changes
-
-* Deprecate `migrateRealm:` in favor of new `performMigrationForConfiguration:error:` method
- that follows Cocoa's NSError conventions.
-* Fix issue where `RLMResults` used `id `instead of its generic type as the return
- type of subscript.
-
-### Enhancements
-
-* Improve error message when using NSNumber incorrectly in Swift models.
-* Further reduce the download size of the prebuilt static libraries.
-* Improve sort performance, especially on non-nullable columns.
-* Allow partial initialization of object by `initWithValue:`, deferring
- required property checks until object is added to Realm.
-
-### Bugfixes
-
-* Fix incorrect truncation of the constant value for queries of the form
- `column < value` for `float` and `double` columns.
-* Fix crash when an aggregate is accessed as an `Int8`, `Int16`, `Int32`, or `Int64`.
-* Fix a race condition that could lead to a crash if an RLMArray or List was
- deallocated on a different thread than it was created on.
-* Fix a crash when the last reference to an observed object is released from
- within the observation.
-* Fix a crash when `initWithValue:` is used to create a nested object for a class
- with an uninitialized schema.
-* Enforce uniqueness for `RealmOptional` primary keys when using the `value` setter.
-
-1.0.2 Release notes (2016-07-13)
-=============================================================
-
-### API breaking changes
-
-* Attempting to add an object with no properties to a Realm now throws rather than silently
- doing nothing.
-
-### Enhancements
-
-* Swift: A `write` block may now `throw`, reverting any changes already made in
- the transaction.
-* Reduce address space used when committing write transactions.
-* Significantly reduce the download size of prebuilt binaries and slightly
- reduce the final size contribution of Realm to applications.
-* Improve performance of accessing RLMArray properties and creating objects
- with List properties.
-
-### Bugfixes
-
-* Fix a crash when reading the shared schema from an observed Swift object.
-* Fix crashes or incorrect results when passing an array of values to
- `createOrUpdate` after reordering the class's properties.
-* Ensure that the initial call of a Results notification block is always passed
- .Initial even if there is a write transaction between when the notification
- is added and when the first notification is delivered.
-* Fix a crash when deleting all objects in a Realm while fast-enumerating query
- results from that Realm.
-* Handle EINTR from flock() rather than crashing.
-* Fix incorrect behavior following a call to `[RLMRealm compact]`.
-* Fix live updating and notifications for Results created from a predicate involving
- an inverse relationship to be triggered when an object at the other end of the relationship
- is modified.
-
-1.0.1 Release notes (2016-06-12)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Significantly improve performance of opening Realm files, and slightly
- improve performance of committing write transactions.
-
-### Bugfixes
-
-* Swift: Fix an error thrown when trying to create or update `Object` instances via
- `add(:_update:)` with a primary key property of type `RealmOptional`.
-* Xcode playground in Swift release zip now runs successfully.
-* The `key` parameter of `Realm.objectForPrimaryKey(_:key:)`/ `Realm.dynamicObjectForPrimaryKey(_:key:)`
- is now marked as optional.
-* Fix a potential memory leak when closing Realms after a Realm file has been
- opened on multiple threads which are running in active run loops.
-* Fix notifications breaking on tvOS after a very large number of write
- transactions have been committed.
-* Fix a "Destruction of mutex in use" assertion failure after an error while
- opening a file.
-* Realm now throws an exception if an `Object` subclass is defined with a managed Swift `lazy` property.
- Objects with ignored `lazy` properties should now work correctly.
-* Update the LLDB script to work with recent changes to the implementation of `RLMResults`.
-* Fix an assertion failure when a Realm file is deleted while it is still open,
- and then a new Realm is opened at the same path. Note that this is still not
- a supported scenario, and may break in other ways.
-
-1.0.0 Release notes (2016-05-25)
-=============================================================
-
-No changes since 0.103.2.
-
-0.103.2 Release notes (2016-05-24)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Improve the error messages when an I/O error occurs in `writeCopyToURL`.
-
-### Bugfixes
-
-* Fix an assertion failure which could occur when opening a Realm after opening
- that Realm failed previously in some specific ways in the same run of the
- application.
-* Reading optional integers, floats, and doubles from within a migration block
- now correctly returns `nil` rather than 0 when the stored value is `nil`.
-
-0.103.1 Release notes (2016-05-19)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fix a bug that sometimes resulted in a single object's NSData properties
- changing from `nil` to a zero-length non-`nil` NSData when a different object
- of the same type was deleted.
-
-0.103.0 Release notes (2016-05-18)
-=============================================================
-
-### API breaking changes
-
-* All functionality deprecated in previous releases has been removed entirely.
-* Support for Xcode 6.x & Swift prior to 2.2 has been completely removed.
-* `RLMResults`/`Results` now become empty when a `RLMArray`/`List` or object
- they depend on is deleted, rather than throwing an exception when accessed.
-* Migrations are no longer run when `deleteRealmIfMigrationNeeded` is set,
- recreating the file instead.
-
-### Enhancements
-
-* Added `invalidated` properties to `RLMResults`/`Results`, `RLMLinkingObjects`/`LinkingObjects`,
- `RealmCollectionType` and `AnyRealmCollection`. These properties report whether the Realm
- the object is associated with has been invalidated.
-* Some `NSError`s created by Realm now have more descriptive user info payloads.
-
-### Bugfixes
-
-* None.
-
-0.102.1 Release notes (2016-05-13)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Return `RLMErrorSchemaMismatch` error rather than the more generic `RLMErrorFail`
- when a migration is required.
-* Improve the performance of allocating instances of `Object` subclasses
- that have `LinkingObjects` properties.
-
-### Bugfixes
-
-* `RLMLinkingObjects` properties declared in Swift subclasses of `RLMObject`
- now work correctly.
-* Fix an assertion failure when deleting all objects of a type, inserting more
- objects, and then deleting some of the newly inserted objects within a single
- write transaction when there is an active notification block for a different
- object type which links to the objects being deleted.
-* Fix crashes and/or incorrect results when querying over multiple levels of
- `LinkingObjects` properties.
-* Fix opening read-only Realms on multiple threads at once.
-* Fix a `BadTransactLog` exception when storing dates before the unix epoch (1970-01-01).
-
-0.102.0 Release notes (2016-05-09)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* Add a method to rename properties during migrations:
- * Swift: `Migration.renamePropertyForClass(_:oldName:newName:)`
- * Objective-C: `-[RLMMigration renamePropertyForClass:oldName:newName:]`
-* Add `deleteRealmIfMigrationNeeded` to
- `RLMRealmConfiguration`/`Realm.Configuration`. When this is set to `true`,
- the Realm file will be automatically deleted and recreated when there is a
- schema mismatch rather than migrated to the new schema.
-
-### Bugfixes
-
-* Fix `BETWEEN` queries that traverse `RLMArray`/`List` properties to ensure that
- a single related object satisfies the `BETWEEN` criteria, rather than allowing
- different objects in the array to satisfy the lower and upper bounds.
-* Fix a race condition when a Realm is opened on one thread while it is in the
- middle of being closed on another thread which could result in crashes.
-* Fix a bug which could result in changes made on one thread being applied
- incorrectly on other threads when those threads are refreshed.
-* Fix crash when migrating to the new date format introduced in 0.101.0.
-* Fix crash when querying inverse relationships when objects are deleted.
-
-0.101.0 Release notes (2016-05-04)
-=============================================================
-
-### API breaking changes
-
-* Files written by this version of Realm cannot be read by older versions of
- Realm. Existing files will automatically be upgraded when they are opened.
-
-### Enhancements
-
-* Greatly improve performance of collection change calculation for complex
- object graphs, especially for ones with cycles.
-* NSDate properties now support nanoseconds precision.
-* Opening a single Realm file on multiple threads now shares a single memory
- mapping of the file for all threads, significantly reducing the memory
- required to work with large files.
-* Crashing while in the middle of a write transaction no longer blocks other
- processes from performing write transactions on the same file.
-* Improve the performance of refreshing a Realm (including via autorefresh)
- when there are live Results/RLMResults objects for that Realm.
-
-### Bugfixes
-
-* Fix an assertion failure of "!more_before || index >= std::prev(it)->second)"
- in `IndexSet::do_add()`.
-* Fix a crash when an `RLMArray` or `List` object is destroyed from the wrong
- thread.
-
-0.100.0 Release notes (2016-04-29)
-=============================================================
-
-### API breaking changes
-
-* `-[RLMObject linkingObjectsOfClass:forProperty]` and `Object.linkingObjects(_:forProperty:)`
- are deprecated in favor of properties of type `RLMLinkingObjects` / `LinkingObjects`.
-
-### Enhancements
-
-* The automatically-maintained inverse direction of relationships can now be exposed as
- properties of type `RLMLinkingObjects` / `LinkingObjects`. These properties automatically
- update to reflect the objects that link to the target object, can be used in queries, and
- can be filtered like other Realm collection types.
-* Queries that compare objects for equality now support multi-level key paths.
-
-### Bugfixes
-
-* Fix an assertion failure when a second write transaction is committed after a
- write transaction deleted the object containing an RLMArray/List which had an
- active notification block.
-* Queries that compare `RLMArray` / `List` properties using != now give the correct results.
-
-0.99.1 Release notes (2016-04-26)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fix a scenario that could lead to the assertion failure
- "m_advancer_sg->get_version_of_current_transaction() ==
- new_notifiers.front()->version()".
-
-0.99.0 Release notes (2016-04-22)
-=============================================================
-
-### API breaking changes
-
-* Deprecate properties of type `id`/`AnyObject`. This type was rarely used,
- rarely useful and unsupported in every other Realm binding.
-* The block for `-[RLMArray addNotificationBlock:]` and
- `-[RLMResults addNotificationBlock:]` now takes another parameter.
-* The following Objective-C APIs have been deprecated in favor of newer or preferred versions:
-
-| Deprecated API | New API |
-|:-------------------------------------------------------|:------------------------------------------------------|
-| `-[RLMRealm removeNotification:]` | `-[RLMNotificationToken stop]` |
-| `RLMRealmConfiguration.path` | `RLMRealmConfiguration.fileURL` |
-| `RLMRealm.path` | `RLMRealmConfiguration.fileURL` |
-| `RLMRealm.readOnly` | `RLMRealmConfiguration.readOnly` |
-| `+[RLMRealm realmWithPath:]` | `+[RLMRealm realmWithURL:]` |
-| `+[RLMRealm writeCopyToPath:error:]` | `+[RLMRealm writeCopyToURL:encryptionKey:error:]` |
-| `+[RLMRealm writeCopyToPath:encryptionKey:error:]` | `+[RLMRealm writeCopyToURL:encryptionKey:error:]` |
-| `+[RLMRealm schemaVersionAtPath:error:]` | `+[RLMRealm schemaVersionAtURL:encryptionKey:error:]` |
-| `+[RLMRealm schemaVersionAtPath:encryptionKey:error:]` | `+[RLMRealm schemaVersionAtURL:encryptionKey:error:]` |
-
-* The following Swift APIs have been deprecated in favor of newer or preferred versions:
-
-| Deprecated API | New API |
-|:----------------------------------------------|:-----------------------------------------|
-| `Realm.removeNotification(_:)` | `NotificationToken.stop()` |
-| `Realm.Configuration.path` | `Realm.Configuration.fileURL` |
-| `Realm.path` | `Realm.Configuration.fileURL` |
-| `Realm.readOnly` | `Realm.Configuration.readOnly` |
-| `Realm.writeCopyToPath(_:encryptionKey:)` | `Realm.writeCopyToURL(_:encryptionKey:)` |
-| `schemaVersionAtPath(_:encryptionKey:error:)` | `schemaVersionAtURL(_:encryptionKey:)` |
-
-### Enhancements
-
-* Add information about what rows were added, removed, or modified to the
- notifications sent to the Realm collections.
-* Improve error when illegally appending to an `RLMArray` / `List` property from a default value
- or the standalone initializer (`init()`) before the schema is ready.
-
-### Bugfixes
-
-* Fix a use-after-free when an associated object's dealloc method is used to
- remove observers from an RLMObject.
-* Fix a small memory leak each time a Realm file is opened.
-* Return a recoverable `RLMErrorAddressSpaceExhausted` error rather than
- crash when there is insufficient available address space on Realm
- initialization or write commit.
-
-0.98.8 Release notes (2016-04-15)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Fixed a bug that caused some encrypted files created using
- `-[RLMRealm writeCopyToPath:encryptionKey:error:]` to fail to open.
-
-0.98.7 Release notes (2016-04-13)
-=============================================================
-
-### API breaking changes
-
-* None.
-
-### Enhancements
-
-* None.
-
-### Bugfixes
-
-* Mark further initializers in Objective-C as NS_DESIGNATED_INITIALIZER to prevent that these aren't
- correctly defined in Swift Object subclasses, which don't qualify for auto-inheriting the required initializers.
-* `-[RLMResults indexOfObjectWithPredicate:]` now returns correct results
- for `RLMResults` instances that were created by filtering an `RLMArray`.
-* Adjust how RLMObjects are destroyed in order to support using an associated
- object on an RLMObject to remove KVO observers from that RLMObject.
-* `-[RLMResults indexOfObjectWithPredicate:]` now returns the index of the first matching object for a
- sorted `RLMResults`, matching its documented behavior.
-* Fix a crash when canceling a transaction that set a relationship.
-* Fix a crash when a query referenced a deleted object.
-
-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 0a4333a..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/Info.plist
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
- BuildMachineOSBuild
- 18D109
- CFBundleDevelopmentRegion
- English
- CFBundleExecutable
- Realm
- CFBundleIdentifier
- io.Realm.Realm
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- Realm
- CFBundlePackageType
- FMWK
- CFBundleShortVersionString
- 3.16.1
- CFBundleSignature
- ????
- CFBundleSupportedPlatforms
-
- MacOSX
-
- CFBundleVersion
- 3.16.1
- DTCompiler
- com.apple.compilers.llvm.clang.1_0
- DTPlatformBuild
- 10E1001
- DTPlatformVersion
- GM
- DTSDKBuild
- 18E219
- DTSDKName
- macosx10.14
- DTXcode
- 1020
- DTXcodeBuild
- 10E1001
- NSHumanReadableCopyright
- Copyright © 2014 Realm. All rights reserved.
- UIDeviceFamily
-
- 1
- 2
- 3
- 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 57a0e0b..0000000
--- a/Carthage/Build/Mac/Realm.framework/Versions/A/Resources/LICENSE
+++ /dev/null
@@ -1,248 +0,0 @@
-TABLE OF CONTENTS
-
-1. Apache License version 2.0
-2. Realm Components
-3. Export Compliance
-
-1. -------------------------------------------------------------------------------
-
- 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.
-
-2. -------------------------------------------------------------------------------
-
-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 Platform Extensions component
-
- Realm Platform Extensions License
-
- Copyright (c) 2011-2017 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.
-
-3. -------------------------------------------------------------------------------
-
-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
-(i) located in a jurisdiction that is subject to United States economic
-sanctions (“Prohibited Jurisdiction”), including Cuba, Iran, North Korea,
-Sudan, Syria or the Crimea region, (ii) a person listed on any U.S. government
-blacklist (to include the List of Specially Designated Nationals and Blocked
-Persons or the Consolidated Sanctions List administered by the U.S. Department
-of the Treasury’s Office of Foreign Assets Control, or the Denied Persons List
-or Entity List administered by the U.S. Department of Commerce)
-(“Sanctioned Person”), or (iii) controlled or 50% or more owned by a Sanctioned
-Person.
-
-You agree to comply with all export, re-export and import restrictions and
-regulations of the U.S. 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, of the Software to any
-Prohibited Jurisdiction, 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 db2d16e..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
- 3.16.1
- CFBundleVersion
- 3.16.1
-
-
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 b9ed652..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 f773fbf..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Headers/RealmSwift-Swift.h
+++ /dev/null
@@ -1,513 +0,0 @@
-// Generated by Apple Swift version 5.0.1 effective-4.1.50 (swiftlang-1001.0.82.4 clang-1001.0.46.5)
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wgcc-compat"
-
-#if !defined(__has_include)
-# define __has_include(x) 0
-#endif
-#if !defined(__has_attribute)
-# define __has_attribute(x) 0
-#endif
-#if !defined(__has_feature)
-# define __has_feature(x) 0
-#endif
-#if !defined(__has_warning)
-# define __has_warning(x) 0
-#endif
-
-#if __has_include()
-# include
-#endif
-
-#pragma clang diagnostic ignored "-Wauto-import"
-#include
-#include
-#include
-#include
-
-#if !defined(SWIFT_TYPEDEFS)
-# define SWIFT_TYPEDEFS 1
-# if __has_include()
-# include
-# elif !defined(__cplusplus)
-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)));
-typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
-typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
-typedef unsigned int swift_uint4 __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(SWIFT_CLASS_PROPERTY)
-# if __has_feature(objc_class_property)
-# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
-# else
-# define SWIFT_CLASS_PROPERTY(...)
-# endif
-#endif
-
-#if __has_attribute(objc_runtime_name)
-# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
-#else
-# define SWIFT_RUNTIME_NAME(X)
-#endif
-#if __has_attribute(swift_name)
-# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
-#else
-# define SWIFT_COMPILE_NAME(X)
-#endif
-#if __has_attribute(objc_method_family)
-# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
-#else
-# define SWIFT_METHOD_FAMILY(X)
-#endif
-#if __has_attribute(noescape)
-# define SWIFT_NOESCAPE __attribute__((noescape))
-#else
-# define SWIFT_NOESCAPE
-#endif
-#if __has_attribute(warn_unused_result)
-# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
-#else
-# define SWIFT_WARN_UNUSED_RESULT
-#endif
-#if __has_attribute(noreturn)
-# define SWIFT_NORETURN __attribute__((noreturn))
-#else
-# define SWIFT_NORETURN
-#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 __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 __has_attribute(objc_designated_initializer)
-# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
-# else
-# define OBJC_DESIGNATED_INITIALIZER
-# endif
-#endif
-#if !defined(SWIFT_ENUM_ATTR)
-# if defined(__has_attribute) && __has_attribute(enum_extensibility)
-# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
-# else
-# define SWIFT_ENUM_ATTR(_extensibility)
-# endif
-#endif
-#if !defined(SWIFT_ENUM)
-# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
-# if __has_feature(generalized_swift_name)
-# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
-# else
-# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
-# endif
-#endif
-#if !defined(SWIFT_UNAVAILABLE)
-# define SWIFT_UNAVAILABLE __attribute__((unavailable))
-#endif
-#if !defined(SWIFT_UNAVAILABLE_MSG)
-# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
-#endif
-#if !defined(SWIFT_AVAILABILITY)
-# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
-#endif
-#if !defined(SWIFT_DEPRECATED)
-# define SWIFT_DEPRECATED __attribute__((deprecated))
-#endif
-#if !defined(SWIFT_DEPRECATED_MSG)
-# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
-#endif
-#if __has_feature(attribute_diagnose_if_objc)
-# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
-#else
-# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
-#endif
-#if __has_feature(modules)
-#if __has_warning("-Watimport-in-framework-header")
-#pragma clang diagnostic ignored "-Watimport-in-framework-header"
-#endif
-@import Foundation;
-@import ObjectiveC;
-@import Realm;
-@import Realm.Private;
-#endif
-
-#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
-#pragma clang diagnostic ignored "-Wduplicate-method-arg"
-#if __has_warning("-Wpragma-clang-attribute")
-# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
-#endif
-#pragma clang diagnostic ignored "-Wunknown-pragmas"
-#pragma clang diagnostic ignored "-Wnullability"
-
-#if __has_attribute(external_source_symbol)
-# pragma push_macro("any")
-# undef any
-# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="RealmSwift",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
-# pragma pop_macro("any")
-#endif
-
-@class RLMRealm;
-@class RLMObjectSchema;
-@class RLMSchema;
-
-/// Object is a class used to define Realm model objects.
-/// In Realm you define your model classes by subclassing Object and adding properties to be managed.
-/// You then instantiate and use your custom subclasses instead of using the Object class directly.
-/// \code
-/// class Dog: Object {
-/// @objc dynamic var name: String = ""
-/// @objc dynamic var adopted: Bool = false
-/// let siblings = List()
-/// }
-///
-/// \endcodeSupported property types
-///
-/// -
-///
String, NSString
-///
-/// -
-///
Int
-///
-/// -
-///
Int8, Int16, Int32, Int64
-///
-/// -
-///
Float
-///
-/// -
-///
Double
-///
-/// -
-///
Bool
-///
-/// -
-///
Date, NSDate
-///
-/// -
-///
Data, NSData
-///
-/// -
-///
RealmOptional for optional numeric properties
-///
-/// -
-///
Object subclasses, to model many-to-one relationships
-///
-/// -
-///
List, to model many-to-many relationships
-///
-///
-/// String, NSString, Date, NSDate, Data, NSData and Object subclass properties can be declared as optional.
-/// Int, Int8, Int16, Int32, Int64, Float, Double, Bool, and List properties cannot. To store an optional
-/// number, use RealmOptional, RealmOptional, RealmOptional, or RealmOptional instead,
-/// which wraps an optional numeric value.
-/// All property types except for List and RealmOptional must be declared as @objc dynamic var. List and
-/// RealmOptional properties must be declared as non-dynamic let properties. Swift lazy properties are not allowed.
-/// Note that none of the restrictions listed above apply to properties that are configured to be ignored by Realm.
-/// Querying
-/// You can retrieve all objects of a given type from a Realm by calling the objects(_:) instance method.
-/// Relationships
-/// See our Cocoa guide for more details.
-SWIFT_CLASS_NAMED("Object")
-@interface RealmSwiftObject : RLMObjectBase
-/// Creates an unmanaged instance of a Realm object.
-/// Call add(_:) on a Realm instance to add an unmanaged object into that Realm.
-///
-/// -
-/// see:
Realm().add(_:)
-///
-///
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-/// Indicates if the object can no longer be accessed because it is now invalid.
-/// An object can no longer be accessed if the object has been deleted from the Realm that manages it, or if
-/// invalidate() is called on that Realm.
-@property (nonatomic, readonly, getter=isInvalidated) BOOL invalidated;
-/// A human-readable description of the object.
-@property (nonatomic, readonly, copy) NSString * _Nonnull description;
-/// WARNING: This is an internal helper method not intended for public use.
-/// It is not considered part of the public API.
-/// :nodoc:
-+ (Class _Nonnull)objectUtilClass:(BOOL)isSwift SWIFT_WARN_UNUSED_RESULT;
-/// Override this method to specify the name of a property to be used as the primary key.
-/// Only properties of types 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 minor overhead. Indexes are created
-/// automatically for primary key properties.
-///
-/// returns:
-/// The name of the property designated as the primary key, or nil if the model has no primary key.
-+ (NSString * _Nullable)primaryKey SWIFT_WARN_UNUSED_RESULT;
-/// Override this method to specify the names of properties to ignore. These properties will not be managed by
-/// the Realm that manages the object.
-///
-/// returns:
-/// An array of property names to ignore.
-+ (NSArray * _Nonnull)ignoredProperties SWIFT_WARN_UNUSED_RESULT;
-/// Returns an array of property names for properties which should be indexed.
-/// Only string, integer, boolean, Date, and NSDate properties are supported.
-///
-/// returns:
-/// An array of property names.
-+ (NSArray * _Nonnull)indexedProperties SWIFT_WARN_UNUSED_RESULT;
-- (id _Nullable)objectForKeyedSubscript:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT;
-- (void)setObject:(id _Nullable)value forKeyedSubscript:(NSString * _Nonnull)key;
-/// 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;
-@end
-
-
-/// An object which describes class-wide permissions.
-/// An instance of this object is automatically created in the Realm for class in your schema,
-/// and should not be created manually.
-SWIFT_CLASS_NAMED("ClassPermission")
-@interface RealmSwiftClassPermission : RealmSwiftObject
-/// The name of the class which these permissions apply to.
-@property (nonatomic, copy) NSString * _Nonnull name;
-/// :nodoc:
-+ (NSString * _Nonnull)_realmObjectName SWIFT_WARN_UNUSED_RESULT;
-/// :nodoc:
-+ (NSString * _Nonnull)primaryKey SWIFT_WARN_UNUSED_RESULT;
-- (nonnull instancetype)init 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
-
-
-/// Object interface which allows untyped getters and setters for Objects.
-/// :nodoc:
-SWIFT_CLASS("_TtC10RealmSwift13DynamicObject")
-@interface DynamicObject : RealmSwiftObject
-- (id _Nullable)objectForKeyedSubscript:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT;
-- (void)setObject:(id _Nullable)value forKeyedSubscript:(NSString * _Nonnull)key;
-/// :nodoc:
-- (id _Nullable)valueForUndefinedKey:(NSString * _Nonnull)key SWIFT_WARN_UNUSED_RESULT;
-/// :nodoc:
-- (void)setValue:(id _Nullable)value forUndefinedKey:(NSString * _Nonnull)key;
-/// :nodoc:
-+ (BOOL)shouldIncludeInDefaultSchema SWIFT_WARN_UNUSED_RESULT;
-- (nonnull instancetype)init 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
-
-
-SWIFT_CLASS("_TtC10RealmSwift36KeyValueObservationNotificationToken")
-@interface KeyValueObservationNotificationToken : RLMNotificationToken
-- (void)invalidate;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_DEPRECATED_MSG("-init is unavailable");
-@end
-
-
-/// :nodoc:
-/// Internal class. Do not use directly. Used for reflection and initialization
-SWIFT_CLASS("_TtC10RealmSwift18LinkingObjectsBase")
-@interface LinkingObjectsBase : NSObject
-- (NSInteger)countByEnumeratingWithState:(NSFastEnumerationState * _Nonnull)state objects:(id _Nullable * _Nonnull)buffer count:(NSInteger)len SWIFT_WARN_UNUSED_RESULT;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_DEPRECATED_MSG("-init is unavailable");
-@end
-
-
-/// :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;
-- (nonnull instancetype)initWithArray:(RLMArray * _Nonnull)array OBJC_DESIGNATED_INITIALIZER;
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-@end
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/// :nodoc:
-/// Internal class. Do not use directly.
-SWIFT_CLASS_NAMED("ObjectUtil")
-@interface RealmSwiftObjectUtil : NSObject
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-@end
-
-@class RealmSwiftPermissionRole;
-
-/// A permission which can be applied to a Realm, Class, or specific Object.
-/// Permissions are applied by adding the permission to the RealmPermission singleton
-/// object, the ClassPermission object for the desired class, or to a user-defined
-/// List property on a specific Object instance. The meaning of each of
-/// the properties of Permission depend on what the permission is applied to, and so are
-/// left undocumented here. See RealmPrivileges, ClassPrivileges, and
-/// ObjectPrivileges for details about what each of the properties mean when applied to
-/// that type.
-SWIFT_CLASS_NAMED("Permission")
-@interface RealmSwiftPermission : RealmSwiftObject
-/// The Role which this Permission applies to. All users within the Role are
-/// granted the permissions specified by the fields below any
-/// objects/classes/realms which use this Permission.
-/// This property cannot be modified once set.
-@property (nonatomic, strong) RealmSwiftPermissionRole * _Nullable role;
-/// Whether the user can read the object to which this Permission is attached.
-@property (nonatomic) BOOL canRead;
-/// Whether the user can modify the object to which this Permission is attached.
-@property (nonatomic) BOOL canUpdate;
-/// Whether the user can delete the object to which this Permission is attached.
-/// This field is only applicable to Permissions attached to Objects, and not
-/// to Realms or Classes.
-@property (nonatomic) BOOL canDelete;
-/// Whether the user can add or modify Permissions for the object which this
-/// Permission is attached to.
-@property (nonatomic) BOOL canSetPermissions;
-/// Whether the user can subscribe to queries for this object type.
-/// This field is only applicable to Permissions attached to Classes, and not
-/// to Realms or Objects.
-@property (nonatomic) BOOL canQuery;
-/// Whether the user can create new objects of the type this Permission is attached to.
-/// This field is only applicable to Permissions attached to Classes, and not
-/// to Realms or Objects.
-@property (nonatomic) BOOL canCreate;
-/// Whether the user can modify the schema of the Realm which this
-/// Permission is attached to.
-/// This field is only applicable to Permissions attached to Realms, and not
-/// to Realms or Objects.
-@property (nonatomic) BOOL canModifySchema;
-/// :nodoc:
-+ (NSString * _Nonnull)_realmObjectName SWIFT_WARN_UNUSED_RESULT;
-- (nonnull instancetype)init 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
-
-
-/// A Role within the permissions system.
-/// A Role consists of a name for the role and a list of users which are members of the role.
-/// Roles are granted privileges on Realms, Classes and Objects, and in turn grant those
-/// privileges to all users which are members of the role.
-/// A role named “everyone” is automatically created in new Realms, and all new users which
-/// connect to the Realm are automatically added to it. Any other roles you wish to use are
-/// managed as normal Realm objects.
-SWIFT_CLASS_NAMED("PermissionRole")
-@interface RealmSwiftPermissionRole : RealmSwiftObject
-/// The name of the Role
-@property (nonatomic, copy) NSString * _Nonnull name;
-/// :nodoc:
-+ (NSString * _Nonnull)_realmObjectName SWIFT_WARN_UNUSED_RESULT;
-/// :nodoc:
-+ (NSString * _Nonnull)primaryKey SWIFT_WARN_UNUSED_RESULT;
-/// :nodoc:
-+ (NSDictionary * _Nonnull)_realmColumnNames SWIFT_WARN_UNUSED_RESULT;
-- (nonnull instancetype)init 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
-
-
-/// A representation of a sync user within the permissions system.
-/// PermissionUser objects are created automatically for each sync user which connects to
-/// a Realm, and can also be created manually if you wish to grant permissions to a user
-/// which has not yet connected to this Realm. When creating a PermissionUser manually, you
-/// must also manually add it to the “everyone” Role.
-SWIFT_CLASS_NAMED("PermissionUser")
-@interface RealmSwiftPermissionUser : RealmSwiftObject
-/// The unique Realm Object Server user ID string identifying this user. This will
-/// have the same value as SyncUser.identity
-@property (nonatomic, copy) NSString * _Nonnull identity;
-/// The user’s private role. This will be initialized to a role named for the user’s
-/// identity that contains this user as its only member.
-@property (nonatomic, strong) RealmSwiftPermissionRole * _Nullable role;
-/// :nodoc:
-+ (NSString * _Nonnull)_realmObjectName SWIFT_WARN_UNUSED_RESULT;
-/// :nodoc:
-+ (NSString * _Nonnull)primaryKey SWIFT_WARN_UNUSED_RESULT;
-/// :nodoc:
-+ (NSDictionary * _Nonnull)_realmColumnNames SWIFT_WARN_UNUSED_RESULT;
-- (nonnull instancetype)init 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
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-/// A singleton object which describes Realm-wide permissions.
-/// An object of this type is automatically created in the Realm for you, and more objects
-/// cannot be created manually.
-/// See RealmPrivileges for the meaning of permissions applied to a Realm.
-SWIFT_CLASS_NAMED("RealmPermission")
-@interface RealmSwiftRealmPermission : RealmSwiftObject
-/// :nodoc:
-+ (NSString * _Nonnull)_realmObjectName SWIFT_WARN_UNUSED_RESULT;
-/// :nodoc:
-+ (NSString * _Nonnull)primaryKey SWIFT_WARN_UNUSED_RESULT;
-- (nonnull instancetype)init 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
-
-#if __has_attribute(external_source_symbol)
-# pragma clang attribute pop
-#endif
-#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 aadd350..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 d6ee1d3..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 5742239..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Modules/module.modulemap
+++ /dev/null
@@ -1,4 +0,0 @@
-framework module RealmSwift {
- header "RealmSwift-Swift.h"
- requires objc
-}
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 f98e609..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 1e1c575..0000000
--- a/Carthage/Build/Mac/RealmSwift.framework/Versions/A/Resources/Info.plist
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
- BuildMachineOSBuild
- 18D109
- CFBundleDevelopmentRegion
- English
- CFBundleExecutable
- RealmSwift
- CFBundleIdentifier
- io.realm.RealmSwit
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundleName
- RealmSwift
- CFBundlePackageType
- FMWK
- CFBundleShortVersionString
- 3.16.1
- CFBundleSignature
- ????
- CFBundleSupportedPlatforms
-
- MacOSX
-
- CFBundleVersion
- 3.16.1
- DTCompiler
- com.apple.compilers.llvm.clang.1_0
- DTPlatformBuild
- 10E1001
- DTPlatformVersion
- GM
- DTSDKBuild
- 18E219
- DTSDKName
- macosx10.14
- DTXcode
- 1020
- DTXcodeBuild
- 10E1001
- 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/35E595E4-F57C-3EF8-A6DC-C073DF4E4BCD.bcsymbolmap b/Carthage/Build/iOS/35E595E4-F57C-3EF8-A6DC-C073DF4E4BCD.bcsymbolmap
deleted file mode 100644
index b884289..0000000
--- a/Carthage/Build/iOS/35E595E4-F57C-3EF8-A6DC-C073DF4E4BCD.bcsymbolmap
+++ /dev/null
@@ -1,4449 +0,0 @@
-BCSymbolMap Version: 2.0
-_$s10RealmSwift0A0C13ConfigurationV012fromRLMRealmC0yAESo0eC0CFZ
-_$s10RealmSwift14LinkingObjectsC6sorted9byKeyPath9ascendingAA7ResultsCyxGSS_SbtFfA0_
-_$s10RealmSwift4ListC6sorted9byKeyPath9ascendingAA7ResultsCyxGSS_SbtFfA0_
-_$s10RealmSwift4ListC11removeFirstyySiFfA_
-_$s10RealmSwift4ListC10removeLastyySiFfA_
-_$s10RealmSwift18schemaVersionAtURL_13encryptionKeys6UInt64V10Foundation0F0V_AF4DataVSgtKFfA0_
-_$s10RealmSwift0A0C16performMigration3foryAC13ConfigurationV_tKFZfA_
-_$s10RealmSwift0A8OptionalCyACyxGxSgcfcfA_
-_$s10RealmSwift0A0C9asyncOpen13configuration13callbackQueue0F0yAC13ConfigurationV_So17OS_dispatch_queueCyACSg_s5Error_pSgtctFZfA0_
-_$s10RealmSwift0A0C11commitWrite16withoutNotifyingySaySo20RLMNotificationTokenCG_tKFfA_
-_$s10RealmSwift0A0C3add_6updateyAA6ObjectC_AC12UpdatePolicyOtFfA0_
-_$s10RealmSwift0A0C3add_6updateyx_AC12UpdatePolicyOtSTRzAA6ObjectC7ElementRczlFfA0_
-_$s10RealmSwift0A0C6create_5value6updatexxm_ypAC12UpdatePolicyOtAA6ObjectCRbzlFfA0_
-_$s10RealmSwift0A0C6create_5value6updatexxm_ypAC12UpdatePolicyOtAA6ObjectCRbzlFfA1_
-_$s10RealmSwift0A0C13dynamicCreate_5value6updateAA13DynamicObjectCSS_ypAC12UpdatePolicyOtFfA0_
-_$s10RealmSwift0A0C13dynamicCreate_5value6updateAA13DynamicObjectCSS_ypAC12UpdatePolicyOtFfA1_
-_$s10RealmSwift0A0C9writeCopy6toFile13encryptionKeyy10Foundation3URLV_AG4DataVSgtKFfA0_
-_$s10RealmSwift0A10CollectionPAASL7ElementRpzrlE6sorted9ascendingAA7ResultsCyAEGSb_tFfA_
-_$s10RealmSwift0A10CollectionPA2A16OptionalProtocol7ElementRpzSLAE_7WrappedAaDPRPzrlE6sorted9ascendingAA7ResultsCyAFGSb_tFfA_
-_$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA_
-_$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA0_
-_$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA2_
-_$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA3_
-_$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA4_
-_$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA5_
-_$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA6_
-_$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA7_
-_$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA8_
-_$s10RealmSwift7ResultsC6sorted9byKeyPath9ascendingACyxGSS_SbtFfA0_
-_$s10RealmSwift14SortDescriptorV7keyPath9ascendingACSS_SbtcfcfA0_
-_$s10RealmSwift14SortDescriptorV8property9ascendingACSS_SbtcfcfA0_
-_$s10RealmSwift17SyncConfigurationV4user8realmURL19enableSSLValidation9isPartial9urlPrefixACSo11RLMSyncUserC_10Foundation0G0VS2bSSSgtcfcfA1_
-_$s10RealmSwift17SyncConfigurationV4user8realmURL19enableSSLValidation9isPartial9urlPrefixACSo11RLMSyncUserC_10Foundation0G0VS2bSSSgtcfcfA2_
-_$s10RealmSwift17SyncConfigurationV4user8realmURL19enableSSLValidation9isPartial9urlPrefixACSo11RLMSyncUserC_10Foundation0G0VS2bSSSgtcfcfA3_
-_$s10RealmSwift15SyncCredentialsV11customToken8provider8userInfoACSS_So19RLMIdentityProvideraSDySSypGtcfcfA1_
-_$s10RealmSwift15SyncCredentialsV16usernamePassword0E08password8registerACSS_SSSbtFZfA1_
-_$s10RealmSwift15SyncCredentialsV8nickname_7isAdminACSS_SbtFZfA0_
-_$sSo11RLMSyncUserC10RealmSwiftE5logIn4with6server7timeout13callbackQueue12onCompletionyAC15SyncCredentialsV_10Foundation3URLVSdSo17OS_dispatch_queueCyABSg_s5Error_pSgtctFZfA1_
-_$sSo11RLMSyncUserC10RealmSwiftE014createOfferForC02at11accessLevel10expiration8callbacky10Foundation3URLV_So0a6AccessJ0VAI4DateVSgySSSg_SC0A15PermissionErrorLeVSgtctFfA1_
-_$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization19enableSSLValidation9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_S2bSSSgtFfA_
-_$s10RealmSwift0A0C13ConfigurationV05_syncC033_2D67F61F8873BB464715B514E644CA8ALLAA04SyncC0VSgvpfiTm
-_$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization19enableSSLValidation9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_S2bSSSgtFfA0_
-_$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization19enableSSLValidation9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_S2bSSSgtFfA1_
-_$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization19enableSSLValidation9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_S2bSSSgtFfA2_
-_$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization22serverValidationPolicy9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_SbAC06ServerkL0OSSSgtFfA0_
-_$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization22serverValidationPolicy9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_SbAC06ServerkL0OSSSgtFfA2_
-_$s10RealmSwift14SortDescriptorV12sortProperty9ascendingACSo017RLMSyncPermissioncF0a_SbtcfcfA0_
-_$s10RealmSwift7ResultsCAASo17RLMSyncPermissionCRszrlE6sorted14bySortProperty9ascendingACyAEGSo0dehI0a_SbtFfA0_
-_$s10RealmSwift16SyncSubscriptionC7observe_7options_So20RLMNotificationTokenCs7KeyPathCyACyxGAA0cD5StateOG_So26NSKeyValueObservingOptionsVyALctFfA0_
-_$s10RealmSwift7ResultsC9subscribe5named5limit6update10timeToLive23includingLinkingObjectsAA16SyncSubscriptionCyxGSSSg_SiSgSbSdSgSaySSGtFfA_
-_$s10RealmSwift7ResultsC9subscribe5named5limit6update10timeToLive23includingLinkingObjectsAA16SyncSubscriptionCyxGSSSg_SiSgSbSdSgSaySSGtFfA0_
-_$s10RealmSwift7ResultsC9subscribe5named5limit6update10timeToLive23includingLinkingObjectsAA16SyncSubscriptionCyxGSSSg_SiSgSbSdSgSaySSGtFfA1_
-_$s10RealmSwift7ResultsC9subscribe5named5limit6update10timeToLive23includingLinkingObjectsAA16SyncSubscriptionCyxGSSSg_SiSgSbSdSgSaySSGtFfA2_
-_$s10RealmSwift7ResultsC9subscribe5named5limit6update10timeToLive23includingLinkingObjectsAA16SyncSubscriptionCyxGSSSg_SiSgSbSdSgSaySSGtFfA3_
-_$s10RealmSwift14PermissionRoleC5usersAA4ListCyAA0C4UserCGvpfiTm
-_$sSo12RLMSyncErrorVSQSCSQ2eeoiySbx_xtFZTW
-_$sSo12RLMSyncErrorVSYSCSY8rawValuexSg03RawD0Qz_tcfCTW
-_$sSo12RLMSyncErrorVSYSCSY8rawValue03RawD0QzvgTW
-_$sSC12RLMSyncErrorLeVs0B0SCsACP7_domainSSvgTW
-_$sSC12RLMSyncErrorLeVs0B0SCsACP5_codeSivgTW
-_$sSC12RLMSyncErrorLeVs0B0SCsACP9_userInfoyXlSgvgTW
-_$sSC12RLMSyncErrorLeVs0B0SCsACP19_getEmbeddedNSErroryXlSgyFTW
-_$sSC12RLMSyncErrorLeV10Foundation13CustomNSErrorSCAcDP11errorDomainSSvgZTW
-_$sSC12RLMSyncErrorLeV10Foundation13CustomNSErrorSCAcDP9errorCodeSivgTW
-_$sSC12RLMSyncErrorLeV10Foundation13CustomNSErrorSCAcDP13errorUserInfoSDySSypGvgTW
-_$sSC12RLMSyncErrorLeV10Foundation021_ObjectiveCBridgeableB0SCAcDP15_bridgedNSErrorxSgSo0G0Ch_tcfCTW
-_$sSC12RLMSyncErrorLeVSQSCSQ2eeoiySbx_xtFZTW
-_$sSC12RLMSyncErrorLeVSHSCSH9hashValueSivgTW
-_$sSC12RLMSyncErrorLeVSHSCSH4hash4intoys6HasherVz_tFTW
-_$sSC12RLMSyncErrorLeVSHSCSH13_rawHashValue4seedS2i_tFTW
-_$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSCAcDP03_nsB0So0F0CvgTW
-_$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSCAcDP03_nsB0xSo0F0C_tcfCTW
-_$sSC8RLMErrorLeVs5ErrorSCsACP7_domainSSvgTW
-_$sSC8RLMErrorLeVs5ErrorSCsACP5_codeSivgTW
-_$sSC8RLMErrorLeVs5ErrorSCsACP19_getEmbeddedNSErroryXlSgyFTW
-_$sSC8RLMErrorLeV10Foundation13CustomNSErrorSCAcDP11errorDomainSSvgZTW
-_$sSC8RLMErrorLeV10Foundation13CustomNSErrorSCAcDP9errorCodeSivgTW
-_$sSC8RLMErrorLeV10Foundation13CustomNSErrorSCAcDP13errorUserInfoSDySSypGvgTW
-_$sSC8RLMErrorLeV10Foundation26_ObjectiveCBridgeableErrorSCAcDP15_bridgedNSErrorxSgSo0G0Ch_tcfCTW
-_$sSC8RLMErrorLeVSQSCSQ2eeoiySbx_xtFZTW
-_$sSC8RLMErrorLeVSHSCSH9hashValueSivgTW
-_$sSC8RLMErrorLeVSHSCSH4hash4intoys6HasherVz_tFTW
-_$sSC8RLMErrorLeVSHSCSH13_rawHashValue4seedS2i_tFTW
-_$sSo19RLMIdentityProvideras35_HasCustomAnyHashableRepresentationSCsACP03_todeF0s0eF0VSgyFTW
-_$sSo15RLMNotificationaSQSCSQ2eeoiySbx_xtFZTW
-_$sSo15RLMNotificationaSYSCSY8rawValuexSg03RawC0Qz_tcfCTW
-_$sSo15RLMNotificationaSYSCSY8rawValue03RawC0QzvgTW
-_$sSo15RLMNotificationas21_ObjectiveCBridgeableSCsACP09_bridgeToB1C01_B5CTypeQzyFTW
-_$sSo15RLMNotificationas21_ObjectiveCBridgeableSCsACP016_forceBridgeFromB1C_6resulty01_B5CTypeQz_xSgztFZTW
-_$sSo15RLMNotificationas21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromB1C_6resultSb01_B5CTypeQz_xSgztFZTW
-_$sSo15RLMNotificationas21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromB1Cyx01_B5CTypeQzSgFZTW
-_$sSo15RLMNotificationas35_HasCustomAnyHashableRepresentationSCsACP03_tocdE0s0dE0VSgyFTW
-_$sSC16RLMSyncAuthErrorLeVs0C0SCsACP7_domainSSvgTW
-_$sSC12RLMSyncErrorLeVs0B0SCsACP7_domainSSvgTWTm
-_$sSC16RLMSyncAuthErrorLeVs0C0SCsACP5_codeSivgTW
-_$sSC16RLMSyncAuthErrorLeVs0C0SCsACP19_getEmbeddedNSErroryXlSgyFTW
-_$sSC16RLMSyncAuthErrorLeV10Foundation13CustomNSErrorSCAcDP11errorDomainSSvgZTW
-_$sSC16RLMSyncAuthErrorLeV10Foundation13CustomNSErrorSCAcDP9errorCodeSivgTW
-_$sSC16RLMSyncAuthErrorLeV10Foundation13CustomNSErrorSCAcDP13errorUserInfoSDySSypGvgTW
-_$sSC16RLMSyncAuthErrorLeV10Foundation021_ObjectiveCBridgeableC0SCAcDP15_bridgedNSErrorxSgSo0H0Ch_tcfCTW
-_$sSC12RLMSyncErrorLeV10Foundation021_ObjectiveCBridgeableB0SCAcDP15_bridgedNSErrorxSgSo0G0Ch_tcfCTWTm
-_$sSC16RLMSyncAuthErrorLeVSQSCSQ2eeoiySbx_xtFZTW
-_$sSC12RLMSyncErrorLeVSQSCSQ2eeoiySbx_xtFZTWTm
-_$sSC16RLMSyncAuthErrorLeVSHSCSH9hashValueSivgTW
-_$sSC12RLMSyncErrorLeVSHSCSH9hashValueSivgTWTm
-_$sSC16RLMSyncAuthErrorLeVSHSCSH4hash4intoys6HasherVz_tFTW
-_$sSC12RLMSyncErrorLeVSHSCSH4hash4intoys6HasherVz_tFTWTm
-_$sSC16RLMSyncAuthErrorLeVSHSCSH13_rawHashValue4seedS2i_tFTW
-_$sSC12RLMSyncErrorLeVSHSCSH13_rawHashValue4seedS2i_tFTWTm
-_$sSo17NSMatchingOptionsVSQSCSQ2eeoiySbx_xtFZTW
-_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACPxycfCTW
-_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW
-_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW
-_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW
-_$sSo17NSMatchingOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW
-_$sSo15RLMNotificationaSHSCSH9hashValueSivgTW
-_$sSo15RLMNotificationas21_ObjectiveCBridgeableSCsACP09_bridgeToB1C01_B5CTypeQzyFTWTm
-_$sSo15RLMNotificationaSHSCSH4hash4intoys6HasherVz_tFTW
-_$sSo15RLMNotificationaSHSCSH13_rawHashValue4seedS2i_tFTW
-_$sSSSHsSH9hashValueSivgTW
-_$sSSSHsSH4hash4intoys6HasherVz_tFTW
-_$sSuSzsSz1aoiyxx_xtFZTW
-_$sSus35_ExpressibleByBuiltinIntegerLiteralssAAP08_builtindE0xBI_tcfCTW
-_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCs11AnyHashableV_ypTgq5Tf4gd_n
-_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_ypTgq5Tf4gd_n
-_$s10RealmSwift16SyncSubscriptionC7observe_7options_So20RLMNotificationTokenCs7KeyPathCyACyxGAA0cD5StateOG_So26NSKeyValueObservingOptionsVyALctFfA0_Tf4_n
-_$sSo19RLMIdentityProvideraMa
-_$sSo17RLMSyncStopPolicyVMa
-_$sSo8RLMErrorVMa
-_$sSC8RLMErrorLeVMa
-_$sSo24RLMSyncSubscriptionStateVMa
-_$sSC12RLMSyncErrorLeVMa
-_$sSo19RLMIdentityProvideras20_SwiftNewtypeWrapperSCSYWb
-_$sSo19RLMIdentityProvideras20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb
-_$sSo19RLMIdentityProvideraSHSCSQWb
-_$sSo8RLMErrorV10Foundation18_ErrorCodeProtocolSCSQWb
-_$sSo8RLMErrorV10Foundation18_ErrorCodeProtocolSC01_C4TypeAcDP_AC21_BridgedStoredNSErrorPWT
-_$sSC12RLMSyncErrorLeVSHSCSQWb
-_$sSC12RLMSyncErrorLeV10Foundation021_ObjectiveCBridgeableB0SCs0B0PWb
-_$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSCAC06CustomF0PWb
-_$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSCAC021_ObjectiveCBridgeableB0PWb
-_$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSCSHWb
-_$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_AC01_bG8ProtocolPWT
-_$sSo12RLMSyncErrorVMa
-_$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_SYWT
-_$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_8RawValueSYs17FixedWidthIntegerPWT
-_$sSo12RLMSyncErrorV10Foundation01_B12CodeProtocolSCSQWb
-_$sSo12RLMSyncErrorV10Foundation01_B12CodeProtocolSC01_B4TypeAcDP_AC21_BridgedStoredNSErrorPWT
-_$sSC8RLMErrorLeVSHSCSQWb
-_$sSC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSCAC06CustomE0PWb
-_$sSC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSCAC26_ObjectiveCBridgeableErrorPWb
-_$sSC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSCSHWb
-_$sSC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_AC06_ErrorF8ProtocolPWT
-_$sSC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_SYWT
-_$sSC8RLMErrorLeV10Foundation13CustomNSErrorSCs5ErrorPWb
-_$sSSSgWOe
-_$sypWOc
-_$sSS_yptWOh
-___swift_destroy_boxed_opaque_existential_0
-_$sypWOb
-_$ss11AnyHashableVWOc
-_$ss11AnyHashableV_yptWOh
-_$ss11AnyHashableVWOh
-_$sSo15RLMNotificationaMa
-_$sSC16RLMSyncAuthErrorLeVMa
-_$sSC22RLMSyncPermissionErrorLeVMa
-_$sSo15RLMNotificationas20_SwiftNewtypeWrapperSCSYWb
-_$sSo15RLMNotificationas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentationPWb
-_$sSo15RLMNotificationaSHSCSQWb
-_$sSC16RLMSyncAuthErrorLeVSHSCSQWb
-_$sSC16RLMSyncAuthErrorLeV10Foundation021_ObjectiveCBridgeableC0SCs0C0PWb
-_$sSC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSCAC06CustomG0PWb
-_$sSC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSCAC021_ObjectiveCBridgeableC0PWb
-_$sSC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSCSHWb
-_$sSC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_AC01_cH8ProtocolPWT
-_$sSo16RLMSyncAuthErrorVMa
-_$sSo19RLMIdentityProvideraMaTm
-_$sSC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_SYWT
-_$sSo16RLMSyncAuthErrorV10Foundation01_C12CodeProtocolSCSQWb
-_$sSo16RLMSyncAuthErrorV10Foundation01_C12CodeProtocolSC01_C4TypeAcDP_AC21_BridgedStoredNSErrorPWT
-_$sSo19RLMIdentityProvideras20_SwiftNewtypeWrapperSCSYWbTm
-_$sSC12RLMSyncErrorLeV10Foundation13CustomNSErrorSCs0B0PWb
-_$sSC8RLMErrorLeV10Foundation26_ObjectiveCBridgeableErrorSCs0E0PWb
-_$sSC16RLMSyncAuthErrorLeV10Foundation13CustomNSErrorSCs0C0PWb
-_$sSo26NSRegularExpressionOptionsVs10SetAlgebraSCsACP12intersectionyxxFTW
-_$sSo19RLMIdentityProvideras21_ObjectiveCBridgeableSCsACP09_bridgeToC1C01_C5CTypeQzyFTW
-_$sSo19RLMIdentityProvideraSHSCSH9hashValueSivgTW
-_$sSo8RLMErrorVSYSCSY8rawValuexSg03RawC0Qz_tcfCTW
-_$sSo16RLMSyncAuthErrorVSYSCSY8rawValuexSg03RawE0Qz_tcfCTW
-_$sSC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSCAcDP8_nsErrorSo0E0CvgTW
-_$sSC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSCAcDP03_nsC0So0G0CvgTW
-_$s10RealmSwift9MigrationV6create_5valueAA13DynamicObjectCSS_yptFfA0_
-_$s10RealmSwift0A0C13dynamicCreate_5value6updateAA13DynamicObjectCSS_ypSbtFfA0_
-_$s10RealmSwift0A0C9asyncOpen13configuration13callbackQueue0F0yAC13ConfigurationV_So17OS_dispatch_queueCyACSg_s5Error_pSgtctFZfA_
-_$sSo26NSRegularExpressionOptionsVs10SetAlgebraSCsACP16formIntersectionyyxFTW
-_$s10RealmSwift0A0C6create_5value6updatexxm_ypSbtAA6ObjectCRbzlFfA0_
-_$sSo26NSRegularExpressionOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW
-_$sSo22NSStringCompareOptionsVs10SetAlgebraSCsACP6insertySb8inserted_7ElementQz17memberAfterInserttAHnFTW
-_$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA1_
-_$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization22serverValidationPolicy9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_SbAC06ServerkL0OSSSgtFfA_
-_$sSC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_8RawValueSYs17FixedWidthIntegerPWT
-_$sSC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_8RawValueSYs17FixedWidthIntegerPWT
-_$sSo8RLMErrorVSQSCSQ2eeoiySbx_xtFZTW
-_$sSo16RLMSyncAuthErrorVSQSCSQ2eeoiySbx_xtFZTW
-_$sSo26NSRegularExpressionOptionsVSQSCSQ2eeoiySbx_xtFZTW
-_$sSuSQsSQ2eeoiySbx_xtFZTW
-_$sSo26NSRegularExpressionOptionsVs10SetAlgebraSCsACPxycfCTW
-_$sSo19RLMIdentityProvideraSHSCSH4hash4intoys6HasherVz_tFTW
-_$sSC8RLMErrorLeVs5ErrorSCsACP9_userInfoyXlSgvgTW
-_$sSC16RLMSyncAuthErrorLeVs0C0SCsACP9_userInfoyXlSgvgTW
-_$sSo19RLMIdentityProvideraSHSCSH13_rawHashValue4seedS2i_tFTW
-_$sSo26NSRegularExpressionOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW
-_$sSo22NSStringCompareOptionsVs10SetAlgebraSCsACP9formUnionyyxnFTW
-_$sSo19RLMIdentityProvideras21_ObjectiveCBridgeableSCsACP016_forceBridgeFromC1C_6resulty01_C5CTypeQz_xSgztFZTW
-_$sSo19RLMIdentityProvideras21_ObjectiveCBridgeableSCsACP024_conditionallyBridgeFromC1C_6resultSb01_C5CTypeQz_xSgztFZTW
-_$sSo19RLMIdentityProvideras21_ObjectiveCBridgeableSCsACP026_unconditionallyBridgeFromC1Cyx01_C5CTypeQzSgFZTW
-_$sSo19RLMIdentityProvideraSQSCSQ2eeoiySbx_xtFZTW
-_$sSo8RLMErrorVSYSCSY8rawValue03RawC0QzvgTW
-_$sSo16RLMSyncAuthErrorVSYSCSY8rawValue03RawE0QzvgTW
-___swift_destroy_boxed_opaque_existential_1
-_$sSC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSCAcDP8_nsErrorxSo0E0C_tcfCTW
-_$sSC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSCAcDP03_nsC0xSo0G0C_tcfCTW
-_$sSo19RLMIdentityProvideraSYSCSY8rawValuexSg03RawD0Qz_tcfCTW
-_$sSo19RLMIdentityProvideraSYSCSY8rawValue03RawD0QzvgTW
-_$sSo11RLMSyncUserC10RealmSwiftE5logIn4with6server7timeout13callbackQueue12onCompletionyAC15SyncCredentialsV_10Foundation3URLVSdSo17OS_dispatch_queueCyABSg_s5Error_pSgtctFZfA2_
-_globalinit_33_829865FB8449F422594F8390D58275B4_token0
-_globalinit_33_829865FB8449F422594F8390D58275B4_token1
-_globalinit_33_829865FB8449F422594F8390D58275B4_token2
-_globalinit_33_829865FB8449F422594F8390D58275B4_token3
-_globalinit_33_829865FB8449F422594F8390D58275B4_token4
-_globalinit_33_829865FB8449F422594F8390D58275B4_token5
-_globalinit_33_829865FB8449F422594F8390D58275B4_token6
-_globalinit_33_829865FB8449F422594F8390D58275B4_token7
-_globalinit_33_829865FB8449F422594F8390D58275B4_token8
-_globalinit_33_829865FB8449F422594F8390D58275B4_token9
-_globalinit_33_829865FB8449F422594F8390D58275B4_token10
-_globalinit_33_829865FB8449F422594F8390D58275B4_token11
-_$s10RealmSwift0A0C12NotificationO8rawValueAESgSS_tcfCTv_
-_$s10RealmSwift0A0C12NotificationOSYAASY8rawValuexSg03RawE0Qz_tcfCTWTv_
-_$sSDys11AnyHashableVypGML
-_$sSo17OS_dispatch_queueCML
-_$s10RealmSwift4ListCyAA14PermissionUserCGML
-_$s10RealmSwift14PermissionUserCAA6ObjectCAA0A15CollectionValueAAWL
-_$s10RealmSwift14LinkingObjectsCyAA14PermissionRoleCGML
-_$s10RealmSwift18LinkingObjectsBaseC16cachedRLMResults33_25CFEE8474EDA10420AA87D5D977CE22LLSo0G0CyyXlGSgvpWvd
-_$s10RealmSwift18LinkingObjectsBaseC6object33_25CFEE8474EDA10420AA87D5D977CE22LLSo19RLMWeakObjectHandleCSgvpWvd
-_$s10RealmSwift18LinkingObjectsBaseC8property33_25CFEE8474EDA10420AA87D5D977CE22LLSo11RLMPropertyCSgvpWvd
-_$s10RealmSwift18LinkingObjectsBaseC15objectClassNameSSvpWvd
-_$s10RealmSwift18LinkingObjectsBaseC12propertyNameSSvpWvd
-_$s10RealmSwift4ListCyAA10PermissionCGML
-_$s10RealmSwift10PermissionCAA6ObjectCAA0A15CollectionValueAAWL
-__swift_FORCE_LOAD_$_swiftFoundation_$_RealmSwift
-__swift_FORCE_LOAD_$_swiftDarwin_$_RealmSwift
-__swift_FORCE_LOAD_$_swiftObjectiveC_$_RealmSwift
-__swift_FORCE_LOAD_$_swiftCoreFoundation_$_RealmSwift
-__swift_FORCE_LOAD_$_swiftDispatch_$_RealmSwift
-__swift_FORCE_LOAD_$_swiftCoreGraphics_$_RealmSwift
-_$sSoMXM
-_$sSo19RLMIdentityProvideraMn
-_$sSo19RLMIdentityProvideraN
-_$sSo19RLMIdentityProvideraML
-_$sSo17RLMSyncStopPolicyVMn
-_$sSo17RLMSyncStopPolicyVN
-_$sSo17RLMSyncStopPolicyVML
-_$sSo8RLMErrorVMn
-_$sSo8RLMErrorVN
-_$sSo8RLMErrorVML
-_$sSCMXM
-_$sSC8RLMErrorLeVMn
-_$sSC8RLMErrorLeVN
-_$sSC8RLMErrorLeVML
-_$sSo24RLMSyncSubscriptionStateVMn
-_$sSo24RLMSyncSubscriptionStateVN
-_$sSo24RLMSyncSubscriptionStateVML
-_$sSC12RLMSyncErrorLeVMn
-_$sSC12RLMSyncErrorLeVN
-_$sSC12RLMSyncErrorLeVML
-_$sSo19RLMIdentityProvideraABSYSCWL
-_associated conformance So19RLMIdentityProvideras20_SwiftNewtypeWrapperSCSY
-_$sSo19RLMIdentityProvideraABs35_HasCustomAnyHashableRepresentationSCWL
-_associated conformance So19RLMIdentityProvideras20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentation
-_symbolic So8NSStringC
-_symbolic SS
-_$sSo19RLMIdentityProvideraABSQSCWL
-_associated conformance So19RLMIdentityProvideraSHSCSQ
-_symbolic Si
-_$sSo8RLMErrorVABSQSCWL
-_associated conformance So8RLMErrorV10Foundation18_ErrorCodeProtocolSCSQ
-_$sSC8RLMErrorLeVAB10Foundation21_BridgedStoredNSErrorSCWL
-_associated conformance So8RLMErrorV10Foundation18_ErrorCodeProtocolSC01_C4TypeAcDP_AC21_BridgedStoredNSError
-_symbolic SC8RLMErrorLeV
-_$sSC12RLMSyncErrorLeVABSQSCWL
-_associated conformance SC12RLMSyncErrorLeVSHSCSQ
-_$sSC12RLMSyncErrorLeVABs0B0SCWL
-_associated conformance SC12RLMSyncErrorLeV10Foundation021_ObjectiveCBridgeableB0SCs0B0
-_$sSC12RLMSyncErrorLeVAB10Foundation13CustomNSErrorSCWL
-_associated conformance SC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSCAC06CustomF0
-_$sSC12RLMSyncErrorLeVAB10Foundation021_ObjectiveCBridgeableB0SCWL
-_associated conformance SC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSCAC021_ObjectiveCBridgeableB0
-_$sSC12RLMSyncErrorLeVABSHSCWL
-_associated conformance SC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSCSH
-_$sSo12RLMSyncErrorVAB10Foundation01_B12CodeProtocolSCWL
-_$sSo12RLMSyncErrorVMn
-_$sSo12RLMSyncErrorVN
-_$sSo12RLMSyncErrorVML
-_associated conformance SC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_AC01_bG8Protocol
-_$sSo12RLMSyncErrorVABSYSCWL
-_associated conformance SC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_SY
-_$sS2is17FixedWidthIntegersWL
-_associated conformance SC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_8RawValueSYs17FixedWidthInteger
-_symbolic So12RLMSyncErrorV
-_$sSo12RLMSyncErrorVABSQSCWL
-_associated conformance So12RLMSyncErrorV10Foundation01_B12CodeProtocolSCSQ
-_$sSC12RLMSyncErrorLeVAB10Foundation21_BridgedStoredNSErrorSCWL
-_associated conformance So12RLMSyncErrorV10Foundation01_B12CodeProtocolSC01_B4TypeAcDP_AC21_BridgedStoredNSError
-_symbolic SC12RLMSyncErrorLeV
-_associated conformance SC12RLMSyncErrorLeV10Foundation13CustomNSErrorSCs0B0
-_$sSC8RLMErrorLeVABSQSCWL
-_associated conformance SC8RLMErrorLeVSHSCSQ
-_$sSC8RLMErrorLeVABs5ErrorSCWL
-_associated conformance SC8RLMErrorLeV10Foundation26_ObjectiveCBridgeableErrorSCs0E0
-_$sSC8RLMErrorLeVAB10Foundation13CustomNSErrorSCWL
-_associated conformance SC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSCAC06CustomE0
-_$sSC8RLMErrorLeVAB10Foundation26_ObjectiveCBridgeableErrorSCWL
-_associated conformance SC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSCAC26_ObjectiveCBridgeableError
-_$sSC8RLMErrorLeVABSHSCWL
-_associated conformance SC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSCSH
-_$sSo8RLMErrorVAB10Foundation18_ErrorCodeProtocolSCWL
-_associated conformance SC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_AC06_ErrorF8Protocol
-_$sSo8RLMErrorVABSYSCWL
-_associated conformance SC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_SY
-_associated conformance SC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_8RawValueSYs17FixedWidthInteger
-_symbolic So8RLMErrorV
-_associated conformance SC8RLMErrorLeV10Foundation13CustomNSErrorSCs5Error
-_$sSo19RLMIdentityProvideraABSHSCWL
-_$sSo19RLMIdentityProvideraABs20_SwiftNewtypeWrapperSCWL
-_$ss18_DictionaryStorageCySSypGML
-_$ss18_DictionaryStorageCys11AnyHashableVypGML
-_$sSo15RLMNotificationaMn
-_$sSo15RLMNotificationaN
-_$sSo15RLMNotificationaML
-_$sSC16RLMSyncAuthErrorLeVMn
-_$sSC16RLMSyncAuthErrorLeVN
-_$sSC16RLMSyncAuthErrorLeVML
-_$sSC22RLMSyncPermissionErrorLeVMn
-_$sSC22RLMSyncPermissionErrorLeVN
-_$sSC22RLMSyncPermissionErrorLeVML
-_$sSo15RLMNotificationaABSYSCWL
-_associated conformance So15RLMNotificationas20_SwiftNewtypeWrapperSCSY
-_$sSo15RLMNotificationaABs35_HasCustomAnyHashableRepresentationSCWL
-_associated conformance So15RLMNotificationas20_SwiftNewtypeWrapperSCs35_HasCustomAnyHashableRepresentation
-_$sSo15RLMNotificationaABSQSCWL
-_associated conformance So15RLMNotificationaSHSCSQ
-_$sSC16RLMSyncAuthErrorLeVABSQSCWL
-_associated conformance SC16RLMSyncAuthErrorLeVSHSCSQ
-_$sSC16RLMSyncAuthErrorLeVABs0C0SCWL
-_associated conformance SC16RLMSyncAuthErrorLeV10Foundation021_ObjectiveCBridgeableC0SCs0C0
-_$sSC16RLMSyncAuthErrorLeVAB10Foundation13CustomNSErrorSCWL
-_associated conformance SC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSCAC06CustomG0
-_$sSC16RLMSyncAuthErrorLeVAB10Foundation021_ObjectiveCBridgeableC0SCWL
-_associated conformance SC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSCAC021_ObjectiveCBridgeableC0
-_$sSC16RLMSyncAuthErrorLeVABSHSCWL
-_associated conformance SC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSCSH
-_$sSo16RLMSyncAuthErrorVAB10Foundation01_C12CodeProtocolSCWL
-_$sSo16RLMSyncAuthErrorVMn
-_$sSo16RLMSyncAuthErrorVN
-_$sSo16RLMSyncAuthErrorVML
-_associated conformance SC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_AC01_cH8Protocol
-_$sSo16RLMSyncAuthErrorVABSYSCWL
-_associated conformance SC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_SY
-_associated conformance SC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_8RawValueSYs17FixedWidthInteger
-_symbolic So16RLMSyncAuthErrorV
-_$sSo16RLMSyncAuthErrorVABSQSCWL
-_associated conformance So16RLMSyncAuthErrorV10Foundation01_C12CodeProtocolSCSQ
-_$sSC16RLMSyncAuthErrorLeVAB10Foundation21_BridgedStoredNSErrorSCWL
-_associated conformance So16RLMSyncAuthErrorV10Foundation01_C12CodeProtocolSC01_C4TypeAcDP_AC21_BridgedStoredNSError
-_symbolic SC16RLMSyncAuthErrorLeV
-_associated conformance SC16RLMSyncAuthErrorLeV10Foundation13CustomNSErrorSCs0C0
-_$sSo15RLMNotificationaABSHSCWL
-_$sSo15RLMNotificationaABs20_SwiftNewtypeWrapperSCWL
-_$sSo19RLMIdentityProvideras20_SwiftNewtypeWrapperSCMc
-_symbolic So19RLMIdentityProvidera
-_symbolic $ss21_ObjectiveCBridgeableP
-_$sSo19RLMIdentityProvideras21_ObjectiveCBridgeableSCMA
-_$sSo19RLMIdentityProvideras21_ObjectiveCBridgeableSCMc
-_$sSo19RLMIdentityProvideras35_HasCustomAnyHashableRepresentationSCMc
-_symbolic $ss16RawRepresentableP
-_$sSo19RLMIdentityProvideraSYSCMA
-_$sSo19RLMIdentityProvideraSYSCMc
-_$sSo19RLMIdentityProvideraSHSCMc
-_$sSo19RLMIdentityProvideraSQSCMc
-_$sSo8RLMErrorVSYSCMA
-_$sSo8RLMErrorVSYSCMc
-_$sSo8RLMErrorVSQSCMc
-_symbolic $s10Foundation18_ErrorCodeProtocolP
-_$sSo8RLMErrorV10Foundation18_ErrorCodeProtocolSCMA
-_$sSo8RLMErrorV10Foundation18_ErrorCodeProtocolSCMc
-_$sSC12RLMSyncErrorLeVSHSCMc
-_$sSC12RLMSyncErrorLeVs0B0SCMc
-_$sSC12RLMSyncErrorLeVSQSCMc
-_$sSC12RLMSyncErrorLeV10Foundation021_ObjectiveCBridgeableB0SCMc
-_symbolic $s10Foundation21_BridgedStoredNSErrorP
-_$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSCMA
-_$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSCMc
-_$sSo12RLMSyncErrorVSYSCMA
-_$sSo12RLMSyncErrorVSYSCMc
-_$sSo12RLMSyncErrorVSQSCMc
-_$sSo12RLMSyncErrorV10Foundation01_B12CodeProtocolSCMA
-_$sSo12RLMSyncErrorV10Foundation01_B12CodeProtocolSCMc
-_$sSC12RLMSyncErrorLeV10Foundation13CustomNSErrorSCMc
-_$sSC8RLMErrorLeVSHSCMc
-_$sSC8RLMErrorLeVs5ErrorSCMc
-_$sSC8RLMErrorLeVSQSCMc
-_$sSC8RLMErrorLeV10Foundation26_ObjectiveCBridgeableErrorSCMc
-_$sSC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSCMA
-_$sSC8RLMErrorLeV10Foundation21_BridgedStoredNSErrorSCMc
-_$sSC8RLMErrorLeV10Foundation13CustomNSErrorSCMc
-_$sSo15RLMNotificationas20_SwiftNewtypeWrapperSCMc
-_symbolic So15RLMNotificationa
-_$sSo15RLMNotificationas21_ObjectiveCBridgeableSCMA
-_$sSo15RLMNotificationas21_ObjectiveCBridgeableSCMc
-_$sSo15RLMNotificationas35_HasCustomAnyHashableRepresentationSCMc
-_$sSo15RLMNotificationaSYSCMA
-_$sSo15RLMNotificationaSYSCMc
-_$sSo15RLMNotificationaSHSCMc
-_$sSo15RLMNotificationaSQSCMc
-_$sSC16RLMSyncAuthErrorLeVSHSCMc
-_$sSC16RLMSyncAuthErrorLeVs0C0SCMc
-_$sSC16RLMSyncAuthErrorLeVSQSCMc
-_$sSC16RLMSyncAuthErrorLeV10Foundation021_ObjectiveCBridgeableC0SCMc
-_$sSC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSCMA
-_$sSC16RLMSyncAuthErrorLeV10Foundation21_BridgedStoredNSErrorSCMc
-_$sSo16RLMSyncAuthErrorVSYSCMA
-_$sSo16RLMSyncAuthErrorVSYSCMc
-_$sSo16RLMSyncAuthErrorVSQSCMc
-_$sSo16RLMSyncAuthErrorV10Foundation01_C12CodeProtocolSCMA
-_$sSo16RLMSyncAuthErrorV10Foundation01_C12CodeProtocolSCMc
-_$sSC16RLMSyncAuthErrorLeV10Foundation13CustomNSErrorSCMc
-___swift_reflection_version
-_$sSo19RLMIdentityProvideraMF
-_symbolic So7NSErrorC
-_$sSC8RLMErrorLeVMF
-_$sSC12RLMSyncErrorLeVMF
-_$sSo15RLMNotificationaMF
-_$sSC16RLMSyncAuthErrorLeVMF
-_symbolic SC22RLMSyncPermissionErrorLeV
-_$sSC22RLMSyncPermissionErrorLeVMF
-_$sSo12RLMSyncErrorVMB
-_$sSo8RLMErrorVMB
-_$sSo16RLMSyncAuthErrorVMB
-Apple LLVM version 10.0.1 (clang-1001.0.46.5)
-
-/Users/realm/workspace/cocoa-pipeline
-Apple Swift version 5.0.1 effective-4.1.50 (swiftlang-1001.0.82.4 clang-1001.0.46.5)
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Aliases.swift
-$sSo19RLMIdentityProvideras20_SwiftNewtypeWrapperSCSYWb
-
-$sSo19RLMIdentityProvideraABSYSCWl
-$sSo19RLMIdentityProvideraMa
-$ss11AnyHashableVWOh
-$ss11AnyHashableV_yptWOh
-$ss11AnyHashableVWOc
-$sypWOb
-__swift_destroy_boxed_opaque_existential_0
-$sSS_yptWOh
-$sypWOc
-$sSC12RLMSyncErrorLeV10Foundation21_BridgedStoredNSErrorSC4CodeAcDP_8RawValueSYs17FixedWidthIntegerPWT
-$sS2is17FixedWidthIntegersWl
-$s10RealmSwift16SyncSubscriptionC7observe_7options_So20RLMNotificationTokenCs7KeyPathCyACyxGAA0cD5StateOG_So26NSKeyValueObservingOptionsVyALctFfA0_Tf4_n
-Sync.swift
-/Users/realm/workspace/cocoa-pipeline/RealmSwift
-init
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSaySo26NSKeyValueObservingOptionsVG_Tgq5
-$sSiSQsSQ2eeoiySbx_xtFZTW
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTWSo26NSKeyValueObservingOptionsV_Tgq5
-$sSa9formIndex5afterySiz_tFSo26NSKeyValueObservingOptionsV_Tgq5
-insert
-formUnion
-$sSuSzsSz1ooiyxx_xtFZTW
-$sSayxGSlsSly7ElementQz5IndexQzcirTWSo26NSKeyValueObservingOptionsV_Tgq5
-$sSayxSicirSo26NSKeyValueObservingOptionsV_Tgq5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFSo26NSKeyValueObservingOptionsV_Tgq5
-$sSayxGSlsSl8endIndex0B0QzvgTWSo26NSKeyValueObservingOptionsV_Tgq5
-$sSa8endIndexSivgSo26NSKeyValueObservingOptionsV_Tgq5
-$sSa9_getCountSiyFSo26NSKeyValueObservingOptionsV_Tgq5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFSS_ypt_Tgq5
-$sSSSQsSQ2eeoiySbx_xtFZTW
-==
-$ss14_stringCompare__9expectingSbs11_StringGutsV_ADs01_D16ComparisonResultOtF
-$sSSSHsSH13_rawHashValue4seedS2i_tFTW
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtFSS_ypt_Tgq5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtFSS_ypt_Tgq5
-$ss18_DictionaryStorageCySSypGMa
-$sSa9_getCountSiyFSS_ypt_Tgq5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFs11AnyHashableV_ypt_Tgq5
-$ss11AnyHashableVSQsSQ2eeoiySbx_xtFZTW
-$ss11AnyHashableVSHsSH13_rawHashValue4seedS2i_tFTW
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtFs11AnyHashableV_ypt_Tgq5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtFs11AnyHashableV_ypt_Tgq5
-$ss18_DictionaryStorageCys11AnyHashableVypGMa
-$sSa9_getCountSiyFs11AnyHashableV_ypt_Tgq5
-$sSus35_ExpressibleByBuiltinIntegerLiteralssAAP08_builtindE0xBI_tcfCTW
-$sSuSzsSz1aoiyxx_xtFZTW
-$sSSSHsSH4hash4intoys6HasherVz_tFTW
-$sSSSHsSH9hashValueSivgTW
-_rawHashValue
-rawValue.get
-hash
-_bridgeToObjectiveC
-$sSSs21_ObjectiveCBridgeable10FoundationsAAP09_bridgeToA1C01_A5CTypeQzyFTW
-formIntersection
-$sSuSQsSQ2eeoiySbx_xtFZTW
-intersection
-$sSC12RLMSyncErrorLeVAB10Foundation21_BridgedStoredNSErrorSCWl
-$sSC12RLMSyncErrorLeVMa
-hashValue.get
-_hashValue
-errorUserInfo.get
-$sSC16RLMSyncAuthErrorLeVAB10Foundation21_BridgedStoredNSErrorSCWl
-$sSC16RLMSyncAuthErrorLeVMa
-errorCode.get
-errorDomain.get
-_getEmbeddedNSError
-_code.get
-$sSC16RLMSyncAuthErrorLeVAB10Foundation13CustomNSErrorSCWl
-_domain.get
-$sSC12RLMSyncErrorLeVAB10Foundation13CustomNSErrorSCWl
-_toCustomAnyHashable
-$sSo15RLMNotificationaABs20_SwiftNewtypeWrapperSCWl
-$sSo15RLMNotificationaMa
-$sSo15RLMNotificationaABSHSCWl
-_unconditionallyBridgeFromObjectiveC
-$sSSs21_ObjectiveCBridgeable10FoundationsAAP026_unconditionallyBridgeFromA1Cyx01_A5CTypeQzSgFZTW
-_conditionallyBridgeFromObjectiveC
-$sSSs21_ObjectiveCBridgeable10FoundationsAAP024_conditionallyBridgeFromA1C_6resultSb01_A5CTypeQz_xSgztFZTW
-_forceBridgeFromObjectiveC
-$sSSs21_ObjectiveCBridgeable10FoundationsAAP016_forceBridgeFromA1C_6resulty01_A5CTypeQz_xSgztFZTW
-$sSo19RLMIdentityProvideraABs20_SwiftNewtypeWrapperSCWl
-$sSo19RLMIdentityProvideraABSHSCWl
-$sSC8RLMErrorLeVAB10Foundation21_BridgedStoredNSErrorSCWl
-$sSC8RLMErrorLeVMa
-$sSC8RLMErrorLeVAB10Foundation13CustomNSErrorSCWl
-_nsError.get
-_userInfo.get
-$s10RealmSwift15ClassPermissionC4nameSSvpfi
-$s10RealmSwift14PermissionRoleC5usersAA4ListCyAA0C4UserCGvpfi
-List.swift
-$s10RealmSwift4ListCyAA14PermissionUserCGMa
-$s10RealmSwift14PermissionUserCAA6ObjectCAA0A15CollectionValueAAWl
-$s10RealmSwift0A10PermissionC2id33_10449364F3E92C848B95A7C2FA1C0621LLSivpfi
-$s10RealmSwift14PermissionUserC5rolesAA14LinkingObjectsCyAA0C4RoleCGvpfi
-LinkingObjects.swift
-$s10RealmSwift14LinkingObjectsCyAA14PermissionRoleCGMa
-$s10RealmSwift14PermissionUserC4roleAA0C4RoleCSgvpfi
-$s10RealmSwift14PermissionUserC8identitySSvpfi
-$s10RealmSwift14PermissionRoleC4nameSSvpfi
-$s10RealmSwift10PermissionC15canModifySchemaSbvpfi
-$s10RealmSwift10PermissionC9canCreateSbvpfi
-$s10RealmSwift10PermissionC8canQuerySbvpfi
-$s10RealmSwift10PermissionC17canSetPermissionsSbvpfi
-$s10RealmSwift10PermissionC9canDeleteSbvpfi
-$s10RealmSwift10PermissionC9canUpdateSbvpfi
-$s10RealmSwift10PermissionC7canReadSbvpfi
-$s10RealmSwift10PermissionC4roleAA0C4RoleCSgvpfi
-$s10RealmSwift7ResultsC9subscribe5named5limit6update10timeToLive23includingLinkingObjectsAA16SyncSubscriptionCyxGSSSg_SiSgSbSdSgSaySSGtFfA3_
-$s10RealmSwift7ResultsC9subscribe5named5limit6update10timeToLive23includingLinkingObjectsAA16SyncSubscriptionCyxGSSSg_SiSgSbSdSgSaySSGtFfA2_
-$s10RealmSwift7ResultsC9subscribe5named5limit6update10timeToLive23includingLinkingObjectsAA16SyncSubscriptionCyxGSSSg_SiSgSbSdSgSaySSGtFfA1_
-$s10RealmSwift7ResultsC9subscribe5named5limit6update10timeToLive23includingLinkingObjectsAA16SyncSubscriptionCyxGSSSg_SiSgSbSdSgSaySSGtFfA0_
-$s10RealmSwift7ResultsC9subscribe5named5limit6update10timeToLive23includingLinkingObjectsAA16SyncSubscriptionCyxGSSSg_SiSgSbSdSgSaySSGtFfA_
-$s10RealmSwift16SyncSubscriptionC7observe_7options_So20RLMNotificationTokenCs7KeyPathCyACyxGAA0cD5StateOG_So26NSKeyValueObservingOptionsVyALctFfA0_
-$s10RealmSwift7ResultsCAASo17RLMSyncPermissionCRszrlE6sorted14bySortProperty9ascendingACyAEGSo0dehI0a_SbtFfA0_
-$s10RealmSwift14SortDescriptorV12sortProperty9ascendingACSo017RLMSyncPermissioncF0a_SbtcfcfA0_
-$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization22serverValidationPolicy9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_SbAC06ServerkL0OSSSgtFfA2_
-$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization22serverValidationPolicy9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_SbAC06ServerkL0OSSSgtFfA0_
-$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization19enableSSLValidation9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_S2bSSSgtFfA2_
-$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization19enableSSLValidation9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_S2bSSSgtFfA1_
-$sSo11RLMSyncUserC10RealmSwiftE13configuration8realmURL19fullSynchronization19enableSSLValidation9urlPrefixAC0C0C13ConfigurationV10Foundation0G0VSg_S2bSSSgtFfA0_
-$s10RealmSwift0A0C13ConfigurationV05_syncC033_2D67F61F8873BB464715B514E644CA8ALLAA04SyncC0VSgvpfi
-$sSo11RLMSyncUserC10RealmSwiftE5logIn4with6server7timeout13callbackQueue12onCompletionyAC15SyncCredentialsV_10Foundation3URLVSdSo17OS_dispatch_queueCyABSg_s5Error_pSgtctFZfA1_
-$s10RealmSwift15SyncCredentialsV8nickname_7isAdminACSS_SbtFZfA0_
-$s10RealmSwift15SyncCredentialsV16usernamePassword0E08password8registerACSS_SSSbtFZfA1_
-$s10RealmSwift15SyncCredentialsV11customToken8provider8userInfoACSS_So19RLMIdentityProvideraSDySSypGtcfcfA1_
-$s10RealmSwift17SyncConfigurationV4user8realmURL19enableSSLValidation9isPartial9urlPrefixACSo11RLMSyncUserC_10Foundation0G0VS2bSSSgtcfcfA3_
-$s10RealmSwift17SyncConfigurationV4user8realmURL19enableSSLValidation9isPartial9urlPrefixACSo11RLMSyncUserC_10Foundation0G0VS2bSSSgtcfcfA2_
-$s10RealmSwift17SyncConfigurationV4user8realmURL19enableSSLValidation9isPartial9urlPrefixACSo11RLMSyncUserC_10Foundation0G0VS2bSSSgtcfcfA1_
-$s10RealmSwift14SortDescriptorV8property9ascendingACSS_SbtcfcfA0_
-SortDescriptor.swift
-$s10RealmSwift14SortDescriptorV7keyPath9ascendingACSS_SbtcfcfA0_
-$s10RealmSwift7ResultsC6sorted9byKeyPath9ascendingACyxGSS_SbtFfA0_
-$s10RealmSwift0A0C13ConfigurationV20disableFormatUpgradeSbvpfi
-$s10RealmSwift0A0C13ConfigurationV12customSchema33_2D67F61F8873BB464715B514E644CA8ALLSo9RLMSchemaCSgvpfi
-$s10RealmSwift0A0C13ConfigurationV21shouldCompactOnLaunchSbSi_SitcSgvpfi
-$s10RealmSwift0A0C13ConfigurationV06deleteA17IfMigrationNeededSbvpfi
-$s10RealmSwift0A0C13ConfigurationV14migrationBlockyAA9MigrationV_s6UInt64VtcSgvpfi
-$s10RealmSwift0A0C13ConfigurationV13schemaVersions6UInt64Vvpfi
-$s10RealmSwift0A0C13ConfigurationV8readOnlySbvpfi
-$s10RealmSwift0A0C13ConfigurationV13encryptionKey10Foundation4DataVSgvpfi
-$s10RealmSwift0A0C13ConfigurationV19_inMemoryIdentifier33_2D67F61F8873BB464715B514E644CA8ALLSSSgvpfi
-$s10RealmSwift0A0C13ConfigurationV5_path33_2D67F61F8873BB464715B514E644CA8ALLSSSgvpfi
-$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA8_
-RealmConfiguration.swift
-$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA7_
-$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA6_
-$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA5_
-$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA4_
-$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA3_
-$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA2_
-$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA0_
-$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA_
-$s10RealmSwift0A10CollectionPA2A16OptionalProtocol7ElementRpzSLAE_7WrappedAaDPRPzrlE6sorted9ascendingAA7ResultsCyAFGSb_tFfA_
-$s10RealmSwift0A10CollectionPAASL7ElementRpzrlE6sorted9ascendingAA7ResultsCyAEGSb_tFfA_
-$s10RealmSwift0A0C9writeCopy6toFile13encryptionKeyy10Foundation3URLV_AG4DataVSgtKFfA0_
-Realm.swift
-$s10RealmSwift0A0C13dynamicCreate_5value6updateAA13DynamicObjectCSS_ypAC12UpdatePolicyOtFfA1_
-$s10RealmSwift0A0C13dynamicCreate_5value6updateAA13DynamicObjectCSS_ypAC12UpdatePolicyOtFfA0_
-$sSDys11AnyHashableVypGMa
-$s10RealmSwift0A0C6create_5value6updatexxm_ypAC12UpdatePolicyOtAA6ObjectCRbzlFfA1_
-$s10RealmSwift0A0C6create_5value6updatexxm_ypAC12UpdatePolicyOtAA6ObjectCRbzlFfA0_
-$s10RealmSwift0A0C3add_6updateyx_AC12UpdatePolicyOtSTRzAA6ObjectC7ElementRczlFfA0_
-$s10RealmSwift0A0C3add_6updateyAA6ObjectC_AC12UpdatePolicyOtFfA0_
-$s10RealmSwift0A0C11commitWrite16withoutNotifyingySaySo20RLMNotificationTokenCG_tKFfA_
-$s10RealmSwift0A0C9asyncOpen13configuration13callbackQueue0F0yAC13ConfigurationV_So17OS_dispatch_queueCyACSg_s5Error_pSgtctFZfA0_
-$sSo17OS_dispatch_queueCMa
-$s10RealmSwift0A8OptionalCyACyxGxSgcfcfA_
-Optional.swift
-$s10RealmSwift0A0C16performMigration3foryAC13ConfigurationV_tKFZfA_
-Migration.swift
-defaultConfiguration.get
-$s10RealmSwift18schemaVersionAtURL_13encryptionKeys6UInt64V10Foundation0F0V_AF4DataVSgtKFfA0_
-$s10RealmSwift4ListC10removeLastyySiFfA_
-$s10RealmSwift4ListC11removeFirstyySiFfA_
-$s10RealmSwift4ListC6sorted9byKeyPath9ascendingAA7ResultsCyxGSS_SbtFfA0_
-$s10RealmSwift14LinkingObjectsC6sorted9byKeyPath9ascendingAA7ResultsCyxGSS_SbtFfA0_
-$s10RealmSwift18LinkingObjectsBaseC8property33_25CFEE8474EDA10420AA87D5D977CE22LLSo11RLMPropertyCSgvpfi
-$s10RealmSwift18LinkingObjectsBaseC6object33_25CFEE8474EDA10420AA87D5D977CE22LLSo19RLMWeakObjectHandleCSgvpfi
-$s10RealmSwift18LinkingObjectsBaseC16cachedRLMResults33_25CFEE8474EDA10420AA87D5D977CE22LLSo0G0CyyXlGSgvpfi
-stop
-Aliases.swift
-_globalinit_33_829865FB8449F422594F8390D58275B4_func0
-_globalinit_33_829865FB8449F422594F8390D58275B4_func1
-_globalinit_33_829865FB8449F422594F8390D58275B4_func2
-_globalinit_33_829865FB8449F422594F8390D58275B4_func3
-_globalinit_33_829865FB8449F422594F8390D58275B4_func4
-_globalinit_33_829865FB8449F422594F8390D58275B4_func5
-_globalinit_33_829865FB8449F422594F8390D58275B4_func6
-_globalinit_33_829865FB8449F422594F8390D58275B4_func7
-_globalinit_33_829865FB8449F422594F8390D58275B4_func8
-_globalinit_33_829865FB8449F422594F8390D58275B4_func9
-_$s10RealmSwift0A0C5ErrorV4failSo8RLMErrorVvgZTm
-_globalinit_33_829865FB8449F422594F8390D58275B4_func10
-_globalinit_33_829865FB8449F422594F8390D58275B4_func11
-_$s10RealmSwift0A0C5ErrorV03_nsC6DomainSSvgZTm
-_$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAafGP03_nsC0So0G0CvgTW
-_$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAafGP03_nsC0xSo0G0C_tcfCTW
-_$s10RealmSwift0A0C5ErrorV10Foundation021_ObjectiveCBridgeableC0AafGP15_bridgedNSErrorxSgSo0H0Ch_tcfCTW
-_$s10RealmSwift0A0C5ErrorV10Foundation13CustomNSErrorAafGP11errorDomainSSvgZTW
-_$s10RealmSwift0A0C5ErrorV10Foundation13CustomNSErrorAafGP9errorCodeSivgTW
-_$s10RealmSwift0A0C5ErrorV10Foundation13CustomNSErrorAafGP13errorUserInfoSDySSypGvgTW
-_$s10RealmSwift0A0C5ErrorVSHAASH9hashValueSivgTW
-_$s10RealmSwift0A0C5ErrorVSHAASH4hash4intoys6HasherVz_tFTW
-_$s10RealmSwift0A0C5ErrorVSHAASH13_rawHashValue4seedS2i_tFTW
-_$s10RealmSwift0A0C5ErrorVsAdAsADP7_domainSSvgTW
-_$s10RealmSwift0A0C5ErrorVsAdAsADP5_codeSivgTW
-_$s10RealmSwift0A0C5ErrorVsAdAsADP9_userInfoyXlSgvgTW
-_$s10RealmSwift0A0C5ErrorVsAdAsADP19_getEmbeddedNSErroryXlSgyFTW
-_$s10RealmSwift0A0C5ErrorV10Foundation13CustomNSErrorAafGP9errorCodeSivgTWTm
-_$s10RealmSwift0A0C5ErrorVSQAASQ2eeoiySbx_xtFZTW
-_$sSSSHsSH13_rawHashValue4seedS2i_tFTW
-_$sSSSQsSQ2eeoiySbx_xtFZTW
-_$sypSgWOh
-_$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAaF06CustomG0PWb
-_$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAaF021_ObjectiveCBridgeableC0PWb
-_$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAASHWb
-_$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAA4CodeAfGP_AF01_cH8ProtocolPWT
-_$sSC8RLMErrorLeVMaTm
-_$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAA4CodeAfGP_SYWT
-_$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAA4CodeAfGP_AF01_cH8ProtocolPWTTm
-_$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAA4CodeAfGP_8RawValueSYs17FixedWidthIntegerPWT
-_$s10RealmSwift0A0C5ErrorV10Foundation021_ObjectiveCBridgeableC0AAsADPWb
-_$s10RealmSwift0A0C5ErrorVSHAASQWb
-_$s10RealmSwift0A0C5ErrorV10Foundation13CustomNSErrorAAsADPWb
-_$sSo7NSErrorCML
-_$s10RealmSwift0A0C5ErrorVAE10Foundation21_BridgedStoredNSErrorAAWL
-_$sSo21RLMRealmConfigurationCML
-_$s10RealmSwift0A0C5ErrorVAE10Foundation13CustomNSErrorAAWL
-_associated conformance 10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAaF06CustomG0
-_$s10RealmSwift0A0C5ErrorVAE10Foundation021_ObjectiveCBridgeableC0AAWL
-_associated conformance 10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAaF021_ObjectiveCBridgeableC0
-_$s10RealmSwift0A0C5ErrorVAESHAAWL
-_associated conformance 10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAASH
-_associated conformance 10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAA4CodeAfGP_AF01_cH8Protocol
-_associated conformance 10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAA4CodeAfGP_SY
-_associated conformance 10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAA4CodeAfGP_8RawValueSYs17FixedWidthInteger
-_$s10RealmSwift0A0C5ErrorVAEsAdAWL
-_associated conformance 10RealmSwift0A0C5ErrorV10Foundation021_ObjectiveCBridgeableC0AAsAD
-_associated conformance 10RealmSwift0A0C5ErrorV10Foundation13CustomNSErrorAAsAD
-_$s10RealmSwift0A0C5ErrorVAESQAAWL
-_associated conformance 10RealmSwift0A0C5ErrorVSHAASQ
-_$s10RealmSwift0A0C5ErrorVMf
-_symbolic _____ 10RealmSwift0A0C5ErrorV
-_$s10RealmSwift0A0C5ErrorVMF
-_symbolic 10RealmSwift0A0C5ErrorV
-_$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAAMA
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Error.swift
-$s10RealmSwift0A0C5ErrorVMa
-$s10RealmSwift0A0C5ErrorVSHAASQWb
-$s10RealmSwift0A0C5ErrorVAESQAAWl
-$s10RealmSwift0A0C5ErrorV10Foundation021_ObjectiveCBridgeableC0AAsADPWb
-$s10RealmSwift0A0C5ErrorVAEsAdAWl
-$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAA4CodeAfGP_8RawValueSYs17FixedWidthIntegerPWT
-$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAA4CodeAfGP_AF01_cH8ProtocolPWT
-$sSo8RLMErrorVAB10Foundation18_ErrorCodeProtocolSCWl
-$sSo8RLMErrorVMa
-$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAASHWb
-$s10RealmSwift0A0C5ErrorVAESHAAWl
-$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAaF021_ObjectiveCBridgeableC0PWb
-$s10RealmSwift0A0C5ErrorVAE10Foundation021_ObjectiveCBridgeableC0AAWl
-$s10RealmSwift0A0C5ErrorV10Foundation21_BridgedStoredNSErrorAaF06CustomG0PWb
-$s10RealmSwift0A0C5ErrorVAE10Foundation13CustomNSErrorAAWl
-$sypSgWOh
-~=
-Error.swift
-$s10RealmSwift0A0C5ErrorVAE10Foundation21_BridgedStoredNSErrorAAWl
-$s10RealmSwift0A0C5ErrorV11errorDomainSSvau
-_nsErrorDomain.get
-$s10RealmSwift0A0C5ErrorV03_nsC6DomainSSvau
-globalinit_33_829865FB8449F422594F8390D58275B4_func11
-globalinit_33_829865FB8449F422594F8390D58275B4_func10
-backupConfiguration.get
-map
-$sSo21RLMRealmConfigurationC10RealmSwift0C0C0B0Vs5Error_pIggrzo_AbGsAH_pIegnrzo_TR
-$sSo21RLMRealmConfigurationCMa
-subscript.get
-code.get
-$sSo7NSErrorCMa
-fail.get
-$s10RealmSwift0A0C5ErrorV4failSo8RLMErrorVvau
-$s10RealmSwift0A0C5ErrorV22incompatibleSyncedFileSo8RLMErrorVvau
-globalinit_33_829865FB8449F422594F8390D58275B4_func9
-$s10RealmSwift0A0C5ErrorV14schemaMismatchSo8RLMErrorVvau
-globalinit_33_829865FB8449F422594F8390D58275B4_func8
-$s10RealmSwift0A0C5ErrorV21addressSpaceExhaustedSo8RLMErrorVvau
-globalinit_33_829865FB8449F422594F8390D58275B4_func7
-$s10RealmSwift0A0C5ErrorV25fileFormatUpgradeRequiredSo8RLMErrorVvau
-globalinit_33_829865FB8449F422594F8390D58275B4_func6
-$s10RealmSwift0A0C5ErrorV20incompatibleLockFileSo8RLMErrorVvau
-globalinit_33_829865FB8449F422594F8390D58275B4_func5
-$s10RealmSwift0A0C5ErrorV12fileNotFoundSo8RLMErrorVvau
-globalinit_33_829865FB8449F422594F8390D58275B4_func4
-$s10RealmSwift0A0C5ErrorV10fileExistsSo8RLMErrorVvau
-globalinit_33_829865FB8449F422594F8390D58275B4_func3
-$s10RealmSwift0A0C5ErrorV20filePermissionDeniedSo8RLMErrorVvau
-globalinit_33_829865FB8449F422594F8390D58275B4_func2
-$s10RealmSwift0A0C5ErrorV10fileAccessSo8RLMErrorVvau
-globalinit_33_829865FB8449F422594F8390D58275B4_func1
-globalinit_33_829865FB8449F422594F8390D58275B4_func0
-_$s10RealmSwift18LinkingObjectsBaseC6object33_25CFEE8474EDA10420AA87D5D977CE22LLSo19RLMWeakObjectHandleCSgvgTo
-_$s10RealmSwift18LinkingObjectsBaseC6object33_25CFEE8474EDA10420AA87D5D977CE22LLSo19RLMWeakObjectHandleCSgvsTo
-_$s10RealmSwift18LinkingObjectsBaseC8property33_25CFEE8474EDA10420AA87D5D977CE22LLSo11RLMPropertyCSgvgTo
-_$s10RealmSwift18LinkingObjectsBaseC6object33_25CFEE8474EDA10420AA87D5D977CE22LLSo19RLMWeakObjectHandleCSgvgToTm
-_$s10RealmSwift18LinkingObjectsBaseC8property33_25CFEE8474EDA10420AA87D5D977CE22LLSo11RLMPropertyCSgvsTo
-_$s10RealmSwift18LinkingObjectsBaseC6object33_25CFEE8474EDA10420AA87D5D977CE22LLSo19RLMWeakObjectHandleCSgvsToTm
-_$s10RealmSwift18LinkingObjectsBaseC18countByEnumerating4with7objects0F0SiSpySo22NSFastEnumerationStateaG_SAyyXlSgGSitFTo
-_$s10RealmSwift18LinkingObjectsBaseCACycfcTo
-_$s10RealmSwift18LinkingObjectsBaseCfETo
-_$s10RealmSwift14LinkingObjectsC11descriptionSSvgTo
-_$s10RealmSwift14LinkingObjectsC11descriptionSSvgSSSPyACyxGGXEfU_
-_$s10RealmSwift15unwrapOptionals2inSayypGAD_tF
-_$s10RealmSwift21throwForNegativeIndex_13parameterNameySi_SStF
-_$s10RealmSwift14LinkingObjectsCyxSicir
-_$s10RealmSwift14LinkingObjectsCyxSicir.resume.0
-_$s10RealmSwift14LinkingObjectsC5firstxSgvgTm
-_$s10RealmSwift14LinkingObjectsC5value6forKeyypSgSS_tFTo
-_$s10RealmSwift14LinkingObjectsC5value10forKeyPathypSgSS_tFTo
-_$s10RealmSwift14LinkingObjectsC5value6forKeyypSgSS_tFToTm
-_$s10RealmSwift14LinkingObjectsC8setValue_6forKeyyypSg_SStFTo
-_$s10RealmSwift7ResultsCyACyxGSo10RLMResultsCyyXlGcfC
-_$s10RealmSwift14SortDescriptorVSo07RLMSortD0Cs5Error_pIggozo_AcEsAF_pIegnrzo_TR04$s10a62Swift14LinkingObjectsC6sorted2byAA7ResultsCyxGqd___tSTRd__AA14cd20V7ElementRtd__lFSo07E10I0CAJXEfU_Tf3nnpf_n
-_$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlF
-_$s10RealmSwift14LinkingObjectsC3min10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTm
-_$s10RealmSwift0A16CollectionChangeO8fromObjc5value6change5errorACyxGx_So013RLMCollectionD0CSgs5Error_pSgtFZ
-_$sSo10RLMResultsCyyXlGSgSo19RLMCollectionChangeCSgs5Error_pSgIegggg_AdGSo7NSErrorCSgIeyByyy_TR
-_$s10RealmSwift11RLMIteratorV10collectionACyxGSo13RLMCollection_p_tcfC
-_$s10RealmSwift14LinkingObjectsCyxGSTAAST12makeIterator0F0QzyFTW
-_$s10RealmSwift14LinkingObjectsCyxGSTAAST19underestimatedCountSivgTW
-_$s10RealmSwift14LinkingObjectsCyxGSTAAST31_customContainsEquatableElementySbSg0H0QzFTW
-_$s10RealmSwift14LinkingObjectsCyxGSTAAST22_copyToContiguousArrays0gH0Vy7ElementQzGyFTW
-_$s10RealmSwift14LinkingObjectsCyxGSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW
-_$s10RealmSwift14LinkingObjectsCyxGSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW
-_$s10RealmSwift14LinkingObjectsCyxGSkAASk5index_8offsetBy5IndexQzAH_SitFTW
-_$s10RealmSwift14LinkingObjectsCyxGSkAASk5index_8offsetBy07limitedG05IndexQzSgAI_SiAItFTW
-_$s10RealmSwift14LinkingObjectsCyxGSkAASk8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA14ThreadConfinedA2aEP5realmAA0A0CSgvgTW
-_$s10RealmSwift14LinkingObjectsCyxGAA14ThreadConfinedA2aEP13isInvalidatedSbvgTW
-_$s10RealmSwift14LinkingObjectsCyxGSKAASK5index6before5IndexQzAH_tFTW
-_$s10RealmSwift14LinkingObjectsCyxGSKAASK9formIndex6beforey0F0Qzz_tFTW
-_$s10RealmSwift14LinkingObjectsCyxGSKAASK5index_8offsetBy5IndexQzAH_SitFTW
-_$s10RealmSwift14LinkingObjectsCyxGSKAASK5index_8offsetBy07limitedG05IndexQzSgAI_SiAItFTW
-_$s10RealmSwift14LinkingObjectsCyxGSKAASK8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl10startIndex0F0QzvgTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl8endIndex0F0QzvgTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASly7ElementQz5IndexQzcirTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASly7ElementQz5IndexQzcirTW.resume.0
-_$s10RealmSwift14LinkingObjectsCyxGSlAASly11SubSequenceQzSny5IndexQzGcigTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl7indices7IndicesQzvgTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl7isEmptySbvgTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl5countSivgTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl30_customIndexOfEquatableElementy0F0QzSgSg0I0QzFTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl20_failEarlyRangeCheck_6boundsy5IndexQz_SnyAHGtFTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl20_failEarlyRangeCheck_6boundsy5IndexQz_SNyAHGtFTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl5index5after5IndexQzAH_tFTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl9formIndex5aftery0F0Qzz_tFTW
-_$s10RealmSwift14LinkingObjectsCyxGs20LazySequenceProtocolAAsAEP8elements8ElementsQzvgTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP5index2ofSiSg7ElementQz_tFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP5index8matchingSiSgSo11NSPredicateC_tFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP5index8matching_SiSgSS_ypdtFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP6filteryAA7ResultsCy7ElementQzGSS_ypdtFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP6filteryAA7ResultsCy7ElementQzGSo11NSPredicateCFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP6sorted9byKeyPath9ascendingAA7ResultsCy7ElementQzGSS_SbtFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP6sorted2byAA7ResultsCy7ElementQzGqd___tSTRd__AA14SortDescriptorVAKRtd__lFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP3min10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP3max10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP3sum10ofPropertyqd__SS_tAA11AddableTypeRd__lFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP7average10ofPropertySdSgSS_tFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP5value6forKeyypSgSS_tFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP5value10forKeyPathypSgSS_tFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP8setValue_6forKeyyypSg_SStFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP7observeySo20RLMNotificationTokenCyAA0aE6ChangeOyxGcFTW
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionA2aEP8_observeySo20RLMNotificationTokenCyAA0aE6ChangeOyAA03AnyaE0Cy7ElementQzGGcFTW
-_$s10RealmSwift14LinkingObjectsC8bridging4from4withACyxGyp_ypSgtFZ
-_$s10RealmSwift14LinkingObjectsC7bridgedyp15objectiveCValue_ypSg8metadatatvg
-_$s10RealmSwift14LinkingObjectsCyxGAA28AssistedObjectiveCBridgeableA2aEP8bridging4from4withxyp_ypSgtFZTW
-_$s10RealmSwift14LinkingObjectsCyxGAA28AssistedObjectiveCBridgeableA2aEP7bridgedyp15objectiveCValue_ypSg8metadatatvgTW
-_$sSiSLsSL1loiySbx_xtFZTW
-_$sSiSLsSL2geoiySbx_xtFZTW
-_$sSis17FixedWidthIntegerssAAP3maxxvgZTW
-_$sSuSLsSL1loiySbx_xtFZTW
-_$sSis35_ExpressibleByBuiltinIntegerLiteralssAAP08_builtindE0xBI_tcfCTW
-_$s10RealmSwift18LinkingObjectsBaseC10rlmResultsSo10RLMResultsCyyXlGvgTf4n_g
-_$s10RealmSwift14LinkingObjectsC11descriptionSSvgSSSPyACyxGGXEfU_TA
-_$sSPy10RealmSwift14LinkingObjectsCyxGGSSs5Error_pIgyozo_AESSsAF_pIegyrzo_AA6ObjectCRbzlTRTA
-_$s10RealmSwift14LinkingObjectsC5index8matching_SiSgSS_ypdtFTf4xnn_n
-___swift_project_boxed_opaque_existential_0
-_$s10RealmSwift14LinkingObjectsC8setValue_6forKeyyypSg_SStFTf4nxn_n
-_$s10RealmSwift14LinkingObjectsC6filteryAA7ResultsCyxGSS_ypdtFTf4xnn_n
-_$sSlsE20_failEarlyRangeCheck_6boundsy5IndexQz_SNyADGtFTf4nnd_n
-_$sSlsE20_failEarlyRangeCheck_6boundsy5IndexQz_SnyADGtFTf4nnd_n
-_$s10RealmSwift14LinkingObjectsC6sorted9byKeyPath9ascendingAA7ResultsCyxGSS_SbtFTf4xnn_n
-_$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlFTA
-_$sypqd__Iegnr_So8NSNumberCqd__s5Error_pIeggrzo_10RealmSwift6ObjectCRbzAD11AddableTypeRd__r__lTRTA
-_$sSo8NSNumberCqd__s5Error_pIggrzo_ABqd__sAC_pIegnrzo_10RealmSwift6ObjectCRbzAD11AddableTypeRd__r__lTRTA
-_$s10RealmSwift14LinkingObjectsC7observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyACyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionI0CSgs5Error_pSgtcfU_TA
-_block_copy_helper
-_block_destroy_helper
-_objectdestroy.22Tm
-_$s10RealmSwift14LinkingObjectsC8_observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyAA03AnyaH0CyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionI0CSgs5Error_pSgtcfU_TA
-_$s10RealmSwift14LinkingObjectsCyxGSTAA8Iterator_StWT
-_$s10RealmSwift14LinkingObjectsCyxGAA0A14CollectionBaseAA7Element_AA0aE5ValuePWT
-_$s10RealmSwift14LinkingObjectsCyxGAA0A14CollectionBaseAAWI
-_$s10RealmSwift14LinkingObjectsCyxGSkAASKWb
-_$s10RealmSwift14LinkingObjectsCyxGSkAA7Indices_SkWT
-_$sSnySiGSnyxGSksSxRzSZ6StrideRpzrlWl
-_$s10RealmSwift14LinkingObjectsCyxGSkAA11SubSequence_SkWT
-_$s10RealmSwift14LinkingObjectsCyxGs22LazyCollectionProtocolAASlWb
-_$s10RealmSwift14LinkingObjectsCyxGs22LazyCollectionProtocolAAs0e8SequenceG0PWb
-_$s10RealmSwift14LinkingObjectsCyxGs22LazyCollectionProtocolAA8Elements_SlWT
-_$s10RealmSwift14LinkingObjectsCyxGSKAASlWb
-_$s10RealmSwift14LinkingObjectsCyxGSKAA7Indices_SKWT
-_$sSnySiGSnyxGSKsSxRzSZ6StrideRpzrlWl
-_$s10RealmSwift14LinkingObjectsCyxGSKAA11SubSequence_SKWT
-_$s10RealmSwift14LinkingObjectsCyxGSlAASTWb
-_$s10RealmSwift14LinkingObjectsCyxGSlAA5Index_SLWT
-_$s10RealmSwift14LinkingObjectsCyxGSlAA7Indices_SlWT
-_$sSnySiGSnyxGSlsSxRzSZ6StrideRpzrlWl
-_$sSnySiGSnyxGSksSxRzSZ6StrideRpzrlWlTm
-_$s10RealmSwift14LinkingObjectsCyxGSlAA11SubSequence_SlWT
-_$s10RealmSwift14LinkingObjectsCyxGs20LazySequenceProtocolAASTWb
-_$s10RealmSwift14LinkingObjectsCyxGs20LazySequenceProtocolAA8Elements_STWT
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionAAWI
-_$s10RealmSwift14LinkingObjectsCMi
-_$s10RealmSwift14LinkingObjectsCMr
-_$sypSgWOc
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOWOy
-_$syp_10RealmSwift30LinkingObjectsBridgingMetadataOtWOh
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOWOe
-_$s10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGIegn_AGIegg_AA6ObjectCRbzlTRTA
-_$s10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGAA6ObjectCRbzlWOr
-_$s10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGAA6ObjectCRbzlWOy
-_$s10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGAA6ObjectCRbzlWOs
-_$s10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGAA6ObjectCRbzlWOe
-_$sSlsE22_copyToContiguousArrays0cD0Vy7ElementQzGyFTf4g_n
-_$sSlsE20_failEarlyRangeCheck_6boundsySny5IndexQzG_AEtFTf4nnd_n
-_$sSi10RealmSwift14LinkingObjectsCyxGAA6ObjectCRbzlIetWnn_TC
-_$sSi10RealmSwift14LinkingObjectsCyxGAA6ObjectCRbzlIetMyg_TC
-_$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA6ObjectCRbzlWOb
-_$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA6ObjectCRbzlWOs
-_$s10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGAA6ObjectCRbzlWOrTm
-_$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA6ObjectCRbzlWOe
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOwCP
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOwxx
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOwcp
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOwca
-___swift_memcpy17_8
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOwta
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOwet
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOwst
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOwug
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOwup
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOwui
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOMa
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl34_customLastIndexOfEquatableElementy0G0QzSgSg0J0QzFTW
-_block_destroy_helper.28
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl5index_8offsetBy07limitedG05IndexQzSgAI_SiAItFTW
-_block_copy_helper.27
-_$s10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGAA6ObjectCRbzlWOb
-_$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlFTA.10
-_$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlFTA.14
-_$s10RealmSwift14LinkingObjectsCyxGSlAASl5index_8offsetBy5IndexQzAH_SitFTW
-_symbolic 10RealmSwift14LinkingObjectsCyxG
-_symbolic x
-_symbolic G0R1_
-_symbolic SPy10RealmSwift14LinkingObjectsCyxGGSSs5Error_pIgyozo_
-_symbolic B0
-_$sSo17RLMSortDescriptorCML
-_symbolic qd__
-_$sypSgML
-_$sSo8NSNumberCML
-_symbolic ypqd__Iegnr_
-_symbolic B1
-_symbolic So8NSNumberCqd__s5Error_pIggrzo_
-_$sSo8NSNumberCSgML
-_symbolic 10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGIegn_
-_symbolic G0R4_
-_block_descriptor
-_symbolic 10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGIegn_
-_symbolic 10RealmSwift03AnyA10CollectionCyxG
-_block_descriptor.29
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSTAA8Iterator_St
-_symbolic 10RealmSwift11RLMIteratorVyxG
-_associated conformance 10RealmSwift14LinkingObjectsCyxGAA0A14CollectionBaseAA7Element_AA0aE5Value
-_$s10RealmSwift14LinkingObjectsCyxGAA0A14CollectionBaseAAWp
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSkAASK
-_$sSnySiGSnyxGSksSxRzSZ6StrideRpzrlWL
-_$sSnySiGML
-_$sS2iSZsWL
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSkAA7Indices_Sk
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSkAA11SubSequence_Sk
-_associated conformance 10RealmSwift14LinkingObjectsCyxGs22LazyCollectionProtocolAASl
-_associated conformance 10RealmSwift14LinkingObjectsCyxGs22LazyCollectionProtocolAAs0e8SequenceG0
-_associated conformance 10RealmSwift14LinkingObjectsCyxGs22LazyCollectionProtocolAA8Elements_Sl
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSKAASl
-_$sSnySiGSnyxGSKsSxRzSZ6StrideRpzrlWL
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSKAA7Indices_SK
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSKAA11SubSequence_SK
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSlAAST
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSlAA5Index_SL
-_$sSnySiGSnyxGSlsSxRzSZ6StrideRpzrlWL
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSlAA7Indices_Sl
-_associated conformance 10RealmSwift14LinkingObjectsCyxGSlAA11SubSequence_Sl
-_symbolic s5SliceVy10RealmSwift14LinkingObjectsCyxGG
-_symbolic SnySiG
-_associated conformance 10RealmSwift14LinkingObjectsCyxGs20LazySequenceProtocolAAST
-_associated conformance 10RealmSwift14LinkingObjectsCyxGs20LazySequenceProtocolAA8Elements_ST
-_$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionAAWp
-_$s10RealmSwift14LinkingObjectsCyxGAA28AssistedObjectiveCBridgeableAAMc
-_$s10RealmSwift14LinkingObjectsCyxGAA28AssistedObjectiveCBridgeableAAWP
-l_OBJC_LABEL_PROTOCOL_$_NSFastEnumeration
-l_OBJC_PROTOCOL_REFERENCE_$_NSFastEnumeration
-_$s10RealmSwiftMXM
-_symbolic So8NSObjectC
-_$s10RealmSwift18LinkingObjectsBaseCML
-_$s10RealmSwift18LinkingObjectsBaseCMf
-_symbolic _____ 10RealmSwift18LinkingObjectsBaseC
-_symbolic So10RLMResultsCyyXlGSg
-_symbolic So19RLMWeakObjectHandleCSg
-_symbolic So11RLMPropertyCSg
-_$s10RealmSwift18LinkingObjectsBaseCMF
-_$s10RealmSwift14LinkingObjectsCMI
-_symbolic 10RealmSwift6ObjectC
-_$s10RealmSwift14LinkingObjectsCMP
-_symbolic _____ 10RealmSwift14LinkingObjectsC
-_$s10RealmSwift14LinkingObjectsCMF
-_symbolic _____ 10RealmSwift30LinkingObjectsBridgingMetadataO
-_symbolic So11RLMPropertyC8property_t
-_symbolic SS12propertyName_t
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOMF
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOMn
-_$sSo19RLMWeakObjectHandleCML
-_$sSo13RLMObjectBaseCML
-_$sSo10RLMResultsCML
-_$ss23_ContiguousArrayStorageCy10RealmSwift14SortDescriptorVGML
-_$sSay10RealmSwift14SortDescriptorVGML
-_$sSay10RealmSwift14SortDescriptorVGSayxGSTsWL
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOWV
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOMf
-_symbolic 10RealmSwift14LinkingObjectsC
-_symbolic $ss8SequenceP
-_$s10RealmSwift14LinkingObjectsCyxGSTAAMA
-_symbolic $ss22RandomAccessCollectionP
-_$s10RealmSwift14LinkingObjectsCyxGSkAAMA
-_symbolic $ss23BidirectionalCollectionP
-_$s10RealmSwift14LinkingObjectsCyxGSKAAMA
-_symbolic $ss10CollectionP
-_$s10RealmSwift14LinkingObjectsCyxGSlAAMA
-_symbolic $ss20LazySequenceProtocolP
-_$s10RealmSwift14LinkingObjectsCyxGs20LazySequenceProtocolAAMA
-_$s10RealmSwift28AssistedObjectiveCBridgeableMp
-_symbolic 10RealmSwift30LinkingObjectsBridgingMetadataO
-_$s10RealmSwift30LinkingObjectsBridgingMetadataOMB
-_objc_classes
-_$s10RealmSwift18LinkingObjectsBaseC10rlmResultsSo10RLMResultsCyyXlGvgTq
-_$s10RealmSwift18LinkingObjectsBaseC13fromClassName8propertyACSS_SStcfCTq
-_$s10RealmSwift30LinkingObjectsBridgingMetadataON
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/LinkingObjects.swift
-$s10RealmSwift30LinkingObjectsBridgingMetadataOMa
-$s10RealmSwift30LinkingObjectsBridgingMetadataOwui
-$s10RealmSwift30LinkingObjectsBridgingMetadataOwup
-$s10RealmSwift30LinkingObjectsBridgingMetadataOwug
-$s10RealmSwift30LinkingObjectsBridgingMetadataOwst
-$s10RealmSwift30LinkingObjectsBridgingMetadataOwet
-$s10RealmSwift30LinkingObjectsBridgingMetadataOwta
-__swift_memcpy17_8
-$s10RealmSwift30LinkingObjectsBridgingMetadataOwca
-$s10RealmSwift30LinkingObjectsBridgingMetadataOwcp
-$s10RealmSwift30LinkingObjectsBridgingMetadataOwxx
-$s10RealmSwift30LinkingObjectsBridgingMetadataOwCP
-$s10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGAA6ObjectCRbzlWOr
-$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA6ObjectCRbzlWOb
-$s10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGIegn_AGIegg_AA6ObjectCRbzlTRTA
-$s10RealmSwift0A16CollectionChangeOyAA14LinkingObjectsCyxGGIegn_AGIegg_AA6ObjectCRbzlTR
-objectdestroy.32
-$syp_10RealmSwift30LinkingObjectsBridgingMetadataOtWOh
-$sypSgWOc
-$s10RealmSwift14LinkingObjectsCMr
-$s10RealmSwift14LinkingObjectsCMi
-$s10RealmSwift14LinkingObjectsCyxGAA0A10CollectionAAWI
-$s10RealmSwift14LinkingObjectsCyxGs20LazySequenceProtocolAA8Elements_STWT
-$s10RealmSwift14LinkingObjectsCyxGs20LazySequenceProtocolAASTWb
-$s10RealmSwift14LinkingObjectsCyxGSlAA11SubSequence_SlWT
-$sSnySiGSnyxGSksSxRzSZ6StrideRpzrlWl
-$sS2iSZsWl
-$sSnySiGMa
-$s10RealmSwift14LinkingObjectsCyxGSlAA7Indices_SlWT
-$s10RealmSwift14LinkingObjectsCyxGSlAA5Index_SLWT
-$s10RealmSwift14LinkingObjectsCyxGSlAASTWb
-$s10RealmSwift14LinkingObjectsCyxGSKAA11SubSequence_SKWT
-$s10RealmSwift14LinkingObjectsCyxGSKAA7Indices_SKWT
-$s10RealmSwift14LinkingObjectsCyxGSKAASlWb
-$s10RealmSwift14LinkingObjectsCyxGs22LazyCollectionProtocolAA8Elements_SlWT
-$s10RealmSwift14LinkingObjectsCyxGs22LazyCollectionProtocolAAs0e8SequenceG0PWb
-$s10RealmSwift14LinkingObjectsCyxGs22LazyCollectionProtocolAASlWb
-$s10RealmSwift14LinkingObjectsCyxGSkAA11SubSequence_SkWT
-$s10RealmSwift14LinkingObjectsCyxGSkAA7Indices_SkWT
-$s10RealmSwift14LinkingObjectsCyxGSkAASKWb
-$s10RealmSwift14LinkingObjectsCyxGAA0A14CollectionBaseAAWI
-$s10RealmSwift14LinkingObjectsCyxGAA0A14CollectionBaseAA7Element_AA0aE5ValuePWT
-$s10RealmSwift14LinkingObjectsCyxGSTAA8Iterator_StWT
-$s10RealmSwift14LinkingObjectsC8_observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyAA03AnyaH0CyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionI0CSgs5Error_pSgtcfU_TA
-$s10RealmSwift14LinkingObjectsC8_observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyAA03AnyaH0CyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionI0CSgs5Error_pSgtcfU_
-objectdestroy.22
-block_destroy_helper
-block_copy_helper
-$s10RealmSwift14LinkingObjectsC7observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyACyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionI0CSgs5Error_pSgtcfU_TA
-$s10RealmSwift14LinkingObjectsC7observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyACyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionI0CSgs5Error_pSgtcfU_
-$s10RealmSwift14LinkingObjectsCMa
-$sSo8NSNumberCqd__s5Error_pIggrzo_ABqd__sAC_pIegnrzo_10RealmSwift6ObjectCRbzAD11AddableTypeRd__r__lTRTA
-$sSo8NSNumberCqd__s5Error_pIggrzo_ABqd__sAC_pIegnrzo_10RealmSwift6ObjectCRbzAD11AddableTypeRd__r__lTR
-objectdestroy.19
-$sypqd__Iegnr_So8NSNumberCqd__s5Error_pIeggrzo_10RealmSwift6ObjectCRbzAD11AddableTypeRd__r__lTRTA
-$sypqd__Iegnr_So8NSNumberCqd__s5Error_pIeggrzo_10RealmSwift6ObjectCRbzAD11AddableTypeRd__r__lTR
-$sSo8NSNumberCMa
-objectdestroy.16
-objectdestroy.12
-objectdestroy.8
-$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlFTA
-objectdestroy.5
-sorted
-$sSay10RealmSwift14SortDescriptorVGSayxGSTsWl
-$sSay10RealmSwift14SortDescriptorVGMa
-_allocateUninitializedArray
-$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZ10RealmSwift14SortDescriptorV_Tg5
-$ss23_ContiguousArrayStorageCy10RealmSwift14SortDescriptorVGMa
-filter
-rlmResults.get
-setValue
-__swift_project_boxed_opaque_existential_0
-index
-notFoundToNil
-Util.swift
-$sSiSLsSL1loiySbx_xtFZTW
-$sSiSLsSL2geoiySbx_xtFZTW
-$sSPy10RealmSwift14LinkingObjectsCyxGGSSs5Error_pIgyozo_AESSsAF_pIegyrzo_AA6ObjectCRbzlTRTA
-$sSPy10RealmSwift14LinkingObjectsCyxGGSSs5Error_pIgyozo_AESSsAF_pIegyrzo_AA6ObjectCRbzlTR
-objectdestroy.2
-$s10RealmSwift14LinkingObjectsC11descriptionSSvgSSSPyACyxGGXEfU_TA
-objectdestroy
-$s10RealmSwift18LinkingObjectsBaseCMa
-cachedRLMResults.get
-cachedRLMResults.set
-property.set
-object.set
-$sSo10RLMResultsCMa
-property.get
-object.get
-$sSis35_ExpressibleByBuiltinIntegerLiteralssAAP08_builtindE0xBI_tcfCTW
-$sSuSLsSL1loiySbx_xtFZTW
-$sSis17FixedWidthIntegerssAAP3maxxvgZTW
-bridged.get
-bridging
-$sSo13RLMObjectBaseCMa
-$sSo19RLMWeakObjectHandleCMa
-propertyName.get
-_observe
-observe
-value
-average
-sum
-max
-min
-elements.get
-formIndex
-_failEarlyRangeCheck
-_customIndexOfEquatableElement
-count.get
-isEmpty.get
-indices.get
-subscript.read
-endIndex.get
-startIndex.get
-distance
-isInvalidated.get
-realm.get
-withContiguousStorageIfAvailable
-_copyContents
-_copyToContiguousArray
-_customContainsEquatableElement
-underestimatedCount.get
-makeIterator
-deinit
-$sSo10RLMResultsCyyXlGSgSo19RLMCollectionChangeCSgs5Error_pSgIegggg_AdGSo7NSErrorCSgIeyByyy_TR
-$sSo8NSNumberCSgMa
-$sypSgMa
-$s10RealmSwift14SortDescriptorVSo07RLMSortD0Cs5Error_pIggozo_AcEsAF_pIegnrzo_TR04$s10a62Swift14LinkingObjectsC6sorted2byAA7ResultsCyxGqd___tSTRd__AA14cd20V7ElementRtd__lFSo07E10I0CAJXEfU_Tf3nnpf_n
-$s10RealmSwift14LinkingObjectsC6sorted2byAA7ResultsCyxGqd___tSTRd__AA14SortDescriptorV7ElementRtd__lFSo07RLMSortI0CAJXEfU_
-$s10RealmSwift14LinkingObjectsC6sorted2byAA7ResultsCyxGqd___tSTRd__AA14SortDescriptorV7ElementRtd__lFSo07RLMSortI0CAJXEfU_Tf4x_n
-rlmSortDescriptorValue.get
-$sSo17RLMSortDescriptorCMa
-first.get
-unsafeCastToRLMObject
-$s10RealmSwift14LinkingObjectsC11descriptionSSvgSSSPyACyxGGXEfU_
-appendLiteral
-appendInterpolation
-$sSSs20TextOutputStreamablessAAP5write2toyqd__z_ts0aB6StreamRd__lFTWs26DefaultStringInterpolationV_Tg5
-description.get
-$s10RealmSwift14LinkingObjectsC11descriptionSSvgTo
-$ss25_unimplementedInitializer9className04initD04file4line6columns5NeverOs12StaticStringV_A2JS2utFySRys5UInt8VGXEfU0_
-$ss25_unimplementedInitializer9className04initD04file4line6columns5NeverOs12StaticStringV_A2JS2utFySRys5UInt8VGXEfU0_yAMXEfU_
-countByEnumerating
-$s10RealmSwift18LinkingObjectsBaseC6object33_25CFEE8474EDA10420AA87D5D977CE22LLSo19RLMWeakObjectHandleCSgvsTo
-$s10RealmSwift18LinkingObjectsBaseC6object33_25CFEE8474EDA10420AA87D5D977CE22LLSo19RLMWeakObjectHandleCSgvgTo
-_$s10RealmSwift14SortDescriptorVSo07RLMSortD0Cs5Error_pIggozo_AcEsAF_pIegnrzo_TR04$s10a51Swift4ListC6sorted2byAA7ResultsCyxGqd___tSTRd__AA14cd20V7ElementRtd__lFSo07E10H0CAJXEfU_Tf3nnpf_n
-_$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlFSd_Tg5
-_$s10RealmSwift8ListBaseC11descriptionSSvgTo
-_$s10RealmSwift8ListBaseC23descriptionWithMaxDepth33_027551CC6B6B2DBBB6CF4A740CB6E5D6LLySSSuFTo
-_$s10RealmSwift8ListBaseC5arrayACSo8RLMArrayCyyXlG_tcfcTo
-_$s10RealmSwift8ListBaseCACycfcTo
-_$s10RealmSwift4ListCACyxGycfcTo
-_$s10RealmSwift17dynamicBridgeCast04fromB0ypx_tlF
-_$s10RealmSwift4ListCyxSicir
-_$s10RealmSwift4ListCyxSicir.resume.0
-_$s10RealmSwift4ListCyxSiciM.resume.0
-_$sypxIegnr_yXlxs5Error_pIeggrzo_10RealmSwift0B15CollectionValueRzlTR
-_$syXlxs5Error_pIggrzo_yXlxsAA_pIegnrzo_10RealmSwift0B15CollectionValueRzlTR
-_$s10RealmSwift4ListC8setValue_6forKeyyypSg_SStFTo
-_$s10RealmSwift4ListC3min10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTm
-_$s10RealmSwift4ListC4move4from2toySi_SitFTm
-_$sSo8RLMArrayCyyXlGSgSo19RLMCollectionChangeCSgs5Error_pSgIegggg_AdGSo7NSErrorCSgIeyByyy_TR
-_$s10RealmSwift4ListC5arrayACyxGSo8RLMArrayCyyXlG_tcfcTo
-_$s10RealmSwift4ListCA2A10MinMaxTypeRzrlE3minxSgyFTm
-_$s10RealmSwift4ListCyxGSTAAST12makeIterator0E0QzyFTW
-_$s10RealmSwift4ListCyxGSTAAST19underestimatedCountSivgTW
-_$s10RealmSwift4ListCyxGSTAAST31_customContainsEquatableElementySbSg0G0QzFTW
-_$s10RealmSwift4ListCyxGSTAAST22_copyToContiguousArrays0fG0Vy7ElementQzGyFTW
-_$s10RealmSwift4ListCyxGSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW
-_$s10RealmSwift4ListCyxGSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW
-_$s10RealmSwift4ListCyxGSkAASk5index_8offsetBy5IndexQzAH_SitFTW
-_$s10RealmSwift4ListCyxGSkAASk5index_8offsetBy07limitedF05IndexQzSgAI_SiAItFTW
-_$s10RealmSwift4ListCyxGSkAASk8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift4ListCyxGAA14ThreadConfinedA2aEP5realmAA0A0CSgvgTW
-_$s10RealmSwift4ListCyxGAA14ThreadConfinedA2aEP13isInvalidatedSbvgTW
-_$s10RealmSwift4ListCyxGSKAASK5index6before5IndexQzAH_tFTW
-_$s10RealmSwift4ListCyxGSKAASK9formIndex6beforey0E0Qzz_tFTW
-_$s10RealmSwift4ListCyxGSKAASK5index_8offsetBy5IndexQzAH_SitFTW
-_$s10RealmSwift4ListCyxGSKAASK5index_8offsetBy07limitedF05IndexQzSgAI_SiAItFTW
-_$s10RealmSwift4ListCyxGSKAASK8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift4ListCyxGSlAASl10startIndex0E0QzvgTW
-_$s10RealmSwift4ListCyxGSlAASl8endIndex0E0QzvgTW
-_$s10RealmSwift4ListCyxGSlAASly7ElementQz5IndexQzcirTW
-_$s10RealmSwift4ListCyxGSlAASly11SubSequenceQzSny5IndexQzGcigTW
-_$s10RealmSwift4ListCyxGSlAASl7indices7IndicesQzvgTW
-_$s10RealmSwift4ListCyxGSlAASl7isEmptySbvgTW
-_$s10RealmSwift4ListCyxGSlAASl5countSivgTW
-_$s10RealmSwift4ListCyxGSlAASl30_customIndexOfEquatableElementy0E0QzSgSg0H0QzFTW
-_$s10RealmSwift4ListCyxGSlAASl20_failEarlyRangeCheck_6boundsy5IndexQz_SnyAHGtFTW
-_$s10RealmSwift4ListCyxGSlAASl20_failEarlyRangeCheck_6boundsy5IndexQz_SNyAHGtFTW
-_$s10RealmSwift4ListCyxGSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW
-_$s10RealmSwift4ListCyxGSlAASl5index5after5IndexQzAH_tFTW
-_$s10RealmSwift4ListCyxGSlAASl9formIndex5aftery0E0Qzz_tFTW
-_$s10RealmSwift4ListCyxGs20LazySequenceProtocolAAsAEP8elements8ElementsQzvgTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP5index2ofSiSg7ElementQz_tFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP5index8matchingSiSgSo11NSPredicateC_tFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP5index8matching_SiSgSS_ypdtFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP6filteryAA7ResultsCy7ElementQzGSS_ypdtFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP6filteryAA7ResultsCy7ElementQzGSo11NSPredicateCFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP6sorted9byKeyPath9ascendingAA7ResultsCy7ElementQzGSS_SbtFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP6sorted2byAA7ResultsCy7ElementQzGqd___tSTRd__AA14SortDescriptorVAKRtd__lFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP3min10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP3max10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP3sum10ofPropertyqd__SS_tAA11AddableTypeRd__lFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP7average10ofPropertySdSgSS_tFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP5value6forKeyypSgSS_tFTW
-_$sSo8NSObjectC10FoundationE5value6forKeyypSgSS_tFTO
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP5value10forKeyPathypSgSS_tFTW
-_$sSo8NSObjectC10FoundationE5value10forKeyPathypSgSS_tFTO
-_$sSo8NSObjectC10FoundationE5value6forKeyypSgSS_tFTOTm
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP8setValue_6forKeyyypSg_SStFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP7observeySo20RLMNotificationTokenCyAA0aD6ChangeOyxGcFTW
-_$s10RealmSwift4ListCyxGAA0A10CollectionA2aEP8_observeySo20RLMNotificationTokenCyAA0aD6ChangeOyAA03AnyaD0Cy7ElementQzGGcFTW
-_$s10RealmSwift4ListCys5SliceVyACyxGGSnySiGciM.resume.0
-_$s10RealmSwift4ListCyxGSMAASMy7ElementQz5IndexQzcisTW
-_$s10RealmSwift4ListCyxGSMAASMy7ElementQz5IndexQzciMTW
-_$s10RealmSwift4ListCyxGSMAASMy11SubSequenceQzSny5IndexQzGcisTW
-_$s10RealmSwift4ListCyxGSMAASMy11SubSequenceQzSny5IndexQzGciMTW
-_$s10RealmSwift4ListCyxGSMAASMy11SubSequenceQzSny5IndexQzGciMTW.resume.0
-_$s10RealmSwift4ListCyxGSMAASM9partition2by5IndexQzSb7ElementQzKXE_tKFTW
-_$s10RealmSwift4ListCyxGSMAASM6swapAtyy5IndexQz_AGtFTW
-_$s10RealmSwift4ListCyxGSMAASM42_withUnsafeMutableBufferPointerIfSupportedyqd__Sgqd__Sry7ElementQzGzKXEKlFTW
-_$s10RealmSwift4ListCyxGSMAASM39withContiguousMutableStorageIfAvailableyqd__Sgqd__Sry7ElementQzGzKXEKlFTW
-_$s10RealmSwift4ListCyxGSMAASM42_withUnsafeMutableBufferPointerIfSupportedyqd__Sgqd__Sry7ElementQzGzKXEKlFTWTm
-_$s10RealmSwift4ListC8bridging4from4withACyxGyp_ypSgtFZ
-_$s10RealmSwift4ListC7bridgedyp15objectiveCValue_ypSg8metadatatvg
-_$s10RealmSwift4ListCyxGAA28AssistedObjectiveCBridgeableA2aEP8bridging4from4withxyp_ypSgtFZTW
-_$s10RealmSwift4ListCyxGAA28AssistedObjectiveCBridgeableA2aEP7bridgedyp15objectiveCValue_ypSg8metadatatvgTW
-_$sSiSQsSQ2eeoiySbx_xtFZTW
-_$sSayxSicir
-_$sSiSxsSx8advanced2byx6StrideQz_tFTW
-_$s10RealmSwift4ListC5index8matching_SiSgSS_ypdtFTf4xnn_n
-_$s10RealmSwift4ListCyxSicisTf4gnn_n
-_$sSi10RealmSwift4ListCyxGAA0A15CollectionValueRzlIetMyg_TC
-_$sypxIegnr_yXlxs5Error_pIeggrzo_10RealmSwift0B15CollectionValueRzlTRTA
-_$syXlxs5Error_pIggrzo_yXlxsAA_pIegnrzo_10RealmSwift0B15CollectionValueRzlTRTA
-_$s10RealmSwift4ListC8setValue_6forKeyyypSg_SStFTf4nxn_n
-_$s10RealmSwift4ListC6filteryAA7ResultsCyxGSS_ypdtFTf4xnn_n
-_$s10RealmSwift4ListC6sorted9byKeyPath9ascendingAA7ResultsCyxGSS_SbtFTf4xnn_n
-_$s10RealmSwift4ListC7average10ofPropertySdSgSS_tFTf4xn_n
-_$s10RealmSwift4ListC7observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyACyxGGcFySo8RLMArrayCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_TA
-_$s10RealmSwift4ListC5arrayACyxGSo8RLMArrayCyyXlG_tcfcTf4dd_n
-_$sSTsE8reversedSay7ElementQzGyFTf4g_n
-_objectdestroy.28Tm
-_$s10RealmSwift4ListC8_observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyAA03AnyaG0CyxGGcFySo8RLMArrayCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_TA
-_$s10RealmSwift4ListCys5SliceVyACyxGGSnySiGcisTf4gxn_n
-_$sSnySiG10RealmSwift4ListCyxGAB0A15CollectionValueRzlIetMyg_TC
-_$s10RealmSwift4ListCyxGSTAA8Iterator_StWT
-_$s10RealmSwift4ListCyxGAA0A14CollectionBaseAA7Element_AA0aD5ValuePWT
-_$s10RealmSwift4ListCyxGAA0A14CollectionBaseAAWI
-_$s10RealmSwift4ListCyxGSkAASKWb
-_$s10RealmSwift4ListCyxGSkAA7Indices_SkWT
-_$s10RealmSwift4ListCyxGSkAA11SubSequence_SkWT
-_$s10RealmSwift4ListCyxGs22LazyCollectionProtocolAASlWb
-_$s10RealmSwift4ListCyxGs22LazyCollectionProtocolAAs0d8SequenceF0PWb
-_$s10RealmSwift4ListCyxGs22LazyCollectionProtocolAA8Elements_SlWT
-_$s10RealmSwift4ListCyxGSKAASlWb
-_$s10RealmSwift4ListCyxGSKAA7Indices_SKWT
-_$s10RealmSwift4ListCyxGSKAA11SubSequence_SKWT
-_$s10RealmSwift4ListCyxGSlAASTWb
-_$s10RealmSwift4ListCyxGSlAA5Index_SLWT
-_$s10RealmSwift4ListCyxGSlAA7Indices_SlWT
-_$s10RealmSwift4ListCyxGSlAA11SubSequence_SlWT
-_$s10RealmSwift4ListCyxGs20LazySequenceProtocolAASTWb
-_$s10RealmSwift4ListCyxGs20LazySequenceProtocolAA8Elements_STWT
-_$s10RealmSwift4ListCyxGAA0A10CollectionAAWI
-_$s10RealmSwift4ListCyxGSMAASlWb
-_$s10RealmSwift4ListCyxGSMAA11SubSequence_SMWT
-_$s10RealmSwift4ListCMi
-_$s10RealmSwift4ListCMr
-_$sSnySiG10RealmSwift4ListCyxGAB0A15CollectionValueRzlIetWnl_TC
-_$sSi10RealmSwift4ListCyxGAA0A15CollectionValueRzlIetWnl_TC
-_$s10RealmSwift0A16CollectionChangeOyAA4ListCyxGGIegn_AGIegg_AA0aC5ValueRzlTRTA
-_$s10RealmSwift0A16CollectionChangeOyAA4ListCyxGGAA0aC5ValueRzlWOr
-_$s10RealmSwift0A16CollectionChangeOyAA4ListCyxGGAA0aC5ValueRzlWOy
-_$s10RealmSwift0A16CollectionChangeOyAA4ListCyxGGAA0aC5ValueRzlWOs
-_$s10RealmSwift0A16CollectionChangeOyAA4ListCyxGGAA0aC5ValueRzlWOe
-_$sypSgWOb
-_$sSi10RealmSwift4ListCyxGAA0A15CollectionValueRzlIetWnn_TC
-_$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA0aC5ValueRzlWOb
-_$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA0aC5ValueRzlWOs
-_$s10RealmSwift0A16CollectionChangeOyAA4ListCyxGGAA0aC5ValueRzlWOrTm
-_$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA0aC5ValueRzlWOe
-_$sSiSayxGlIetMyg_TC
-_$s10RealmSwift4ListCyxGSlAASl8distance4from2toSi5IndexQz_AItFTW
-_$syXlxs5Error_pIggrzo_yXlxsAA_pIegnrzo_10RealmSwift0B15CollectionValueRzlTRTA.18
-_$s10RealmSwift4ListCyxGSlAASly7ElementQz5IndexQzcirTW.resume.0
-_$s10RealmSwift4ListCyxGSMAASMy7ElementQz5IndexQzciMTW.resume.0
-_$s10RealmSwift4ListCyxGSlAASl34_customLastIndexOfEquatableElementy0F0QzSgSg0I0QzFTW
-_block_destroy_helper.42
-_$sSayxSicir.resume.0
-_$s10RealmSwift4ListCyxGSlAASl5index_8offsetBy07limitedF05IndexQzSgAI_SiAItFTW
-_block_copy_helper.41
-_$s10RealmSwift0A16CollectionChangeOyAA4ListCyxGGAA0aC5ValueRzlWOb
-_$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlFTA.22
-_$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlFTA.26
-_$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlFTA.33
-_$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlFTA.37
-_$sypxIegnr_yXlxs5Error_pIeggrzo_10RealmSwift0B15CollectionValueRzlTRTA.14
-_$s10RealmSwift4ListCyxGSlAASl5index_8offsetBy5IndexQzAH_SitFTW
-_symbolic ypxIegnr_
-_symbolic yXlxs5Error_pIggrzo_
-_$syXlSgML
-_$sSayyXlGML
-_symbolic 10RealmSwift0A16CollectionChangeOyAA4ListCyxGGIegn_
-_symbolic 10RealmSwift4ListCyxG
-_block_descriptor.43
-_$sS2iSzsWL
-_associated conformance 10RealmSwift4ListCyxGSTAA8Iterator_St
-_associated conformance 10RealmSwift4ListCyxGAA0A14CollectionBaseAA7Element_AA0aD5Value
-_$s10RealmSwift4ListCyxGAA0A14CollectionBaseAAWp
-_associated conformance 10RealmSwift4ListCyxGSkAASK
-_associated conformance 10RealmSwift4ListCyxGSkAA7Indices_Sk
-_associated conformance 10RealmSwift4ListCyxGSkAA11SubSequence_Sk
-_associated conformance 10RealmSwift4ListCyxGs22LazyCollectionProtocolAASl
-_associated conformance 10RealmSwift4ListCyxGs22LazyCollectionProtocolAAs0d8SequenceF0
-_associated conformance 10RealmSwift4ListCyxGs22LazyCollectionProtocolAA8Elements_Sl
-_associated conformance 10RealmSwift4ListCyxGSKAASl
-_associated conformance 10RealmSwift4ListCyxGSKAA7Indices_SK
-_associated conformance 10RealmSwift4ListCyxGSKAA11SubSequence_SK
-_associated conformance 10RealmSwift4ListCyxGSlAAST
-_associated conformance 10RealmSwift4ListCyxGSlAA5Index_SL
-_associated conformance 10RealmSwift4ListCyxGSlAA7Indices_Sl
-_associated conformance 10RealmSwift4ListCyxGSlAA11SubSequence_Sl
-_symbolic s5SliceVy10RealmSwift4ListCyxGG
-_associated conformance 10RealmSwift4ListCyxGs20LazySequenceProtocolAAST
-_associated conformance 10RealmSwift4ListCyxGs20LazySequenceProtocolAA8Elements_ST
-_$s10RealmSwift4ListCyxGAA0A10CollectionAAWp
-_associated conformance 10RealmSwift4ListCyxGSMAASl
-_associated conformance 10RealmSwift4ListCyxGSMAA11SubSequence_SM
-_$s10RealmSwift4ListCyxGAA28AssistedObjectiveCBridgeableAAMc
-_$s10RealmSwift4ListCyxGAA28AssistedObjectiveCBridgeableAAWP
-_symbolic So11RLMListBaseC
-_$s10RealmSwift8ListBaseCML
-_$s10RealmSwift8ListBaseCMf
-_symbolic _____ 10RealmSwift8ListBaseC
-_$s10RealmSwift8ListBaseCMF
-_$s10RealmSwift4ListCMI
-_$s10RealmSwift4ListCMP
-_symbolic _____ 10RealmSwift4ListC
-_$s10RealmSwift4ListCMF
-_$sSo8RLMArrayCML
-_$sSnySiGSnyxGSXsWL
-_symbolic 10RealmSwift4ListC
-_$s10RealmSwift4ListCyxGSTAAMA
-_$s10RealmSwift4ListCyxGSkAAMA
-_$s10RealmSwift4ListCyxGSKAAMA
-_$s10RealmSwift4ListCyxGSlAAMA
-_$s10RealmSwift4ListCyxGs20LazySequenceProtocolAAMA
-_symbolic $ss17MutableCollectionP
-_$s10RealmSwift4ListCyxGSMAAMA
-_$s10RealmSwift4ListC8rlmArrayACyxGSo8RLMArrayCyyXlG_tcfCTq
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/List.swift
-$s10RealmSwift0A16CollectionChangeOyAA4ListCyxGGAA0aC5ValueRzlWOr
-$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA0aC5ValueRzlWOb
-$sypSgWOb
-$s10RealmSwift0A16CollectionChangeOyAA4ListCyxGGIegn_AGIegg_AA0aC5ValueRzlTRTA
-$s10RealmSwift0A16CollectionChangeOyAA4ListCyxGGIegn_AGIegg_AA0aC5ValueRzlTR
-$s10RealmSwift4ListCMr
-$s10RealmSwift4ListCMi
-$s10RealmSwift4ListCyxGSMAA11SubSequence_SMWT
-$s10RealmSwift4ListCyxGSMAASlWb
-$s10RealmSwift4ListCyxGAA0A10CollectionAAWI
-$s10RealmSwift4ListCyxGs20LazySequenceProtocolAA8Elements_STWT
-$s10RealmSwift4ListCyxGs20LazySequenceProtocolAASTWb
-$s10RealmSwift4ListCyxGSlAA11SubSequence_SlWT
-$s10RealmSwift4ListCyxGSlAA7Indices_SlWT
-$s10RealmSwift4ListCyxGSlAA5Index_SLWT
-$s10RealmSwift4ListCyxGSlAASTWb
-$s10RealmSwift4ListCyxGSKAA11SubSequence_SKWT
-$s10RealmSwift4ListCyxGSKAA7Indices_SKWT
-$s10RealmSwift4ListCyxGSKAASlWb
-$s10RealmSwift4ListCyxGs22LazyCollectionProtocolAA8Elements_SlWT
-$s10RealmSwift4ListCyxGs22LazyCollectionProtocolAAs0d8SequenceF0PWb
-$s10RealmSwift4ListCyxGs22LazyCollectionProtocolAASlWb
-$s10RealmSwift4ListCyxGSkAA11SubSequence_SkWT
-$s10RealmSwift4ListCyxGSkAA7Indices_SkWT
-$s10RealmSwift4ListCyxGSkAASKWb
-$s10RealmSwift4ListCyxGAA0A14CollectionBaseAAWI
-$s10RealmSwift4ListCyxGAA0A14CollectionBaseAA7Element_AA0aD5ValuePWT
-$s10RealmSwift4ListCyxGSTAA8Iterator_StWT
-subscript.set
-$sSnySiGSnyxGSXsWl
-$s10RealmSwift4ListCMa
-$s10RealmSwift4ListC8_observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyAA03AnyaG0CyxGGcFySo8RLMArrayCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_TA
-$s10RealmSwift4ListC8_observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyAA03AnyaG0CyxGGcFySo8RLMArrayCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_
-objectdestroy.28
-reversed
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtF0B0STQz_Ti5
-objectdestroy.35
-objectdestroy.31
-$s10RealmSwift4ListC7observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyACyxGGcFySo8RLMArrayCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_TA
-$s10RealmSwift4ListC7observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyACyxGGcFySo8RLMArrayCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_
-$sSo8NSNumberCSds5Error_pIggdzo_ABSdsAC_pIegnrzo_TR
-$sypSdIegnd_So8NSNumberCSds5Error_pIeggdzo_TR
-objectdestroy.24
-objectdestroy.20
-$syXlxs5Error_pIggrzo_yXlxsAA_pIegnrzo_10RealmSwift0B15CollectionValueRzlTRTA
-$syXlxs5Error_pIggrzo_yXlxsAA_pIegnrzo_10RealmSwift0B15CollectionValueRzlTR
-$sypxIegnr_yXlxs5Error_pIeggrzo_10RealmSwift0B15CollectionValueRzlTRTA
-$sypxIegnr_yXlxs5Error_pIeggrzo_10RealmSwift0B15CollectionValueRzlTR
-$sSiSxsSx8advanced2byx6StrideQz_tFTW
-$s10RealmSwift8ListBaseCMa
-$sSayxSicir
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtF
-$sSo8RLMArrayCMa
-_withUnsafeMutableBufferPointerIfSupported
-swapAt
-partition
-subscript.modify
-removeSubrange
-next
-$sSnyxGSlsSxRzSZ6StrideRpzrlSl9formIndex5aftery0C0Qzz_tFTWSi_Tg5
-$sSnsSxRzSZ6StrideRpzrlE5index5afterxx_tFSi_Tg5
-removeLast
-throwRealmException
-+
-$sSis23CustomStringConvertiblessAAP11descriptionSSvgTW
-$sS2iSzsWl
-removeFirst
-replaceSubrange
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTW
-$sSa9formIndex5afterySiz_tF
-$sSa9formIndex5afterySiz_tFTf4nd_n
-$sSayxGSlsSly7ElementQz5IndexQzcirTW
-$sSayxGSlsSl8endIndex0B0QzvgTW
-$sSo8RLMArrayCyyXlGSgSo19RLMCollectionChangeCSgs5Error_pSgIegggg_AdGSo7NSErrorCSgIeyByyy_TR
-move
-replace
-removeAll
-append
-$sSayyXlGMa
-last.get
-$syXlSgMa
-$sSo8RLMRealmC10RealmSwift0B0Cs5Error_pIggozo_AbEsAF_pIegnrzo_TR
-$s10RealmSwift4ListC5realmAA0A0CSgvgAFSo8RLMRealmCXEfU_
-descriptionWithMaxDepth
-$s10RealmSwift8ListBaseC11descriptionSSvgTo
-$s10RealmSwift14SortDescriptorVSo07RLMSortD0Cs5Error_pIggozo_AcEsAF_pIegnrzo_TR04$s10a51Swift4ListC6sorted2byAA7ResultsCyxGqd___tSTRd__AA14cd20V7ElementRtd__lFSo07E10H0CAJXEfU_Tf3nnpf_n
-$s10RealmSwift4ListC6sorted2byAA7ResultsCyxGqd___tSTRd__AA14SortDescriptorV7ElementRtd__lFSo07RLMSortH0CAJXEfU_
-$s10RealmSwift4ListC6sorted2byAA7ResultsCyxGqd___tSTRd__AA14SortDescriptorV7ElementRtd__lFSo07RLMSortH0CAJXEfU_Tf4x_n
-_$s10Foundation4DataV15_RepresentationOWOy
-_$s10Foundation4DataVSgWOe
-_$s10Foundation4DataV15_RepresentationOWOe
-_$s10RealmSwift0A0C13ConfigurationV03rlmC0So08RLMRealmC0Cvg
-_$s10RealmSwift9MigrationV16enumerateObjects6ofType_ySS_yAA13DynamicObjectCSg_AHtXEtFySo9RLMObjectCSg_AKtXEfU_TA
-_$sSo9RLMObjectCSgACIggg_A2CIeggg_TRTA
-_$sSo9RLMObjectCSgACIeggg_A2CIyByy_TR
-_$s10RealmSwift22accessorMigrationBlockyySo12RLMMigrationC_s6UInt64VtcyAA0D0V_AFtcFyAD_AFtcfU_
-_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo15RLMObjectSchemaC_Tg5
-_symbolic 10RealmSwift13DynamicObjectCSgADIggg_
-_symbolic So9RLMObjectCSgACIggg_
-_$s10RealmSwift9MigrationVMf
-_symbolic _____ 10RealmSwift9MigrationV
-_symbolic So12RLMMigrationC
-_$s10RealmSwift9MigrationVMF
-_$sSo15RLMObjectSchemaCML
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Migration.swift
-$s10RealmSwift22accessorMigrationBlockyySo12RLMMigrationC_s6UInt64VtcyAA0D0V_AFtcFyAD_AFtcfU_
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTWSo15RLMObjectSchemaC_Tg5
-$sSa9formIndex5afterySiz_tFSo15RLMObjectSchemaC_Tg5
-$sSayxGSlsSly7ElementQz5IndexQzcirTWSo15RLMObjectSchemaC_Tg5
-$sSayxSicirSo15RLMObjectSchemaC_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFSo15RLMObjectSchemaC_Tg5
-$sSa29_hoistableIsNativeTypeCheckedSbyFSo15RLMObjectSchemaC_Tg5
-$sSayxGSlsSl8endIndex0B0QzvgTWSo15RLMObjectSchemaC_Tg5
-$sSa8endIndexSivgSo15RLMObjectSchemaC_Tg5
-$sSa9_getCountSiyFSo15RLMObjectSchemaC_Tg5
-$sSlsE20_failEarlyRangeCheck_6boundsy5IndexQz_SNyADGtFs18_CocoaArrayWrapperV_Tgq5
-$sSo15RLMObjectSchemaCMa
-$s10RealmSwift9MigrationVMa
-renameProperty
-deleteData
-delete
-create
-$sSo9RLMObjectCSgACIeggg_A2CIyByy_TR
-$sSo9RLMObjectCSgACIggg_A2CIeggg_TRTA
-$sSo9RLMObjectCSgACIggg_A2CIeggg_TR
-$s10RealmSwift9MigrationV16enumerateObjects6ofType_ySS_yAA13DynamicObjectCSg_AHtXEtFySo9RLMObjectCSg_AKtXEfU_TA
-$s10RealmSwift9MigrationV16enumerateObjects6ofType_ySS_yAA13DynamicObjectCSg_AHtXEtFySo9RLMObjectCSg_AKtXEfU_
-enumerateObjects
-newSchema.get
-oldSchema.get
-performMigration
-schemaVersionAtURL
-_$s10RealmSwift6ObjectCACycfcTo
-_$s10RealmSwift6ObjectC13isInvalidatedSbvgTo
-_$s10RealmSwift6ObjectC11descriptionSSvgTo
-_$s10RealmSwift6ObjectC15objectUtilClassyyXlXpSbFZTo
-_$s10RealmSwift6ObjectC10primaryKeySSSgyFZTo
-_$s10RealmSwift6ObjectC17ignoredPropertiesSaySSGyFZTo
-_$s10RealmSwift6ObjectCyypSgSScigTo
-_$s10RealmSwift6ObjectCyypSgSScisTo
-_$s10RealmSwift6ObjectCyypSgSSciM.resume.0
-_$s10RealmSwift6ObjectC7observeySo20RLMNotificationTokenCyAA0C6ChangeOcFySaySSGSg_SayypGSgALs5Error_pSgtcfU_
-_$sSaySSGSgSayypGSgADs5Error_pSgIeggggg_So7NSArrayCSgA2ISo7NSErrorCSgIeyByyyy_TR
-_$s10RealmSwift6ObjectC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfcTo
-_$s10RealmSwift6ObjectC5value6schemaACyp_So9RLMSchemaCtcfcTo
-_$s10RealmSwift6ObjectCAA14ThreadConfinedA2aDP5realmAA0A0CSgvgTW
-_$s10RealmSwift6ObjectCAA14ThreadConfinedA2aDP13isInvalidatedSbvgTW
-_$s10RealmSwift6ObjectCAA0A15CollectionValueA2aDP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$s10RealmSwift6ObjectCAA0A15CollectionValueA2aDP04_nilE0xyFZTW
-_$s10RealmSwift13DynamicObjectCyypSgSScigTo
-_$s10RealmSwift6ObjectCyypSgSScigToTm
-_$s10RealmSwift13DynamicObjectCyypSgSScisTo
-_$s10RealmSwift13DynamicObjectCyypSgSSciM.resume.0
-_$s10RealmSwift13DynamicObjectC5value15forUndefinedKeyypSgSS_tFTo
-_$s10RealmSwift13DynamicObjectC8setValue_15forUndefinedKeyyypSg_SStFTo
-_$s10RealmSwift13DynamicObjectC28shouldIncludeInDefaultSchemaSbyFZTo
-_$s10RealmSwift13DynamicObjectCACycfcTo
-_$s10RealmSwift6ObjectC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfCTm
-_$s10RealmSwift6ObjectC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfcTm
-_$s10RealmSwift13DynamicObjectC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfcTo
-_$s10RealmSwift6ObjectC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfcToTm
-_$s10RealmSwift6ObjectC5value6schemaACyp_So9RLMSchemaCtcfCTm
-_$s10RealmSwift6ObjectC5value6schemaACyp_So9RLMSchemaCtcfcTm
-_$s10RealmSwift13DynamicObjectC5value6schemaACyp_So9RLMSchemaCtcfcTo
-_$s10RealmSwift6ObjectC5value6schemaACyp_So9RLMSchemaCtcfcToTm
-_$s10RealmSwift10ObjectUtilC12swiftVersion33_95A69397B44B27F7A8F436871D45D9E6LLSo8NSStringCyFZTo
-_$s10RealmSwift10ObjectUtilC25ignoredPropertiesForClass33_95A69397B44B27F7A8F436871D45D9E6LLySo7NSArrayCSgyXlXpFZTo
-_$s10RealmSwift10ObjectUtilC25indexedPropertiesForClass33_95A69397B44B27F7A8F436871D45D9E6LLySo7NSArrayCSgyXlXpFZTo
-_$s10RealmSwift10ObjectUtilC32linkingObjectsPropertiesForClass33_95A69397B44B27F7A8F436871D45D9E6LLySo12NSDictionaryCSgyXlXpFZTo
-_$s10RealmSwift10ObjectUtilC27getNonIgnoredMirrorChildren33_95A69397B44B27F7A8F436871D45D9E6LL3forSaySSSg5label_yp5valuetGyp_tFZ
-_$s10RealmSwift10ObjectUtilC27getNonIgnoredMirrorChildren33_95A69397B44B27F7A8F436871D45D9E6LL3forSaySSSg5label_yp5valuetGyp_tFZSbAgH_ypAIt_tXEfU_
-_$s10RealmSwift10ObjectUtilC03getB10Properties33_95A69397B44B27F7A8F436871D45D9E6LLySaySo24RLMSwiftPropertyMetadataCGypFZ
-_$s10RealmSwift10ObjectUtilC03getB10Properties33_95A69397B44B27F7A8F436871D45D9E6LLySaySo24RLMSwiftPropertyMetadataCGypFZTo
-_$s10RealmSwift10ObjectUtilC26requiredPropertiesForClass33_95A69397B44B27F7A8F436871D45D9E6LLySaySSGypFZTo
-_$s10RealmSwift6ObjectCACycfCTm
-_$s10RealmSwift6ObjectCACycfcTm
-_$s10RealmSwift10ObjectUtilCACycfcTo
-_$s10RealmSwift6ObjectCACycfcToTm
-_$s10RealmSwift6ObjectCfDTm
-_$s10RealmSwift19forceCastToInferred33_95A69397B44B27F7A8F436871D45D9E6LLyq_xr0_lF
-_$s10RealmSwift6ObjectCAA28AssistedObjectiveCBridgeableA2aDP8bridging4from4withxyp_ypSgtFZTW
-_$s10RealmSwift6ObjectCAA28AssistedObjectiveCBridgeableA2aDP7bridgedyp15objectiveCValue_ypSg8metadatatvgTW
-_$ss15ContiguousArrayV15reserveCapacityyySiF10RealmSwift14PropertyChangeV_Tg5
-_$ss15ContiguousArrayV15reserveCapacityyySiFSo24RLMSwiftPropertyMetadataC_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift14PropertyChangeV_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tFSo24RLMSwiftPropertyMetadataC_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift14PropertyChangeV_Tg5Tm
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift14PropertyChangeVG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGySo24RLMSwiftPropertyMetadataCG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift14PropertyChangeVG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEySo24RLMSwiftPropertyMetadataCG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift14PropertyChangeVG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEySo24RLMSwiftPropertyMetadataCG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift14PropertyChangeVG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHySo24RLMSwiftPropertyMetadataCG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift14PropertyChangeVG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEySo24RLMSwiftPropertyMetadataCG_Tg5
-_$sSh8_VariantV6insertySb8inserted_x17memberAfterInserttxnFSS_Tg5
-_$ss10_NativeSetV6resize8capacityySi_tFSS_Tg5
-_$ss10_NativeSetV4copyyyFSS_Tg5
-_$ss10_NativeSetV13copyAndResize8capacityySi_tFSS_Tg5
-_$sSuSzsSz1ooiyxx_xtFZTW
-_$s10RealmSwift6ObjectCyypSgSScisTf4ngXn_n
-_$sSS10RealmSwift6ObjectCIetMgg_TC
-_$s10RealmSwift6ObjectC7observeySo20RLMNotificationTokenCyAA0C6ChangeOcFySaySSGSg_SayypGSgALs5Error_pSgtcfU_TA
-_$s10RealmSwift4ListCyAA13DynamicObjectCGMa
-_$s10RealmSwift6ObjectCMaTm
-_$sSS10RealmSwift13DynamicObjectCIetMgg_TC
-_$s10RealmSwift13DynamicObjectC8setValue_15forUndefinedKeyyypSg_SStFTf4nxn_n
-_$s10RealmSwift6ObjectCAA0A15CollectionValueAAWI
-_$s10RealmSwift14PropertyChangeVwCP
-_$s10RealmSwift14PropertyChangeVwxx
-_$s10RealmSwift14PropertyChangeVwcp
-_$s10RealmSwift14PropertyChangeVwca
-___swift_assign_boxed_opaque_existential_0
-___swift_memcpy80_8
-_$s10RealmSwift14PropertyChangeVwta
-_$s10RealmSwift14PropertyChangeVwet
-_$s10RealmSwift14PropertyChangeVwst
-_$s10RealmSwift12ObjectChangeOwCP
-_$s10RealmSwift12ObjectChangeOWOy
-_$s10RealmSwift12ObjectChangeOwxx
-_$s10RealmSwift12ObjectChangeOWOe
-_$s10RealmSwift12ObjectChangeOwcp
-_$s10RealmSwift12ObjectChangeOwca
-___swift_memcpy9_8
-_$s10RealmSwift12ObjectChangeOwta
-_$s10RealmSwift12ObjectChangeOwet
-_$s10RealmSwift12ObjectChangeOwst
-_$s10RealmSwift12ObjectChangeOwug
-_$s10RealmSwift12ObjectChangeOwup
-_$s10RealmSwift12ObjectChangeOwui
-_$sSSSgWOy
-_$sSSSg5label_yp5valuetWOh
-_$sSSSg5label_yp5valuetSgWOh
-_$sSi6offset_SSSg5label_yp5valuet7elementtSgWOh
-_$ss10_NativeSetV9insertNew_2at8isUniqueyxn_s10_HashTableV6BucketVSbtFSS_Tg5Tf4xnnn_n
-_$sSh8containsySbxFSS_Tg5Tf4xn_n
-_$sSqsSQRzlE2eeoiySbxSg_ABtFZs6MirrorV12DisplayStyleO_Tg5Tf4nnd_n
-_$s10RealmSwift10ObjectUtilC27getOptionalPropertyMetadata33_95A69397B44B27F7A8F436871D45D9E6LL3for2atSo08RLMSwiftgH0CSgSSSg5label_yp5valuet_SitFZTf4nndd_n
-_$s10RealmSwift10ObjectUtilC03getB10Properties33_95A69397B44B27F7A8F436871D45D9E6LLySaySo24RLMSwiftPropertyMetadataCGypFZAGSi_SSSg5label_yp5valuettXEfU_Tf4dnnd_n
-_$sSi6offset_SSSg5label_yp5valuet7elementtWOh
-_$ss6MirrorV12DisplayStyleOSgWOh
-_$ss6MirrorV12DisplayStyleOSgWOc
-_$ss6MirrorV12DisplayStyleOSgWOb
-_$ss6MirrorV12DisplayStyleOSg_AEtWOh
-_$s10RealmSwift10ObjectUtilC27getNonIgnoredMirrorChildren33_95A69397B44B27F7A8F436871D45D9E6LL3forSaySSSg5label_yp5valuetGyp_tFZSbAgH_ypAIt_tXEfU_TA
-_$sSSSgypSbs5Error_pIggndzo_AA5label_yp5valuetSbsAB_pIegndzo_TRTA
-_$s10Foundation6LocaleVSgWOh
-_$ss6MirrorV12DisplayStyleOSgWOhTm
-_$s10RealmSwift14PropertyChangeVWOc
-_$s10RealmSwift14PropertyChangeVWOh
-_symbolic 10RealmSwift12ObjectChangeOIegg_
-_$sSo11RLMListBaseCML
-_$s10RealmSwift4ListCyAA13DynamicObjectCGML
-_$s10RealmSwift13DynamicObjectCAA0D0CAA0A15CollectionValueAAWL
-_$s10RealmSwift6ObjectCSo8NSObjectCSQ10ObjectiveCWL
-_$s10RealmSwift6ObjectCAA28AssistedObjectiveCBridgeableAAMc
-_$s10RealmSwift6ObjectCAA28AssistedObjectiveCBridgeableAAWP
-_symbolic So13RLMObjectBaseC
-_$s10RealmSwift6ObjectCML
-_$s10RealmSwift6ObjectCMf
-_symbolic _____ 10RealmSwift6ObjectC
-_$s10RealmSwift6ObjectCMF
-_$s10RealmSwift14PropertyChangeVWV
-_$s10RealmSwift14PropertyChangeVMf
-_symbolic _____ 10RealmSwift14PropertyChangeV
-_symbolic ypSg
-_$s10RealmSwift14PropertyChangeVMF
-_$s10RealmSwift12ObjectChangeOWV
-_$s10RealmSwift12ObjectChangeOMf
-_symbolic _____ 10RealmSwift12ObjectChangeO
-_symbolic Say_____G 10RealmSwift14PropertyChangeV
-_$s10RealmSwift12ObjectChangeOMF
-_$s10RealmSwift13DynamicObjectCML
-_$s10RealmSwift13DynamicObjectCMf
-_symbolic _____ 10RealmSwift13DynamicObjectC
-_$s10RealmSwift13DynamicObjectCMF
-_$s10RealmSwift10ObjectUtilCML
-_$s10RealmSwift10ObjectUtilCMf
-_symbolic _____ 10RealmSwift10ObjectUtilC
-_$s10RealmSwift10ObjectUtilCMF
-_$sSo24RLMSwiftPropertyMetadataCML
-_$ss23_ContiguousArrayStorageCySo24RLMSwiftPropertyMetadataCGML
-_$sSSSgML
-_$sSo8NSStringCSgML
-_$sSo8NSStringCML
-_$s10Foundation4DateVSgML
-_$s10Foundation4DataVSgML
-_$s10RealmSwift6ObjectCSgML
-_$s10RealmSwift0A8OptionalCySiGML
-_$s10RealmSwift0A8OptionalCys4Int8VGML
-_$s10RealmSwift0A8OptionalCys5Int16VGML
-_$s10RealmSwift0A8OptionalCys5Int32VGML
-_$s10RealmSwift0A8OptionalCys5Int64VGML
-_$s10RealmSwift0A8OptionalCySfGML
-_$s10RealmSwift0A8OptionalCySdGML
-_$s10RealmSwift0A8OptionalCySbGML
-_$sSo15RLMOptionalBaseCML
-_$sypXpML
-_symbolic ShySSG
-_symbolic 10RealmSwift10ObjectUtilCXMT
-_symbolic SSSgypSbs5Error_pIggndzo_
-_$ss17_AnyCollectionBoxCySSSg5label_yp5valuetGML
-_$sSSSg5label_yp5valuetML
-_$ss11_SetStorageCySSGML
-_$sS2SSysWL
-_$sSo9RLMObjectCML
-_$ss23_ContiguousArrayStorageCy10RealmSwift14PropertyChangeVGML
-_symbolic 10RealmSwift12ObjectChangeO
-_$s10RealmSwift12ObjectChangeOMB
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Object.swift
-$s10RealmSwift14PropertyChangeVWOh
-$s10RealmSwift14PropertyChangeVWOc
-$ss6MirrorV12DisplayStyleOSgWOh
-$sSSSgypSbs5Error_pIggndzo_AA5label_yp5valuetSbsAB_pIegndzo_TRTA
-$sSSSgypSbs5Error_pIggndzo_AA5label_yp5valuetSbsAB_pIegndzo_TR
-$s10RealmSwift10ObjectUtilC27getNonIgnoredMirrorChildren33_95A69397B44B27F7A8F436871D45D9E6LL3forSaySSSg5label_yp5valuetGyp_tFZSbAgH_ypAIt_tXEfU_TA
-$ss6MirrorV12DisplayStyleOSg_AEtWOh
-$ss6MirrorV12DisplayStyleOSgWOb
-$ss6MirrorV12DisplayStyleOSgWOc
-$sSi6offset_SSSg5label_yp5valuet7elementtWOh
-$s10RealmSwift10ObjectUtilC03getB10Properties33_95A69397B44B27F7A8F436871D45D9E6LLySaySo24RLMSwiftPropertyMetadataCGypFZAGSi_SSSg5label_yp5valuettXEfU_Tf4dnnd_n
-Object.swift
-getOptionalPropertyMetadata
-$sSo11RLMListBaseCMa
-dynamic_cast_existential_1_conditional
-$sypXpMa
-$sSo15RLMOptionalBaseCMa
-$s10RealmSwift0A8OptionalCySbGMa
-$s10RealmSwift0A8OptionalCySdGMa
-$s10RealmSwift0A8OptionalCySfGMa
-$s10RealmSwift0A8OptionalCys5Int64VGMa
-$s10RealmSwift0A8OptionalCys5Int32VGMa
-$s10RealmSwift0A8OptionalCys5Int16VGMa
-$s10RealmSwift0A8OptionalCys4Int8VGMa
-$s10RealmSwift0A8OptionalCySiGMa
-$s10RealmSwift6ObjectCSgMa
-$s10RealmSwift6ObjectCMa
-$s10Foundation4DataVSgMa
-$s10Foundation4DateVSgMa
-$sSo8NSStringCSgMa
-$sSo8NSStringCMa
-$sSSSgMa
-contains
-$ss10_NativeSetV9insertNew_2at8isUniqueyxn_s10_HashTableV6BucketVSbtFSS_Tg5Tf4xnnn_n
-$ss10_NativeSetV16_unsafeInsertNew_2atyxn_s10_HashTableV6BucketVtFSS_Tg5
-$sSi6offset_SSSg5label_yp5valuet7elementtSgWOh
-$sSSSg5label_yp5valuetSgWOh
-$sSSSg5label_yp5valuetWOh
-$s10RealmSwift12ObjectChangeOMa
-$s10RealmSwift12ObjectChangeOwui
-$s10RealmSwift12ObjectChangeOwup
-$s10RealmSwift12ObjectChangeOwug
-$s10RealmSwift12ObjectChangeOwst
-$s10RealmSwift12ObjectChangeOwet
-$s10RealmSwift12ObjectChangeOwta
-__swift_memcpy9_8
-$s10RealmSwift12ObjectChangeOwca
-$s10RealmSwift12ObjectChangeOwcp
-$s10RealmSwift12ObjectChangeOwxx
-$s10RealmSwift12ObjectChangeOwCP
-$s10RealmSwift14PropertyChangeVMa
-$s10RealmSwift14PropertyChangeVwst
-$s10RealmSwift14PropertyChangeVwet
-$s10RealmSwift14PropertyChangeVwta
-__swift_memcpy80_8
-__swift_assign_boxed_opaque_existential_0
-$s10RealmSwift14PropertyChangeVwca
-$s10RealmSwift14PropertyChangeVwcp
-$s10RealmSwift14PropertyChangeVwxx
-$s10RealmSwift14PropertyChangeVwCP
-$s10RealmSwift6ObjectCAA0A15CollectionValueAAWI
-$s10RealmSwift6ObjectCSo8NSObjectCSQ10ObjectiveCWl
-$s10RealmSwift4ListCyAA13DynamicObjectCGMa
-$s10RealmSwift13DynamicObjectCAA0D0CAA0A15CollectionValueAAWl
-$s10RealmSwift13DynamicObjectCMa
-$s10RealmSwift6ObjectC7observeySo20RLMNotificationTokenCyAA0C6ChangeOcFySaySSGSg_SayypGSgALs5Error_pSgtcfU_TA
-$ss10_NativeSetV13copyAndResize8capacityySi_tFSS_Tg5
-$ss10_NativeSetV16_unsafeInsertNewyyxnFSS_Tg5
-$ss10_HashTableV8nextHole9atOrAfterAB6BucketVAF_tF
-$ss11_SetStorageCySSGMa
-$ss10_NativeSetV4copyyyFSS_Tg5
-$ss10_HashTableV12copyContents2ofyAB_tF
-$ss10_NativeSetV6resize8capacityySi_tFSS_Tg5
-$sSp6assign9repeating5countyx_SitFs13_UnsafeBitsetV4WordV_Tgq5
-$sSh8_VariantV6insertySb8inserted_x17memberAfterInserttxnFSS_Tg5
-$ss10_NativeSetV9insertNew_2at8isUniqueyxn_s10_HashTableV6BucketVSbtFSS_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEySo24RLMSwiftPropertyMetadataCG_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift14PropertyChangeVG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHySo24RLMSwiftPropertyMetadataCG_Tg5
-$ss8_PointerPsE8distance2toSix_tFSpySo24RLMSwiftPropertyMetadataCG_Tg5
-_swift_stdlib_malloc_size
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/shims/LibcShims.h
-$ss23_ContiguousArrayStorageCySo24RLMSwiftPropertyMetadataCGMa
-$sSo24RLMSwiftPropertyMetadataCMa
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP8capacitySivgTWSo24RLMSwiftPropertyMetadataC_Tg5
-$ss22_ContiguousArrayBufferV8capacitySivgSo24RLMSwiftPropertyMetadataC_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift14PropertyChangeVG_Tg5
-$ss8_PointerPsE8distance2toSix_tFSpy10RealmSwift14PropertyChangeVG_Tg5
-$ss23_ContiguousArrayStorageCy10RealmSwift14PropertyChangeVGMa
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP8capacitySivgTW10RealmSwift14PropertyChangeV_Tg5
-$ss22_ContiguousArrayBufferV8capacitySivg10RealmSwift14PropertyChangeV_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEySo24RLMSwiftPropertyMetadataCG_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP13_copyContents8subRange12initializingSpy7ElementQzGSnySiG_AKtFTWSo24RLMSwiftPropertyMetadataC_Tg5
-$ss22_ContiguousArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo24RLMSwiftPropertyMetadataC_Tg5
-$sSp12deinitialize5countSvSi_tFSo24RLMSwiftPropertyMetadataC_Tg5
-$sSp14moveInitialize4from5countySpyxG_SitFSo24RLMSwiftPropertyMetadataC_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP19firstElementAddressSpy0F0QzGvgTWSo24RLMSwiftPropertyMetadataC_Tg5
-$ss22_ContiguousArrayBufferV19firstElementAddressSpyxGvgSo24RLMSwiftPropertyMetadataC_Tg5
-$sSp10initialize4from5countySPyxG_SitFSo24RLMSwiftPropertyMetadataC_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl8endIndex0E0QzvgTWSo24RLMSwiftPropertyMetadataC_Tg5
-$ss22_ContiguousArrayBufferV8endIndexSivgSo24RLMSwiftPropertyMetadataC_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP027requestUniqueMutableBackingC015minimumCapacityABy7ElementQzGSgSi_tFTWSo24RLMSwiftPropertyMetadataC_Tg5
-$ss22_ContiguousArrayBufferV027requestUniqueMutableBackingC015minimumCapacityAByxGSgSi_tFSo24RLMSwiftPropertyMetadataC_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl5countSivgTWSo24RLMSwiftPropertyMetadataC_Tg5
-$ss22_ContiguousArrayBufferV5countSivgSo24RLMSwiftPropertyMetadataC_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift14PropertyChangeVG_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP13_copyContents8subRange12initializingSpy7ElementQzGSnySiG_AKtFTW10RealmSwift14PropertyChangeV_Tg5
-$ss22_ContiguousArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtF10RealmSwift14PropertyChangeV_Tg5
-$sSp12deinitialize5countSvSi_tF10RealmSwift14PropertyChangeV_Tg5
-$sSp14moveInitialize4from5countySpyxG_SitF10RealmSwift14PropertyChangeV_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP19firstElementAddressSpy0F0QzGvgTW10RealmSwift14PropertyChangeV_Tg5
-$ss22_ContiguousArrayBufferV19firstElementAddressSpyxGvg10RealmSwift14PropertyChangeV_Tg5
-$sSp10initialize4from5countySPyxG_SitF10RealmSwift14PropertyChangeV_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl8endIndex0E0QzvgTW10RealmSwift14PropertyChangeV_Tg5
-$ss22_ContiguousArrayBufferV8endIndexSivg10RealmSwift14PropertyChangeV_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP027requestUniqueMutableBackingC015minimumCapacityABy7ElementQzGSgSi_tFTW10RealmSwift14PropertyChangeV_Tg5
-$ss22_ContiguousArrayBufferV027requestUniqueMutableBackingC015minimumCapacityAByxGSgSi_tF10RealmSwift14PropertyChangeV_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl5countSivgTW10RealmSwift14PropertyChangeV_Tg5
-$ss22_ContiguousArrayBufferV5countSivg10RealmSwift14PropertyChangeV_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEySo24RLMSwiftPropertyMetadataCG_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift14PropertyChangeVG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGySo24RLMSwiftPropertyMetadataCG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift14PropertyChangeVG_Tg5
-$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift14PropertyChangeV_Tg5
-$ss15ContiguousArrayV15reserveCapacityyySiFSo24RLMSwiftPropertyMetadataC_Tg5
-$ss15ContiguousArrayV9_getCountSiyFSo24RLMSwiftPropertyMetadataC_Tg5
-$ss15ContiguousArrayV15reserveCapacityyySiF10RealmSwift14PropertyChangeV_Tg5
-$ss15ContiguousArrayV9_getCountSiyF10RealmSwift14PropertyChangeV_Tg5
-isEqual
-addNotificationBlock
-$sSo9RLMObjectCMa
-forceCastToInferred
-requiredPropertiesForClass
-getSwiftProperties
-$ss18EnumeratedSequenceV8IteratorVyx_GStsSt4next7ElementQzSgyFTWSaySSSg5label_yp5valuetG_Tg5
-$ss18EnumeratedSequenceV8IteratorV4nextSi6offset_7ElementQz7elementtSgyFSaySSSg5label_yp5valuetG_Tg5
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSaySSSg5label_yp5valuetG_Tg5
-$sSayxGSlsSly7ElementQz5IndexQzcirTWSSSg5label_yp5valuet_Tg5
-$sSayxSicirSSSg5label_yp5valuet_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFSSSg5label_yp5valuet_Tg5
-$ss15ContiguousArrayV6appendyyxnFSo24RLMSwiftPropertyMetadataC_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntFSo24RLMSwiftPropertyMetadataC_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSo24RLMSwiftPropertyMetadataC_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyFSo24RLMSwiftPropertyMetadataC_Tg5
-$sSiSSSgypSo24RLMSwiftPropertyMetadataCs5Error_pIgygnozo_Si6offset_AA5label_yp5valuet7elementtACsAD_pIegnrzo_TR
-$s10RealmSwift10ObjectUtilC03getB10Properties33_95A69397B44B27F7A8F436871D45D9E6LLySaySo24RLMSwiftPropertyMetadataCGypFZAGSi_SSSg5label_yp5valuettXEfU_
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTWSSSg5label_yp5valuet_Tg5
-$sSa9formIndex5afterySiz_tFSSSg5label_yp5valuet_Tg5
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtFSSSg5label_yp5valuet_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtFSSSg5label_yp5valuet_Tg5
-$sSayxGSlsSl8endIndex0B0QzvgTWSSSg5label_yp5valuet_Tg5
-$sSa8endIndexSivgSSSg5label_yp5valuet_Tg5
-$sSa9_getCountSiyFSSSg5label_yp5valuet_Tg5
-$s10RealmSwift10ObjectUtilC27getNonIgnoredMirrorChildren33_95A69397B44B27F7A8F436871D45D9E6LL3forSaySSSg5label_yp5valuetGyp_tFZSbAgH_ypAIt_tXEfU_
-baseName
-$sSSSlsSly11SubSequenceQzSny5IndexQzGcigTW
-$sS2SSysWl
-range
-getNonIgnoredMirrorChildren
-ignoredProperties
-$ss17_AnyCollectionBoxCySSSg5label_yp5valuetGMa
-$sSSSg5label_yp5valuetMa
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSaySSG_Tg5
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTWSS_Tg5
-$sSa9formIndex5afterySiz_tFSS_Tg5
-$sSayxGSlsSly7ElementQz5IndexQzcirTWSS_Tg5
-$sSayxSicirSS_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFSS_Tg5
-$sSayxGSTsST19underestimatedCountSivgTWSS_Tg5
-$sSayxGSlsSl5countSivgTWSS_Tg5
-$sSa9_getCountSiyFSS_Tg5
-linkingObjectsPropertiesForClass
-indexedPropertiesForClass
-ignoredPropertiesForClass
-swiftVersion
-shouldIncludeInDefaultSchema
-dynamicList
-$s10RealmSwift13DynamicObjectCyypSgSScisTo
-$s10RealmSwift6ObjectCyypSgSScigTo
-newValue.get
-oldValue.get
-name.get
-_rlmArray
-isSameObject
-$sSaySSGSgSayypGSgADs5Error_pSgIeggggg_So7NSArrayCSgA2ISo7NSErrorCSgIeyByyyy_TR
-$s10RealmSwift6ObjectC7observeySo20RLMNotificationTokenCyAA0C6ChangeOcFySaySSGSg_SayypGSgALs5Error_pSgtcfU_
-$sSi10RealmSwift14PropertyChangeVs5Error_pIgyrzo_SiACsAD_pIegnrzo_TR
-$s10RealmSwift6ObjectC7observeySo20RLMNotificationTokenCyAA0C6ChangeOcFySaySSGSg_SayypGSgALs5Error_pSgtcfU_AA08PropertyG0VSiXEfU_
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtFyp_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtFyp_Tg5
-$ss15ContiguousArrayV6appendyyxnF10RealmSwift14PropertyChangeV_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntF10RealmSwift14PropertyChangeV_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tF10RealmSwift14PropertyChangeV_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyF10RealmSwift14PropertyChangeV_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFyp_Tg5
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtFSS_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtFSS_Tg5
-$sSa9_getCountSiyFyp_Tg5
-$s10RealmSwift6ObjectCyypSgSScisTo
-indexedProperties
-primaryKey
-objectUtilClass
-$s10RealmSwift10ObjectUtilCMa
-$s10RealmSwift6ObjectC11descriptionSSvgTo
-$s10RealmSwift6ObjectC13isInvalidatedSbvgTo
-objectSchema.get
-_$sSo18RLMSyncCredentialsC10RealmSwiftEyAbC04SyncB0VcfC
-_$s10RealmSwift17ObjectiveCSupportC7convert6objectSbSi_SitcSbSu_Sutc_tFZSbSi_SitcfU_
-_$s10RealmSwift17ObjectiveCSupportC7convert6objectSbSu_SutcSbSi_Sitc_tFZSbSu_SutcfU_
-_$s10RealmSwift17SyncConfigurationV8asConfigSo07RLMSyncD0CyF
-_$s10RealmSwift17SyncConfigurationV6configACSo07RLMSyncD0C_tcfC
-_$s10RealmSwift17ObjectiveCSupportC7convert6objectSbSi_SitcSbSu_Sutc_tFZSbSi_SitcfU_TA
-_$s10RealmSwift17ObjectiveCSupportC7convert6objectSbSu_SutcSbSi_Sitc_tFZSbSu_SutcfU_TA
-_$s10RealmSwift7ResultsC03rlmC0So10RLMResultsCyyXlGvpWvd
-_$s10RealmSwift7ResultsCyAA6ObjectCGML
-_$s10RealmSwift6ObjectCAcA0A15CollectionValueAAWL
-_$s10RealmSwift4ListCyAA6ObjectCGML
-_$sSo18RLMSyncCredentialsCML
-_symbolic S2uSbIegyyd_
-_symbolic S2iSbIegyyd_
-_$s10RealmSwift16SyncSubscriptionCyAA6ObjectCGML
-_$s10RealmSwift17ObjectiveCSupportCML
-_$s10RealmSwift17ObjectiveCSupportCMf
-_symbolic _____ 10RealmSwift17ObjectiveCSupportC
-_$s10RealmSwift17ObjectiveCSupportCMF
-_$s10RealmSwift17ObjectiveCSupportCACycfCTq
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/ObjectiveCSupport.swift
-$s10RealmSwift17ObjectiveCSupportCMa
-$s10RealmSwift17ObjectiveCSupportC7convert6objectSbSu_SutcSbSi_Sitc_tFZSbSu_SutcfU_TA
-$s10RealmSwift17ObjectiveCSupportC7convert6objectSbSu_SutcSbSi_Sitc_tFZSbSu_SutcfU_
-ObjectiveCSupport.swift
-$s10RealmSwift17ObjectiveCSupportC7convert6objectSbSi_SitcSbSu_Sutc_tFZSbSi_SitcfU_TA
-$s10RealmSwift17ObjectiveCSupportC7convert6objectSbSi_SitcSbSu_Sutc_tFZSbSi_SitcfU_
-convert
-$s10RealmSwift16SyncSubscriptionCyAA6ObjectCGMa
-$s10RealmSwift6ObjectCAcA0A15CollectionValueAAWl
-$sSo18RLMSyncCredentialsCMa
-$s10RealmSwift4ListCyAA6ObjectCGMa
-Results.swift
-$s10RealmSwift7ResultsCyAA6ObjectCGMa
-_$s10RealmSwift12ObjectSchemaVs23CustomStringConvertibleAAsADP11descriptionSSvgTW
-_$s10RealmSwift12ObjectSchemaVSQAASQ2eeoiySbx_xtFZTW
-_$ss15ContiguousArrayV15reserveCapacityyySiF10RealmSwift8PropertyV_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift8PropertyV_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift8PropertyVG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift8PropertyVG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift8PropertyVG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift8PropertyVG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift8PropertyVG_Tg5
-_$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo11RLMPropertyC_Tg5
-_$sSo11RLMPropertyCML
-_$s10RealmSwift12ObjectSchemaVMf
-_symbolic _____ 10RealmSwift12ObjectSchemaV
-_symbolic So15RLMObjectSchemaC
-_$s10RealmSwift12ObjectSchemaVMF
-_$ss23_ContiguousArrayStorageCy10RealmSwift8PropertyVGML
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/ObjectSchema.swift
-$s10RealmSwift12ObjectSchemaVMa
-$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo11RLMPropertyC_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift8PropertyVG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift8PropertyVG_Tg5
-$ss8_PointerPsE8distance2toSix_tFSpy10RealmSwift8PropertyVG_Tg5
-$ss23_ContiguousArrayStorageCy10RealmSwift8PropertyVGMa
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP8capacitySivgTW10RealmSwift8PropertyV_Tg5
-$ss22_ContiguousArrayBufferV8capacitySivg10RealmSwift8PropertyV_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift8PropertyVG_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP13_copyContents8subRange12initializingSpy7ElementQzGSnySiG_AKtFTW10RealmSwift8PropertyV_Tg5
-$ss22_ContiguousArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtF10RealmSwift8PropertyV_Tg5
-$sSp12deinitialize5countSvSi_tF10RealmSwift8PropertyV_Tg5
-$sSp14moveInitialize4from5countySpyxG_SitF10RealmSwift8PropertyV_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP19firstElementAddressSpy0F0QzGvgTW10RealmSwift8PropertyV_Tg5
-$ss22_ContiguousArrayBufferV19firstElementAddressSpyxGvg10RealmSwift8PropertyV_Tg5
-$sSp10initialize4from5countySPyxG_SitF10RealmSwift8PropertyV_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl8endIndex0E0QzvgTW10RealmSwift8PropertyV_Tg5
-$ss22_ContiguousArrayBufferV8endIndexSivg10RealmSwift8PropertyV_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP027requestUniqueMutableBackingC015minimumCapacityABy7ElementQzGSgSi_tFTW10RealmSwift8PropertyV_Tg5
-$ss22_ContiguousArrayBufferV027requestUniqueMutableBackingC015minimumCapacityAByxGSgSi_tF10RealmSwift8PropertyV_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl5countSivgTW10RealmSwift8PropertyV_Tg5
-$ss22_ContiguousArrayBufferV5countSivg10RealmSwift8PropertyV_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift8PropertyVG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift8PropertyVG_Tg5
-$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift8PropertyV_Tg5
-$ss15ContiguousArrayV15reserveCapacityyySiF10RealmSwift8PropertyV_Tg5
-$ss15ContiguousArrayV9_getCountSiyF10RealmSwift8PropertyV_Tg5
-ObjectSchema.swift
-primaryKeyProperty.get
-className.get
-properties.get
-$sSayxGSlsSly7ElementQz5IndexQzcirTWSo11RLMPropertyC_Tg5
-$sSayxSicirSo11RLMPropertyC_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFSo11RLMPropertyC_Tg5
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTWSo11RLMPropertyC_Tg5
-$sSa9formIndex5afterySiz_tFSo11RLMPropertyC_Tg5
-$sSa29_hoistableIsNativeTypeCheckedSbyFSo11RLMPropertyC_Tg5
-$ss15ContiguousArrayV6appendyyxnF10RealmSwift8PropertyV_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntF10RealmSwift8PropertyV_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tF10RealmSwift8PropertyV_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyF10RealmSwift8PropertyV_Tg5
-$sSo11RLMPropertyC10RealmSwift8PropertyVs5Error_pIggozo_AbEsAF_pIegnrzo_TR
-$s10RealmSwift12ObjectSchemaV10propertiesSayAA8PropertyVGvgAFSo11RLMPropertyCXEfU_
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtFSo11RLMPropertyC_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtFSo11RLMPropertyC_Tg5
-$sSayxGSlsSl5countSivgTWSo11RLMPropertyC_Tg5
-$sSa9_getCountSiyFSo11RLMPropertyC_Tg5
-$sSo11RLMPropertyCMa
-_$s10RealmSwift0A8OptionalC5valuexSgvM.resume.0
-_$s10RealmSwift0A8OptionalCACyxGycfcTo
-_$s10RealmSwift0A8OptionalC5valuexSgvsTf4gn_n
-_$sxSg10RealmSwift0A12OptionalTypeRzlWOh
-_$s10RealmSwift0A8OptionalCyxGAA0aC4TypeRzlIetMg_TC
-_$sxSg10RealmSwift0A12OptionalTypeRzlWOc
-_$s10RealmSwift0A8OptionalCyACyxGxSgcfcTf4gn_n
-_$s10RealmSwift0A8OptionalCACyxGycfcTf4d_n
-_$s10RealmSwift0A8OptionalCMi
-_$s10RealmSwift0A8OptionalCMr
-_$s10RealmSwift17dynamicBridgeCast04fromB0ypx_tlFTA
-_symbolic $s10RealmSwift0A12OptionalTypeP
-_$s10RealmSwift0A12OptionalType_pMF
-_symbolic So15RLMOptionalBaseC
-_$s10RealmSwift0A8OptionalCMI
-_$s10RealmSwift0A8OptionalCMP
-_symbolic _____ 10RealmSwift0A8OptionalC
-_$s10RealmSwift0A8OptionalCMF
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Optional.swift
-$s10RealmSwift17dynamicBridgeCast04fromB0ypx_tlFTA
-$s10RealmSwift0A8OptionalCMr
-$s10RealmSwift0A8OptionalCMi
-value.set
-$s10RealmSwift0A8OptionalCMa
-$sxSg10RealmSwift0A12OptionalTypeRzlWOc
-$sxSg10RealmSwift0A12OptionalTypeRzlWOh
-value.modify
-value.get
-className
-_$s10RealmSwift8PropertyVs23CustomStringConvertibleAAsADP11descriptionSSvgTW
-_$s10RealmSwift8PropertyVSQAASQ2eeoiySbx_xtFZTW
-_$s10RealmSwift8PropertyVMf
-_symbolic _____ 10RealmSwift8PropertyV
-_symbolic So11RLMPropertyC
-_$s10RealmSwift8PropertyVMF
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Property.swift
-$s10RealmSwift8PropertyVMa
-Property.swift
-objectClassName.get
-isOptional.get
-isIndexed.get
-isArray.get
-type.get
-_$s10RealmSwift0A0C13ConfigurationVWOh
-_$s10RealmSwift17SyncConfigurationVSgWOd
-_$s10Foundation3URLV4path_tWOh
-_$sSSWOh
-_$s10RealmSwift17SyncConfigurationVWOh
-_$s10Foundation3URLVSgWOc
-_$s10Foundation3URLVSgWOh
-_$s10RealmSwift0A0C13ConfigurationVWOc
-_$s10RealmSwift0A0C9asyncOpen13configuration13callbackQueue0F0yAC13ConfigurationV_So17OS_dispatch_queueCyACSg_s5Error_pSgtctFZySo8RLMRealmCSg_ANtcfU_
-_$s10RealmSwift0A0C9asyncOpen13configuration13callbackQueue0F0yAC13ConfigurationV_So17OS_dispatch_queueCyACSg_s5Error_pSgtctFZySo8RLMRealmCSg_ANtcfU_TA
-_$sSo8RLMRealmCSgs5Error_pSgIeggg_ACSo7NSErrorCSgIeyByy_TR
-_$s10RealmSwift0A0C12UpdatePolicyOSQAASQ2eeoiySbx_xtFZTW
-_$s10RealmSwift0A0C12UpdatePolicyOSHAASH9hashValueSivgTW
-_$s10RealmSwift0A0C12UpdatePolicyOSHAASH4hash4intoys6HasherVz_tFTW
-_$s10RealmSwift0A0C12UpdatePolicyOSHAASH13_rawHashValue4seedS2i_tFTW
-_$s10RealmSwift0A0C12UpdatePolicyOSYAASY8rawValuexSg03RawF0Qz_tcfCTW
-_$s10RealmSwift0A0C12UpdatePolicyOSYAASY8rawValue03RawF0QzvgTW
-_$s10RealmSwift0A0C6create_5value6updatexxm_ypAC12UpdatePolicyOtAA6ObjectCRbzlFAA14PermissionRoleC_Tg5
-_$s10RealmSwift0A0C6object6ofType13forPrimaryKeyxSgxm_q_tAA6ObjectCRbzr0_lFAA0A10PermissionC_SiTg5
-_$s10RealmSwift0A0C7observeySo20RLMNotificationTokenCyAC12NotificationO_ACtcFySo0D0a_So8RLMRealmCtcfU_
-_$sSo15RLMNotificationaSo8RLMRealmCIeggg_AbDIeyByy_TR
-_$s10RealmSwift0A0C11autorefreshSbvM.resume.0
-_$s10RealmSwift0A0CSQAASQ2eeoiySbx_xtFZTW
-_$s10RealmSwift0A0C12NotificationOSQAASQ2eeoiySbx_xtFZTW
-_$s10RealmSwift0A0C12NotificationOSHAASH9hashValueSivgTW
-_$s10RealmSwift0A0C12NotificationOSHAASH4hash4intoys6HasherVz_tFTW
-_$s10RealmSwift0A0C12NotificationOSHAASH13_rawHashValue4seedS2i_tFTW
-_$s10RealmSwift0A0C12NotificationOSYAASY8rawValuexSg03RawE0Qz_tcfCTW
-_$s10RealmSwift0A0C12NotificationOSYAASY8rawValue03RawE0QzvgTW
-_$s10RealmSwift0A0C7observeySo20RLMNotificationTokenCyAC12NotificationO_ACtcFySo0D0a_So8RLMRealmCtcfU_TA
-_$s10RealmSwift0A0CIetMg_TC
-_$s10RealmSwift0A0C12UpdatePolicyOSHAASQWb
-_$s10RealmSwift0A0C12NotificationOSHAASQWb
-___swift_memcpy1_1
-___swift_noop_void_return
-_$s10RealmSwift0A0C12UpdatePolicyOwet
-_$s10RealmSwift0A0C12UpdatePolicyOwst
-_$s10RealmSwift0A0C12UpdatePolicyOwug
-_$s10RealmSwift0A0C12UpdatePolicyOwup
-_$s10RealmSwift0A0C12UpdatePolicyOwui
-_$s10RealmSwift0A0C12NotificationOwet
-_$s10RealmSwift0A0C12NotificationOwst
-_$s10RealmSwift0A0C12NotificationOwug
-_$s10RealmSwift0A0C12NotificationOwup
-_$s10RealmSwift0A0C12NotificationOwui
-_$s10RealmSwift26CustomObjectiveCBridgeable_pSgWOh
-_$s10RealmSwift0A0C6object6ofType13forPrimaryKeyxSgxm_q_tAA6ObjectCRbzr0_lFAA15ClassPermissionC_SSTg5Tf4nxn_n
-_block_destroy_helper.5
-_block_copy_helper.4
-_symbolic 10RealmSwift0A0CSgs5Error_pSgIeggg_
-_$sSo20RLMNotificationTokenCML
-_$s10RealmSwift7ResultsCyAA13DynamicObjectCGML
-_symbolic 10RealmSwift0A0C12NotificationOACIegyg_
-_symbolic 10RealmSwift0A0C
-_block_descriptor.6
-_$sSo8NSObjectCML
-_$ss23_ContiguousArrayStorageCys12StaticStringVGML
-_$s10RealmSwift0A0C12UpdatePolicyOAESQAAWL
-_associated conformance 10RealmSwift0A0C12UpdatePolicyOSHAASQ
-_$s10RealmSwift0A0C12NotificationOAESQAAWL
-_associated conformance 10RealmSwift0A0C12NotificationOSHAASQ
-_$s10RealmSwift0A0C03rlmA0So8RLMRealmCvpWvd
-_$s10RealmSwift0A0CML
-_$s10RealmSwift0A0CMf
-_$s10RealmSwift0A0C12UpdatePolicyOWV
-_$s10RealmSwift0A0C12UpdatePolicyOMf
-_symbolic _____ 10RealmSwift0A0C12UpdatePolicyO
-_$s10RealmSwift0A0C12UpdatePolicyOMF
-_symbolic _____ 10RealmSwift0A0C
-_symbolic So8RLMRealmC
-_$s10RealmSwift0A0CMF
-_$s10RealmSwift0A0C12NotificationOWV
-_$s10RealmSwift0A0C12NotificationOMf
-_symbolic _____ 10RealmSwift0A0C12NotificationO
-_$s10RealmSwift0A0C12NotificationOMF
-_symbolic 10RealmSwift0A0C12UpdatePolicyO
-_$s10RealmSwift0A0C12UpdatePolicyOSYAAMA
-_symbolic 10RealmSwift0A0C12NotificationO
-_$s10RealmSwift0A0C12NotificationOSYAAMA
-_$s10RealmSwift0A0CyACSo8RLMRealmCcfCTq
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Realm.swift
-object
-_bridgeAnythingToObjectiveC
-dynamicBridgeCast
-$s10RealmSwift26CustomObjectiveCBridgeable_pSgWOh
-$s10RealmSwift0A0C12NotificationOMa
-$s10RealmSwift0A0C12NotificationOwui
-$s10RealmSwift0A0C12NotificationOwup
-$s10RealmSwift0A0C12NotificationOwug
-$s10RealmSwift0A0C12NotificationOwst
-$s10RealmSwift0A0C12NotificationOwet
-$s10RealmSwift0A0C12UpdatePolicyOMa
-$s10RealmSwift0A0C12UpdatePolicyOwui
-$s10RealmSwift0A0C12UpdatePolicyOwup
-$s10RealmSwift0A0C12UpdatePolicyOwug
-$s10RealmSwift0A0C12UpdatePolicyOwst
-$s10RealmSwift0A0C12UpdatePolicyOwet
-__swift_noop_void_return
-__swift_memcpy1_1
-$s10RealmSwift0A0C12NotificationOSHAASQWb
-$s10RealmSwift0A0C12NotificationOAESQAAWl
-$s10RealmSwift0A0C12UpdatePolicyOSHAASQWb
-$s10RealmSwift0A0C12UpdatePolicyOAESQAAWl
-$s10RealmSwift0A0C7observeySo20RLMNotificationTokenCyAC12NotificationO_ACtcFySo0D0a_So8RLMRealmCtcfU_TA
-$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZs12StaticStringV_Tgq5
-$ss23_ContiguousArrayStorageCys12StaticStringVGMa
-$sSo8NSObjectCMa
-writeCopy
-invalidate
-refresh
-autorefresh.modify
-autorefresh.set
-autorefresh.get
-$sSo15RLMNotificationaSo8RLMRealmCIeggg_AbDIeyByy_TR
-$s10RealmSwift0A0C7observeySo20RLMNotificationTokenCyAC12NotificationO_ACtcFySo0D0a_So8RLMRealmCtcfU_
-dynamicObject
-dynamicObjects
-$s10RealmSwift7ResultsCyAA13DynamicObjectCGMa
-objects
-deleteAll
-dynamicCreate
-noWarnUnsafeBitCast
-Schema.swift
-schema.get
-add
-$sSiSHsSH13_rawHashValue4seedS2i_tFTW
-$sSiSHsSH4hash4intoys6HasherVz_tFTW
-$sSiSHsSH9hashValueSivgTW
-commitWrite
-$sSo20RLMNotificationTokenCMa
-cancelWrite
-isInWriteTransaction.get
-beginWrite
-$sSo8RLMRealmCSgs5Error_pSgIeggg_ACSo7NSErrorCSgIeyByy_TR
-$s10RealmSwift0A0C9asyncOpen13configuration13callbackQueue0F0yAC13ConfigurationV_So17OS_dispatch_queueCyACSg_s5Error_pSgtctFZySo8RLMRealmCSg_ANtcfU_TA
-$s10RealmSwift0A0C9asyncOpen13configuration13callbackQueue0F0yAC13ConfigurationV_So17OS_dispatch_queueCyACSg_s5Error_pSgtctFZySo8RLMRealmCSg_ANtcfU_
-flatMap
-$sSo8RLMRealmC10RealmSwift0B0CSgs5Error_pIggozo_AbFsAG_pIegnrzo_TR
-$sSo8RLMRealmC10RealmSwift0B0CIegxo_AbEIeggo_TR
-$s10RealmSwift0A0CMa
-asyncOpen
-$s10RealmSwift0A0C13ConfigurationVWOc
-$s10Foundation3URLVSgWOh
-$s10Foundation3URLVSgWOc
-$s10RealmSwift17SyncConfigurationVWOh
-$sSSWOh
-$s10Foundation3URLV4path_tWOh
-$s10RealmSwift17SyncConfigurationVSgWOd
-fileURL.set
-$s10RealmSwift0A0C13ConfigurationVWOh
-configuration.get
-_$s10RealmSwift11RLMIteratorVyxGStAASt4next7ElementQzSgyFTW
-_$s10RealmSwift9arrayType33_707062CF17EF7E1615DECC3E36BB1909LLySo8RLMArrayCyyXlGxmlF
-_$sxSg10RealmSwift0A15CollectionValueA2bCRzlAbCP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$sxSg10RealmSwift0A15CollectionValueA2bCRzlAbCP04_nilD0xyFZTW
-_$sSi10RealmSwift0A15CollectionValueA2aBP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$sSi10RealmSwift0A15CollectionValueA2aBP04_nilD0xyFZTW
-_$ss4Int8V10RealmSwift0B15CollectionValueA2cDP04_nilE0xyFZTW
-_$ss5Int16V10RealmSwift0B15CollectionValueA2cDP04_nilE0xyFZTW
-_$ss5Int32V10RealmSwift0B15CollectionValueA2cDP04_nilE0xyFZTW
-_$ss5Int64V10RealmSwift0B15CollectionValueA2cDP04_nilE0xyFZTW
-_$sSf10RealmSwift0A15CollectionValueA2aBP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$sSf10RealmSwift0A15CollectionValueA2aBP04_nilD0xyFZTW
-_$sSd10RealmSwift0A15CollectionValueA2aBP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$sSd10RealmSwift0A15CollectionValueA2aBP04_nilD0xyFZTW
-_$sSb10RealmSwift0A15CollectionValueA2aBP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$sSb10RealmSwift0A15CollectionValueA2aBP04_nilD0xyFZTW
-_$sSS10RealmSwift0A15CollectionValueA2aBP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$sSS10RealmSwift0A15CollectionValueA2aBP04_nilD0xyFZTW
-_$s10Foundation4DateV10RealmSwift0C15CollectionValueA2dEP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$s10Foundation4DateV10RealmSwift0C15CollectionValueA2dEP04_nilF0xyFZTW
-_$sSf10RealmSwiftE9_rlmArraySo8RLMArrayCyyXlGyFZTm
-_$s10Foundation4DataV10RealmSwift0C15CollectionValueA2dEP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$sSi10RealmSwift0A15CollectionValueA2aBP9_rlmArraySo8RLMArrayCyyXlGyFZTWTm
-_$s10Foundation4DataV10RealmSwift0C15CollectionValueA2dEP04_nilF0xyFZTW
-_$sxSg10RealmSwift16OptionalProtocolA2bCP20_rlmInferWrappedType0G0QzyFTW
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC5realmAA0A0CSgvg
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC13isInvalidatedSbvg
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC5countSivg
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC11descriptionSSvg
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC5index2ofSiSgx_tF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC5index8matchingSiSgSo11NSPredicateC_tF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC6filteryAA7ResultsCyxGSo11NSPredicateCF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC6sorted9byKeyPath9ascendingAA7ResultsCyxGSS_SbtF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC6sorted2byAA7ResultsCyxGqd___tSTRd__AA14SortDescriptorV7ElementRtd__lF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC3min10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC3max10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC3sum10ofPropertyqd__SS_tAA11AddableTypeRd__lF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC7average10ofPropertySdSgSS_tF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCyxSicig
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC12makeIteratorAA11RLMIteratorVyxGyF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC10startIndexSivg
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC8endIndexSivg
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC5value6forKeyypSgSS_tF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC5value10forKeyPathypSgSS_tF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC8setValue_6forKeyyypSg_SStF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC8_observeySo20RLMNotificationTokenCyAA0aD6ChangeOyAA0caD0CyxGGcF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC8bridging4from4withADyxGXDyp_ypSgtFZ
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC7bridgedyp15objectiveCValue_ypSg8metadatatvg
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCfD
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCyxGAA28AssistedObjectiveCBridgeableA2aFP8bridging4from4withxyp_ypSgtFZTW
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCyxGAA28AssistedObjectiveCBridgeableA2aFP7bridgedyp15objectiveCValue_ypSg8metadatatvgTW
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC4baseADyxGx_tcfC
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC5realmAA0A0CSgvg
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC13isInvalidatedSbvg
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC5countSivg
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC11descriptionSSvg
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC5index2ofSiSg7ElementQz_tF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC5index8matchingSiSgSo11NSPredicateC_tF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC6filteryAA7ResultsCy7ElementQzGSo11NSPredicateCF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC6sorted9byKeyPath9ascendingAA7ResultsCy7ElementQzGSS_SbtF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC6sorted2byAA7ResultsCy7ElementQzGqd___tSTRd__AA14SortDescriptorVAIRtd__lF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC3min10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC3max10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC3sum10ofPropertyqd__SS_tAA11AddableTypeRd__lF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC7average10ofPropertySdSgSS_tF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCy7ElementQzSicig
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC12makeIteratorAA11RLMIteratorVy7ElementQzGyF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC10startIndexSivg
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC8endIndexSivg
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC10startIndexSivgTm
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC5value6forKeyypSgSS_tF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC5value10forKeyPathypSgSS_tF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC8setValue_6forKeyyypSg_SStF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC8_observeySo20RLMNotificationTokenCyAA0aD6ChangeOyAA0caD0Cy7ElementQzGGcF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC8bridging4from4withADyxGyp_ypSgtFZ
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC7bridgedyp15objectiveCValue_ypSg8metadatatvg
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCfE
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCfD
-_$s10RealmSwift03AnyA10CollectionC4baseACyxGAA01_caD4Base33_707062CF17EF7E1615DECC3E36BB1909LLCyxG_tcAGLlfC
-_$sxSg10RealmSwift0A15CollectionValueRzlWOc
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMa
-_$s10RealmSwift03AnyA10CollectionCyxSicir
-_$s10RealmSwift03AnyA10CollectionCyxSicir.resume.0
-_$s10RealmSwift03AnyA10CollectionCyxGSTAAST12makeIterator0F0QzyFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSTAAST19underestimatedCountSivgTW
-_$s10RealmSwift03AnyA10CollectionCyxGSTAAST31_customContainsEquatableElementySbSg0H0QzFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSTAAST22_copyToContiguousArrays0gH0Vy7ElementQzGyFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSkAASk5index_8offsetBy5IndexQzAH_SitFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSkAASk5index_8offsetBy07limitedG05IndexQzSgAI_SiAItFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSkAASk8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift03AnyA10CollectionCyxGs23CustomStringConvertibleAAsAEP11descriptionSSvgTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA14ThreadConfinedA2aEP5realmAA0A0CSgvgTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA14ThreadConfinedA2aEP13isInvalidatedSbvgTW
-_$s10RealmSwift03AnyA10CollectionCyxGSKAASK5index6before5IndexQzAH_tFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSKAASK9formIndex6beforey0F0Qzz_tFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSKAASK5index_8offsetBy5IndexQzAH_SitFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSKAASK5index_8offsetBy07limitedG05IndexQzSgAI_SiAItFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSKAASK8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl10startIndex0F0QzvgTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl8endIndex0F0QzvgTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASly7ElementQz5IndexQzcirTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASly7ElementQz5IndexQzcirTW.resume.0
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASly11SubSequenceQzSny5IndexQzGcigTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl7indices7IndicesQzvgTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl7isEmptySbvgTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl5countSivgTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl30_customIndexOfEquatableElementy0F0QzSgSg0I0QzFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl20_failEarlyRangeCheck_6boundsy5IndexQz_SnyAHGtFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl20_failEarlyRangeCheck_6boundsy5IndexQz_SNyAHGtFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl5index5after5IndexQzAH_tFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl9formIndex5aftery0F0Qzz_tFTW
-_$s10RealmSwift03AnyA10CollectionCyxGs20LazySequenceProtocolAAsAEP8elements8ElementsQzvgTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP5index2ofSiSg7ElementQz_tFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP5index8matchingSiSgSo11NSPredicateC_tFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP5index8matching_SiSgSS_ypdtFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP6filteryAA7ResultsCy7ElementQzGSS_ypdtFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP6filteryAA7ResultsCy7ElementQzGSo11NSPredicateCFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP6sorted9byKeyPath9ascendingAA7ResultsCy7ElementQzGSS_SbtFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP6sorted2byAA7ResultsCy7ElementQzGqd___tSTRd__AA14SortDescriptorVAKRtd__lFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP3min10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP3max10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP3sum10ofPropertyqd__SS_tAA11AddableTypeRd__lFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP7average10ofPropertySdSgSS_tFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP5value6forKeyypSgSS_tFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP5value10forKeyPathypSgSS_tFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP8setValue_6forKeyyypSg_SStFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP7observeySo20RLMNotificationTokenCyAA0aD6ChangeOyxGcFTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0A2aEP8_observeySo20RLMNotificationTokenCyAA0aD6ChangeOyACy7ElementQzGGcFTW
-_$s10RealmSwift03AnyA10CollectionC8bridging4from4withACyxGyp_ypSgtFZ
-_$s10RealmSwift03AnyA10CollectionC7bridgedyp15objectiveCValue_ypSg8metadatatvg
-_$s10RealmSwift03AnyA10CollectionCyxGAA28AssistedObjectiveCBridgeableA2aEP8bridging4from4withxyp_ypSgtFZTW
-_$s10RealmSwift03AnyA10CollectionCyxGAA28AssistedObjectiveCBridgeableA2aEP7bridgedyp15objectiveCValue_ypSg8metadatatvgTW
-_$sSo17RLMSyncPermissionC10RealmSwift0C15CollectionValueA2cDP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$sSo17RLMSyncPermissionC10RealmSwift0C15CollectionValueA2cDP04_nilF0xyFZTW
-_$s10RealmSwift16SyncSubscriptionCyqd__GAA0A15CollectionValueA2aEP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$s10RealmSwift16SyncSubscriptionCyqd__GAA0A15CollectionValueA2aEP04_nilF0xyFZTW
-_$s10RealmSwift03AnyA10CollectionC5index8matching_SiSgSS_ypdtFTf4xnn_n
-_$s10RealmSwift03AnyA10CollectionC6filteryAA7ResultsCyxGSS_ypdtFTf4xnn_n
-_$sxSg10RealmSwift0A15CollectionValueA2bCRzlWI
-_$s10Foundation4DateV10RealmSwift0C15CollectionValueADWI
-_$s10Foundation4DataV10RealmSwift0C15CollectionValueADWI
-_$s10RealmSwift03AnyA10CollectionCyxGSTAA8Iterator_StWT
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD4BaseAA7Element_AA0aD5ValuePWT
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD4BaseAAWI
-_$s10RealmSwift03AnyA10CollectionCyxGSkAASKWb
-_$s10RealmSwift03AnyA10CollectionCyxGSkAA7Indices_SkWT
-_$s10RealmSwift03AnyA10CollectionCyxGSkAA11SubSequence_SkWT
-_$s10RealmSwift03AnyA10CollectionCyxGs04LazyD8ProtocolAASlWb
-_$s10RealmSwift03AnyA10CollectionCyxGs04LazyD8ProtocolAAs0e8SequenceF0PWb
-_$s10RealmSwift03AnyA10CollectionCyxGs04LazyD8ProtocolAA8Elements_SlWT
-_$s10RealmSwift03AnyA10CollectionCyxGSKAASlWb
-_$s10RealmSwift03AnyA10CollectionCyxGSKAA7Indices_SKWT
-_$s10RealmSwift03AnyA10CollectionCyxGSKAA11SubSequence_SKWT
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASTWb
-_$s10RealmSwift03AnyA10CollectionCyxGSlAA5Index_SLWT
-_$s10RealmSwift03AnyA10CollectionCyxGSlAA7Indices_SlWT
-_$s10RealmSwift03AnyA10CollectionCyxGSlAA11SubSequence_SlWT
-_$s10RealmSwift03AnyA10CollectionCyxGs20LazySequenceProtocolAASTWb
-_$s10RealmSwift03AnyA10CollectionCyxGs20LazySequenceProtocolAA8Elements_STWT
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0AAWI
-_$s10RealmSwift11RLMIteratorVMi
-_$s10RealmSwift11RLMIteratorVMr
-_$s10RealmSwift11RLMIteratorVwCP
-_$s10RealmSwift11RLMIteratorVwxx
-_$s10RealmSwift11RLMIteratorVwcp
-_$s10RealmSwift11RLMIteratorVwca
-_$s10RealmSwift11RLMIteratorVwtk
-_$s10RealmSwift11RLMIteratorVwta
-_$s10RealmSwift11RLMIteratorVwet
-_$s10RealmSwift11RLMIteratorVwst
-_$s10RealmSwift0A16CollectionChangeOMi
-_$s10RealmSwift0A16CollectionChangeOMr
-_$s10RealmSwift0A16CollectionChangeOwCP
-_$s10RealmSwift0A16CollectionChangeOwxx
-_$s10RealmSwift0A16CollectionChangeOwcp
-_$s10RealmSwift0A16CollectionChangeOwca
-_$s10RealmSwift0A16CollectionChangeOyxGlWOh
-_$s10RealmSwift0A16CollectionChangeOwtk
-_$s10RealmSwift0A16CollectionChangeOwta
-_$s10RealmSwift0A16CollectionChangeOwet
-_$s10RealmSwift0A16CollectionChangeOwst
-_$s10RealmSwift0A16CollectionChangeOwug
-_$s10RealmSwift0A16CollectionChangeOwup
-_$s10RealmSwift0A16CollectionChangeOwui
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMi
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMr
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMa
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMi
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMr
-_$s10RealmSwift03AnyA10CollectionCMi
-_$s10RealmSwift03AnyA10CollectionCMr
-___swift_project_boxed_opaque_existential_1
-___swift_allocate_boxed_opaque_existential_1
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVMa
-_objectdestroyTm
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVyxGSgAA0aD5ValueRzlWOh
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVyxGAA0aD5ValueRzlWOh
-_$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGIegn_AGIegg_AA0aC5ValueRzlTRTA
-_$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA0aC5ValueRzlWOr
-_$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA0aC5ValueRzlWOy
-_$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA0aC5ValueRzlWOrTm
-_$sSi10RealmSwift03AnyA10CollectionCyxGAA0aD5ValueRzlIetWnn_TC
-_$sSi10RealmSwift03AnyA10CollectionCyxGAA0aD5ValueRzlIetMyg_TC
-_$s10RealmSwift11RLMIteratorVyxGAA0A15CollectionValueRzlWOc
-_$s10RealmSwift11RLMIteratorVyxGAA0A15CollectionValueRzlWOh
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVMi
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwCP
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwxx
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwcp
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwca
-___swift_memcpy40_8
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwta
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwet
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwst
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl34_customLastIndexOfEquatableElementy0G0QzSgSg0J0QzFTW
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl5index_8offsetBy07limitedG05IndexQzSgAI_SiAItFTW
-_$ss4Int8V10RealmSwift0B15CollectionValueA2cDP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$ss5Int16V10RealmSwift0B15CollectionValueA2cDP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$ss5Int32V10RealmSwift0B15CollectionValueA2cDP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$ss5Int64V10RealmSwift0B15CollectionValueA2cDP9_rlmArraySo8RLMArrayCyyXlGyFZTW
-_$sxSglWOc
-_$s10RealmSwift03AnyA10CollectionCyxGSlAASl5index_8offsetBy5IndexQzAH_SitFTW
-_$sSo6NSNullCML
-_$sxSg10RealmSwift0A15CollectionValueA2bCRzlWp
-_$s10Foundation4DateVACSQAAWL
-_$s10Foundation4DataVACSQAAWL
-_$sxSg10RealmSwift16OptionalProtocolABWp
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSTAA8Iterator_St
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGAA0aD4BaseAA7Element_AA0aD5Value
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD4BaseAAWp
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSkAASK
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSkAA7Indices_Sk
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSkAA11SubSequence_Sk
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGs04LazyD8ProtocolAASl
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGs04LazyD8ProtocolAAs0e8SequenceF0
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGs04LazyD8ProtocolAA8Elements_Sl
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSKAASl
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSKAA7Indices_SK
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSKAA11SubSequence_SK
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSlAAST
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSlAA5Index_SL
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSlAA7Indices_Sl
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGSlAA11SubSequence_Sl
-_symbolic s5SliceVy10RealmSwift03AnyB10CollectionCyxGG
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGs20LazySequenceProtocolAAST
-_associated conformance 10RealmSwift03AnyA10CollectionCyxGs20LazySequenceProtocolAA8Elements_ST
-_$s10RealmSwift03AnyA10CollectionCyxGAA0aD0AAWp
-_$s10RealmSwift03AnyA10CollectionCyxGAA28AssistedObjectiveCBridgeableAAMc
-_$s10RealmSwift03AnyA10CollectionCyxGAA28AssistedObjectiveCBridgeableAAWP
-_$s10RealmSwift11RLMIteratorVWV
-_$s10RealmSwift11RLMIteratorVMI
-_$s10RealmSwift11RLMIteratorVMP
-_symbolic _____ 10RealmSwift11RLMIteratorV
-_symbolic 10Foundation25NSFastEnumerationIteratorV
-_$s10RealmSwift11RLMIteratorVMF
-_$sSaySiGML
-_$s10RealmSwift0A16CollectionChangeOWV
-_$s10RealmSwift0A16CollectionChangeOMI
-_$s10RealmSwift0A16CollectionChangeOMP
-_symbolic _____ 10RealmSwift0A16CollectionChangeO
-_symbolic x_SaySiG9deletionsAA10insertionsAA13modificationst
-_symbolic s5Error_p
-_$s10RealmSwift0A16CollectionChangeOMF
-_symbolic $s10RealmSwift0A15CollectionValueP
-_$s10RealmSwift0A15CollectionValue_pMF
-_symbolic $s10RealmSwift0A14CollectionBaseP
-_$s10RealmSwift0A14CollectionBase_pMF
-_symbolic 7ElementSTQz
-_symbolic $s10RealmSwift0A10CollectionP
-_$s10RealmSwift0A10Collection_pMF
-_symbolic $s10RealmSwift16OptionalProtocolP
-_$s10RealmSwift16OptionalProtocol_pMF
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMXX
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMI
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMn
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMP
-_symbolic _____ 10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMF
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMXX
-_symbolic _____y7ElementSTQzG 10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMI
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMn
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMP
-_symbolic _____ 10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLC
-_$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMF
-_$s10RealmSwift03AnyA10CollectionC4base33_707062CF17EF7E1615DECC3E36BB1909LLAA01_caD4BaseAELLCyxGvpWvd
-_$s10RealmSwift03AnyA10CollectionCMI
-_$s10RealmSwift03AnyA10CollectionCMP
-_symbolic _____ 10RealmSwift03AnyA10CollectionC
-_symbolic _____yxG 10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC
-_$s10RealmSwift03AnyA10CollectionCMF
-_symbolic _____ 10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLV
-_symbolic _____yxGm 10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLC
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVMF
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVMXX
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVMn
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCyxGAA28AssistedObjectiveCBridgeableAAMc
-_$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCyxGAA28AssistedObjectiveCBridgeableAAWP
-_$s10RealmSwift28AssistedObjectiveCBridgeable_pML
-_symbolic _____yxG 10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLV
-_$sSaySo8NSNumberCGML
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVWV
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVMI
-_$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVMP
-_symbolic 10RealmSwift11RLMIteratorV
-_symbolic $ss16IteratorProtocolP
-_$s10RealmSwift11RLMIteratorVyxGStAAMA
-_symbolic Sq
-_$sxSg10RealmSwift16OptionalProtocolABMA
-_symbolic 10RealmSwift03AnyA10CollectionC
-_$s10RealmSwift03AnyA10CollectionCyxGSTAAMA
-_$s10RealmSwift03AnyA10CollectionCyxGSkAAMA
-_$s10RealmSwift03AnyA10CollectionCyxGSKAAMA
-_$s10RealmSwift03AnyA10CollectionCyxGSlAAMA
-_$s10RealmSwift03AnyA10CollectionCyxGs20LazySequenceProtocolAAMA
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/RealmCollection.swift
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwst
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwet
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwta
-__swift_memcpy40_8
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwca
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwcp
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwxx
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVwCP
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVMi
-$s10RealmSwift11RLMIteratorVyxGAA0A15CollectionValueRzlWOh
-$s10RealmSwift11RLMIteratorVyxGAA0A15CollectionValueRzlWOc
-$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGAA0aC5ValueRzlWOr
-$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGIegn_AGIegg_AA0aC5ValueRzlTRTA
-$s10RealmSwift0A16CollectionChangeOyAA03AnyaC0CyxGGIegn_AGIegg_AA0aC5ValueRzlTR
-objectdestroy.6
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVyxGAA0aD5ValueRzlWOh
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVyxGSgAA0aD5ValueRzlWOh
-$s10RealmSwift03AnyA26CollectionBridgingMetadata33_707062CF17EF7E1615DECC3E36BB1909LLVMa
-__swift_allocate_boxed_opaque_existential_1
-__swift_project_boxed_opaque_existential_1
-$s10RealmSwift03AnyA10CollectionCMr
-$s10RealmSwift03AnyA10CollectionCMi
-$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMr
-$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMi
-$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMa
-$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMr
-$s10RealmSwift04_AnyA14CollectionBase33_707062CF17EF7E1615DECC3E36BB1909LLCMi
-$s10RealmSwift0A16CollectionChangeOMa
-$s10RealmSwift0A16CollectionChangeOwui
-$s10RealmSwift0A16CollectionChangeOwup
-$s10RealmSwift0A16CollectionChangeOwug
-$s10RealmSwift0A16CollectionChangeOwst
-$s10RealmSwift0A16CollectionChangeOwet
-$s10RealmSwift0A16CollectionChangeOwta
-$sSaySiGMa
-$s10RealmSwift0A16CollectionChangeOwtk
-$s10RealmSwift0A16CollectionChangeOyxGlWOh
-$s10RealmSwift0A16CollectionChangeOwca
-$s10RealmSwift0A16CollectionChangeOwcp
-$s10RealmSwift0A16CollectionChangeOwxx
-$s10RealmSwift0A16CollectionChangeOwCP
-$s10RealmSwift0A16CollectionChangeOMr
-$s10RealmSwift0A16CollectionChangeOMi
-$s10RealmSwift11RLMIteratorVMa
-$s10RealmSwift11RLMIteratorVwst
-$s10RealmSwift11RLMIteratorVwet
-$s10RealmSwift11RLMIteratorVwta
-$s10RealmSwift11RLMIteratorVwtk
-$s10RealmSwift11RLMIteratorVwca
-$s10RealmSwift11RLMIteratorVwcp
-$s10RealmSwift11RLMIteratorVwxx
-$s10RealmSwift11RLMIteratorVwCP
-$s10RealmSwift11RLMIteratorVMr
-$s10RealmSwift11RLMIteratorVMi
-$s10RealmSwift03AnyA10CollectionCyxGAA0aD0AAWI
-$s10RealmSwift03AnyA10CollectionCyxGs20LazySequenceProtocolAA8Elements_STWT
-$s10RealmSwift03AnyA10CollectionCyxGs20LazySequenceProtocolAASTWb
-$s10RealmSwift03AnyA10CollectionCyxGSlAA11SubSequence_SlWT
-$s10RealmSwift03AnyA10CollectionCyxGSlAA7Indices_SlWT
-$s10RealmSwift03AnyA10CollectionCyxGSlAA5Index_SLWT
-$s10RealmSwift03AnyA10CollectionCyxGSlAASTWb
-$s10RealmSwift03AnyA10CollectionCyxGSKAA11SubSequence_SKWT
-$s10RealmSwift03AnyA10CollectionCyxGSKAA7Indices_SKWT
-$s10RealmSwift03AnyA10CollectionCyxGSKAASlWb
-$s10RealmSwift03AnyA10CollectionCyxGs04LazyD8ProtocolAA8Elements_SlWT
-$s10RealmSwift03AnyA10CollectionCyxGs04LazyD8ProtocolAAs0e8SequenceF0PWb
-$s10RealmSwift03AnyA10CollectionCyxGs04LazyD8ProtocolAASlWb
-$s10RealmSwift03AnyA10CollectionCyxGSkAA11SubSequence_SkWT
-$s10RealmSwift03AnyA10CollectionCyxGSkAA7Indices_SkWT
-$s10RealmSwift03AnyA10CollectionCyxGSkAASKWb
-$s10RealmSwift03AnyA10CollectionCyxGAA0aD4BaseAAWI
-$s10RealmSwift03AnyA10CollectionCyxGAA0aD4BaseAA7Element_AA0aD5ValuePWT
-$s10RealmSwift03AnyA10CollectionCyxGSTAA8Iterator_StWT
-$s10Foundation4DataV10RealmSwift0C15CollectionValueADWI
-$s10Foundation4DataVACSQAAWl
-$s10Foundation4DateV10RealmSwift0C15CollectionValueADWI
-$s10Foundation4DateVACSQAAWl
-$sxSg10RealmSwift0A15CollectionValueA2bCRzlWI
-RealmCollection.swift
-_nilValue
-$s10RealmSwift03AnyA10CollectionCMa
-$s10RealmSwift04_AnyA10Collection33_707062CF17EF7E1615DECC3E36BB1909LLCMa
-$sxSg10RealmSwift0A15CollectionValueRzlWOc
-$s10RealmSwift28AssistedObjectiveCBridgeable_pMa
-dynamic_cast_existential_1_unconditional
-_rlmInferWrappedType
-arrayType
-$sSo6NSNullCMa
-fromObjc
-forceCast
-$sSaySo8NSNumberCGMa
-_$s10RealmSwift0A0C13ConfigurationV07defaultC0AEvMZ.resume.0
-_$s10RealmSwift0A0C13ConfigurationVXMtIetMy_TC
-_$s10RealmSwift17SyncConfigurationVSgWOb
-_$s10RealmSwift17SyncConfigurationVSgWOh
-_$s10Foundation4DataVSgWOy
-_$s10RealmSwift9MigrationVs6UInt64VIeggy_SgWOy
-_$s10RealmSwift9MigrationVs6UInt64VIeggy_SgWOe
-_$s10RealmSwift0A0C13ConfigurationV04syncC0AA04SyncC0VSgvM.resume.0
-_$s10RealmSwift0A0C13ConfigurationV7fileURL10Foundation0E0VSgvM.resume.0
-_$s10RealmSwift0A0C13ConfigurationV18inMemoryIdentifierSSSgvM.resume.0
-_$s10RealmSwift0A0C13ConfigurationV13encryptionKey10Foundation4DataVSgvM.resume.0
-_$s10RealmSwift0A0C13ConfigurationV8readOnlySbvM.resume.0
-_$s10RealmSwift0A0C13ConfigurationV13schemaVersions6UInt64VvM.resume.0
-_$s10RealmSwift0A0C13ConfigurationV14migrationBlockyAA9MigrationV_s6UInt64VtcSgvM.resume.0
-_$s10RealmSwift0A0C13ConfigurationV06deleteA17IfMigrationNeededSbvM.resume.0
-_$s10RealmSwift0A0C13ConfigurationV21shouldCompactOnLaunchSbSi_SitcSgvM.resume.0
-_$ss15_arrayForceCastySayq_GSayxGr0_lF10RealmSwift6ObjectCm_yXlXpTg5
-_$s10RealmSwift17SyncConfigurationVWOb
-_$s10RealmSwift0A0C13ConfigurationVIetMl_TC
-_$s10RealmSwift17SyncConfigurationVSgWOc
-_$s10RealmSwift0A0C13ConfigurationV11objectTypesSayAA6ObjectCmGSgvM.resume.0
-_$sSo12RLMMigrationCs6UInt64VIeggy_AbDIeyByy_TR
-_$sS2uSbIegyyd_S2uSbIeyByyd_TR
-_$s10RealmSwift0A0C13ConfigurationVs23CustomStringConvertibleAAsAFP11descriptionSSvgTW
-_$ss15ContiguousArrayV15reserveCapacityyySiFyXlXp_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tFyXlXp_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGyyXlXpG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFs01_aB0Vy10RealmSwift6ObjectCmG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEyyXlXpG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_s01_aB0Vy10RealmSwift6ObjectCmG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEyyXlXpG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFs01_aB0Vy10RealmSwift6ObjectCmG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHyyXlXpG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFs01_aB0Vy10RealmSwift6ObjectCmG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEyyXlXpG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_s01_aB0Vy10RealmSwift6ObjectCmG_Tg5
-_$sSa16_copyToNewBuffer8oldCountySi_tF10RealmSwift6ObjectCm_Tg5
-_$s10RealmSwift4gsub7pattern8template6string5errorSSSgSS_S2SSAySo7NSErrorCSgGSgtFTf4xxxd_n
-_$s10RealmSwift0A0C13ConfigurationVwCP
-_$s10RealmSwift0A0C13ConfigurationVwxx
-_$s10RealmSwift0A0C13ConfigurationVwcp
-_$s10RealmSwift0A0C13ConfigurationVwca
-_$s10Foundation4DataVWOh
-_$s10RealmSwift0A0C13ConfigurationVwtk
-_$s10RealmSwift0A0C13ConfigurationVwta
-_$s10RealmSwift0A0C13ConfigurationVwet
-_$s10RealmSwift0A0C13ConfigurationVwst
-_$s10RealmSwift0A0C13ConfigurationVMr
-_$s10RealmSwift22accessorMigrationBlockyySo12RLMMigrationC_s6UInt64VtcyAA0D0V_AFtcFyAD_AFtcfU_TA
-_$s10Foundation3URLVSgWOb
-_$sS2uSbIeyByyd_S2uSbIegyyd_TRTA
-_$sSo12RLMMigrationCs6UInt64VIeyByy_AbDIeggy_TRTA
-_$s10RealmSwift0A0C13ConfigurationV012fromRLMRealmC0yAESo0eC0CFZyAA9MigrationV_s6UInt64VtcySo12RLMMigrationC_ALtcXEfU_yAJ_ALtcfU_TA
-_block_destroy_helper.6
-_$sS2iSbIegyyd_SgWOy
-_$sS2iSbIegyyd_SgWOe
-_block_copy_helper.5
-_$syXlXpML
-_$s10RealmSwift0A0C13ConfigurationVWV
-_$s10RealmSwift0A0C13ConfigurationVMl
-_$s10RealmSwift0A0C13ConfigurationVMf
-_symbolic _____ 10RealmSwift0A0C13ConfigurationV
-_symbolic 10RealmSwift17SyncConfigurationVSg
-_symbolic SSSg
-_symbolic 10Foundation4DataVSg
-_symbolic Sb
-_symbolic s6UInt64V
-_symbolic y10RealmSwift9MigrationV_s6UInt64VtcSg
-_symbolic SbSi_SitcSg
-_symbolic So9RLMSchemaCSg
-_$s10RealmSwift0A0C13ConfigurationVMF
-_$s10RealmSwift6ObjectCmML
-_$ss23_ContiguousArrayStorageCy10RealmSwift6ObjectCmGML
-_$ss23_ContiguousArrayStorageCyyXlXpGML
-_symbolic 10RealmSwift9MigrationVs6UInt64VIeggy_
-_block_descriptor.7
-_symbolic S2uSbIeyByyd_
-_symbolic So12RLMMigrationCs6UInt64VIeyByy_
-_symbolic So12RLMMigrationCs6UInt64VIeggy_
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/RealmConfiguration.swift
-$s10RealmSwift0A0C13ConfigurationV012fromRLMRealmC0yAESo0eC0CFZyAA9MigrationV_s6UInt64VtcySo12RLMMigrationC_ALtcXEfU_yAJ_ALtcfU_TA
-$s10RealmSwift0A0C13ConfigurationV012fromRLMRealmC0yAESo0eC0CFZyAA9MigrationV_s6UInt64VtcySo12RLMMigrationC_ALtcXEfU_yAJ_ALtcfU_
-$sSo12RLMMigrationCs6UInt64VIeyByy_AbDIeggy_TRTA
-$sSo12RLMMigrationCs6UInt64VIeyByy_AbDIeggy_TR
-objectdestroy.15
-$sS2uSbIeyByyd_S2uSbIegyyd_TRTA
-$sS2uSbIeyByyd_S2uSbIegyyd_TR
-$s10Foundation3URLVSgWOb
-$s10RealmSwift22accessorMigrationBlockyySo12RLMMigrationC_s6UInt64VtcyAA0D0V_AFtcFyAD_AFtcfU_TA
-$s10RealmSwift0A0C13ConfigurationVMr
-$s10RealmSwift0A0C13ConfigurationVwst
-$s10RealmSwift0A0C13ConfigurationVwet
-$s10RealmSwift0A0C13ConfigurationVwta
-$s10RealmSwift0A0C13ConfigurationVwtk
-$s10Foundation4DataVWOh
-$s10RealmSwift0A0C13ConfigurationVwca
-$s10RealmSwift0A0C13ConfigurationVwcp
-$s10RealmSwift0A0C13ConfigurationVwxx
-$s10RealmSwift0A0C13ConfigurationVwCP
-$sSa16_copyToNewBuffer8oldCountySi_tF10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferV19_getElementSlowPathyyXlSiFSo15RLMObjectSchemaC_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_s01_aB0Vy10RealmSwift6ObjectCmG_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEyyXlXpG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFs01_aB0Vy10RealmSwift6ObjectCmG_Tg5
-$ss8_PointerPsE8distance2toSix_tFSpy10RealmSwift6ObjectCmG_Tg5
-$ss23_ContiguousArrayStorageCy10RealmSwift6ObjectCmGMa
-$s10RealmSwift6ObjectCmMa
-$ss12_ArrayBufferVyxGs01_aB8ProtocolssADP8capacitySivgTW10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferV8capacitySivg10RealmSwift6ObjectCm_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHyyXlXpG_Tg5
-$ss8_PointerPsE8distance2toSix_tFSpyyXlXpG_Tg5
-$ss23_ContiguousArrayStorageCyyXlXpGMa
-$syXlXpMa
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP8capacitySivgTWyXlXp_Tg5
-$ss22_ContiguousArrayBufferV8capacitySivgyXlXp_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFs01_aB0Vy10RealmSwift6ObjectCmG_Tg5
-$ss12_ArrayBufferVyxGs01_aB8ProtocolssADP13_copyContents8subRange12initializingSpy7ElementQzGSnySiG_AKtFTW10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtF10RealmSwift6ObjectCm_Tg5
-$sSp14moveInitialize4from5countySpyxG_SitF10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferVyxGs01_aB8ProtocolssADP19firstElementAddressSpy0E0QzGvgTW10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferV19firstElementAddressSpyxGvg10RealmSwift6ObjectCm_Tg5
-$sSp10initialize4from5countySPyxG_SitF10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferVyxGSlsSl8endIndex0D0QzvgTW10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferV8endIndexSivg10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferVyxGs01_aB8ProtocolssADP027requestUniqueMutableBackingB015minimumCapacitys011_ContiguousaB0Vy7ElementQzGSgSi_tFTW10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferV027requestUniqueMutableBackingB015minimumCapacitys011_ContiguousaB0VyxGSgSi_tF10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferV20isUniquelyReferencedSbyF10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferVyxGSlsSl5countSivgTW10RealmSwift6ObjectCm_Tg5
-$ss22_ContiguousArrayBufferV5countSivg10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferV7_natives011_ContiguousaB0VyxGvg10RealmSwift6ObjectCm_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEyyXlXpG_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP13_copyContents8subRange12initializingSpy7ElementQzGSnySiG_AKtFTWyXlXp_Tg5
-$ss22_ContiguousArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFyXlXp_Tg5
-$sSp14moveInitialize4from5countySpyxG_SitFyXlXp_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP19firstElementAddressSpy0F0QzGvgTWyXlXp_Tg5
-$ss22_ContiguousArrayBufferV19firstElementAddressSpyxGvgyXlXp_Tg5
-$sSp10initialize4from5countySPyxG_SitFyXlXp_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl8endIndex0E0QzvgTWyXlXp_Tg5
-$ss22_ContiguousArrayBufferV8endIndexSivgyXlXp_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP027requestUniqueMutableBackingC015minimumCapacityABy7ElementQzGSgSi_tFTWyXlXp_Tg5
-$ss22_ContiguousArrayBufferV027requestUniqueMutableBackingC015minimumCapacityAByxGSgSi_tFyXlXp_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl5countSivgTWyXlXp_Tg5
-$ss22_ContiguousArrayBufferV5countSivgyXlXp_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_s01_aB0Vy10RealmSwift6ObjectCmG_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEyyXlXpG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFs01_aB0Vy10RealmSwift6ObjectCmG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGyyXlXpG_Tg5
-$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tFyXlXp_Tg5
-$ss15ContiguousArrayV15reserveCapacityyySiFyXlXp_Tg5
-$ss15ContiguousArrayV9_getCountSiyFyXlXp_Tg5
-gsub
-$sS2uSbIegyyd_S2uSbIeyByyd_TR
-$sSo12RLMMigrationCs6UInt64VIeggy_AbDIeyByy_TR
-objectTypes.get
-$sSo9RLMSchemaCSay10RealmSwift6ObjectCmGs5Error_pIggozo_AbFsAG_pIegnrzo_TR
-$s10RealmSwift0A0C13ConfigurationV11objectTypesSayAA6ObjectCmGSgvgAISo9RLMSchemaCXEfU_
-compactMap
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSaySo15RLMObjectSchemaCG_Tg5
-$sSa6appendyyxnF10RealmSwift6ObjectCm_Tg5
-$sSa37_appendElementAssumeUniqueAndCapacity_03newB0ySi_xntF10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferV5countSivs10RealmSwift6ObjectCm_Tg5
-$sSa36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tF10RealmSwift6ObjectCm_Tg5
-$sSa9_getCountSiyF10RealmSwift6ObjectCm_Tg5
-$sSa034_makeUniqueAndReserveCapacityIfNotB0yyF10RealmSwift6ObjectCm_Tg5
-$sSo15RLMObjectSchemaC10RealmSwift6ObjectCXMTSgs5Error_pIggdzo_AbFsAG_pIegnrzo_TR
-$s10RealmSwift0A0C13ConfigurationV11objectTypesSayAA6ObjectCmGSgvgAISo9RLMSchemaCXEfU_AHmSgSo15RLMObjectSchemaCXEfU_
-$s10RealmSwift0A0C13ConfigurationVMa
-objectTypes.modify
-objectTypes.set
-$sSay10RealmSwift6ObjectCmGSo9RLMSchemaCs5Error_pIggozo_AdFsAG_pIegnrzo_TR
-$s10RealmSwift0A0C13ConfigurationV11objectTypesSayAA6ObjectCmGSgvsSo9RLMSchemaCAIXEfU_
-$s10RealmSwift17SyncConfigurationVSgWOc
-$s10RealmSwift17SyncConfigurationVWOb
-_arrayForceCast
-$sSayxGSlsSly7ElementQz5IndexQzcirTW10RealmSwift6ObjectCm_Tg5
-$sSayxSicir10RealmSwift6ObjectCm_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtF10RealmSwift6ObjectCm_Tg5
-$ss15ContiguousArrayV6appendyyxnFyXlXp_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntFyXlXp_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFyXlXp_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyFyXlXp_Tg5
-$ss15_arrayForceCastySayq_GSayxGr0_lFq_xXEfU_10RealmSwift6ObjectCm_yXlXpTG5
-$ss15_arrayForceCastySayq_GSayxGr0_lFq_xXEfU_10RealmSwift6ObjectCm_yXlXpTg5
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtF10RealmSwift6ObjectCm_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtF10RealmSwift6ObjectCm_Tg5
-$sSayxGSlsSl5countSivgTW10RealmSwift6ObjectCm_Tg5
-shouldCompactOnLaunch.modify
-shouldCompactOnLaunch.set
-shouldCompactOnLaunch.get
-deleteRealmIfMigrationNeeded.modify
-deleteRealmIfMigrationNeeded.set
-deleteRealmIfMigrationNeeded.get
-migrationBlock.modify
-migrationBlock.set
-migrationBlock.get
-schemaVersion.modify
-schemaVersion.set
-schemaVersion.get
-readOnly.modify
-readOnly.set
-readOnly.get
-encryptionKey.modify
-encryptionKey.set
-encryptionKey.get
-inMemoryIdentifier.get
-inMemoryIdentifier.modify
-inMemoryIdentifier.set
-fileURL.get
-$sSS10Foundation3URLVs5Error_pIggrzo_SSACsAD_pIegnrzo_TR
-$s10RealmSwift0A0C13ConfigurationV7fileURL10Foundation0E0VSgvgAISSXEfU_
-fileURL.modify
-syncConfiguration.get
-syncConfiguration.modify
-syncConfiguration.set
-$s10RealmSwift17SyncConfigurationVSgWOh
-$s10RealmSwift17SyncConfigurationVSgWOb
-defaultConfiguration.modify
-defaultConfiguration.set
-rlmConfiguration.get
-$s10RealmSwift9MigrationVs6UInt64VIeggy_So12RLMMigrationCAEIeggy_s5Error_pIggozo_AcEytIegnnr_AgEytIegnnr_sAH_pIegnrzo_TR
-$s10RealmSwift0A0C13ConfigurationV03rlmC0So08RLMRealmC0CvgySo12RLMMigrationC_s6UInt64VtcyAA9MigrationV_ALtcXEfU_
-accessorMigrationBlock
-fromRLMRealmConfiguration
-$sS2uSbIegyyd_S2iSbIegyyd_s5Error_pIggozo_S2uSbIegnnr_S2iSbIegnnr_sAA_pIegnrzo_TR
-$sSo12RLMMigrationCs6UInt64VIeggy_10RealmSwift9MigrationVADIeggy_s5Error_pIggozo_AbDytIegnnr_AgDytIegnnr_sAH_pIegnrzo_TR
-$s10RealmSwift0A0C13ConfigurationV012fromRLMRealmC0yAESo0eC0CFZyAA9MigrationV_s6UInt64VtcySo12RLMMigrationC_ALtcXEfU_
-$s10RealmSwift0A0C13ConfigurationV7fileURL18inMemoryIdentifier04syncC013encryptionKey8readOnly13schemaVersion14migrationBlock06deleteA17IfMigrationNeeded21shouldCompactOnLaunch11objectTypesAE10Foundation0E0VSg_SSSgAA04SyncC0VSgAP4DataVSgSbs6UInt64VyAA0T0V_A0_tcSgS2bSi_SitcSgSayAA6ObjectCmGSgtcfcfA1_
-_$s10RealmSwift14SortDescriptorVSo07RLMSortD0Cs5Error_pIggozo_AcEsAF_pIegnrzo_TR04$s10a45Swift7ResultsC6sorted2byACyxGqd___tSTRd__AA14cd20V7ElementRtd__lFSo07E10G0CAHXEfU_Tf3nnpf_n
-_$sSo8NSNumberC10RealmSwift11AddableTypeA2cDPxycfCTW
-_$sSd10RealmSwift11AddableTypeA2aBPxycfCTW
-_$sSf10RealmSwift11AddableTypeA2aBPxycfCTW
-_$sSi10RealmSwift11AddableTypeA2aBPxycfCTW
-_$ss4Int8V10RealmSwift11AddableTypeA2cDPxycfCTW
-_$ss5Int16V10RealmSwift11AddableTypeA2cDPxycfCTW
-_$ss5Int32V10RealmSwift11AddableTypeA2cDPxycfCTW
-_$s10RealmSwift7ResultsC11descriptionSSvgTo
-_$s10RealmSwift7ResultsC18countByEnumerating4with7objects0D0SiSpySo22NSFastEnumerationStateaG_SAyyXlSgGSitFTo
-_$s10RealmSwift7ResultsCyACyxGSo10RLMResultsCyyXlGcfc
-_$s10RealmSwift7ResultsCyxSicir
-_$s10RealmSwift7ResultsCyxSicir.resume.0
-_$s10RealmSwift7ResultsC5value6forKeyypSgSS_tFTo
-_$s10RealmSwift7ResultsC5value10forKeyPathypSgSS_tFTo
-_$s10RealmSwift7ResultsC5value6forKeyypSgSS_tFToTm
-_$s10RealmSwift7ResultsC8setValue_6forKeyyypSg_SStFTo
-_$s10RealmSwift7ResultsC6sorted2byACyxGqd___tSTRd__AA14SortDescriptorV7ElementRtd__lFSo17RLMSyncPermissionC_SayAHGTg5
-_$s10RealmSwift7ResultsC3min10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTm
-_$s10RealmSwift7ResultsCACyxGycfcTo
-_$s10RealmSwift7ResultsCfETo
-_$s10RealmSwift7ResultsCyxGSTAAST12makeIterator0E0QzyFTW
-_$s10RealmSwift7ResultsCyxGSTAAST19underestimatedCountSivgTW
-_$s10RealmSwift7ResultsCyxGSTAAST31_customContainsEquatableElementySbSg0G0QzFTW
-_$s10RealmSwift7ResultsCyxGSTAAST22_copyToContiguousArrays0fG0Vy7ElementQzGyFTW
-_$s10RealmSwift7ResultsCyxGSTAAST13_copyContents12initializing8IteratorQz_SitSry7ElementQzG_tFTW
-_$s10RealmSwift7ResultsCyxGSTAAST32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlFTW
-_$s10RealmSwift7ResultsCyxGSkAASk5index_8offsetBy5IndexQzAH_SitFTW
-_$s10RealmSwift7ResultsCyxGSkAASk5index_8offsetBy07limitedF05IndexQzSgAI_SiAItFTW
-_$s10RealmSwift7ResultsCyxGSkAASk8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift7ResultsCyxGAA14ThreadConfinedA2aEP5realmAA0A0CSgvgTW
-_$s10RealmSwift7ResultsCyxGAA14ThreadConfinedA2aEP13isInvalidatedSbvgTW
-_$s10RealmSwift7ResultsCyxGSKAASK5index6before5IndexQzAH_tFTW
-_$s10RealmSwift7ResultsCyxGSKAASK9formIndex6beforey0E0Qzz_tFTW
-_$s10RealmSwift7ResultsCyxGSKAASK5index_8offsetBy5IndexQzAH_SitFTW
-_$s10RealmSwift7ResultsCyxGSKAASK5index_8offsetBy07limitedF05IndexQzSgAI_SiAItFTW
-_$s10RealmSwift7ResultsCyxGSKAASK8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift7ResultsCyxGSlAASl10startIndex0E0QzvgTW
-_$s10RealmSwift7ResultsCyxGSlAASl8endIndex0E0QzvgTW
-_$s10RealmSwift7ResultsCyxGSlAASly7ElementQz5IndexQzcirTW
-_$s10RealmSwift7ResultsCyxGSlAASly7ElementQz5IndexQzcirTW.resume.0
-_$s10RealmSwift7ResultsCyxGSlAASly11SubSequenceQzSny5IndexQzGcigTW
-_$s10RealmSwift7ResultsCyxGSlAASl7indices7IndicesQzvgTW
-_$s10RealmSwift7ResultsCyxGSlAASl7isEmptySbvgTW
-_$s10RealmSwift7ResultsCyxGSlAASl5countSivgTW
-_$s10RealmSwift7ResultsCyxGSlAASl30_customIndexOfEquatableElementy0E0QzSgSg0H0QzFTW
-_$s10RealmSwift7ResultsCyxGSlAASl20_failEarlyRangeCheck_6boundsy5IndexQz_SnyAHGtFTW
-_$s10RealmSwift7ResultsCyxGSlAASl20_failEarlyRangeCheck_6boundsy5IndexQz_SNyAHGtFTW
-_$s10RealmSwift7ResultsCyxGSlAASl20_failEarlyRangeCheck_6boundsySny5IndexQzG_AItFTW
-_$s10RealmSwift7ResultsCyxGSlAASl5index5after5IndexQzAH_tFTW
-_$s10RealmSwift7ResultsCyxGSlAASl9formIndex5aftery0E0Qzz_tFTW
-_$s10RealmSwift7ResultsCyxGs20LazySequenceProtocolAAsAEP8elements8ElementsQzvgTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP5index2ofSiSg7ElementQz_tFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP5index8matchingSiSgSo11NSPredicateC_tFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP5index8matching_SiSgSS_ypdtFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP6filteryACy7ElementQzGSS_ypdtFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP6filteryACy7ElementQzGSo11NSPredicateCFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP6sorted9byKeyPath9ascendingACy7ElementQzGSS_SbtFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP6sorted2byACy7ElementQzGqd___tSTRd__AA14SortDescriptorVAIRtd__lFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP3min10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP3max10ofPropertyqd__SgSS_tAA10MinMaxTypeRd__lFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP3sum10ofPropertyqd__SS_tAA11AddableTypeRd__lFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP7average10ofPropertySdSgSS_tFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP5value6forKeyypSgSS_tFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP5value10forKeyPathypSgSS_tFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP8setValue_6forKeyyypSg_SStFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP7observeySo20RLMNotificationTokenCyAA0aD6ChangeOyxGcFTW
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionA2aEP8_observeySo20RLMNotificationTokenCyAA0aD6ChangeOyAA03AnyaD0Cy7ElementQzGGcFTW
-_$s10RealmSwift7ResultsC8bridging4from4withACyxGyp_ypSgtFZ
-_$s10RealmSwift7ResultsC7bridgedyp15objectiveCValue_ypSg8metadatatvg
-_$s10RealmSwift7ResultsCyxGAA28AssistedObjectiveCBridgeableA2aEP8bridging4from4withxyp_ypSgtFZTW
-_$s10RealmSwift7ResultsCyxGAA28AssistedObjectiveCBridgeableA2aEP7bridgedyp15objectiveCValue_ypSg8metadatatvgTW
-_$ss15ContiguousArrayV15reserveCapacityyySiFSo17RLMSortDescriptorC_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tFSo17RLMSortDescriptorC_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGySo17RLMSortDescriptorCG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEySo17RLMSortDescriptorCG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEySo17RLMSortDescriptorCG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHySo17RLMSortDescriptorCG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEySo17RLMSortDescriptorCG_Tg5
-_$sSlsE20_failEarlyRangeCheck_6boundsy5IndexQz_SNyADGtFTf4nnd_nTm
-_$s10RealmSwift7ResultsC6sorted9byKeyPath9ascendingACyxGSS_SbtFTf4xnn_n
-_$s10RealmSwift7ResultsC8setValue_6forKeyyypSg_SStFTf4nxn_n
-_$s10RealmSwift7ResultsC5index8matching_SiSgSS_ypdtFTf4xnn_n
-_$s10RealmSwift7ResultsC6filteryACyxGSS_ypdtFTf4xnn_n
-_$sypqd__Iegnr_So8NSNumberCqd__s5Error_pIeggrzo_10RealmSwift0C15CollectionValueRzAD11AddableTypeRd__r__lTRTA
-_$sSo8NSNumberCqd__s5Error_pIggrzo_ABqd__sAC_pIegnrzo_10RealmSwift0C15CollectionValueRzAD11AddableTypeRd__r__lTRTA
-_$s10RealmSwift7ResultsC7observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyACyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_TA
-_$s10RealmSwift7ResultsCACyxGycfcTf4d_n
-_objectdestroy.38Tm
-_$s10RealmSwift7ResultsC8_observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyAA03AnyaG0CyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_TA
-_$s10RealmSwift7ResultsCyxGSTAA8Iterator_StWT
-_$s10RealmSwift7ResultsCyxGAA0A14CollectionBaseAA7Element_AA0aD5ValuePWT
-_$s10RealmSwift7ResultsCyxGAA0A14CollectionBaseAAWI
-_$s10RealmSwift7ResultsCyxGSkAASKWb
-_$s10RealmSwift7ResultsCyxGSkAA7Indices_SkWT
-_$s10RealmSwift7ResultsCyxGSkAA11SubSequence_SkWT
-_$s10RealmSwift7ResultsCyxGs22LazyCollectionProtocolAASlWb
-_$s10RealmSwift7ResultsCyxGs22LazyCollectionProtocolAAs0d8SequenceF0PWb
-_$s10RealmSwift7ResultsCyxGs22LazyCollectionProtocolAA8Elements_SlWT
-_$s10RealmSwift7ResultsCyxGSKAASlWb
-_$s10RealmSwift7ResultsCyxGSKAA7Indices_SKWT
-_$s10RealmSwift7ResultsCyxGSKAA11SubSequence_SKWT
-_$s10RealmSwift7ResultsCyxGSlAASTWb
-_$s10RealmSwift7ResultsCyxGSlAA5Index_SLWT
-_$s10RealmSwift7ResultsCyxGSlAA7Indices_SlWT
-_$s10RealmSwift7ResultsCyxGSlAA11SubSequence_SlWT
-_$s10RealmSwift7ResultsCyxGs20LazySequenceProtocolAASTWb
-_$s10RealmSwift7ResultsCyxGs20LazySequenceProtocolAA8Elements_STWT
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionAAWI
-_$s10RealmSwift7ResultsCMi
-_$s10RealmSwift7ResultsCMr
-_$s10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGIegn_AGIegg_AA0aC5ValueRzlTRTA
-_$s10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGAA0aC5ValueRzlWOr
-_$s10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGAA0aC5ValueRzlWOy
-_$s10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGAA0aC5ValueRzlWOs
-_$s10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGAA0aC5ValueRzlWOe
-_$sSi10RealmSwift7ResultsCyxGAA0A15CollectionValueRzlIetWnn_TC
-_$sSi10RealmSwift7ResultsCyxGAA0A15CollectionValueRzlIetMyg_TC
-_$s10RealmSwift7ResultsCySo17RLMSyncPermissionCGMa
-_$s10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGAA0aC5ValueRzlWOrTm
-_$s10RealmSwift7ResultsCyxGSlAASl8distance4from2toSi5IndexQz_AItFTW
-_$s10RealmSwift7ResultsCyxGSlAASl34_customLastIndexOfEquatableElementy0F0QzSgSg0I0QzFTW
-_block_destroy_helper.44
-_$s10RealmSwift7ResultsCyxGSlAASl5index_8offsetBy07limitedF05IndexQzSgAI_SiAItFTW
-_block_copy_helper.43
-_$s10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGAA0aC5ValueRzlWOb
-_$s10RealmSwift17dynamicBridgeCast14fromObjectiveCxyp_tlFTA.30
-_$ss5Int64V10RealmSwift11AddableTypeA2cDPxycfCTW
-_$s10RealmSwift7ResultsCyxGSlAASl5index_8offsetBy5IndexQzAH_SitFTW
-_symbolic 10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGIegn_
-_symbolic 10RealmSwift7ResultsCyxG
-_block_descriptor.45
-_associated conformance 10RealmSwift7ResultsCyxGSTAA8Iterator_St
-_associated conformance 10RealmSwift7ResultsCyxGAA0A14CollectionBaseAA7Element_AA0aD5Value
-_$s10RealmSwift7ResultsCyxGAA0A14CollectionBaseAAWp
-_associated conformance 10RealmSwift7ResultsCyxGSkAASK
-_associated conformance 10RealmSwift7ResultsCyxGSkAA7Indices_Sk
-_associated conformance 10RealmSwift7ResultsCyxGSkAA11SubSequence_Sk
-_associated conformance 10RealmSwift7ResultsCyxGs22LazyCollectionProtocolAASl
-_associated conformance 10RealmSwift7ResultsCyxGs22LazyCollectionProtocolAAs0d8SequenceF0
-_associated conformance 10RealmSwift7ResultsCyxGs22LazyCollectionProtocolAA8Elements_Sl
-_associated conformance 10RealmSwift7ResultsCyxGSKAASl
-_associated conformance 10RealmSwift7ResultsCyxGSKAA7Indices_SK
-_associated conformance 10RealmSwift7ResultsCyxGSKAA11SubSequence_SK
-_associated conformance 10RealmSwift7ResultsCyxGSlAAST
-_associated conformance 10RealmSwift7ResultsCyxGSlAA5Index_SL
-_associated conformance 10RealmSwift7ResultsCyxGSlAA7Indices_Sl
-_associated conformance 10RealmSwift7ResultsCyxGSlAA11SubSequence_Sl
-_symbolic s5SliceVy10RealmSwift7ResultsCyxGG
-_associated conformance 10RealmSwift7ResultsCyxGs20LazySequenceProtocolAAST
-_associated conformance 10RealmSwift7ResultsCyxGs20LazySequenceProtocolAA8Elements_ST
-_$s10RealmSwift7ResultsCyxGAA0A10CollectionAAWp
-_$s10RealmSwift7ResultsCyxGAA28AssistedObjectiveCBridgeableAAMc
-_$s10RealmSwift7ResultsCyxGAA28AssistedObjectiveCBridgeableAAWP
-_symbolic $s10RealmSwift10MinMaxTypeP
-_$s10RealmSwift10MinMaxType_pMF
-_symbolic $s10RealmSwift11AddableTypeP
-_$s10RealmSwift11AddableType_pMF
-_$s10RealmSwift7ResultsCMI
-_$s10RealmSwift7ResultsCMP
-_symbolic _____ 10RealmSwift7ResultsC
-_symbolic So10RLMResultsCyyXlG
-_$s10RealmSwift7ResultsCMF
-_$s10RealmSwift7ResultsCySo17RLMSyncPermissionCGML
-_$sSo17RLMSyncPermissionCML
-_$sSo17RLMSyncPermissionCAB10RealmSwift0C15CollectionValueACWL
-_$ss23_ContiguousArrayStorageCySo17RLMSortDescriptorCGML
-_symbolic 10RealmSwift7ResultsC
-_$s10RealmSwift7ResultsCyxGSTAAMA
-_$s10RealmSwift7ResultsCyxGSkAAMA
-_$s10RealmSwift7ResultsCyxGSKAAMA
-_$s10RealmSwift7ResultsCyxGSlAAMA
-_$s10RealmSwift7ResultsCyxGs20LazySequenceProtocolAAMA
-_$s10RealmSwift7ResultsCyACyxGSo10RLMResultsCyyXlGcfCTq
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Results.swift
-$s10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGAA0aC5ValueRzlWOr
-$s10RealmSwift7ResultsCySo17RLMSyncPermissionCGMa
-$s10RealmSwift7ResultsCMa
-$sSo17RLMSyncPermissionCAB10RealmSwift0C15CollectionValueACWl
-$sSo17RLMSyncPermissionCMa
-$s10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGIegn_AGIegg_AA0aC5ValueRzlTRTA
-$s10RealmSwift0A16CollectionChangeOyAA7ResultsCyxGGIegn_AGIegg_AA0aC5ValueRzlTR
-$s10RealmSwift7ResultsCMr
-$s10RealmSwift7ResultsCMi
-$s10RealmSwift7ResultsCyxGAA0A10CollectionAAWI
-$s10RealmSwift7ResultsCyxGs20LazySequenceProtocolAA8Elements_STWT
-$s10RealmSwift7ResultsCyxGs20LazySequenceProtocolAASTWb
-$s10RealmSwift7ResultsCyxGSlAA11SubSequence_SlWT
-$s10RealmSwift7ResultsCyxGSlAA7Indices_SlWT
-$s10RealmSwift7ResultsCyxGSlAA5Index_SLWT
-$s10RealmSwift7ResultsCyxGSlAASTWb
-$s10RealmSwift7ResultsCyxGSKAA11SubSequence_SKWT
-$s10RealmSwift7ResultsCyxGSKAA7Indices_SKWT
-$s10RealmSwift7ResultsCyxGSKAASlWb
-$s10RealmSwift7ResultsCyxGs22LazyCollectionProtocolAA8Elements_SlWT
-$s10RealmSwift7ResultsCyxGs22LazyCollectionProtocolAAs0d8SequenceF0PWb
-$s10RealmSwift7ResultsCyxGs22LazyCollectionProtocolAASlWb
-$s10RealmSwift7ResultsCyxGSkAA11SubSequence_SkWT
-$s10RealmSwift7ResultsCyxGSkAA7Indices_SkWT
-$s10RealmSwift7ResultsCyxGSkAASKWb
-$s10RealmSwift7ResultsCyxGAA0A14CollectionBaseAAWI
-$s10RealmSwift7ResultsCyxGAA0A14CollectionBaseAA7Element_AA0aD5ValuePWT
-$s10RealmSwift7ResultsCyxGSTAA8Iterator_StWT
-$s10RealmSwift7ResultsC8_observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyAA03AnyaG0CyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_TA
-$s10RealmSwift7ResultsC8_observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyAA03AnyaG0CyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_
-objectdestroy.38
-$s10RealmSwift7ResultsC7observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyACyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_TA
-$s10RealmSwift7ResultsC7observeySo20RLMNotificationTokenCyAA0A16CollectionChangeOyACyxGGcFySo10RLMResultsCyyXlGSg_So013RLMCollectionH0CSgs5Error_pSgtcfU_
-$sSo8NSNumberCqd__s5Error_pIggrzo_ABqd__sAC_pIegnrzo_10RealmSwift0C15CollectionValueRzAD11AddableTypeRd__r__lTRTA
-$sSo8NSNumberCqd__s5Error_pIggrzo_ABqd__sAC_pIegnrzo_10RealmSwift0C15CollectionValueRzAD11AddableTypeRd__r__lTR
-$sypqd__Iegnr_So8NSNumberCqd__s5Error_pIeggrzo_10RealmSwift0C15CollectionValueRzAD11AddableTypeRd__r__lTRTA
-$sypqd__Iegnr_So8NSNumberCqd__s5Error_pIeggrzo_10RealmSwift0C15CollectionValueRzAD11AddableTypeRd__r__lTR
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEySo17RLMSortDescriptorCG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHySo17RLMSortDescriptorCG_Tg5
-$ss8_PointerPsE8distance2toSix_tFSpySo17RLMSortDescriptorCG_Tg5
-$ss23_ContiguousArrayStorageCySo17RLMSortDescriptorCGMa
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP8capacitySivgTWSo17RLMSortDescriptorC_Tg5
-$ss22_ContiguousArrayBufferV8capacitySivgSo17RLMSortDescriptorC_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEySo17RLMSortDescriptorCG_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP13_copyContents8subRange12initializingSpy7ElementQzGSnySiG_AKtFTWSo17RLMSortDescriptorC_Tg5
-$ss22_ContiguousArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSo17RLMSortDescriptorC_Tg5
-$sSp12deinitialize5countSvSi_tFSo17RLMSortDescriptorC_Tg5
-$sSp14moveInitialize4from5countySpyxG_SitFSo17RLMSortDescriptorC_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP19firstElementAddressSpy0F0QzGvgTWSo17RLMSortDescriptorC_Tg5
-$ss22_ContiguousArrayBufferV19firstElementAddressSpyxGvgSo17RLMSortDescriptorC_Tg5
-$sSp10initialize4from5countySPyxG_SitFSo17RLMSortDescriptorC_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl8endIndex0E0QzvgTWSo17RLMSortDescriptorC_Tg5
-$ss22_ContiguousArrayBufferV8endIndexSivgSo17RLMSortDescriptorC_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP027requestUniqueMutableBackingC015minimumCapacityABy7ElementQzGSgSi_tFTWSo17RLMSortDescriptorC_Tg5
-$ss22_ContiguousArrayBufferV027requestUniqueMutableBackingC015minimumCapacityAByxGSgSi_tFSo17RLMSortDescriptorC_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl5countSivgTWSo17RLMSortDescriptorC_Tg5
-$ss22_ContiguousArrayBufferV5countSivgSo17RLMSortDescriptorC_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEySo17RLMSortDescriptorCG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGySo17RLMSortDescriptorCG_Tg5
-$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tFSo17RLMSortDescriptorC_Tg5
-$ss15ContiguousArrayV15reserveCapacityyySiFSo17RLMSortDescriptorC_Tg5
-$ss15ContiguousArrayV9_getCountSiyFSo17RLMSortDescriptorC_Tg5
-distinct
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSay10RealmSwift14SortDescriptorVG_Tg5
-$sSayxGSlsSly7ElementQz5IndexQzcirTW10RealmSwift14SortDescriptorV_Tg5
-$sSayxSicir10RealmSwift14SortDescriptorV_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtF10RealmSwift14SortDescriptorV_Tg5
-$ss15ContiguousArrayV6appendyyxnFSo17RLMSortDescriptorC_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntFSo17RLMSortDescriptorC_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSo17RLMSortDescriptorC_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyFSo17RLMSortDescriptorC_Tg5
-$s10RealmSwift14SortDescriptorVSo07RLMSortD0Cs5Error_pIggozo_AcEsAF_pIegnrzo_TR
-$s10RealmSwift7ResultsC6sorted2byACyxGqd___tSTRd__AA14SortDescriptorV7ElementRtd__lFSo07RLMSortG0CAHXEfU_
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtF10RealmSwift14SortDescriptorV_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtF10RealmSwift14SortDescriptorV_Tg5
-$sSayxGSTsST19underestimatedCountSivgTW10RealmSwift14SortDescriptorV_Tg5
-$sSayxGSlsSl5countSivgTW10RealmSwift14SortDescriptorV_Tg5
-$sSa9_getCountSiyF10RealmSwift14SortDescriptorV_Tg5
-$s10RealmSwift7ResultsC11descriptionSSvgTo
-$s10RealmSwift14SortDescriptorVSo07RLMSortD0Cs5Error_pIggozo_AcEsAF_pIegnrzo_TR04$s10a45Swift7ResultsC6sorted2byACyxGqd___tSTRd__AA14cd20V7ElementRtd__lFSo07E10G0CAHXEfU_Tf3nnpf_n
-$s10RealmSwift7ResultsC6sorted2byACyxGqd___tSTRd__AA14SortDescriptorV7ElementRtd__lFSo07RLMSortG0CAHXEfU_Tf4x_n
-_$s10RealmSwift6SchemaVs23CustomStringConvertibleAAsADP11descriptionSSvgTW
-_$s10RealmSwift6SchemaVSQAASQ2eeoiySbx_xtFZTW
-_$ss15ContiguousArrayV15reserveCapacityyySiF10RealmSwift12ObjectSchemaV_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift12ObjectSchemaV_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift12ObjectSchemaVG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift12ObjectSchemaVG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift12ObjectSchemaVG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift12ObjectSchemaVG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift12ObjectSchemaVG_Tg5
-_$s10RealmSwift6SchemaVMf
-_symbolic _____ 10RealmSwift6SchemaV
-_symbolic So9RLMSchemaC
-_$s10RealmSwift6SchemaVMF
-_$ss23_ContiguousArrayStorageCy10RealmSwift12ObjectSchemaVGML
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Schema.swift
-$s10RealmSwift6SchemaVMa
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift12ObjectSchemaVG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift12ObjectSchemaVG_Tg5
-$ss8_PointerPsE8distance2toSix_tFSpy10RealmSwift12ObjectSchemaVG_Tg5
-$ss23_ContiguousArrayStorageCy10RealmSwift12ObjectSchemaVGMa
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP8capacitySivgTW10RealmSwift12ObjectSchemaV_Tg5
-$ss22_ContiguousArrayBufferV8capacitySivg10RealmSwift12ObjectSchemaV_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift12ObjectSchemaVG_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP13_copyContents8subRange12initializingSpy7ElementQzGSnySiG_AKtFTW10RealmSwift12ObjectSchemaV_Tg5
-$ss22_ContiguousArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtF10RealmSwift12ObjectSchemaV_Tg5
-$sSp12deinitialize5countSvSi_tF10RealmSwift12ObjectSchemaV_Tg5
-$sSp14moveInitialize4from5countySpyxG_SitF10RealmSwift12ObjectSchemaV_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP19firstElementAddressSpy0F0QzGvgTW10RealmSwift12ObjectSchemaV_Tg5
-$ss22_ContiguousArrayBufferV19firstElementAddressSpyxGvg10RealmSwift12ObjectSchemaV_Tg5
-$sSp10initialize4from5countySPyxG_SitF10RealmSwift12ObjectSchemaV_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl8endIndex0E0QzvgTW10RealmSwift12ObjectSchemaV_Tg5
-$ss22_ContiguousArrayBufferV8endIndexSivg10RealmSwift12ObjectSchemaV_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP027requestUniqueMutableBackingC015minimumCapacityABy7ElementQzGSgSi_tFTW10RealmSwift12ObjectSchemaV_Tg5
-$ss22_ContiguousArrayBufferV027requestUniqueMutableBackingC015minimumCapacityAByxGSgSi_tF10RealmSwift12ObjectSchemaV_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl5countSivgTW10RealmSwift12ObjectSchemaV_Tg5
-$ss22_ContiguousArrayBufferV5countSivg10RealmSwift12ObjectSchemaV_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift12ObjectSchemaVG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift12ObjectSchemaVG_Tg5
-$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift12ObjectSchemaV_Tg5
-$ss15ContiguousArrayV15reserveCapacityyySiF10RealmSwift12ObjectSchemaV_Tg5
-$ss15ContiguousArrayV9_getCountSiyF10RealmSwift12ObjectSchemaV_Tg5
-$ss15ContiguousArrayV6appendyyxnF10RealmSwift12ObjectSchemaV_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntF10RealmSwift12ObjectSchemaV_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tF10RealmSwift12ObjectSchemaV_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyF10RealmSwift12ObjectSchemaV_Tg5
-$sSo15RLMObjectSchemaC10RealmSwift06ObjectB0Vs5Error_pIggozo_AbEsAF_pIegnrzo_TR
-$sSo15RLMObjectSchemaC10RealmSwift06ObjectB0VIegxo_AbEIeggo_TR
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtFSo15RLMObjectSchemaC_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtFSo15RLMObjectSchemaC_Tg5
-$sSayxGSlsSl5countSivgTWSo15RLMObjectSchemaC_Tg5
-_$s10RealmSwift14SortDescriptorVs23CustomStringConvertibleAAsADP11descriptionSSvgTW
-_$s10RealmSwift14SortDescriptorVSQAASQ2eeoiySbx_xtFZTW
-_$s10RealmSwift14SortDescriptorVs26ExpressibleByStringLiteralAAsADP06stringH0x0gH4TypeQz_tcfCTW
-_$s10RealmSwift14SortDescriptorV11descriptionSSvgTf4x_n
-_$s10RealmSwift14SortDescriptorVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb
-_$s10RealmSwift14SortDescriptorVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT
-_$s10RealmSwift14SortDescriptorVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb
-_$s10RealmSwift14SortDescriptorVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT
-_$s10RealmSwift14SortDescriptorVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT
-_$s10RealmSwift14SortDescriptorVwCP
-_$s10RealmSwift14SortDescriptorVwxx
-_$s10RealmSwift14SortDescriptorVwcp
-_$s10RealmSwift14SortDescriptorVwca
-_$s10RealmSwift14SortDescriptorVwta
-_$s10RealmSwift14SortDescriptorVwet
-_$s10RealmSwift14SortDescriptorVwst
-_$s10RealmSwift14SortDescriptorVs43ExpressibleByExtendedGraphemeClusterLiteralAAsADP08extendedhiJ0x0ghiJ4TypeQz_tcfCTW
-_$s10RealmSwift14SortDescriptorVs33ExpressibleByUnicodeScalarLiteralAAsADP07unicodehI0x0ghI4TypeQz_tcfCTW
-_$s10RealmSwift14SortDescriptorVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWL
-_associated conformance 10RealmSwift14SortDescriptorVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0
-_associated conformance 10RealmSwift14SortDescriptorVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0
-_$s10RealmSwift14SortDescriptorVACs33ExpressibleByUnicodeScalarLiteralAAWL
-_associated conformance 10RealmSwift14SortDescriptorVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0
-_associated conformance 10RealmSwift14SortDescriptorVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0
-_associated conformance 10RealmSwift14SortDescriptorVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0
-_$s10RealmSwift14SortDescriptorVWV
-_$s10RealmSwift14SortDescriptorVMf
-_symbolic _____ 10RealmSwift14SortDescriptorV
-_$s10RealmSwift14SortDescriptorVMF
-_symbolic 10RealmSwift14SortDescriptorV
-_symbolic $ss26ExpressibleByStringLiteralP
-_$s10RealmSwift14SortDescriptorVs26ExpressibleByStringLiteralAAMA
-_symbolic $ss43ExpressibleByExtendedGraphemeClusterLiteralP
-_$s10RealmSwift14SortDescriptorVs43ExpressibleByExtendedGraphemeClusterLiteralAAMA
-_symbolic $ss33ExpressibleByUnicodeScalarLiteralP
-_$s10RealmSwift14SortDescriptorVs33ExpressibleByUnicodeScalarLiteralAAMA
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/SortDescriptor.swift
-$s10RealmSwift14SortDescriptorVMa
-$s10RealmSwift14SortDescriptorVwst
-$s10RealmSwift14SortDescriptorVwet
-$s10RealmSwift14SortDescriptorVwta
-$s10RealmSwift14SortDescriptorVwca
-$s10RealmSwift14SortDescriptorVwcp
-$s10RealmSwift14SortDescriptorVwxx
-$s10RealmSwift14SortDescriptorVwCP
-$s10RealmSwift14SortDescriptorVs33ExpressibleByUnicodeScalarLiteralAA0ghI4TypesADP_s01_ef7BuiltinghI0PWT
-$s10RealmSwift14SortDescriptorVs43ExpressibleByExtendedGraphemeClusterLiteralAA0ghiJ4TypesADP_s01_ef7BuiltinghiJ0PWT
-$s10RealmSwift14SortDescriptorVs43ExpressibleByExtendedGraphemeClusterLiteralAAs0ef13UnicodeScalarJ0PWb
-$s10RealmSwift14SortDescriptorVACs33ExpressibleByUnicodeScalarLiteralAAWl
-$s10RealmSwift14SortDescriptorVs26ExpressibleByStringLiteralAA0gH4TypesADP_s01_ef7BuiltingH0PWT
-$s10RealmSwift14SortDescriptorVs26ExpressibleByStringLiteralAAs0ef23ExtendedGraphemeClusterH0PWb
-$s10RealmSwift14SortDescriptorVACs43ExpressibleByExtendedGraphemeClusterLiteralAAWl
-ascending.get
-keyPath.get
-_$s10RealmSwift20swiftLanguageVersionSSvp
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/SwiftVersion.swift
-_$s10RealmSwift16SyncSubscriptionCyACyxGSo07RLMSyncD0CcfC
-_$s10RealmSwift15SyncCredentialsV8facebook5tokenACSS_tFZTm
-_$ss17_dictionaryUpCastySDyq0_q1_GSDyxq_GSHRzSHR0_r2_lFSS_yps11AnyHashableVypTg5
-_$sSo11RLMSyncUserC10RealmSwiftE12errorHandleryAB_SC0A9AuthErrorLeVtcSgvsyAB_s0H0_ptcfU_
-_$sSo11RLMSyncUserCs5Error_pIeggg_ABSo7NSErrorCIeyByy_TR
-_$sSo11RLMSyncUserC10RealmSwiftE12errorHandleryAB_SC0A9AuthErrorLeVtcSgvM.resume.0
-_$sSo11RLMSyncUserC10RealmSwiftE19retrievePermissions8callbackyyAC7ResultsCySo0A10PermissionCGSg_SC0aI5ErrorLeVSgtc_tFySo10RLMResultsCyAIGSg_s0J0_pSgtcfU_
-_$sSo10RLMResultsCySo17RLMSyncPermissionCGSgs5Error_pSgIeggg_AFSo7NSErrorCSgIeyByy_TR
-_$sSo11RLMSyncUserC10RealmSwiftE014createOfferForC02at11accessLevel10expiration8callbacky10Foundation3URLV_So0a6AccessJ0VAI4DateVSgySSSg_SC0A15PermissionErrorLeVSgtctFyAQ_s0R0_pSgtcfU_
-_$sSSSgs5Error_pSgIeggg_So8NSStringCSgSo7NSErrorCSgIeyByy_TR
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOSQACSQ2eeoiySbx_xtFZTW
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOSHACSH9hashValueSivgTW
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOSHACSH4hash4intoys6HasherVz_tFTW
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOSHACSH13_rawHashValue4seedS2i_tFTW
-_$sS2uIegyy_S2uIeyByy_TR
-_$s10RealmSwift0A0C9subscribe2to5where10completionyxm_SSyAA7ResultsCyxGSg_s5Error_pSgtctAA6ObjectCRbzlFySo10RLMResultsCyyXlGSg_AMtcfU_
-_$s10RealmSwift21SyncSubscriptionStateOSQAASQ2eeoiySbx_xtFZTW
-_$s10RealmSwift16SyncSubscriptionC4nameSSSgvgTm
-_$s10RealmSwift16SyncSubscriptionC9createdAt10Foundation4DateVSgvgTm
-_$s10RealmSwift16SyncSubscriptionCyACyxGSo07RLMSyncD0Ccfc
-_$s10RealmSwift16SyncSubscriptionCyxGSQAASQ2eeoiySbx_xtFZTW
-_$s10RealmSwift36KeyValueObservationNotificationTokenC10invalidateyyFTo
-_$s10RealmSwift36KeyValueObservationNotificationTokenCACycfcTo
-_$s10RealmSwift36KeyValueObservationNotificationTokenCfD
-_$s10RealmSwift36KeyValueObservationNotificationTokenCfETo
-_$s10RealmSwift10PermissionC4roleAA0C4RoleCSgvgTo
-_$s10RealmSwift10PermissionC4roleAA0C4RoleCSgvsTo
-_$s10RealmSwift10PermissionC7canReadSbvgTo
-_$s10RealmSwift10PermissionC7canReadSbvsTo
-_$s10RealmSwift10PermissionC9canUpdateSbvgTo
-_$s10RealmSwift10PermissionC9canUpdateSbvsTo
-_$s10RealmSwift10PermissionC9canDeleteSbvgTo
-_$s10RealmSwift10PermissionC9canDeleteSbvsTo
-_$s10RealmSwift10PermissionC17canSetPermissionsSbvgTo
-_$s10RealmSwift10PermissionC17canSetPermissionsSbvsTo
-_$s10RealmSwift10PermissionC8canQuerySbvgTo
-_$s10RealmSwift10PermissionC8canQuerySbvsTo
-_$s10RealmSwift10PermissionC9canCreateSbvgTo
-_$s10RealmSwift10PermissionC9canCreateSbvsTo
-_$s10RealmSwift10PermissionC15canModifySchemaSbvgTo
-_$s10RealmSwift10PermissionC7canReadSbvgToTm
-_$s10RealmSwift10PermissionC7canReadSbvgTm
-_$s10RealmSwift10PermissionC15canModifySchemaSbvsTo
-_$s10RealmSwift10PermissionC7canReadSbvsToTm
-_$s10RealmSwift10PermissionC7canReadSbvsTm
-_$s10RealmSwift10PermissionC16_realmObjectNameSSyFZTo
-_$s10RealmSwift10PermissionCACycfcTo
-_$s10RealmSwift10PermissionC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfcTo
-_$s10RealmSwift10PermissionC5value6schemaACyp_So9RLMSchemaCtcfcTo
-_$s10RealmSwift10PermissionCfE
-_$s10RealmSwift10PermissionCfETo
-_$s10RealmSwift14PermissionRoleC4nameSSvgTo
-_$s10RealmSwift14PermissionRoleC4nameSSvsTo
-_$s10RealmSwift14PermissionRoleC16_realmObjectNameSSyFZTo
-_$s10RealmSwift14PermissionRoleC10primaryKeySSyFZTo
-_$s10RealmSwift14PermissionRoleC17_realmColumnNamesSDyS2SGyFZTo
-_$s10RealmSwift14PermissionRoleCACycfcTo
-_$s10RealmSwift14PermissionRoleC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfcTo
-_$s10RealmSwift14PermissionRoleC5value6schemaACyp_So9RLMSchemaCtcfcTo
-_$s10RealmSwift14PermissionRoleCfE
-_$s10RealmSwift14PermissionRoleCfETo
-_$s10RealmSwift14PermissionRoleC10primaryKeySSyFZAA6ObjectCADSSSgyFZTV
-_$s10RealmSwift14PermissionUserC8identitySSvgTo
-_$s10RealmSwift14PermissionUserC8identitySSvsTo
-_$s10RealmSwift14PermissionUserC4roleAA0C4RoleCSgvgTo
-_$s10RealmSwift10PermissionC4roleAA0C4RoleCSgvgToTm
-_$s10RealmSwift10PermissionC4roleAA0C4RoleCSgvgTm
-_$s10RealmSwift14PermissionUserC4roleAA0C4RoleCSgvsTo
-_$s10RealmSwift10PermissionC4roleAA0C4RoleCSgvsToTm
-_$s10RealmSwift10PermissionC4roleAA0C4RoleCSgvsTm
-_$s10RealmSwift14PermissionUserC16_realmObjectNameSSyFZTo
-_$s10RealmSwift14PermissionUserC10primaryKeySSyFZTo
-_$s10RealmSwift14PermissionUserC17_realmColumnNamesSDyS2SGyFZTo
-_$s10RealmSwift14PermissionUserCACycfcTo
-_$s10RealmSwift10PermissionC5valueACyp_tcfCTm
-_$s10RealmSwift14PermissionUserC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfcTo
-_$s10RealmSwift10PermissionC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfcToTm
-_$s10RealmSwift14PermissionUserC5value6schemaACyp_So9RLMSchemaCtcfcTo
-_$s10RealmSwift10PermissionC5value6schemaACyp_So9RLMSchemaCtcfcToTm
-_$s10RealmSwift14PermissionUserCfE
-_$s10RealmSwift14PermissionUserCfETo
-_$s10RealmSwift14PermissionUserC10primaryKeySSyFZAA6ObjectCADSSSgyFZTV
-_$s10RealmSwift0A10PermissionC2id33_10449364F3E92C848B95A7C2FA1C0621LLSivgTo
-_$s10RealmSwift0A10PermissionC2id33_10449364F3E92C848B95A7C2FA1C0621LLSivsTo
-_$s10RealmSwift0A10PermissionC16_realmObjectNameSSyFZTo
-_$s10RealmSwift0A10PermissionC10primaryKeySSyFZTo
-_$s10RealmSwift0A10PermissionCACycfcTo
-_$s10RealmSwift0A10PermissionC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfcTo
-_$s10RealmSwift0A10PermissionC5value6schemaACyp_So9RLMSchemaCtcfcTo
-_$s10RealmSwift0A10PermissionCfE
-_$s10RealmSwift0A10PermissionCfETo
-_$s10RealmSwift0A10PermissionC10primaryKeySSyFZAA6ObjectCADSSSgyFZTV
-_$s10RealmSwift15ClassPermissionC4nameSSvgTo
-_$s10RealmSwift14PermissionRoleC4nameSSvgToTm
-_$s10RealmSwift14PermissionRoleC4nameSSvgTm
-_$s10RealmSwift15ClassPermissionC4nameSSvsTo
-_$s10RealmSwift14PermissionRoleC4nameSSvsToTm
-_$s10RealmSwift14PermissionRoleC4nameSSvsTm
-_$s10RealmSwift15ClassPermissionC16_realmObjectNameSSyFZTo
-_$s10RealmSwift10PermissionCACycfCTm
-_$s10RealmSwift15ClassPermissionCACycfcTo
-_$s10RealmSwift10PermissionC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfCTm
-_$s10RealmSwift15ClassPermissionC5realm6schemaACSo8RLMRealmC_So15RLMObjectSchemaCtcfcTo
-_$s10RealmSwift10PermissionC5value6schemaACyp_So9RLMSchemaCtcfCTm
-_$s10RealmSwift15ClassPermissionC5value6schemaACyp_So9RLMSchemaCtcfcTo
-_$s10RealmSwift15ClassPermissionCfE
-_$s10RealmSwift14PermissionRoleCfETm
-_$s10RealmSwift36KeyValueObservationNotificationTokenCfDTm
-_$s10RealmSwift15ClassPermissionCfETo
-_$s10RealmSwift14PermissionRoleCfEToTm
-_$s10RealmSwift15ClassPermissionC10primaryKeySSyFZAA6ObjectCADSSSgyFZTV
-_$s10RealmSwift20optionSetDescription33_10449364F3E92C848B95A7C2FA1C0621LLySSx_Say7ElementQz_SStGts06OptionD0RzlFAA0A10PrivilegesV_Tg5
-_$s10RealmSwift20optionSetDescription33_10449364F3E92C848B95A7C2FA1C0621LLySSx_Say7ElementQz_SStGts06OptionD0RzlFAA15ClassPrivilegesV_Tg5
-_$s10RealmSwift20optionSetDescription33_10449364F3E92C848B95A7C2FA1C0621LLySSx_Say7ElementQz_SStGts06OptionD0RzlFAA16ObjectPrivilegesV_Tg5
-_$s10RealmSwift0A10PrivilegesVs9OptionSetAAsADP8rawValuex03RawG0Qz_tcfCTW
-_$s10RealmSwift0A10PrivilegesVs28CustomDebugStringConvertibleAAsADP16debugDescriptionSSvgTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADPxycfCTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP5unionyxxnFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP12intersectionyxxFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP19symmetricDifferenceyxxnFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP6insertySb8inserted_7ElementQz17memberAfterInserttAInFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP6removey7ElementQzSgAHFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP6update4with7ElementQzSgAIn_tFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP9formUnionyyxnFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP16formIntersectionyyxFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP23formSymmetricDifferenceyyxnFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP11subtractingyxxFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP8isSubset2ofSbx_tFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP10isDisjoint4withSbx_tFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP10isSuperset2ofSbx_tFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP7isEmptySbvgTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADPyxqd__ncSTRd__7ElementQyd__AFRtzlufCTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP8subtractyyxFTW
-_$s10RealmSwift0A10PrivilegesVSYAASY8rawValuexSg03RawE0Qz_tcfCTW
-_$s10RealmSwift0A10PrivilegesVSYAASY8rawValue03RawE0QzvgTW
-_$s10RealmSwift0A10PrivilegesVSQAASQ2eeoiySbx_xtFZTW
-_$s10RealmSwift0A10PrivilegesVs25ExpressibleByArrayLiteralAAsADP05arrayG0x0fG7ElementQzd_tcfCTW
-_$s10RealmSwift15ClassPrivilegesVs28CustomDebugStringConvertibleAAsADP16debugDescriptionSSvgTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADPyxqd__ncSTRd__7ElementQyd__AFRtzlufCTW
-_$s10RealmSwift15ClassPrivilegesVs25ExpressibleByArrayLiteralAAsADP05arrayH0x0gH7ElementQzd_tcfCTW
-_$s10RealmSwift16ObjectPrivilegesVs28CustomDebugStringConvertibleAAsADP16debugDescriptionSSvgTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADPyxqd__ncSTRd__7ElementQyd__AFRtzlufCTW
-_$ss15ContiguousArrayV15reserveCapacityyySiFSS_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tFSS_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift0I10PrivilegesV_SSt_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift16ObjectPrivilegesV_SSt_Tg5Tm
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGySSG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift0O10PrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift15ClassPrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift16ObjectPrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEySSG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift0K10PrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift15ClassPrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift16ObjectPrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEySSG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift0K10PrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift15ClassPrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift16ObjectPrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift0K10PrivilegesV_SStG_Tg5Tm
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHySSG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift0Q10PrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift15ClassPrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift16ObjectPrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift0Q10PrivilegesV_SStG_Tg5Tm
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEySSG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift0K10PrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift15ClassPrivilegesV_SStG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift16ObjectPrivilegesV_SStG_Tg5
-_$ss17_NativeDictionaryV8setValue_6forKey8isUniqueyq_n_xSbtFs11AnyHashableV_ypTg5
-_$ss17_NativeDictionaryV4copyyyFs11AnyHashableV_ypTg5
-_$ss17_NativeDictionaryV13copyAndResize8capacityySi_tFs11AnyHashableV_ypTg5
-_$ss17_NativeDictionaryV6resize8capacityySi_tFs11AnyHashableV_ypTg5
-_$sSiSHsSH4hash4intoys6HasherVz_tFTW
-_$s10RealmSwift22ServerValidationPolicyOWOc
-_$s10RealmSwift17SyncConfigurationVMaTm
-_$s10RealmSwift22ServerValidationPolicyOWOh
-_$s10RealmSwift22ServerValidationPolicyOWOb
-_$s10RealmSwift17SyncConfigurationVWOc
-_$sSo11RLMSyncUserCSo7NSErrorCIeyByy_ABs5Error_pIeggg_TRTA
-_$sSo11RLMSyncUserCs5Error_pIeggg_ABSC0a4AuthC0LeVIeggg_TRTA
-_$sSo11RLMSyncUserC10RealmSwiftE12errorHandleryAB_SC0A9AuthErrorLeVtcSgvsyAB_s0H0_ptcfU_TA
-_$sSo11RLMSyncUserCSC0A9AuthErrorLeVIeggg_SgWOe
-_$sSo11RLMSyncUserCIetMg_TC
-_$sSo11RLMSyncUserC10RealmSwiftE19retrievePermissions8callbackyyAC7ResultsCySo0A10PermissionCGSg_SC0aI5ErrorLeVSgtc_tFySo10RLMResultsCyAIGSg_s0J0_pSgtcfU_TA
-_$s10Foundation4DateVSgWOc
-_$sSo11RLMSyncUserC10RealmSwiftE014createOfferForC02at11accessLevel10expiration8callbacky10Foundation3URLV_So0a6AccessJ0VAI4DateVSgySSSg_SC0A15PermissionErrorLeVSgtctFyAQ_s0R0_pSgtcfU_TA
-_$s10Foundation4DateVSgWOcTm
-_$sSo14RLMSyncSessionC10RealmSwiftE23addProgressNotification3for4mode5blockSo011RLMProgressG5TokenCSgAbCE0F9DirectionO_AbCE0F4ModeOyAbCE0F0VctFySu_SutcfU_TA
-_$s10RealmSwift0A0C9subscribe2to5where10completionyxm_SSyAA7ResultsCyxGSg_s5Error_pSgtctAA6ObjectCRbzlFySo10RLMResultsCyyXlGSg_AMtcfU_TA
-_$ss11AnyHashableVSHsSH13_rawHashValue4seedS2i_tFTW
-_$ss11AnyHashableVSQsSQ2eeoiySbx_xtFZTW
-_$s10RealmSwift0A10PrivilegesV4readACvG
-_$s10RealmSwift0A10PrivilegesV6updateACvG
-_$s10RealmSwift0A10PrivilegesV14setPermissionsACvG
-_$s10RealmSwift0A10PrivilegesV12modifySchemaACvG
-_$s10RealmSwift15ClassPrivilegesV4readACvG
-_$s10RealmSwift15ClassPrivilegesV6createACvG
-_$s10RealmSwift15ClassPrivilegesV6updateACvG
-_$s10RealmSwift15ClassPrivilegesV9subscribeACvG
-_$s10RealmSwift15ClassPrivilegesV14setPermissionsACvG
-_$s10RealmSwift16ObjectPrivilegesV4readACvG
-_$s10RealmSwift16ObjectPrivilegesV6updateACvG
-_$s10RealmSwift16ObjectPrivilegesV6deleteACvG
-_$s10RealmSwift16ObjectPrivilegesV14setPermissionsACvG
-_$s10RealmSwift21SyncSubscriptionStateO2eeoiySbAC_ACtFZTf4nnd_n
-_$s10Foundation4DateVSgWOb
-_$s10RealmSwift16SyncSubscriptionC7observe_7options_So20RLMNotificationTokenCs7KeyPathCyACyxGAA0cD5StateOG_So26NSKeyValueObservingOptionsVyALctFySo07RLMSyncD0C_10Foundation0lM14ObservedChangeVySo0pdK0VGtcfU_TA
-_$sSo19RLMSyncSubscriptionC10Foundation24NSKeyValueObservedChangeVySo0aB5StateVGIeggn_AbHIegnn_TRTA
-_$s10RealmSwift36KeyValueObservationNotificationTokenCMa
-_$sSo20RLMSyncConfigurationC4user8realmURL9isPartial9urlPrefix10stopPolicy19enableSSLValidation15certificatePathABSo0A4UserC_10Foundation0E0VSbSSSgSo0a4StopK0VSbANSgtcfcTOTf4gnnnnnnn_n
-_$sSD17dictionaryLiteralSDyxq_Gx_q_td_tcfCSS_SSTg5Tf4gd_n
-_$s10RealmSwift21SyncSubscriptionStateOyACSo07RLMSyncD0CcfCTf4gd_n
-_$s10RealmSwift10PermissionC5value6schemaACyp_So9RLMSchemaCtcfcTf4ngn_n
-_$s10RealmSwift4ListCyAA14PermissionUserCGMa
-_$s10RealmSwift14PermissionUserC5value6schemaACyp_So9RLMSchemaCtcfcTf4ngn_n
-_$s10RealmSwift4ListCyAA10PermissionCGMa
-_$s10RealmSwift4ListCyAA14PermissionUserCGMaTm
-_$s10RealmSwift7ResultsCyAA16SyncSubscriptionCyAA6ObjectCGGMa
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOSHACSQWb
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOSHACSQWb
-_$sSo17RLMSyncPermissionC10RealmSwift0C15CollectionValueACWI
-_$s10RealmSwift16SyncSubscriptionCyxGAA0A15CollectionValueAAWI
-_$s10RealmSwift0A10PrivilegesVs9OptionSetAASYWb
-_$s10RealmSwift0A10PrivilegesVs9OptionSetAAs0E7AlgebraPWb
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAASQWb
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAs25ExpressibleByArrayLiteralPWb
-_$s10RealmSwift15ClassPrivilegesVs9OptionSetAASYWb
-_$s10RealmSwift15ClassPrivilegesVs9OptionSetAAs0F7AlgebraPWb
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAASQWb
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAs25ExpressibleByArrayLiteralPWb
-_$s10RealmSwift16ObjectPrivilegesVs9OptionSetAASYWb
-_$s10RealmSwift16ObjectPrivilegesVs9OptionSetAAs0F7AlgebraPWb
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAASQWb
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAs25ExpressibleByArrayLiteralPWb
-_$s10RealmSwift22ServerValidationPolicyOwCP
-_$s10RealmSwift22ServerValidationPolicyOwxx
-_$s10RealmSwift22ServerValidationPolicyOwcp
-_$s10RealmSwift22ServerValidationPolicyOwca
-_$s10RealmSwift22ServerValidationPolicyOwtk
-_$s10RealmSwift22ServerValidationPolicyOwta
-_$s10RealmSwift22ServerValidationPolicyOwet
-_$s10RealmSwift22ServerValidationPolicyOwst
-_$s10RealmSwift22ServerValidationPolicyOwug
-_$s10RealmSwift22ServerValidationPolicyOwup
-_$s10RealmSwift22ServerValidationPolicyOwui
-_$s10RealmSwift22ServerValidationPolicyOMr
-_$s10RealmSwift17SyncConfigurationVwCP
-_$s10RealmSwift17SyncConfigurationVwxx
-_$s10RealmSwift17SyncConfigurationVwcp
-_$s10RealmSwift17SyncConfigurationVwca
-_$s10RealmSwift17SyncConfigurationVwtk
-_$s10RealmSwift17SyncConfigurationVwta
-_$s10RealmSwift17SyncConfigurationVwet
-_$s10RealmSwift17SyncConfigurationVwst
-_$s10RealmSwift17SyncConfigurationVMr
-_$s10RealmSwift15SyncCredentialsVwCP
-_$s10RealmSwift15SyncCredentialsVwxx
-_$s10RealmSwift15SyncCredentialsVwcp
-_$s10RealmSwift15SyncCredentialsVwca
-___swift_memcpy32_8
-_$s10RealmSwift15SyncCredentialsVwta
-_$s10RealmSwift15SyncCredentialsVwet
-_$s10RealmSwift15SyncCredentialsVwst
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOwup
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOwet
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOwst
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOwug
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOwup
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOwui
-___swift_memcpy16_8
-_$sSo14RLMSyncSessionC10RealmSwiftE8ProgressVwet
-_$sSo14RLMSyncSessionC10RealmSwiftE8ProgressVwst
-_$s10RealmSwift21SyncSubscriptionStateOwCP
-_$s10RealmSwift21SyncSubscriptionStateOwxx
-_$s10RealmSwift21SyncSubscriptionStateOwcp
-_$s10RealmSwift21SyncSubscriptionStateOwca
-___swift_memcpy8_8
-_$s10RealmSwift21SyncSubscriptionStateOwta
-_$s10RealmSwift21SyncSubscriptionStateOwet
-_$s10RealmSwift21SyncSubscriptionStateOwst
-_$s10RealmSwift21SyncSubscriptionStateOwug
-_$s10RealmSwift21SyncSubscriptionStateOwup
-_$s10RealmSwift21SyncSubscriptionStateOwui
-_$s10RealmSwift16SyncSubscriptionCMi
-_$s10RealmSwift16SyncSubscriptionCMr
-_$s10RealmSwift36KeyValueObservationNotificationTokenCMaTm
-_$ss10SetAlgebraPsEyxqd__ncSTRd__7ElementQyd__ACRtzlufC10RealmSwift0D10PrivilegesV_SayAHGTgq5Tf4gd_n
-_$s10RealmSwift21SyncSubscriptionStateOWOe
-_$s10RealmSwift21SyncSubscriptionStateOWOy
-_$s10RealmSwift0A0C9subscribe2to5where10completionyxm_SSyAA7ResultsCyxGSg_s5Error_pSgtctAA6ObjectCRbzlFySo10RLMResultsCyyXlGSg_AMtcfU_AjRXEfU_TA
-_$sSo10RLMResultsCyyXlG10RealmSwift7ResultsCyxGs5Error_pIggozo_AcGsAH_pIegnrzo_AD6ObjectCRbzlTRTA
-_$sSC12RLMSyncErrorLeVMaTm
-_$s10RealmSwift22ServerValidationPolicyOWOhTm
-_$s10Foundation3URLVSgWOd
-_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOy
-_$sSD8IteratorV8_VariantOyxq___GSHRzr0_lWOe
-_$sSS3key_yp5valuetSgWOh
-_$sSo11RLMSyncUserC10RealmSwiftE12errorHandleryAB_SC0A9AuthErrorLeVtcSgvsyAB_s0H0_ptcfU_TA.13
-_$sSo11RLMSyncUserC10RealmSwiftE12errorHandleryAB_SC0A9AuthErrorLeVtcSgvsyAB_s0H0_ptcfU_TA.20
-_$s10RealmSwift15ClassPrivilegesVSYAASY8rawValuexSg03RawF0Qz_tcfCTW
-_$s10RealmSwift16ObjectPrivilegesVSYAASY8rawValuexSg03RawF0Qz_tcfCTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP12intersectionyxxFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP12intersectionyxxFTW
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOSHACSH9hashValueSivgTW
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOwug
-_$sSo11RLMSyncUserCSo7NSErrorCIeyByy_ABs5Error_pIeggg_TRTA.27
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP6removey7ElementQzSgAHFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP6removey7ElementQzSgAHFTW
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOSHACSH4hash4intoys6HasherVz_tFTW
-_block_destroy_helper.8
-_block_destroy_helper.15
-_block_destroy_helper.22
-_block_destroy_helper.36
-_block_destroy_helper.48
-_block_destroy_helper.54
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP11subtractingyxxFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP11subtractingyxxFTW
-_$sSo11RLMSyncUserCs5Error_pIeggg_ABSC0a4AuthC0LeVIeggg_TRTA.31
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOwet
-_$ss10SetAlgebraPsEyxqd__ncSTRd__7ElementQyd__ACRtzlufC10RealmSwift15ClassPrivilegesV_SayAHGTgq5Tf4gd_n
-_$ss10SetAlgebraPsEyxqd__ncSTRd__7ElementQyd__ACRtzlufC10RealmSwift16ObjectPrivilegesV_SayAHGTgq5Tf4gd_n
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP19symmetricDifferenceyxxnFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP19symmetricDifferenceyxxnFTW
-_block_copy_helper.7
-_block_copy_helper.14
-_block_copy_helper.21
-_block_copy_helper.35
-_block_copy_helper.47
-_block_copy_helper.53
-_$sSo11RLMSyncUserCSgs5Error_pSgIeggg_ACSo7NSErrorCSgIeyByy_TR
-_$sSo10RLMResultsCyyXlGSgs5Error_pSgIeggg_ADSo7NSErrorCSgIeyByy_TR
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP16formIntersectionyyxFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP16formIntersectionyyxFTW
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOSQACSQ2eeoiySbx_xtFZTW
-_$s10RealmSwift15ClassPrivilegesVs9OptionSetAAsADP8rawValuex03RawH0Qz_tcfCTW
-_$s10RealmSwift16ObjectPrivilegesVs9OptionSetAAsADP8rawValuex03RawH0Qz_tcfCTW
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOwui
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP6insertySb8inserted_7ElementQz17memberAfterInserttAInFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP6insertySb8inserted_7ElementQz17memberAfterInserttAInFTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP8subtractyyxFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP8subtractyyxFTW
-_$s10RealmSwift15ClassPrivilegesVSQAASQ2eeoiySbx_xtFZTW
-_$s10RealmSwift16ObjectPrivilegesVSQAASQ2eeoiySbx_xtFZTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP6update4with7ElementQzSgAIn_tFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP6update4with7ElementQzSgAIn_tFTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADPxycfCTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADPxycfCTW
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOwst
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP23formSymmetricDifferenceyyxnFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP23formSymmetricDifferenceyyxnFTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP7isEmptySbvgTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP7isEmptySbvgTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP9formUnionyyxnFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP9formUnionyyxnFTW
-_$s10RealmSwift15ClassPrivilegesVSYAASY8rawValue03RawF0QzvgTW
-_$s10RealmSwift16ObjectPrivilegesVSYAASY8rawValue03RawF0QzvgTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP5unionyxxnFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP5unionyxxnFTW
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOSHACSH13_rawHashValue4seedS2i_tFTW
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAsADP8containsySb7ElementQzFTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP8containsySb7ElementQzFTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP8isSubset2ofSbx_tFTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP10isDisjoint4withSbx_tFTW
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAsADP10isSuperset2ofSbx_tFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP8containsySb7ElementQzFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP8isSubset2ofSbx_tFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP10isDisjoint4withSbx_tFTW
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAsADP10isSuperset2ofSbx_tFTW
-_$s10RealmSwift16ObjectPrivilegesVs25ExpressibleByArrayLiteralAAsADP05arrayH0x0gH7ElementQzd_tcfCTW
-_$sSo11RLMSyncUserCML
-_symbolic So11RLMSyncUserCSo7NSErrorCIeyByy_
-_symbolic So11RLMSyncUserCs5Error_pIeggg_
-_symbolic So11RLMSyncUserCSC0A9AuthErrorLeVIeggg_
-_block_descriptor.9
-_block_descriptor.16
-_block_descriptor.23
-_symbolic 10RealmSwift7ResultsCySo17RLMSyncPermissionCGSgSC0dE5ErrorLeVSgIeggg_
-_block_descriptor.37
-_symbolic SSSgSC22RLMSyncPermissionErrorLeVSgIeggg_
-_symbolic So14RLMSyncSessionC10RealmSwiftE8ProgressVIegy_
-_block_descriptor.49
-_symbolic 10RealmSwift7ResultsCyxGSgs5Error_pSgIeggg_
-_block_descriptor.55
-_symbolic So19RLMSyncSubscriptionC
-_symbolic So24RLMSyncSubscriptionStateV
-_symbolic 10RealmSwift21SyncSubscriptionStateOIegg_
-_symbolic So19RLMSyncSubscriptionC10Foundation24NSKeyValueObservedChangeVySo0aB5StateVGIeggn_
-_$s10RealmSwift36KeyValueObservationNotificationTokenC11observation10Foundation05NSKeydE0CSgvpWvd
-_$ss23_ContiguousArrayStorageCySS_SStGML
-_$sSS_SStML
-_$s10RealmSwift0A10PermissionC2id33_10449364F3E92C848B95A7C2FA1C0621LLSivpWvd
-_$ss23_ContiguousArrayStorageCy10RealmSwift0D10PrivilegesV_SStGML
-_$s10RealmSwift0A10PrivilegesV_SStML
-_$ss23_ContiguousArrayStorageCy10RealmSwift15ClassPrivilegesV_SStGML
-_$s10RealmSwift15ClassPrivilegesV_SStML
-_$ss23_ContiguousArrayStorageCy10RealmSwift16ObjectPrivilegesV_SStGML
-_$s10RealmSwift16ObjectPrivilegesV_SStML
-_$s10RealmSwift7ResultsCyAA16SyncSubscriptionCyAA6ObjectCGGML
-_$s10RealmSwift16SyncSubscriptionCyAA6ObjectCGACyxGAA0A15CollectionValueAAWL
-_$ss23_ContiguousArrayStorageCySSGML
-_$sSaySSGML
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOAESQACWL
-_associated conformance So14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOSHACSQ
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOAESQACWL
-_associated conformance So14RLMSyncSessionC10RealmSwiftE12ProgressModeOSHACSQ
-_$sSo17RLMSyncPermissionCSo8NSObjectCSQ10ObjectiveCWL
-_$s10RealmSwift0A10PrivilegesVACSYAAWL
-_associated conformance 10RealmSwift0A10PrivilegesVs9OptionSetAASY
-_$s10RealmSwift0A10PrivilegesVACs10SetAlgebraAAWL
-_associated conformance 10RealmSwift0A10PrivilegesVs9OptionSetAAs0E7Algebra
-_$s10RealmSwift0A10PrivilegesVACSQAAWL
-_associated conformance 10RealmSwift0A10PrivilegesVs10SetAlgebraAASQ
-_$s10RealmSwift0A10PrivilegesVACs25ExpressibleByArrayLiteralAAWL
-_associated conformance 10RealmSwift0A10PrivilegesVs10SetAlgebraAAs25ExpressibleByArrayLiteral
-_symbolic 10RealmSwift0A10PrivilegesV
-_symbolic s5UInt8V
-_$s10RealmSwift15ClassPrivilegesVACSYAAWL
-_associated conformance 10RealmSwift15ClassPrivilegesVs9OptionSetAASY
-_$s10RealmSwift15ClassPrivilegesVACs10SetAlgebraAAWL
-_associated conformance 10RealmSwift15ClassPrivilegesVs9OptionSetAAs0F7Algebra
-_$s10RealmSwift15ClassPrivilegesVACSQAAWL
-_associated conformance 10RealmSwift15ClassPrivilegesVs10SetAlgebraAASQ
-_$s10RealmSwift15ClassPrivilegesVACs25ExpressibleByArrayLiteralAAWL
-_associated conformance 10RealmSwift15ClassPrivilegesVs10SetAlgebraAAs25ExpressibleByArrayLiteral
-_symbolic 10RealmSwift15ClassPrivilegesV
-_$s10RealmSwift16ObjectPrivilegesVACSYAAWL
-_associated conformance 10RealmSwift16ObjectPrivilegesVs9OptionSetAASY
-_$s10RealmSwift16ObjectPrivilegesVACs10SetAlgebraAAWL
-_associated conformance 10RealmSwift16ObjectPrivilegesVs9OptionSetAAs0F7Algebra
-_$s10RealmSwift16ObjectPrivilegesVACSQAAWL
-_associated conformance 10RealmSwift16ObjectPrivilegesVs10SetAlgebraAASQ
-_$s10RealmSwift16ObjectPrivilegesVACs25ExpressibleByArrayLiteralAAWL
-_associated conformance 10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAs25ExpressibleByArrayLiteral
-_symbolic 10RealmSwift16ObjectPrivilegesV
-_$s10RealmSwift22ServerValidationPolicyOWV
-_$s10RealmSwift22ServerValidationPolicyOMl
-_$s10RealmSwift22ServerValidationPolicyOMf
-_symbolic _____ 10RealmSwift22ServerValidationPolicyO
-_symbolic 10Foundation3URLV4path_t
-_$s10RealmSwift22ServerValidationPolicyOMF
-_$s10RealmSwift17SyncConfigurationVWV
-_$s10RealmSwift17SyncConfigurationVMl
-_$s10RealmSwift17SyncConfigurationVMf
-_symbolic _____ 10RealmSwift17SyncConfigurationV
-_symbolic So11RLMSyncUserC
-_symbolic 10Foundation3URLV
-_symbolic So17RLMSyncStopPolicyV
-_$s10RealmSwift17SyncConfigurationVMF
-_$s10RealmSwift15SyncCredentialsVWV
-_$s10RealmSwift15SyncCredentialsVMf
-_symbolic _____ 10RealmSwift15SyncCredentialsV
-_symbolic SDySSypG
-_$s10RealmSwift15SyncCredentialsVMF
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOWV
-_symbolic So14RLMSyncSessionC
-_$sSo14RLMSyncSessionC10RealmSwiftEMXE
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOMf
-_symbolic _____ So14RLMSyncSessionC10RealmSwiftE17ProgressDirectionO
-_$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOMF
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOWV
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOMf
-_symbolic _____ So14RLMSyncSessionC10RealmSwiftE12ProgressModeO
-_$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOMF
-_$sSo14RLMSyncSessionC10RealmSwiftE8ProgressVWV
-_$sSo14RLMSyncSessionC10RealmSwiftE8ProgressVMf
-_symbolic _____ So14RLMSyncSessionC10RealmSwiftE8ProgressV
-_$sSo14RLMSyncSessionC10RealmSwiftE8ProgressVMF
-_$ss5Error_pML
-_$s10RealmSwift21SyncSubscriptionStateOWV
-_$s10RealmSwift21SyncSubscriptionStateOMf
-_symbolic _____ 10RealmSwift21SyncSubscriptionStateO
-_$s10RealmSwift21SyncSubscriptionStateOMF
-_$s10RealmSwift16SyncSubscriptionC03rlmD033_10449364F3E92C848B95A7C2FA1C0621LLSo07RLMSyncD0CvpWvd
-_$s10RealmSwift16SyncSubscriptionCMI
-_$s10RealmSwift16SyncSubscriptionCMP
-_symbolic _____ 10RealmSwift16SyncSubscriptionC
-_$s10RealmSwift16SyncSubscriptionCMF
-_OBJC_METACLASS_$__TtC10RealmSwift36KeyValueObservationNotificationToken
-_symbolic So20RLMNotificationTokenC
-_$s10RealmSwift36KeyValueObservationNotificationTokenCMn
-_$s10RealmSwift36KeyValueObservationNotificationTokenCML
-_$s10RealmSwift36KeyValueObservationNotificationTokenCMf
-_symbolic _____ 10RealmSwift36KeyValueObservationNotificationTokenC
-_symbolic 10Foundation21NSKeyValueObservationCSg
-_$s10RealmSwift36KeyValueObservationNotificationTokenCMF
-_$s10RealmSwift19SyncPermissionValueCML
-_$s10RealmSwift19SyncPermissionValueCMf
-_symbolic _____ 10RealmSwift19SyncPermissionValueC
-_$s10RealmSwift19SyncPermissionValueCMF
-_$s10RealmSwift10PermissionCML
-_$s10RealmSwift10PermissionCMf
-_symbolic _____ 10RealmSwift10PermissionC
-_symbolic _____Sg 10RealmSwift14PermissionRoleC
-_$s10RealmSwift10PermissionCMF
-_$s10RealmSwift14PermissionRoleCML
-_$s10RealmSwift14PermissionRoleCMf
-_symbolic _____ 10RealmSwift14PermissionRoleC
-_symbolic 10RealmSwift4ListCy_____G 10RealmSwift14PermissionUserC
-_$s10RealmSwift14PermissionRoleCMF
-_$s10RealmSwift14PermissionUserCML
-_$s10RealmSwift14PermissionUserCMf
-_symbolic _____ 10RealmSwift14PermissionUserC
-_symbolic 10RealmSwift14LinkingObjectsCy_____G 10RealmSwift14PermissionRoleC
-_$s10RealmSwift14PermissionUserCMF
-_$s10RealmSwift0A10PermissionCML
-_$s10RealmSwift0A10PermissionCMf
-_symbolic _____ 10RealmSwift0A10PermissionC
-_symbolic 10RealmSwift4ListCy_____G 10RealmSwift10PermissionC
-_$s10RealmSwift0A10PermissionCMF
-_$s10RealmSwift15ClassPermissionCML
-_$s10RealmSwift15ClassPermissionCMf
-_symbolic _____ 10RealmSwift15ClassPermissionC
-_$s10RealmSwift15ClassPermissionCMF
-_$s10RealmSwift0A10PrivilegesVMf
-_symbolic _____ 10RealmSwift0A10PrivilegesV
-_$s10RealmSwift0A10PrivilegesVMF
-_$s10RealmSwift15ClassPrivilegesVMf
-_symbolic _____ 10RealmSwift15ClassPrivilegesV
-_$s10RealmSwift15ClassPrivilegesVMF
-_$s10RealmSwift16ObjectPrivilegesVMf
-_symbolic _____ 10RealmSwift16ObjectPrivilegesV
-_$s10RealmSwift16ObjectPrivilegesVMF
-_$sSaySSGSayxGSKsWL
-_$s10RealmSwift16ObjectPrivilegesVmML
-_$s10RealmSwift15ClassPrivilegesVmML
-_$s10RealmSwift0A10PrivilegesVmML
-_$ss18_DictionaryStorageCyS2SGML
-_symbolic So10RLMResultsCyyXlG10RealmSwift7ResultsCyxGs5Error_pIggozo_
-_$sSo10RLMResultsCSgML
-_symbolic $ss9OptionSetP
-_$s10RealmSwift0A10PrivilegesVs9OptionSetAAMA
-_symbolic $ss10SetAlgebraP
-_$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAMA
-_$s10RealmSwift0A10PrivilegesVSYAAMA
-_symbolic $ss25ExpressibleByArrayLiteralP
-_$s10RealmSwift0A10PrivilegesVs25ExpressibleByArrayLiteralAAMA
-_$s10RealmSwift15ClassPrivilegesVs9OptionSetAAMA
-_$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAMA
-_$s10RealmSwift15ClassPrivilegesVSYAAMA
-_$s10RealmSwift15ClassPrivilegesVs25ExpressibleByArrayLiteralAAMA
-_$s10RealmSwift16ObjectPrivilegesVs9OptionSetAAMA
-_$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAMA
-_$s10RealmSwift16ObjectPrivilegesVSYAAMA
-_$s10RealmSwift16ObjectPrivilegesVs25ExpressibleByArrayLiteralAAMA
-_$sSo24RLMSyncSubscriptionStateVMB
-_$sSo17RLMSyncStopPolicyVMB
-_$sSo19RLMIdentityProvideraMB
-_$s10RealmSwift16SyncSubscriptionCyACyxGSo07RLMSyncD0CcfCTq
-_$s10RealmSwift36KeyValueObservationNotificationTokenC11observation10Foundation05NSKeydE0CSgvgTq
-_$s10RealmSwift36KeyValueObservationNotificationTokenC11observation10Foundation05NSKeydE0CSgvsTq
-_$s10RealmSwift36KeyValueObservationNotificationTokenC11observation10Foundation05NSKeydE0CSgvMTq
-_$s10RealmSwift36KeyValueObservationNotificationTokenCyAC10Foundation05NSKeydE0CcfCTq
-_$s10RealmSwift36KeyValueObservationNotificationTokenCN
-_OBJC_CLASS_$__TtC10RealmSwift36KeyValueObservationNotificationToken
-_$s10RealmSwift19SyncPermissionValueCACycfCTq
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Sync.swift
-$sSS3key_yp5valuetSgWOh
-$s10Foundation3URLVSgWOd
-$s10RealmSwift22ServerValidationPolicyOWOh
-$sSo10RLMResultsCyyXlG10RealmSwift7ResultsCyxGs5Error_pIggozo_AcGsAH_pIegnrzo_AD6ObjectCRbzlTRTA
-$sSo10RLMResultsCyyXlG10RealmSwift7ResultsCyxGs5Error_pIggozo_AcGsAH_pIegnrzo_AD6ObjectCRbzlTR
-objectdestroy.69
-$s10RealmSwift0A0C9subscribe2to5where10completionyxm_SSyAA7ResultsCyxGSg_s5Error_pSgtctAA6ObjectCRbzlFySo10RLMResultsCyyXlGSg_AMtcfU_AjRXEfU_TA
-$s10RealmSwift0A0C9subscribe2to5where10completionyxm_SSyAA7ResultsCyxGSg_s5Error_pSgtctAA6ObjectCRbzlFySo10RLMResultsCyyXlGSg_AMtcfU_AjRXEfU_
-objectdestroy.66
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSay10RealmSwift0E10PrivilegesVG_Tgq5
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTW10RealmSwift0D10PrivilegesV_Tgq5
-$sSa9formIndex5afterySiz_tF10RealmSwift0D10PrivilegesV_Tgq5
-$ss5UInt8VSzsSz1ooiyxx_xtFZTW
-$sSayxGSlsSly7ElementQz5IndexQzcirTW10RealmSwift0C10PrivilegesV_Tgq5
-$sSayxSicir10RealmSwift0A10PrivilegesV_Tgq5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtF10RealmSwift0L10PrivilegesV_Tgq5
-$sSayxGSlsSl8endIndex0B0QzvgTW10RealmSwift0C10PrivilegesV_Tgq5
-$sSa8endIndexSivg10RealmSwift0C10PrivilegesV_Tgq5
-$sSa9_getCountSiyF10RealmSwift0C10PrivilegesV_Tgq5
-$s10RealmSwift16ObjectPrivilegesVMa
-$s10RealmSwift15ClassPrivilegesVMa
-$s10RealmSwift0A10PrivilegesVMa
-$s10RealmSwift36KeyValueObservationNotificationTokenCMa
-$s10RealmSwift16SyncSubscriptionCMr
-$s10RealmSwift16SyncSubscriptionCMi
-$s10RealmSwift21SyncSubscriptionStateOMa
-$s10RealmSwift21SyncSubscriptionStateOwui
-$ss5Error_pMa
-$s10RealmSwift21SyncSubscriptionStateOwup
-$s10RealmSwift21SyncSubscriptionStateOwug
-$s10RealmSwift21SyncSubscriptionStateOwst
-$s10RealmSwift21SyncSubscriptionStateOwet
-$s10RealmSwift21SyncSubscriptionStateOwta
-__swift_memcpy8_8
-$s10RealmSwift21SyncSubscriptionStateOwca
-$s10RealmSwift21SyncSubscriptionStateOwcp
-$s10RealmSwift21SyncSubscriptionStateOwxx
-$s10RealmSwift21SyncSubscriptionStateOwCP
-$sSo14RLMSyncSessionC10RealmSwiftE8ProgressVMa
-$sSo14RLMSyncSessionC10RealmSwiftE8ProgressVwst
-$sSo14RLMSyncSessionC10RealmSwiftE8ProgressVwet
-__swift_memcpy16_8
-$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOMa
-$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOwui
-$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOwup
-$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOwug
-$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOwst
-$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOwet
-$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOMa
-$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOwup
-$s10RealmSwift15SyncCredentialsVMa
-$s10RealmSwift15SyncCredentialsVwst
-$s10RealmSwift15SyncCredentialsVwet
-$s10RealmSwift15SyncCredentialsVwta
-__swift_memcpy32_8
-$s10RealmSwift15SyncCredentialsVwca
-$s10RealmSwift15SyncCredentialsVwcp
-$s10RealmSwift15SyncCredentialsVwxx
-$s10RealmSwift15SyncCredentialsVwCP
-$s10RealmSwift17SyncConfigurationVMr
-$s10RealmSwift22ServerValidationPolicyOMa
-$s10RealmSwift17SyncConfigurationVwst
-$s10RealmSwift17SyncConfigurationVwet
-$s10RealmSwift17SyncConfigurationVwta
-$s10RealmSwift17SyncConfigurationVwtk
-$s10RealmSwift17SyncConfigurationVwca
-$s10RealmSwift17SyncConfigurationVwcp
-$s10RealmSwift17SyncConfigurationVwxx
-$s10RealmSwift17SyncConfigurationVwCP
-$s10RealmSwift22ServerValidationPolicyOMr
-$s10RealmSwift22ServerValidationPolicyOwui
-$s10RealmSwift22ServerValidationPolicyOwup
-$s10RealmSwift22ServerValidationPolicyOwug
-$s10RealmSwift22ServerValidationPolicyOwst
-$s10RealmSwift22ServerValidationPolicyOwet
-$s10RealmSwift22ServerValidationPolicyOwta
-$s10RealmSwift22ServerValidationPolicyOwtk
-$s10RealmSwift22ServerValidationPolicyOwca
-$s10RealmSwift22ServerValidationPolicyOwcp
-$s10RealmSwift22ServerValidationPolicyOwxx
-$s10RealmSwift22ServerValidationPolicyOwCP
-$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAAs25ExpressibleByArrayLiteralPWb
-$s10RealmSwift16ObjectPrivilegesVACs25ExpressibleByArrayLiteralAAWl
-$s10RealmSwift16ObjectPrivilegesVs10SetAlgebraAASQWb
-$s10RealmSwift16ObjectPrivilegesVACSQAAWl
-$s10RealmSwift16ObjectPrivilegesVs9OptionSetAAs0F7AlgebraPWb
-$s10RealmSwift16ObjectPrivilegesVACs10SetAlgebraAAWl
-$s10RealmSwift16ObjectPrivilegesVs9OptionSetAASYWb
-$s10RealmSwift16ObjectPrivilegesVACSYAAWl
-$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAAs25ExpressibleByArrayLiteralPWb
-$s10RealmSwift15ClassPrivilegesVACs25ExpressibleByArrayLiteralAAWl
-$s10RealmSwift15ClassPrivilegesVs10SetAlgebraAASQWb
-$s10RealmSwift15ClassPrivilegesVACSQAAWl
-$s10RealmSwift15ClassPrivilegesVs9OptionSetAAs0F7AlgebraPWb
-$s10RealmSwift15ClassPrivilegesVACs10SetAlgebraAAWl
-$s10RealmSwift15ClassPrivilegesVs9OptionSetAASYWb
-$s10RealmSwift15ClassPrivilegesVACSYAAWl
-$s10RealmSwift0A10PrivilegesVs10SetAlgebraAAs25ExpressibleByArrayLiteralPWb
-$s10RealmSwift0A10PrivilegesVACs25ExpressibleByArrayLiteralAAWl
-$s10RealmSwift0A10PrivilegesVs10SetAlgebraAASQWb
-$s10RealmSwift0A10PrivilegesVACSQAAWl
-$s10RealmSwift0A10PrivilegesVs9OptionSetAAs0E7AlgebraPWb
-$s10RealmSwift0A10PrivilegesVACs10SetAlgebraAAWl
-$s10RealmSwift0A10PrivilegesVs9OptionSetAASYWb
-$s10RealmSwift0A10PrivilegesVACSYAAWl
-$s10RealmSwift16SyncSubscriptionCyxGAA0A15CollectionValueAAWI
-$sSo17RLMSyncPermissionC10RealmSwift0C15CollectionValueACWI
-$sSo17RLMSyncPermissionCSo8NSObjectCSQ10ObjectiveCWl
-$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOSHACSQWb
-$sSo14RLMSyncSessionC10RealmSwiftE12ProgressModeOAESQACWl
-$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOSHACSQWb
-$sSo14RLMSyncSessionC10RealmSwiftE17ProgressDirectionOAESQACWl
-$s10RealmSwift7ResultsCyAA16SyncSubscriptionCyAA6ObjectCGGMa
-$s10RealmSwift16SyncSubscriptionCyAA6ObjectCGACyxGAA0A15CollectionValueAAWl
-$s10RealmSwift16SyncSubscriptionCMa
-$s10RealmSwift14PermissionUserCMa
-$s10RealmSwift14PermissionRoleCMa
-$s10RealmSwift10PermissionCMa
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFSS_SSt_Tg5
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtFSS_SSt_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtFSS_SSt_Tg5
-$ss18_DictionaryStorageCyS2SGMa
-$sSa9_getCountSiyFSS_SSt_Tg5
-$sSo19RLMSyncSubscriptionC10Foundation24NSKeyValueObservedChangeVySo0aB5StateVGIeggn_AbHIegnn_TRTA
-$sSo19RLMSyncSubscriptionC10Foundation24NSKeyValueObservedChangeVySo0aB5StateVGIeggn_AbHIegnn_TR
-$s10RealmSwift16SyncSubscriptionC7observe_7options_So20RLMNotificationTokenCs7KeyPathCyACyxGAA0cD5StateOG_So26NSKeyValueObservingOptionsVyALctFySo07RLMSyncD0C_10Foundation0lM14ObservedChangeVySo0pdK0VGtcfU_TA
-$s10RealmSwift16SyncSubscriptionC7observe_7options_So20RLMNotificationTokenCs7KeyPathCyACyxGAA0cD5StateOG_So26NSKeyValueObservingOptionsVyALctFySo07RLMSyncD0C_10Foundation0lM14ObservedChangeVySo0pdK0VGtcfU_
-keypath_get
-$sSo19RLMSyncSubscriptionC5stateSo0aB5StateVvpABTK
-keypath_get_selector_state
-$s10Foundation4DateVSgWOb
-$s10RealmSwift16ObjectPrivilegesV14setPermissionsACvG
-$s10RealmSwift16ObjectPrivilegesV6deleteACvG
-$s10RealmSwift16ObjectPrivilegesV6updateACvG
-$s10RealmSwift16ObjectPrivilegesV4readACvG
-$s10RealmSwift15ClassPrivilegesV14setPermissionsACvG
-$s10RealmSwift15ClassPrivilegesV9subscribeACvG
-$s10RealmSwift15ClassPrivilegesV6updateACvG
-$s10RealmSwift15ClassPrivilegesV6createACvG
-$s10RealmSwift15ClassPrivilegesV4readACvG
-$s10RealmSwift0A10PrivilegesV12modifySchemaACvG
-$s10RealmSwift0A10PrivilegesV14setPermissionsACvG
-$s10RealmSwift0A10PrivilegesV6updateACvG
-$s10RealmSwift0A10PrivilegesV4readACvG
-$s10RealmSwift0A0C9subscribe2to5where10completionyxm_SSyAA7ResultsCyxGSg_s5Error_pSgtctAA6ObjectCRbzlFySo10RLMResultsCyyXlGSg_AMtcfU_TA
-objectdestroy.51
-$sSo14RLMSyncSessionC10RealmSwiftE23addProgressNotification3for4mode5blockSo011RLMProgressG5TokenCSgAbCE0F9DirectionO_AbCE0F4ModeOyAbCE0F0VctFySu_SutcfU_TA
-$sSo14RLMSyncSessionC10RealmSwiftE23addProgressNotification3for4mode5blockSo011RLMProgressG5TokenCSgAbCE0F9DirectionO_AbCE0F4ModeOyAbCE0F0VctFySu_SutcfU_
-$s10Foundation4DateVSgWOc
-$sSo11RLMSyncUserC10RealmSwiftE014createOfferForC02at11accessLevel10expiration8callbacky10Foundation3URLV_So0a6AccessJ0VAI4DateVSgySSSg_SC0A15PermissionErrorLeVSgtctFyAQ_s0R0_pSgtcfU_TA
-$sSo11RLMSyncUserC10RealmSwiftE19retrievePermissions8callbackyyAC7ResultsCySo0A10PermissionCGSg_SC0aI5ErrorLeVSgtc_tFySo10RLMResultsCyAIGSg_s0J0_pSgtcfU_TA
-objectdestroy.11
-$sSo11RLMSyncUserC10RealmSwiftE12errorHandleryAB_SC0A9AuthErrorLeVtcSgvsyAB_s0H0_ptcfU_TA
-$sSo11RLMSyncUserCs5Error_pIeggg_ABSC0a4AuthC0LeVIeggg_TRTA
-$sSo11RLMSyncUserCs5Error_pIeggg_ABSC0a4AuthC0LeVIeggg_TR
-$sSo11RLMSyncUserCSo7NSErrorCIeyByy_ABs5Error_pIeggg_TRTA
-$sSo11RLMSyncUserCSo7NSErrorCIeyByy_ABs5Error_pIeggg_TR
-$s10RealmSwift17SyncConfigurationVMa
-$s10RealmSwift17SyncConfigurationVWOc
-$s10RealmSwift22ServerValidationPolicyOWOb
-$s10RealmSwift22ServerValidationPolicyOWOc
-$ss17_NativeDictionaryV6resize8capacityySi_tFs11AnyHashableV_ypTg5
-$ss17_NativeDictionaryV16_unsafeInsertNew3key5valueyxn_q_ntFs11AnyHashableV_ypTg5
-$ss17_NativeDictionaryV13copyAndResize8capacityySi_tFs11AnyHashableV_ypTg5
-$ss17_NativeDictionaryV4copyyyFs11AnyHashableV_ypTg5
-$ss17_NativeDictionaryV8setValue_6forKey8isUniqueyq_n_xSbtFs11AnyHashableV_ypTg5
-$ss17_NativeDictionaryV7_insert2at3key5valueys10_HashTableV6BucketV_xnq_ntFs11AnyHashableV_ypTg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift16ObjectPrivilegesV_SStG_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift15ClassPrivilegesV_SStG_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEy10RealmSwift0K10PrivilegesV_SStG_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEySSG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHy10RealmSwift0Q10PrivilegesV_SStG_Tg5
-$ss8_PointerPsE8distance2toSix_tFSpy10RealmSwift0D10PrivilegesV_SStG_Tg5
-$ss23_ContiguousArrayStorageCy10RealmSwift0D10PrivilegesV_SStGMa
-$s10RealmSwift0A10PrivilegesV_SStMa
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP8capacitySivgTW10RealmSwift0F10PrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferV8capacitySivg10RealmSwift0E10PrivilegesV_SSt_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHySSG_Tg5
-$ss8_PointerPsE8distance2toSix_tFSpySSG_Tg5
-$ss23_ContiguousArrayStorageCySSGMa
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP8capacitySivgTWSS_Tg5
-$ss22_ContiguousArrayBufferV8capacitySivgSS_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEy10RealmSwift0K10PrivilegesV_SStG_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP13_copyContents8subRange12initializingSpy7ElementQzGSnySiG_AKtFTW10RealmSwift0K10PrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtF10RealmSwift0I10PrivilegesV_SSt_Tg5
-$sSp12deinitialize5countSvSi_tF10RealmSwift0C10PrivilegesV_SSt_Tg5
-$sSp14moveInitialize4from5countySpyxG_SitF10RealmSwift0E10PrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP19firstElementAddressSpy0F0QzGvgTW10RealmSwift0H10PrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferV19firstElementAddressSpyxGvg10RealmSwift0G10PrivilegesV_SSt_Tg5
-$sSp10initialize4from5countySPyxG_SitF10RealmSwift0D10PrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl8endIndex0E0QzvgTW10RealmSwift0F10PrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferV8endIndexSivg10RealmSwift0F10PrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP027requestUniqueMutableBackingC015minimumCapacityABy7ElementQzGSgSi_tFTW10RealmSwift0L10PrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferV027requestUniqueMutableBackingC015minimumCapacityAByxGSgSi_tF10RealmSwift0J10PrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl5countSivgTW10RealmSwift0E10PrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferV5countSivg10RealmSwift0E10PrivilegesV_SSt_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEySSG_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP13_copyContents8subRange12initializingSpy7ElementQzGSnySiG_AKtFTWSS_Tg5
-$ss22_ContiguousArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFSS_Tg5
-$sSp12deinitialize5countSvSi_tFSS_Tg5
-$sSp14moveInitialize4from5countySpyxG_SitFSS_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP19firstElementAddressSpy0F0QzGvgTWSS_Tg5
-$ss22_ContiguousArrayBufferV19firstElementAddressSpyxGvgSS_Tg5
-$sSp10initialize4from5countySPyxG_SitFSS_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl8endIndex0E0QzvgTWSS_Tg5
-$ss22_ContiguousArrayBufferV8endIndexSivgSS_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP027requestUniqueMutableBackingC015minimumCapacityABy7ElementQzGSgSi_tFTWSS_Tg5
-$ss22_ContiguousArrayBufferV027requestUniqueMutableBackingC015minimumCapacityAByxGSgSi_tFSS_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl5countSivgTWSS_Tg5
-$ss22_ContiguousArrayBufferV5countSivgSS_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift16ObjectPrivilegesV_SStG_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift15ClassPrivilegesV_SStG_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEy10RealmSwift0K10PrivilegesV_SStG_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEySSG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift16ObjectPrivilegesV_SStG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift15ClassPrivilegesV_SStG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGy10RealmSwift0O10PrivilegesV_SStG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGySSG_Tg5
-$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tFSS_Tg5
-$ss15ContiguousArrayV15reserveCapacityyySiFSS_Tg5
-$ss15ContiguousArrayV9_getCountSiyFSS_Tg5
-findOrCreate
-$sSaySSGMa
-$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_Tg5
-subscription
-$sSo19RLMSyncSubscriptionC10RealmSwift04SyncB0CyAC6ObjectCGs5Error_pIggozo_AbHsAI_pIegnrzo_TR
-$sSo19RLMSyncSubscriptionC10RealmSwift04SyncB0CyxGIegxo_AbFIeggo_AC0C15CollectionValueRzlTRAC6ObjectC_Tg5
-subscriptions
-permissions.get
-$s10RealmSwift0A10PermissionCMa
-permissions
-$s10RealmSwift15ClassPermissionCMa
-getPrivileges
-debugDescription.get
-setPermissions.get
-delete.get
-update.get
-read.get
-$s10RealmSwift16ObjectPrivilegesV14setPermissionsACvau
-$s10RealmSwift16ObjectPrivilegesV6deleteACvau
-$s10RealmSwift16ObjectPrivilegesV6updateACvau
-$s10RealmSwift16ObjectPrivilegesV4readACvau
-$ss23_ContiguousArrayStorageCfD10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$sSp12deinitialize5countSvSi_tF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$s10RealmSwift16ObjectPrivilegesV_SStMa
-$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZ10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$ss23_ContiguousArrayStorageCy10RealmSwift16ObjectPrivilegesV_SStGMa
-subscribe.get
-create.get
-$s10RealmSwift15ClassPrivilegesV14setPermissionsACvau
-$s10RealmSwift15ClassPrivilegesV9subscribeACvau
-$s10RealmSwift15ClassPrivilegesV6updateACvau
-$s10RealmSwift15ClassPrivilegesV6createACvau
-$s10RealmSwift15ClassPrivilegesV4readACvau
-$ss23_ContiguousArrayStorageCfD10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$sSp12deinitialize5countSvSi_tF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$s10RealmSwift15ClassPrivilegesV_SStMa
-$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZ10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$ss23_ContiguousArrayStorageCy10RealmSwift15ClassPrivilegesV_SStGMa
-$ss5UInt8VSQsSQ2eeoiySbx_xtFZTW
-subtract
-$ss5UInt8VSzsSz1aoiyxx_xtFZTW
-isSuperset
-isSubset
-isDisjoint
-subtracting
-formSymmetricDifference
-$ss5UInt8VSzsSz1xoiyxx_xtFZTW
-update
-symmetricDifference
-union
-modifySchema.get
-$s10RealmSwift0A10PrivilegesV12modifySchemaACvau
-$s10RealmSwift0A10PrivilegesV14setPermissionsACvau
-$s10RealmSwift0A10PrivilegesV6updateACvau
-$s10RealmSwift0A10PrivilegesV4readACvau
-$ss23_ContiguousArrayStorageCfD10RealmSwift0D10PrivilegesV_SSt_Tg5
-$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZ10RealmSwift0F10PrivilegesV_SSt_Tg5
-optionSetDescription
-$sSayxGSlsSly7ElementQz5IndexQzcirTW10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$sSayxSicir10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$s10RealmSwift16ObjectPrivilegesVmMa
-$sSaySSGSayxGSKsWl
-$ss15ContiguousArrayV6appendyyxnFSS_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntFSS_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFSS_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyFSS_Tg5
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSay10RealmSwift16ObjectPrivilegesV_SStG_Tg5
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTW10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$sSa9formIndex5afterySiz_tF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV6appendyyxnF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV9_getCountSiyF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferV5countSivg10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$s7ElementQzSSSbs5Error_pIgngdzo_AB_SStSbsAC_pIegndzo_s9OptionSetRzlTR10RealmSwift16ObjectPrivilegesV_TG5
-$s7ElementQzSSSbs5Error_pIgngdzo_AB_SStSbsAC_pIegndzo_s9OptionSetRzlTR10RealmSwift16ObjectPrivilegesV_Tg5
-$s10RealmSwift20optionSetDescription33_10449364F3E92C848B95A7C2FA1C0621LLySSx_Say7ElementQz_SStGts06OptionD0RzlFSbAE_SStXEfU_AA16ObjectPrivilegesV_TG5
-$s10RealmSwift20optionSetDescription33_10449364F3E92C848B95A7C2FA1C0621LLySSx_Say7ElementQz_SStGts06OptionD0RzlFSbAE_SStXEfU_AA16ObjectPrivilegesV_Tg5
-$sSayxGSlsSl5countSivgTW10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$sSa9_getCountSiyF10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$sSayxGSlsSl8endIndex0B0QzvgTW10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$sSa8endIndexSivg10RealmSwift16ObjectPrivilegesV_SSt_Tg5
-$sSayxGSlsSly7ElementQz5IndexQzcirTW10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$sSayxSicir10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$s10RealmSwift15ClassPrivilegesVmMa
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSay10RealmSwift15ClassPrivilegesV_SStG_Tg5
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTW10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$sSa9formIndex5afterySiz_tF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV6appendyyxnF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV9_getCountSiyF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$ss22_ContiguousArrayBufferV5countSivg10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$s7ElementQzSSSbs5Error_pIgngdzo_AB_SStSbsAC_pIegndzo_s9OptionSetRzlTR10RealmSwift15ClassPrivilegesV_TG5
-$s7ElementQzSSSbs5Error_pIgngdzo_AB_SStSbsAC_pIegndzo_s9OptionSetRzlTR10RealmSwift15ClassPrivilegesV_Tg5
-$s10RealmSwift20optionSetDescription33_10449364F3E92C848B95A7C2FA1C0621LLySSx_Say7ElementQz_SStGts06OptionD0RzlFSbAE_SStXEfU_AA15ClassPrivilegesV_TG5
-$s10RealmSwift20optionSetDescription33_10449364F3E92C848B95A7C2FA1C0621LLySSx_Say7ElementQz_SStGts06OptionD0RzlFSbAE_SStXEfU_AA15ClassPrivilegesV_Tg5
-$sSayxGSlsSl5countSivgTW10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$sSa9_getCountSiyF10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$sSayxGSlsSl8endIndex0B0QzvgTW10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$sSa8endIndexSivg10RealmSwift15ClassPrivilegesV_SSt_Tg5
-$sSayxGSlsSly7ElementQz5IndexQzcirTW10RealmSwift0C10PrivilegesV_SSt_Tg5
-$sSayxSicir10RealmSwift0A10PrivilegesV_SSt_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtF10RealmSwift0L10PrivilegesV_SSt_Tg5
-$s10RealmSwift0A10PrivilegesVmMa
-$sSa15_checkSubscript_20wasNativeTypeCheckeds16_DependenceTokenVSi_SbtF10RealmSwift0I10PrivilegesV_SSt_Tg5
-$ss12_ArrayBufferV37_checkInoutAndNativeTypeCheckedBounds_03wasfgH0ySi_SbtF10RealmSwift0K10PrivilegesV_SSt_Tg5
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSay10RealmSwift0E10PrivilegesV_SStG_Tg5
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTW10RealmSwift0D10PrivilegesV_SSt_Tg5
-$sSa9formIndex5afterySiz_tF10RealmSwift0D10PrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV6appendyyxnF10RealmSwift0D10PrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntF10RealmSwift0J10PrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tF10RealmSwift0J10PrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV9_getCountSiyF10RealmSwift0E10PrivilegesV_SSt_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyF10RealmSwift0J10PrivilegesV_SSt_Tg5
-$s7ElementQzSSSbs5Error_pIgngdzo_AB_SStSbsAC_pIegndzo_s9OptionSetRzlTR10RealmSwift0E10PrivilegesV_TG5
-$s7ElementQzSSSbs5Error_pIgngdzo_AB_SStSbsAC_pIegndzo_s9OptionSetRzlTR10RealmSwift0E10PrivilegesV_Tg5
-$s10RealmSwift20optionSetDescription33_10449364F3E92C848B95A7C2FA1C0621LLySSx_Say7ElementQz_SStGts06OptionD0RzlFSbAE_SStXEfU_AA0A10PrivilegesV_TG5
-$s10RealmSwift20optionSetDescription33_10449364F3E92C848B95A7C2FA1C0621LLySSx_Say7ElementQz_SStGts06OptionD0RzlFSbAE_SStXEfU_AA0A10PrivilegesV_Tg5
-$sSayxGSlsSl5countSivgTW10RealmSwift0B10PrivilegesV_SSt_Tg5
-$sSa9_getCountSiyF10RealmSwift0C10PrivilegesV_SSt_Tg5
-$sSayxGSlsSl8endIndex0B0QzvgTW10RealmSwift0C10PrivilegesV_SSt_Tg5
-$sSa8endIndexSivg10RealmSwift0C10PrivilegesV_SSt_Tg5
-_realmObjectName
-name.set
-$s10RealmSwift14PermissionRoleC4nameSSvsTo
-$s10RealmSwift14PermissionRoleC4nameSSvgTo
-$s10RealmSwift0A10PermissionC2id33_10449364F3E92C848B95A7C2FA1C0621LLSivsTo
-id.set
-$s10RealmSwift0A10PermissionC2id33_10449364F3E92C848B95A7C2FA1C0621LLSivgTo
-id.get
-_realmColumnNames
-$ss23_ContiguousArrayStorageCfDSS_SSt_Tg5
-$sSp12deinitialize5countSvSi_tFSS_SSt_Tg5
-$sSS_SStMa
-$sSa13_adoptStorage_5countSayxG_SpyxGts016_ContiguousArrayB0CyxGn_SitFZSS_SSt_Tg5
-$ss23_ContiguousArrayStorageCySS_SStGMa
-roles.get
-role.set
-$s10RealmSwift10PermissionC4roleAA0C4RoleCSgvsTo
-role.get
-$s10RealmSwift10PermissionC4roleAA0C4RoleCSgvgTo
-users.get
-canRead.set
-$s10RealmSwift10PermissionC7canReadSbvsTo
-canRead.get
-$s10RealmSwift10PermissionC7canReadSbvgTo
-observation.set
-subscribe
-unsubscribe
-timeToLive.get
-isNaN.get
-createdAt.get
-state.get
-$ss23_ContiguousArrayStorageCfD10RealmSwift14SortDescriptorV_Tg5
-$sSp12deinitialize5countSvSi_tF10RealmSwift14SortDescriptorV_Tg5
-syncSession.get
-$s10RealmSwift0A0C9subscribe2to5where10completionyxm_SSyAA7ResultsCyxGSg_s5Error_pSgtctAA6ObjectCRbzlFySo10RLMResultsCyyXlGSg_AMtcfU_
-$sSo10RLMResultsCSgMa
-$sS2uIegyy_S2uIeyByy_TR
-addProgressNotification
-isTransferComplete.get
-fractionTransferred.get
-transferrableBytes.get
-transferredBytes.get
-combine
-__derived_enum_equals
-configuration
-$sSSSgs5Error_pSgIeggg_So8NSStringCSgSo7NSErrorCSgIeyByy_TR
-$sSo11RLMSyncUserC10RealmSwiftE014createOfferForC02at11accessLevel10expiration8callbacky10Foundation3URLV_So0a6AccessJ0VAI4DateVSgySSSg_SC0A15PermissionErrorLeVSgtctFyAQ_s0R0_pSgtcfU_
-$sSC22RLMSyncPermissionErrorLeVMa
-createOfferForRealm
-$sSo10RLMResultsCySo17RLMSyncPermissionCGSgs5Error_pSgIeggg_AFSo7NSErrorCSgIeyByy_TR
-$sSo11RLMSyncUserC10RealmSwiftE19retrievePermissions8callbackyyAC7ResultsCySo0A10PermissionCGSg_SC0aI5ErrorLeVSgtc_tFySo10RLMResultsCyAIGSg_s0J0_pSgtcfU_
-retrievePermissions
-errorHandler.modify
-errorHandler.set
-errorHandler.get
-$sSo11RLMSyncUserCs5Error_pIeggg_ABSo7NSErrorCIeyByy_TR
-$sSo11RLMSyncUserC10RealmSwiftE12errorHandleryAB_SC0A9AuthErrorLeVtcSgvsyAB_s0H0_ptcfU_
-current.get
-all.get
-$sSo11RLMSyncUserCMa
-logIn
-_dictionaryUpCast
-$sSD5countSivgSS_ypTg5
-anonymous
-nickname
-facebook
-accessToken
-usernamePassword
-automatic
-urlPrefix.get
-fullSynchronization.get
-isPartial.get
-enableSSLValidation.get
-serverValidationPolicy.get
-realmURL.get
-user.get
-deleteRealmUserInfo
-clientResetInfo
-shared.get
-asConfig
-_$syp15objectiveCValue_ypSg8metadatatWOh
-_$s10RealmSwift19ThreadSafeReferenceC7resolve2inxSgAA0A0C_tF
-_$s10RealmSwift19ThreadSafeReferenceCMi
-_$s10RealmSwift19ThreadSafeReferenceCMr
-_$sSo17RLMThreadConfined_pML
-l_OBJC_LABEL_PROTOCOL_$_RLMThreadConfined
-l_OBJC_PROTOCOL_REFERENCE_$_RLMThreadConfined
-_symbolic $s10RealmSwift14ThreadConfinedP
-_$s10RealmSwift14ThreadConfined_pMF
-_$s10RealmSwift19ThreadSafeReferenceC13swiftMetadata33_00002D26E3D65FC6988FEF1E874DC1D7LLypSgvpWvd
-_$s10RealmSwift19ThreadSafeReferenceC19objectiveCReference33_00002D26E3D65FC6988FEF1E874DC1D7LLSo09RLMThreaddE0CySo0P8Confined_pGvpWvd
-_$s10RealmSwift19ThreadSafeReferenceCMI
-_$s10RealmSwift19ThreadSafeReferenceCMP
-_symbolic _____ 10RealmSwift19ThreadSafeReferenceC
-_symbolic So22RLMThreadSafeReferenceCySo0A8Confined_pG
-_$s10RealmSwift19ThreadSafeReferenceCMF
-l_OBJC_LABEL_PROTOCOL_$_NSObject
-l_OBJC_PROTOCOL_REFERENCE_$_NSObject
-_$s10RealmSwift19ThreadSafeReferenceC7resolve2inxSgAA0A0C_tFTq
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/ThreadSafeReference.swift
-$s10RealmSwift19ThreadSafeReferenceCMr
-$s10RealmSwift19ThreadSafeReferenceCMi
-resolve
-ThreadSafeReference.swift
-$syp15objectiveCValue_ypSg8metadatatWOh
-$sSo17RLMThreadConfined_pMa
-$s10RealmSwift19ThreadSafeReferenceCMa
-_$sSf10RealmSwift26CustomObjectiveCBridgeableA2aBP8bridging9objCValuexyp_tFZTW
-_$sSf10RealmSwift26CustomObjectiveCBridgeableA2aBP9objCValueypvgTW
-_$ss4Int8V10RealmSwift26CustomObjectiveCBridgeableA2cDP8bridging9objCValuexyp_tFZTW
-_$ss4Int8V10RealmSwift26CustomObjectiveCBridgeableA2cDP9objCValueypvgTW
-_$ss5Int16V10RealmSwift26CustomObjectiveCBridgeableA2cDP8bridging9objCValuexyp_tFZTW
-_$ss5Int16V10RealmSwift26CustomObjectiveCBridgeableA2cDP9objCValueypvgTW
-_$ss5Int32V10RealmSwift26CustomObjectiveCBridgeableA2cDP8bridging9objCValuexyp_tFZTW
-_$ss5Int32V10RealmSwift26CustomObjectiveCBridgeableA2cDP9objCValueypvgTW
-_$ss5Int64V10RealmSwift26CustomObjectiveCBridgeableA2cDP8bridging9objCValuexyp_tFZTW
-_$ss5Int64V10RealmSwift26CustomObjectiveCBridgeableA2cDP9objCValueypvgTW
-_$sSq10RealmSwiftE8bridging9objCValuexSgyp_tFZ
-_$sSq10RealmSwiftE9objCValueypvg
-_$sxSg10RealmSwift26CustomObjectiveCBridgeableA2bCP8bridging9objCValuexyp_tFZTW
-_$sxSg10RealmSwift26CustomObjectiveCBridgeableA2bCP9objCValueypvgTW
-_$sxSglWOh
-_$ss15ContiguousArrayV15reserveCapacityyySiFyp_Tg5
-_$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tFyp_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGyypG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEyypG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEyypG_Tg5
-_$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHyypG_Tg5
-_$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEyypG_Tg5
-_$sSo19NSRegularExpressionC7pattern7optionsABSS_So0aB7OptionsVtKcfCTf4xnn_n
-___swift_allocate_boxed_opaque_existential_0
-_$s10RealmSwift26CustomObjectiveCBridgeable_pWOb
-_$sSf10RealmSwift26CustomObjectiveCBridgeableAAMc
-_$sSf10RealmSwift26CustomObjectiveCBridgeableAAWP
-_$ss4Int8V10RealmSwift26CustomObjectiveCBridgeableACMc
-_$ss4Int8V10RealmSwift26CustomObjectiveCBridgeableACWP
-_$ss5Int16V10RealmSwift26CustomObjectiveCBridgeableACMc
-_$ss5Int16V10RealmSwift26CustomObjectiveCBridgeableACWP
-_$ss5Int32V10RealmSwift26CustomObjectiveCBridgeableACMc
-_$ss5Int32V10RealmSwift26CustomObjectiveCBridgeableACWP
-_$ss5Int64V10RealmSwift26CustomObjectiveCBridgeableACMc
-_$ss5Int64V10RealmSwift26CustomObjectiveCBridgeableACWP
-_$sxSg10RealmSwift26CustomObjectiveCBridgeableABMc
-_$sxSg10RealmSwift26CustomObjectiveCBridgeableABWP
-_symbolic $s10RealmSwift26CustomObjectiveCBridgeableP
-_$s10RealmSwift26CustomObjectiveCBridgeable_pMF
-_$s10RealmSwift26CustomObjectiveCBridgeableMp
-_symbolic $s10RealmSwift28AssistedObjectiveCBridgeableP
-_$s10RealmSwift28AssistedObjectiveCBridgeable_pMF
-_$ss23_ContiguousArrayStorageCyypGML
-_$sSo19NSRegularExpressionCML
-_$s10RealmSwift26CustomObjectiveCBridgeable_pML
-_$s10RealmSwift26CustomObjectiveCBridgeableTL
-_$s10RealmSwift28AssistedObjectiveCBridgeableTL
-/Users/realm/workspace/cocoa-pipeline/RealmSwift/Util.swift
-$s10RealmSwift26CustomObjectiveCBridgeable_pWOb
-__swift_allocate_boxed_opaque_existential_0
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSaySo17NSMatchingOptionsVG_Tg5
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTWSo17NSMatchingOptionsV_Tg5
-$sSa9formIndex5afterySiz_tFSo17NSMatchingOptionsV_Tg5
-$sSayxGSlsSly7ElementQz5IndexQzcirTWSo17NSMatchingOptionsV_Tg5
-$sSayxSicirSo17NSMatchingOptionsV_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFSo17NSMatchingOptionsV_Tg5
-$sSayxGSlsSl8endIndex0B0QzvgTWSo17NSMatchingOptionsV_Tg5
-$sSa8endIndexSivgSo17NSMatchingOptionsV_Tg5
-$sSa9_getCountSiyFSo17NSMatchingOptionsV_Tg5
-$ss16IndexingIteratorVyxGStsSt4next7ElementQzSgyFTWSaySo26NSRegularExpressionOptionsVG_Tg5
-$sSayxGSlsSl9formIndex5aftery0B0Qzz_tFTWSo26NSRegularExpressionOptionsV_Tg5
-$sSa9formIndex5afterySiz_tFSo26NSRegularExpressionOptionsV_Tg5
-$sSayxGSlsSly7ElementQz5IndexQzcirTWSo26NSRegularExpressionOptionsV_Tg5
-$sSayxSicirSo26NSRegularExpressionOptionsV_Tg5
-$sSa11_getElement_20wasNativeTypeChecked22matchingSubscriptCheckxSi_Sbs16_DependenceTokenVtFSo26NSRegularExpressionOptionsV_Tg5
-$sSayxGSlsSl8endIndex0B0QzvgTWSo26NSRegularExpressionOptionsV_Tg5
-$sSa8endIndexSivgSo26NSRegularExpressionOptionsV_Tg5
-$sSa9_getCountSiyFSo26NSRegularExpressionOptionsV_Tg5
-$sSo19NSRegularExpressionCMa
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_yAI_SitcfU_AEyypG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB4Impl08countForB014minNewCapacity08requiredM0s011_ContiguousaB0Vy7ElementQzGSi_S2itFAHyypG_Tg5
-$ss8_PointerPsE8distance2toSix_tFSpyypG_Tg5
-$ss23_ContiguousArrayStorageCyypGMa
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP8capacitySivgTWyp_Tg5
-$ss22_ContiguousArrayBufferV8capacitySivgyp_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFAEyypG_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP13_copyContents8subRange12initializingSpy7ElementQzGSnySiG_AKtFTWyp_Tg5
-$ss22_ContiguousArrayBufferV13_copyContents8subRange12initializingSpyxGSnySiG_AFtFyp_Tg5
-$sSp12deinitialize5countSvSi_tFyp_Tg5
-$sSp14moveInitialize4from5countySpyxG_SitFyp_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP19firstElementAddressSpy0F0QzGvgTWyp_Tg5
-$ss22_ContiguousArrayBufferV19firstElementAddressSpyxGvgyp_Tg5
-$sSp10initialize4from5countySPyxG_SitFyp_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl8endIndex0E0QzvgTWyp_Tg5
-$ss22_ContiguousArrayBufferV8endIndexSivgyp_Tg5
-$ss22_ContiguousArrayBufferVyxGs01_bC8ProtocolssADP027requestUniqueMutableBackingC015minimumCapacityABy7ElementQzGSgSi_tFTWyp_Tg5
-$ss22_ContiguousArrayBufferV027requestUniqueMutableBackingC015minimumCapacityAByxGSgSi_tFyp_Tg5
-$ss22_ContiguousArrayBufferVyxGSlsSl5countSivgTWyp_Tg5
-$ss22_ContiguousArrayBufferV5countSivgyp_Tg5
-$ss20_ArrayBufferProtocolPsE22_arrayOutOfPlaceUpdateyys011_ContiguousaB0Vy7ElementQzGz_S2iySpyAGG_SitXEtFfA2_AEyypG_Tg5
-$ss20_ArrayBufferProtocolPsE025_forceCreateUniqueMutableB0011countForNewB003minJ8Capacitys011_ContiguousaB0Vy7ElementQzGSi_SitFAGyypG_Tg5
-$ss15ContiguousArrayV16_copyToNewBuffer8oldCountySi_tFyp_Tg5
-$ss15ContiguousArrayV15reserveCapacityyySiFyp_Tg5
-$ss15ContiguousArrayV9_getCountSiyFyp_Tg5
-$sxSglWOh
-$sxSglWOc
-objCValue.get
-$s10RealmSwift26CustomObjectiveCBridgeable_pMa
-throwForNegativeIndex
-unwrapOptionals
-$sSayxGSlsSly7ElementQz5IndexQzcirTWyp_Tg5
-$sSayxSiciryp_Tg5
-$ss15ContiguousArrayV6appendyyxnFyp_Tg5
-$ss15ContiguousArrayV37_appendElementAssumeUniqueAndCapacity_03newD0ySi_xntFyp_Tg5
-$ss15ContiguousArrayV36_reserveCapacityAssumingUniqueBuffer8oldCountySi_tFyp_Tg5
-$ss15ContiguousArrayV034_makeUniqueAndReserveCapacityIfNotD0yyFyp_Tg5
-$s10RealmSwift15unwrapOptionals2inSayypGAD_tFypypXEfU_
-$sSayxGSlsSl5countSivgTWyp_Tg5
-__ZL15__ARCLite__loadv
-__ZL58__arclite_NSMutableDictionary__setObject_forKeyedSubscriptP19NSMutableDictionaryP13objc_selectorP11objc_objectS4_
-__ZL22add_image_hook_swiftV1PK11mach_headerl
-__ZL42__arclite_NSUndoManagerProxy_isKindOfClassP11objc_objectP13objc_selectorP10objc_class
-__ZL30__arclite_NSManagedObject_initP11objc_objectP13objc_selector
-__ZL41__arclite_NSManagedObject_allocWithEntityP11objc_objectP13objc_selectorS0_
-__ZL36__arclite_NSManagedObject_allocBatchP11objc_objectP13objc_selectorPS0_S0_j
-__ZL37__arclite_NSKKMS_fastIndexForKnownKeyP11objc_objectP13objc_selectorS0_
-__ZL28__arclite_NSKKMS_indexForKeyP11objc_objectP13objc_selectorS0_
-__ZL29__arclite_NSKKsD_objectForKeyP11objc_objectP13objc_selectorS0_
-__ZL35__arclite_NSKKsD_removeObjectForKeyP11objc_objectP13objc_selectorS0_
-__ZL33__arclite_NSKKsD_setObject_forKeyP11objc_objectP13objc_selectorS0_S0_
-__ZL41__arclite_NSKKsD_addEntriesFromDictionaryP11objc_objectP13objc_selectorP12NSDictionary
-__ZL28__arclite_objc_readClassPairP10objc_classPK15objc_image_info
-__ZL32__arclite_objc_allocateClassPairP10objc_classPKcm
-__ZL32__arclite_object_getIndexedIvarsP11objc_object
-__ZL23__arclite_objc_getClassPKc
-__ZL27__arclite_objc_getMetaClassPKc
-__ZL31__arclite_objc_getRequiredClassPKc
-__ZL26__arclite_objc_lookUpClassPKc
-__ZL26__arclite_objc_getProtocolPKc
-__ZL23__arclite_class_getNameP10objc_class
-__ZL26__arclite_protocol_getNameP8Protocol
-__ZL37__arclite_objc_copyClassNamesForImagePKcPj
-__ZL17transcribeMethodsP10objc_classP15glue_class_ro_t
-__ZL19transcribeProtocolsP10objc_classP15glue_class_ro_t
-__ZL20transcribePropertiesP10objc_classP15glue_class_ro_t
-__ZL14initialize_impP11objc_objectP13objc_selector
-__ZL18allocateMaybeSwiftP18glue_swift_class_tm
-__ZL22copySwiftV1MangledNamePKcb
-__ZL13demangledNamePKcb
-__ZL16scanMangledFieldRPKcS0_S1_Ri
-__ZL30arclite_uninitialized_functionv
-__ZL12cxxConstructP11objc_object
-__ZL20fixStringForCoreDataP11objc_object
-_OBJC_METACLASS_$___ARCLite__
-__ZL24OBJC_CLASS_$___ARCLite__
-__ZL31OBJC_METACLASS_RO_$___ARCLite__
-__non_lazy_classes
-__ZL27OBJC_CLASS_RO_$___ARCLite__
-__ZL11_class_name
-__ZL32OBJC_$_CLASS_METHODS___ARCLite__
-__ZL17_load_method_name
-__ZL17_load_method_type
-l_OBJC_PROTOCOL_$___ARCLiteKeyedSubscripting__
-l_OBJC_LABEL_PROTOCOL_$___ARCLiteKeyedSubscripting__
-l_OBJC_PROTOCOL_REFERENCE_$___ARCLiteKeyedSubscripting__
-__ZL30NSUndoManagerProxy_targetClass
-__ZL29original_NSManagedObject_init
-__ZL40original_NSManagedObject_allocWithEntity
-__ZL35original_NSManagedObject_allocBatch
-__ZL25NSMutableDictionary_class
-__ZL22NSConstantString_class
-__ZL14NSString_class
-__ZL36original_NSKKMS_fastIndexForKnownKey
-__ZL27original_NSKKMS_indexForKey
-__ZL28original_NSKKsD_objectForKey
-__ZL34original_NSKKsD_removeObjectForKey
-__ZL32original_NSKKsD_setObject_forKey
-__ZL40original_NSKKsD_addEntriesFromDictionary
-__ZZL22add_image_hook_swiftV1PK11mach_headerlE7patches
-__ZGVZL22add_image_hook_swiftV1PK11mach_headerlE7patches
-__ZL31original_objc_allocateClassPair
-__ZL31original_object_getIndexedIvars
-__ZL22original_objc_getClass
-__ZL26original_objc_getMetaClass
-__ZL30original_objc_getRequiredClass
-__ZL25original_objc_lookUpClass
-__ZL25original_objc_getProtocol
-__ZL22original_class_getName
-__ZL25original_protocol_getName
-__ZL36original_objc_copyClassNamesForImage
-__ZL12demangleLock
-__ZL9Demangled
-Apple LLVM version 10.0.1 (clang-1001.0.46.4)
-/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c++ -arch arm64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++11 -Wno-trigraphs -fno-exceptions -fno-rtti -fno-sanitize=vptr -mpascal-strings -Os -Wno-missing-field-initializers -Wmissing-prototypes -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-c++11-extensions -D NDEBUG=1 -D OBJC_OLD_DISPATCH_PROTOTYPES=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.Internal.sdk -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Winvalid-offsetof -miphoneos-version-min=4.3 -g -fno-threadsafe-statics -Wno-sign-conversion -Wno-infinite-recursion -Wno-move -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-range-loop-analysis -Wno-semicolon-before-method-body -fembed-bitcode=all -iquote /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-generated-files.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-own-target-headers.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-all-target-headers.hmap -iquote /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/arclite_iphoneos-project-headers.hmap -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/Symbols/BuiltProducts/include -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources-normal/arm64 -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources/arm64 -I /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/DerivedSources -F/Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/Symbols/BuiltProducts -iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.Internal.sdk/System/Library/PrivateFrameworks -Wall -Wextra -Wno-gcc-compat -Wno-error=incomplete-umbrella -Wno-error=invalid-ios-deployment-target -Wno-error=deprecated-declarations -Wno-error=documentation -Wno-error=incomplete-umbrella -Wno-error=invalid-ios-deployment-target -Wno-error=deprecated-declarations -Wno-error=documentation -MMD -MT dependencies -MF /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.d --serialize-diagnostics /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.dia -c /Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-72/source/arclite.mm -o /Library/Caches/com.apple.xbs/Binaries/arclite_iOS/install/TempContent/Objects/arclite.build/arclite_iOS.build/Objects-normal/arm64/arclite.o -Wno-atomic-implicit-seq-cst -Wno-framework-include-private-from-public -Wno-atimport-in-framework-header -Wno-quoted-include-in-framework-header -mlinker-version=450.3
-/Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-72/source/arclite.mm
-/Library/Caches/com.apple.xbs/Sources/arclite_iOS/arclite-72
-fixStringForCoreData
-cxxConstruct
-arclite_uninitialized_function
-scanMangledField
-/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.Internal.sdk/usr/include/_ctype.h
-__isctype
-demangledName
-copySwiftV1DemangledName
-copySwiftV1MangledName
-allocateMaybeSwift
-word_align
-isSwift
-initialize_imp
-transcribeProperties
-property_list_nth
-transcribeProtocols
-transcribeMethods
-data
-method_list_nth
-__arclite_objc_copyClassNamesForImage
-__arclite_protocol_getName
-__arclite_class_getName
-__arclite_objc_getProtocol
-__arclite_objc_lookUpClass
-__arclite_objc_getRequiredClass
-__arclite_objc_getMetaClass
-__arclite_objc_getClass
-__arclite_object_getIndexedIvars
-__arclite_objc_allocateClassPair
-metaclass
-__arclite_objc_readClassPair
-transcribeIvars
-ivar_list_nth
-alignment
-ro
-fastFlags
-__arclite_NSKKsD_addEntriesFromDictionary
-__arclite_NSKKsD_setObject_forKey
-__arclite_NSKKsD_removeObjectForKey
-__arclite_NSKKsD_objectForKey
-__arclite_NSKKMS_indexForKey
-__arclite_NSKKMS_fastIndexForKnownKey
-__arclite_NSManagedObject_allocBatch
-__arclite_NSManagedObject_allocWithEntity
-__arclite_NSManagedObject_init
-__arclite_NSUndoManagerProxy_isKindOfClass
-add_image_hook_swiftV1
-patch_lazy_pointers
-patch_t
-patch_t
-patch_t
-patch_t
-patch_t
-patch_t
-patch_t
-patch_t
-__arclite_NSMutableDictionary__setObject_forKeyedSubscript
-__ARCLite__load
-install_swiftV1
-replaceMethod
-install_dict_nil_value
-addOrReplaceMethod
-keyedGetter
diff --git a/Carthage/Build/iOS/466666DD-5DCC-3FAE-8A57-97A90485564F.bcsymbolmap b/Carthage/Build/iOS/466666DD-5DCC-3FAE-8A57-97A90485564F.bcsymbolmap
deleted file mode 100644
index 352f721..0000000
--- a/Carthage/Build/iOS/466666DD-5DCC-3FAE-8A57-97A90485564F.bcsymbolmap
+++ /dev/null
@@ -1,14488 +0,0 @@
-BCSymbolMap Version: 2.0
-Apple LLVM version 10.0.1 (clang-1001.0.46.4)
-Realm/ObjectStore/src/binding_callback_thread_observer.cpp
-/Users/realm/workspace/cocoa-pipeline
-__ZNK5realm19CollectionChangeSet5emptyEv
-__ZNSt3__16vectorIN12_GLOBAL__N_17RowInfoENS_9allocatorIS2_EEE7reserveEm
-__ZNSt3__16vectorIN12_GLOBAL__N_17RowInfoENS_9allocatorIS2_EEE9push_backEOS2_
-__ZNSt3__113__vector_baseIN5realm5_impl18ChunkedRangeVector5ChunkENS_9allocatorIS4_EEE5clearEv
-__ZNK5realm4util8OptionalINS_8IndexSetEE5valueEv
-__ZN5realm4util17BadOptionalAccessCI1NS0_22ExceptionWithBacktraceISt11logic_errorEEIJRA20_KcEEEDpOT_
-__ZN5realm4util17BadOptionalAccessD1Ev
-__ZN5realm4util17BadOptionalAccessD0Ev
-__ZNK5realm4util22ExceptionWithBacktraceISt11logic_errorE4whatEv
-__ZNK5realm4util22ExceptionWithBacktraceISt11logic_errorE7messageEv
-__ZThn8_NK5realm4util22ExceptionWithBacktraceISt11logic_errorE7messageEv
-__ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator3RowENS_9allocatorIS3_EEE7reserveEm
-__ZNSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator3RowENS_9allocatorIS3_EEE9push_backEOS3_
-__ZNSt3__114__split_bufferIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator3RowERNS_9allocatorIS3_EEEC1EmmS6_
-__ZNSt3__1L20__throw_length_errorEPKc
-__ZNSt12length_errorC1EPKc
-__ZNSt3__16__sortIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE4$_19PNS1_34LongestCommonSubsequenceCalculator3RowEEEvT0_SG_T_
-__ZNSt3__17__sort3IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE4$_19PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_T_
-__ZNSt3__17__sort4IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE4$_19PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_T_
-__ZNSt3__17__sort5IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE4$_19PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_SG_T_
-__ZNSt3__127__insertion_sort_incompleteIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE4$_19PNS1_34LongestCommonSubsequenceCalculator3RowEEEbT0_SG_T_
-__ZNSt3__16__sortIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE4$_20PNS1_34LongestCommonSubsequenceCalculator3RowEEEvT0_SG_T_
-__ZNSt3__17__sort3IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE4$_20PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_T_
-__ZNSt3__17__sort4IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE4$_20PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_T_
-__ZNSt3__17__sort5IRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE4$_20PNS1_34LongestCommonSubsequenceCalculator3RowEEEjT0_SG_SG_SG_SG_T_
-__ZNSt3__127__insertion_sort_incompleteIRZN12_GLOBAL__N_122calculate_moves_sortedERNS_6vectorINS1_7RowInfoENS_9allocatorIS3_EEEERN5realm19CollectionChangeSetEE4$_20PNS1_34LongestCommonSubsequenceCalculator3RowEEEbT0_SG_T_
-__ZN12_GLOBAL__N_134LongestCommonSubsequenceCalculator20find_longest_matchesEmmmm
-__ZNKSt3__16vectorIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator5MatchENS_9allocatorIS3_EEE11__recommendEm
-__ZNSt3__114__split_bufferIN12_GLOBAL__N_134LongestCommonSubsequenceCalculator5MatchERNS_9allocatorIS3_EEEC1EmmS6_
-__ZZN5realm5_impl23CollectionChangeBuilder5mergeEOS1_ENK3$_3clINS_19CollectionChangeSet4MoveEEEDaRT_
-__ZNKSt3__16vectorIN5realm8IndexSetENS_9allocatorIS2_EEE11__recommendEm
-__ZNSt3__116allocator_traitsINS_9allocatorIN5realm8IndexSetEEEE20__construct_backwardIPS3_EEvRS4_T_S9_RS9_
-__ZNKSt3__16vectorIN5realm19CollectionChangeSet4MoveENS_9allocatorIS3_EEE11__recommendEm
-__ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_6PNS1_19CollectionChangeSet4MoveEEEvT0_S9_T_
-__ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_6PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_T_
-__ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_6PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_S9_T_
-__ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_6PNS1_19CollectionChangeSet4MoveEEEjT0_S9_S9_S9_S9_T_
-__ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder14parse_completeEvE3$_6PNS1_19CollectionChangeSet4MoveEEEbT0_S9_T_
-__ZNSt3__114__split_bufferIN12_GLOBAL__N_17RowInfoERNS_9allocatorIS2_EEEC1EmmS5_
-__ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_15PN12_GLOBAL__N_17RowInfoEEEvT0_SO_T_
-__ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_15PN12_GLOBAL__N_17RowInfoEEEjT0_SO_SO_T_
-__ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_15PN12_GLOBAL__N_17RowInfoEEEjT0_SO_SO_SO_T_
-__ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_15PN12_GLOBAL__N_17RowInfoEEEjT0_SO_SO_SO_SO_T_
-__ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_15PN12_GLOBAL__N_17RowInfoEEEbT0_SO_T_
-__ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_16PN12_GLOBAL__N_17RowInfoEEEvT0_SO_T_
-__ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_16PN12_GLOBAL__N_17RowInfoEEEjT0_SO_SO_T_
-__ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_16PN12_GLOBAL__N_17RowInfoEEEjT0_SO_SO_SO_T_
-__ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_16PN12_GLOBAL__N_17RowInfoEEEjT0_SO_SO_SO_SO_T_
-__ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_16PN12_GLOBAL__N_17RowInfoEEEbT0_SO_T_
-__ZNSt3__16__sortIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_18PN12_GLOBAL__N_17RowInfoEEEvT0_SO_T_
-__ZNSt3__17__sort3IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_18PN12_GLOBAL__N_17RowInfoEEEjT0_SO_SO_T_
-__ZNSt3__17__sort4IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_18PN12_GLOBAL__N_17RowInfoEEEjT0_SO_SO_SO_T_
-__ZNSt3__17__sort5IRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_18PN12_GLOBAL__N_17RowInfoEEEjT0_SO_SO_SO_SO_T_
-__ZNSt3__127__insertion_sort_incompleteIRZN5realm5_impl23CollectionChangeBuilder9calculateERKNS_6vectorImNS_9allocatorImEEEES9_NS_8functionIFbmEEERKNS1_4util8OptionalINS1_8IndexSetEEEE4$_18PN12_GLOBAL__N_17RowInfoEEEbT0_SO_T_
-__ZNSt3__1L25__throw_bad_function_callEv
-__ZNSt3__117bad_function_callD1Ev
-__ZNSt3__117bad_function_callD0Ev
-/Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp
-~bad_function_call
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/functional
-__throw_bad_function_call
-bad_function_call
-__insertion_sort_incomplete<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:830:15) &, (anonymous namespace)::RowInfo *>
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/algorithm
-operator()<(anonymous namespace)::RowInfo, (anonymous namespace)::RowInfo>
-swap<(anonymous namespace)::RowInfo>
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/type_traits
-__sort5<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:830:15) &, (anonymous namespace)::RowInfo *>
-__sort4<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:830:15) &, (anonymous namespace)::RowInfo *>
-__sort3<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:830:15) &, (anonymous namespace)::RowInfo *>
-__sort<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:830:15) &, (anonymous namespace)::RowInfo *>
-__insertion_sort_3<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:830:15) &, (anonymous namespace)::RowInfo *>
-__insertion_sort_incomplete<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:787:47) &, (anonymous namespace)::RowInfo *>
-__sort5<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:787:47) &, (anonymous namespace)::RowInfo *>
-__sort4<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:787:47) &, (anonymous namespace)::RowInfo *>
-__sort3<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:787:47) &, (anonymous namespace)::RowInfo *>
-__sort<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:787:47) &, (anonymous namespace)::RowInfo *>
-__insertion_sort_3<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:787:47) &, (anonymous namespace)::RowInfo *>
-__insertion_sort_incomplete<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:778:47) &, (anonymous namespace)::RowInfo *>
-__sort5<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:778:47) &, (anonymous namespace)::RowInfo *>
-__sort4<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:778:47) &, (anonymous namespace)::RowInfo *>
-__sort3<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:778:47) &, (anonymous namespace)::RowInfo *>
-__sort<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:778:47) &, (anonymous namespace)::RowInfo *>
-__insertion_sort_3<(lambda at /Users/realm/workspace/cocoa-pipeline/Realm/ObjectStore/src/impl/collection_change_builder.cpp:778:47) &, (anonymous namespace)::RowInfo *>
-__split_buffer
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/__split_buffer
-allocate
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/memory
-__libcpp_allocate
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/new
-__compressed_pair &>
-__compressed_pair_elem &, void>
-__compressed_pair_elem
-__rotate_forward >
-operator++
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/iterator
-operator==
-swap
-~IndexSet
-Realm/ObjectStore/src/index_set.hpp
-~ChunkedRangeVector
-~vector
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/vector
-operator=
-__move_assign
-__end_cap
-first
-__get
-IndexSet
-ChunkedRangeVector
-vector
-operator*
-operator!=
-base
-__swap_out_circular_buffer
-swap
-__construct_forward
-construct
-__construct
-__vector_base
-__compressed_pair >
-push_back
-~__split_buffer
-__construct_at_end >
-operator!=
-__alloc
-second
-max
-max >
-operator()
-move
-__move
-__move_range
-move_backward
-__move_backward
-find
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/__hash_table
-__hash_iterator
-/Applications/Xcode-10.2.1.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/unordered_map
-__constrain_hash
-__hash
-operator[]
-bucket_count
-size
-__erase_unique