From 687857ee0200431a01064488ebcd85ff9c0c9458 Mon Sep 17 00:00:00 2001 From: Jeon Seoung Hun Date: Sun, 17 Dec 2023 21:37:57 +0900 Subject: [PATCH 01/18] =?UTF-8?q?[Update]:=20RxSwift=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AVIRO.xcodeproj/project.pbxproj | 231 +- .../xcshareddata/xcschemes/AVIRO.xcscheme | 15 +- AVIRO/App/AppController.swift | 2 +- .../ChangeableAddressPresenter.swift | 4 +- .../TabBar/MyPage/MyPageViewController.swift | 1 - AVIROTests/AVIROTests.swift | 23 + Podfile | 10 + Podfile.lock | 26 +- .../Public/RxBlocking/RxBlocking-umbrella.h | 1 + .../Public/RxBlocking/RxBlocking.modulemap | 1 + .../Public/RxSwift/RxSwift-library-umbrella.h | 1 + .../Public/RxSwift/RxSwift-library.modulemap | 1 + Pods/Headers/Public/RxTest/RxTest-umbrella.h | 1 + Pods/Headers/Public/RxTest/RxTest.modulemap | 1 + Pods/Manifest.lock | 26 +- Pods/Pods.xcodeproj/project.pbxproj | 6829 ++++++++++++----- .../contents.xcworkspacedata | 4 - .../xcschemes/Pods-AVIROTests.xcscheme | 58 + .../xcschemes/RxBlocking.xcscheme | 58 + .../xcschemes/RxCocoa.xcscheme | 58 + .../xcschemes/RxRelay.xcscheme | 58 + .../xcschemes/RxSwift-framework.xcscheme | 58 + .../xcschemes/RxSwift-library.xcscheme | 58 + .../xcschemes/RxTest.xcscheme | 58 + .../xcschemes/xcschememanagement.plist | 35 + Pods/RxBlocking/LICENSE.md | 9 + Pods/RxBlocking/Platform/AtomicInt.swift | 71 + .../Platform/DataStructures/Bag.swift | 181 + .../DataStructures/InfiniteSequence.swift | 23 + .../DataStructures/PriorityQueue.swift | 111 + .../Platform/DataStructures/Queue.swift | 148 + .../Platform/DispatchQueue+Extensions.swift | 21 + .../RxBlocking/Platform/Platform.Darwin.swift | 35 + Pods/RxBlocking/Platform/Platform.Linux.swift | 32 + Pods/RxBlocking/Platform/RecursiveLock.swift | 34 + Pods/RxBlocking/README.md | 254 + .../BlockingObservable+Operators.swift | 170 + .../RxBlocking/BlockingObservable.swift | 23 + .../ObservableConvertibleType+Blocking.swift | 20 + Pods/RxBlocking/RxBlocking/Resources.swift | 29 + Pods/RxBlocking/RxBlocking/RunLoopLock.swift | 87 + Pods/RxCocoa/LICENSE.md | 9 + .../RxCocoa/Platform/DataStructures/Bag.swift | 181 + .../DataStructures/InfiniteSequence.swift | 23 + .../DataStructures/PriorityQueue.swift | 111 + .../Platform/DataStructures/Queue.swift | 148 + .../Platform/DispatchQueue+Extensions.swift | 21 + Pods/RxCocoa/Platform/Platform.Darwin.swift | 35 + Pods/RxCocoa/Platform/Platform.Linux.swift | 32 + Pods/RxCocoa/Platform/RecursiveLock.swift | 34 + Pods/RxCocoa/README.md | 254 + .../RxCocoa/Common/ControlTarget.swift | 88 + .../RxCocoa/Common/DelegateProxy.swift | 294 + .../RxCocoa/Common/DelegateProxyType.swift | 435 ++ .../RxCocoa/Common/Infallible+Bind.swift | 148 + .../RxCocoa/Common/Observable+Bind.swift | 103 + .../RxCocoaObjCRuntimeError+Extensions.swift | 161 + Pods/RxCocoa/RxCocoa/Common/RxTarget.swift | 43 + .../Common/SectionedViewDataSourceType.swift | 20 + Pods/RxCocoa/RxCocoa/Common/TextInput.swift | 78 + .../KVORepresentable+CoreGraphics.swift | 68 + .../Foundation/KVORepresentable+Swift.swift | 88 + .../RxCocoa/Foundation/KVORepresentable.swift | 28 + .../NSObject+Rx+KVORepresentable.swift | 60 + .../NSObject+Rx+RawRepresentable.swift | 52 + .../RxCocoa/Foundation/NSObject+Rx.swift | 569 ++ .../Foundation/NotificationCenter+Rx.swift | 31 + .../RxCocoa/Foundation/URLSession+Rx.swift | 240 + Pods/RxCocoa/RxCocoa/Runtime/_RX.m | 10 + .../RxCocoa/Runtime/_RXDelegateProxy.m | 147 + Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m | 54 + Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m | 1062 +++ .../RxCocoa/Runtime/include/RxCocoaRuntime.h | 19 + Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h | 93 + .../Runtime/include/_RXDelegateProxy.h | 27 + .../RxCocoa/Runtime/include/_RXKVOObserver.h | 28 + .../RxCocoa/Runtime/include/_RXObjCRuntime.h | 102 + Pods/RxCocoa/RxCocoa/RxCocoa.h | 19 + Pods/RxCocoa/RxCocoa/RxCocoa.swift | 155 + .../RxCocoa/RxCocoa/Traits/ControlEvent.swift | 73 + .../RxCocoa/Traits/ControlProperty.swift | 118 + .../Traits/Driver/BehaviorRelay+Driver.swift | 21 + .../Traits/Driver/ControlEvent+Driver.swift | 24 + .../Driver/ControlProperty+Driver.swift | 24 + .../Traits/Driver/Driver+Subscription.swift | 203 + .../RxCocoa/Traits/Driver/Driver.swift | 53 + .../Traits/Driver/Infallible+Driver.swift | 18 + .../ObservableConvertibleType+Driver.swift | 57 + ...rvableConvertibleType+SharedSequence.swift | 57 + .../SchedulerType+SharedSequence.swift | 62 + .../SharedSequence+Concurrency.swift | 42 + .../SharedSequence+Operators+arity.swift | 656 ++ .../SharedSequence+Operators.swift | 584 ++ .../SharedSequence/SharedSequence.swift | 231 + .../Traits/Signal/ControlEvent+Signal.swift | 25 + .../ObservableConvertibleType+Signal.swift | 57 + .../Traits/Signal/PublishRelay+Signal.swift | 21 + .../Traits/Signal/Signal+Subscription.swift | 178 + .../RxCocoa/Traits/Signal/Signal.swift | 45 + ...ollectionViewReactiveArrayDataSource.swift | 108 + .../iOS/DataSources/RxPickerViewAdapter.swift | 92 + .../RxTableViewReactiveArrayDataSource.swift | 101 + .../RxCocoa/iOS/Events/ItemEvents.swift | 15 + .../RxCocoa/iOS/NSTextStorage+Rx.swift | 35 + .../RxCollectionViewDataSourceType.swift | 27 + .../RxPickerViewDataSourceType.swift | 26 + .../Protocols/RxTableViewDataSourceType.swift | 27 + ...ectionViewDataSourcePrefetchingProxy.swift | 92 + .../RxCollectionViewDataSourceProxy.swift | 75 + .../RxCollectionViewDelegateProxy.swift | 32 + .../iOS/Proxies/RxDelegateProxyCrashFix.swift | 31 + .../RxNavigationControllerDelegateProxy.swift | 39 + .../Proxies/RxPickerViewDataSourceProxy.swift | 72 + .../Proxies/RxPickerViewDelegateProxy.swift | 38 + .../Proxies/RxScrollViewDelegateProxy.swift | 91 + .../Proxies/RxSearchBarDelegateProxy.swift | 40 + .../RxSearchControllerDelegateProxy.swift | 40 + .../RxTabBarControllerDelegateProxy.swift | 40 + .../iOS/Proxies/RxTabBarDelegateProxy.swift | 50 + ...xTableViewDataSourcePrefetchingProxy.swift | 93 + .../Proxies/RxTableViewDataSourceProxy.swift | 73 + .../Proxies/RxTableViewDelegateProxy.swift | 31 + .../Proxies/RxTextStorageDelegateProxy.swift | 38 + .../iOS/Proxies/RxTextViewDelegateProxy.swift | 42 + .../Proxies/RxWKNavigationDelegateProxy.swift | 45 + .../iOS/UIActivityIndicatorView+Rx.swift | 27 + .../RxCocoa/iOS/UIApplication+Rx.swift | 106 + .../RxCocoa/iOS/UIBarButtonItem+Rx.swift | 72 + Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift | 82 + .../RxCocoa/iOS/UICollectionView+Rx.swift | 380 + Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift | 86 + .../RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift | 43 + .../RxCocoa/iOS/UIGestureRecognizer+Rx.swift | 75 + .../iOS/UINavigationController+Rx.swift | 49 + .../RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift | 224 + .../RxCocoa/iOS/UIRefreshControl+Rx.swift | 28 + .../RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift | 131 + Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift | 136 + .../RxCocoa/iOS/UISearchController+Rx.swift | 58 + .../RxCocoa/iOS/UISegmentedControl+Rx.swift | 54 + Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift | 29 + Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift | 29 + Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift | 38 + Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift | 92 + .../RxCocoa/iOS/UITabBarController+Rx.swift | 79 + Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift | 429 ++ Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift | 55 + Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift | 125 + Pods/RxCocoa/RxCocoa/iOS/WKWebView+Rx.swift | 57 + Pods/RxCocoa/RxCocoa/macOS/NSButton+Rx.swift | 33 + Pods/RxCocoa/RxCocoa/macOS/NSControl+Rx.swift | 87 + Pods/RxCocoa/RxCocoa/macOS/NSSlider+Rx.swift | 30 + .../RxCocoa/macOS/NSTextField+Rx.swift | 87 + .../RxCocoa/RxCocoa/macOS/NSTextView+Rx.swift | 94 + Pods/RxCocoa/RxCocoa/macOS/NSView+Rx.swift | 21 + Pods/RxRelay/LICENSE.md | 9 + Pods/RxRelay/README.md | 254 + Pods/RxRelay/RxRelay/BehaviorRelay.swift | 49 + Pods/RxRelay/RxRelay/Observable+Bind.swift | 149 + Pods/RxRelay/RxRelay/PublishRelay.swift | 43 + Pods/RxRelay/RxRelay/ReplayRelay.swift | 57 + Pods/RxRelay/RxRelay/Utils.swift | 17 + Pods/RxSwift/LICENSE.md | 9 + Pods/RxSwift/Platform/AtomicInt.swift | 71 + .../RxSwift/Platform/DataStructures/Bag.swift | 181 + .../DataStructures/InfiniteSequence.swift | 23 + .../DataStructures/PriorityQueue.swift | 111 + .../Platform/DataStructures/Queue.swift | 148 + .../Platform/DispatchQueue+Extensions.swift | 21 + Pods/RxSwift/Platform/Platform.Darwin.swift | 35 + Pods/RxSwift/Platform/Platform.Linux.swift | 32 + Pods/RxSwift/Platform/RecursiveLock.swift | 34 + Pods/RxSwift/README.md | 254 + Pods/RxSwift/RxSwift/AnyObserver.swift | 69 + Pods/RxSwift/RxSwift/Binder.swift | 59 + Pods/RxSwift/RxSwift/Cancelable.swift | 13 + .../RxSwift/Concurrency/AsyncLock.swift | 100 + Pods/RxSwift/RxSwift/Concurrency/Lock.swift | 23 + .../RxSwift/Concurrency/LockOwnerType.swift | 16 + .../Concurrency/SynchronizedDisposeType.swift | 18 + .../Concurrency/SynchronizedOnType.swift | 18 + .../SynchronizedUnsubscribeType.swift | 13 + .../RxSwift/ConnectableObservableType.swift | 19 + Pods/RxSwift/RxSwift/Date+Dispatch.swift | 64 + Pods/RxSwift/RxSwift/Disposable.swift | 13 + .../Disposables/AnonymousDisposable.swift | 59 + .../Disposables/BinaryDisposable.swift | 53 + .../Disposables/BooleanDisposable.swift | 34 + .../Disposables/CompositeDisposable.swift | 147 + .../RxSwift/Disposables/Disposables.swift | 13 + .../RxSwift/Disposables/DisposeBag.swift | 144 + .../RxSwift/Disposables/DisposeBase.swift | 22 + .../RxSwift/Disposables/NopDisposable.swift | 30 + .../Disposables/RefCountDisposable.swift | 112 + .../Disposables/ScheduledDisposable.swift | 50 + .../Disposables/SerialDisposable.swift | 73 + .../SingleAssignmentDisposable.swift | 72 + .../Disposables/SubscriptionDisposable.swift | 21 + Pods/RxSwift/RxSwift/Errors.swift | 52 + Pods/RxSwift/RxSwift/Event.swift | 104 + Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift | 50 + Pods/RxSwift/RxSwift/GroupedObservable.swift | 35 + .../RxSwift/ImmediateSchedulerType.swift | 36 + .../RxSwift/Observable+Concurrency.swift | 79 + Pods/RxSwift/RxSwift/Observable.swift | 31 + .../RxSwift/ObservableConvertibleType.swift | 18 + .../RxSwift/ObservableType+Extensions.swift | 174 + Pods/RxSwift/RxSwift/ObservableType.swift | 45 + Pods/RxSwift/RxSwift/Observables/AddRef.swift | 44 + Pods/RxSwift/RxSwift/Observables/Amb.swift | 157 + .../RxSwift/RxSwift/Observables/AsMaybe.swift | 48 + .../RxSwift/Observables/AsSingle.swift | 51 + Pods/RxSwift/RxSwift/Observables/Buffer.swift | 138 + Pods/RxSwift/RxSwift/Observables/Catch.swift | 275 + .../CombineLatest+Collection.swift | 165 + .../Observables/CombineLatest+arity.swift | 843 ++ .../RxSwift/Observables/CombineLatest.swift | 131 + .../RxSwift/Observables/CompactMap.swift | 76 + Pods/RxSwift/RxSwift/Observables/Concat.swift | 131 + Pods/RxSwift/RxSwift/Observables/Create.swift | 78 + .../RxSwift/Observables/Debounce.swift | 119 + Pods/RxSwift/RxSwift/Observables/Debug.swift | 102 + Pods/RxSwift/RxSwift/Observables/Decode.swift | 34 + .../RxSwift/Observables/DefaultIfEmpty.swift | 66 + .../RxSwift/Observables/Deferred.swift | 75 + Pods/RxSwift/RxSwift/Observables/Delay.swift | 174 + .../Observables/DelaySubscription.swift | 58 + .../RxSwift/Observables/Dematerialize.swift | 51 + .../Observables/DistinctUntilChanged.swift | 137 + Pods/RxSwift/RxSwift/Observables/Do.swift | 112 + .../RxSwift/Observables/ElementAt.swift | 105 + Pods/RxSwift/RxSwift/Observables/Empty.swift | 27 + .../RxSwift/Observables/Enumerated.swift | 61 + Pods/RxSwift/RxSwift/Observables/Error.swift | 33 + Pods/RxSwift/RxSwift/Observables/Filter.swift | 86 + Pods/RxSwift/RxSwift/Observables/First.swift | 41 + .../RxSwift/Observables/Generate.swift | 87 + .../RxSwift/RxSwift/Observables/GroupBy.swift | 133 + Pods/RxSwift/RxSwift/Observables/Just.swift | 87 + Pods/RxSwift/RxSwift/Observables/Map.swift | 76 + .../RxSwift/Observables/Materialize.swift | 44 + Pods/RxSwift/RxSwift/Observables/Merge.swift | 600 ++ .../RxSwift/Observables/Multicast.swift | 405 + Pods/RxSwift/RxSwift/Observables/Never.swift | 27 + .../RxSwift/Observables/ObserveOn.swift | 243 + .../RxSwift/Observables/Optional.swift | 95 + .../RxSwift/Observables/Producer.swift | 92 + Pods/RxSwift/RxSwift/Observables/Range.swift | 73 + Pods/RxSwift/RxSwift/Observables/Reduce.swift | 109 + Pods/RxSwift/RxSwift/Observables/Repeat.swift | 57 + .../RxSwift/Observables/RetryWhen.swift | 211 + Pods/RxSwift/RxSwift/Observables/Sample.swift | 139 + Pods/RxSwift/RxSwift/Observables/Scan.swift | 100 + .../RxSwift/Observables/Sequence.swift | 89 + .../Observables/ShareReplayScope.swift | 443 ++ .../RxSwift/Observables/SingleAsync.swift | 104 + Pods/RxSwift/RxSwift/Observables/Sink.swift | 75 + Pods/RxSwift/RxSwift/Observables/Skip.swift | 158 + .../RxSwift/Observables/SkipUntil.swift | 152 + .../RxSwift/Observables/SkipWhile.swift | 87 + .../RxSwift/Observables/StartWith.swift | 42 + .../RxSwift/Observables/SubscribeOn.swift | 103 + Pods/RxSwift/RxSwift/Observables/Switch.swift | 251 + .../RxSwift/Observables/SwitchIfEmpty.swift | 104 + Pods/RxSwift/RxSwift/Observables/Take.swift | 193 + .../RxSwift/Observables/TakeLast.swift | 78 + .../Observables/TakeWithPredicate.swift | 285 + .../RxSwift/Observables/Throttle.swift | 160 + .../RxSwift/RxSwift/Observables/Timeout.swift | 151 + Pods/RxSwift/RxSwift/Observables/Timer.swift | 117 + .../RxSwift/RxSwift/Observables/ToArray.swift | 64 + Pods/RxSwift/RxSwift/Observables/Using.swift | 90 + Pods/RxSwift/RxSwift/Observables/Window.swift | 168 + .../RxSwift/Observables/WithLatestFrom.swift | 151 + .../RxSwift/Observables/WithUnretained.swift | 58 + .../RxSwift/Observables/Zip+Collection.swift | 168 + .../RxSwift/Observables/Zip+arity.swift | 934 +++ Pods/RxSwift/RxSwift/Observables/Zip.swift | 135 + Pods/RxSwift/RxSwift/ObserverType.swift | 40 + .../RxSwift/Observers/AnonymousObserver.swift | 30 + .../RxSwift/Observers/ObserverBase.swift | 32 + .../RxSwift/Observers/TailRecursiveSink.swift | 151 + Pods/RxSwift/RxSwift/Reactive.swift | 80 + Pods/RxSwift/RxSwift/Rx.swift | 142 + Pods/RxSwift/RxSwift/RxMutableBox.swift | 53 + Pods/RxSwift/RxSwift/SchedulerType.swift | 71 + .../ConcurrentDispatchQueueScheduler.swift | 82 + .../Schedulers/ConcurrentMainScheduler.swift | 87 + .../Schedulers/CurrentThreadScheduler.swift | 131 + .../Schedulers/HistoricalScheduler.swift | 22 + .../HistoricalSchedulerTimeConverter.swift | 67 + .../Internal/DispatchQueueConfiguration.swift | 97 + .../Internal/InvocableScheduledItem.swift | 22 + .../Schedulers/Internal/InvocableType.swift | 17 + .../Schedulers/Internal/ScheduledItem.swift | 35 + .../Internal/ScheduledItemType.swift | 13 + .../RxSwift/Schedulers/MainScheduler.swift | 80 + .../Schedulers/OperationQueueScheduler.swift | 54 + .../Schedulers/RecursiveScheduler.swift | 220 + .../SchedulerServices+Emulation.swift | 61 + .../SerialDispatchQueueScheduler.swift | 131 + .../Schedulers/VirtualTimeConverterType.swift | 97 + .../Schedulers/VirtualTimeScheduler.swift | 267 + .../RxSwift/Subjects/AsyncSubject.swift | 154 + .../RxSwift/Subjects/BehaviorSubject.swift | 157 + .../RxSwift/Subjects/PublishSubject.swift | 140 + .../RxSwift/Subjects/ReplaySubject.swift | 271 + .../RxSwift/Subjects/SubjectType.swift | 21 + .../RxSwift/SwiftSupport/SwiftSupport.swift | 18 + .../Infallible+CombineLatest+Collection.swift | 36 + .../Infallible+CombineLatest+arity.swift | 276 + .../Infallible/Infallible+Concurrency.swift | 37 + .../Traits/Infallible/Infallible+Create.swift | 55 + .../Traits/Infallible/Infallible+Debug.swift | 26 + .../Infallible/Infallible+Operators.swift | 711 ++ .../Infallible/Infallible+Zip+arity.swift | 138 + .../Traits/Infallible/Infallible.swift | 102 + ...ObservableConvertibleType+Infallible.swift | 35 + .../Completable+AndThen.swift | 132 + .../PrimitiveSequence/Completable.swift | 320 + .../Traits/PrimitiveSequence/Maybe.swift | 387 + .../ObservableType+PrimitiveSequence.swift | 55 + .../PrimitiveSequence+Concurrency.swift | 164 + .../PrimitiveSequence+Zip+arity.swift | 521 ++ .../PrimitiveSequence/PrimitiveSequence.swift | 342 + .../Traits/PrimitiveSequence/Single.swift | 403 + Pods/RxTest/LICENSE.md | 9 + Pods/RxTest/Platform/AtomicInt.swift | 71 + Pods/RxTest/Platform/DataStructures/Bag.swift | 181 + .../DataStructures/InfiniteSequence.swift | 23 + .../DataStructures/PriorityQueue.swift | 111 + .../Platform/DataStructures/Queue.swift | 148 + .../Platform/DispatchQueue+Extensions.swift | 21 + Pods/RxTest/Platform/Platform.Darwin.swift | 35 + Pods/RxTest/Platform/Platform.Linux.swift | 32 + Pods/RxTest/Platform/RecursiveLock.swift | 34 + Pods/RxTest/README.md | 254 + Pods/RxTest/RxTest/Any+Equatable.swift | 38 + Pods/RxTest/RxTest/ColdObservable.swift | 46 + Pods/RxTest/RxTest/Event+Equatable.swift | 121 + Pods/RxTest/RxTest/HotObservable.swift | 55 + Pods/RxTest/RxTest/Recorded+Event.swift | 110 + Pods/RxTest/RxTest/Recorded.swift | 39 + Pods/RxTest/RxTest/RxTest.swift | 11 + .../RxTest/Schedulers/TestScheduler.swift | 155 + .../TestSchedulerVirtualTimeConverter.swift | 80 + Pods/RxTest/RxTest/Subscription.swift | 53 + Pods/RxTest/RxTest/TestableObservable.swift | 34 + Pods/RxTest/RxTest/TestableObserver.swift | 29 + Pods/RxTest/RxTest/XCTest+Rx.swift | 246 + .../Pods-AVIRO-acknowledgements.markdown | 39 + .../Pods-AVIRO-acknowledgements.plist | 57 + ...RO-frameworks-Debug-input-files.xcfilelist | 3 + ...O-frameworks-Debug-output-files.xcfilelist | 3 + ...-frameworks-Release-input-files.xcfilelist | 3 + ...frameworks-Release-output-files.xcfilelist | 3 + .../Pods-AVIRO/Pods-AVIRO-frameworks.sh | 6 + .../Pods-AVIRO/Pods-AVIRO.debug.xcconfig | 6 +- .../Pods-AVIRO/Pods-AVIRO.release.xcconfig | 6 +- .../Pods-AVIROTests-acknowledgements.markdown | 42 + .../Pods-AVIROTests-acknowledgements.plist | 86 + .../Pods-AVIROTests/Pods-AVIROTests-dummy.m | 5 + .../Pods-AVIROTests-umbrella.h | 16 + .../Pods-AVIROTests.debug.xcconfig | 15 + .../Pods-AVIROTests/Pods-AVIROTests.modulemap | 6 + .../Pods-AVIROTests.release.xcconfig | 15 + .../RxBlocking/RxBlocking-dummy.m | 5 + .../RxBlocking/RxBlocking-prefix.pch | 12 + .../RxBlocking/RxBlocking-umbrella.h | 16 + .../RxBlocking/RxBlocking.debug.xcconfig | 16 + .../RxBlocking/RxBlocking.modulemap | 6 + .../RxBlocking/RxBlocking.release.xcconfig | 16 + .../RxCocoa/RxCocoa-Info.plist | 26 + .../RxCocoa/RxCocoa-dummy.m | 5 + .../RxCocoa/RxCocoa-prefix.pch | 12 + .../RxCocoa/RxCocoa-umbrella.h | 22 + .../RxCocoa/RxCocoa.debug.xcconfig | 17 + .../RxCocoa/RxCocoa.modulemap | 6 + .../RxCocoa/RxCocoa.release.xcconfig | 17 + .../RxRelay/RxRelay-Info.plist | 26 + .../RxRelay/RxRelay-dummy.m | 5 + .../RxRelay/RxRelay-prefix.pch | 12 + .../RxRelay/RxRelay-umbrella.h | 16 + .../RxRelay/RxRelay.debug.xcconfig | 17 + .../RxRelay/RxRelay.modulemap | 6 + .../RxRelay/RxRelay.release.xcconfig | 17 + .../RxSwift-framework-Info.plist | 26 + .../RxSwift-framework-dummy.m | 5 + .../RxSwift-framework-prefix.pch | 12 + .../RxSwift-framework-umbrella.h | 16 + .../RxSwift-framework.debug.xcconfig | 15 + .../RxSwift-framework.modulemap | 6 + .../RxSwift-framework.release.xcconfig | 15 + .../RxSwift-library/RxSwift-library-dummy.m | 5 + .../RxSwift-library-prefix.pch | 12 + .../RxSwift-library-umbrella.h | 16 + .../RxSwift-library.debug.xcconfig | 14 + .../RxSwift-library/RxSwift-library.modulemap | 6 + .../RxSwift-library.release.xcconfig | 14 + .../RxTest/RxTest-dummy.m | 5 + .../RxTest/RxTest-prefix.pch | 12 + .../RxTest/RxTest-umbrella.h | 16 + .../RxTest/RxTest.debug.xcconfig | 20 + .../RxTest/RxTest.modulemap | 6 + .../RxTest/RxTest.release.xcconfig | 20 + 405 files changed, 41749 insertions(+), 2043 deletions(-) create mode 100644 AVIROTests/AVIROTests.swift create mode 120000 Pods/Headers/Public/RxBlocking/RxBlocking-umbrella.h create mode 120000 Pods/Headers/Public/RxBlocking/RxBlocking.modulemap create mode 120000 Pods/Headers/Public/RxSwift/RxSwift-library-umbrella.h create mode 120000 Pods/Headers/Public/RxSwift/RxSwift-library.modulemap create mode 120000 Pods/Headers/Public/RxTest/RxTest-umbrella.h create mode 120000 Pods/Headers/Public/RxTest/RxTest.modulemap delete mode 100644 Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/Pods-AVIROTests.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxBlocking.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxCocoa.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxRelay.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxSwift-framework.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxSwift-library.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxTest.xcscheme create mode 100644 Pods/RxBlocking/LICENSE.md create mode 100644 Pods/RxBlocking/Platform/AtomicInt.swift create mode 100644 Pods/RxBlocking/Platform/DataStructures/Bag.swift create mode 100644 Pods/RxBlocking/Platform/DataStructures/InfiniteSequence.swift create mode 100644 Pods/RxBlocking/Platform/DataStructures/PriorityQueue.swift create mode 100644 Pods/RxBlocking/Platform/DataStructures/Queue.swift create mode 100644 Pods/RxBlocking/Platform/DispatchQueue+Extensions.swift create mode 100644 Pods/RxBlocking/Platform/Platform.Darwin.swift create mode 100644 Pods/RxBlocking/Platform/Platform.Linux.swift create mode 100644 Pods/RxBlocking/Platform/RecursiveLock.swift create mode 100644 Pods/RxBlocking/README.md create mode 100644 Pods/RxBlocking/RxBlocking/BlockingObservable+Operators.swift create mode 100644 Pods/RxBlocking/RxBlocking/BlockingObservable.swift create mode 100644 Pods/RxBlocking/RxBlocking/ObservableConvertibleType+Blocking.swift create mode 100644 Pods/RxBlocking/RxBlocking/Resources.swift create mode 100644 Pods/RxBlocking/RxBlocking/RunLoopLock.swift create mode 100644 Pods/RxCocoa/LICENSE.md create mode 100644 Pods/RxCocoa/Platform/DataStructures/Bag.swift create mode 100644 Pods/RxCocoa/Platform/DataStructures/InfiniteSequence.swift create mode 100644 Pods/RxCocoa/Platform/DataStructures/PriorityQueue.swift create mode 100644 Pods/RxCocoa/Platform/DataStructures/Queue.swift create mode 100644 Pods/RxCocoa/Platform/DispatchQueue+Extensions.swift create mode 100644 Pods/RxCocoa/Platform/Platform.Darwin.swift create mode 100644 Pods/RxCocoa/Platform/Platform.Linux.swift create mode 100644 Pods/RxCocoa/Platform/RecursiveLock.swift create mode 100644 Pods/RxCocoa/README.md create mode 100644 Pods/RxCocoa/RxCocoa/Common/ControlTarget.swift create mode 100644 Pods/RxCocoa/RxCocoa/Common/DelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/Common/DelegateProxyType.swift create mode 100644 Pods/RxCocoa/RxCocoa/Common/Infallible+Bind.swift create mode 100644 Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift create mode 100644 Pods/RxCocoa/RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift create mode 100644 Pods/RxCocoa/RxCocoa/Common/RxTarget.swift create mode 100644 Pods/RxCocoa/RxCocoa/Common/SectionedViewDataSourceType.swift create mode 100644 Pods/RxCocoa/RxCocoa/Common/TextInput.swift create mode 100644 Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift create mode 100644 Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+Swift.swift create mode 100644 Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable.swift create mode 100644 Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift create mode 100644 Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift create mode 100644 Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/Foundation/NotificationCenter+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/Foundation/URLSession+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/Runtime/_RX.m create mode 100644 Pods/RxCocoa/RxCocoa/Runtime/_RXDelegateProxy.m create mode 100644 Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m create mode 100644 Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m create mode 100644 Pods/RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h create mode 100644 Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h create mode 100644 Pods/RxCocoa/RxCocoa/Runtime/include/_RXDelegateProxy.h create mode 100644 Pods/RxCocoa/RxCocoa/Runtime/include/_RXKVOObserver.h create mode 100644 Pods/RxCocoa/RxCocoa/Runtime/include/_RXObjCRuntime.h create mode 100644 Pods/RxCocoa/RxCocoa/RxCocoa.h create mode 100644 Pods/RxCocoa/RxCocoa/RxCocoa.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/ControlEvent.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/ControlProperty.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Driver/ControlEvent+Driver.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Driver/ControlProperty+Driver.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Driver/Driver+Subscription.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Driver/Driver.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Driver/Infallible+Driver.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Signal/ControlEvent+Signal.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Signal/PublishRelay+Signal.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Signal/Signal+Subscription.swift create mode 100644 Pods/RxCocoa/RxCocoa/Traits/Signal/Signal.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/NSTextStorage+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxDelegateProxyCrashFix.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIActivityIndicatorView+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIApplication+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIBarButtonItem+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UICollectionView+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIGestureRecognizer+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UINavigationController+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIRefreshControl+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UISearchController+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UISegmentedControl+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UITabBarController+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/iOS/WKWebView+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/macOS/NSButton+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/macOS/NSControl+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/macOS/NSSlider+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/macOS/NSTextField+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/macOS/NSTextView+Rx.swift create mode 100644 Pods/RxCocoa/RxCocoa/macOS/NSView+Rx.swift create mode 100644 Pods/RxRelay/LICENSE.md create mode 100644 Pods/RxRelay/README.md create mode 100644 Pods/RxRelay/RxRelay/BehaviorRelay.swift create mode 100644 Pods/RxRelay/RxRelay/Observable+Bind.swift create mode 100644 Pods/RxRelay/RxRelay/PublishRelay.swift create mode 100644 Pods/RxRelay/RxRelay/ReplayRelay.swift create mode 100644 Pods/RxRelay/RxRelay/Utils.swift create mode 100644 Pods/RxSwift/LICENSE.md create mode 100644 Pods/RxSwift/Platform/AtomicInt.swift create mode 100644 Pods/RxSwift/Platform/DataStructures/Bag.swift create mode 100644 Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift create mode 100644 Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift create mode 100644 Pods/RxSwift/Platform/DataStructures/Queue.swift create mode 100644 Pods/RxSwift/Platform/DispatchQueue+Extensions.swift create mode 100644 Pods/RxSwift/Platform/Platform.Darwin.swift create mode 100644 Pods/RxSwift/Platform/Platform.Linux.swift create mode 100644 Pods/RxSwift/Platform/RecursiveLock.swift create mode 100644 Pods/RxSwift/README.md create mode 100644 Pods/RxSwift/RxSwift/AnyObserver.swift create mode 100644 Pods/RxSwift/RxSwift/Binder.swift create mode 100644 Pods/RxSwift/RxSwift/Cancelable.swift create mode 100644 Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift create mode 100644 Pods/RxSwift/RxSwift/Concurrency/Lock.swift create mode 100644 Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift create mode 100644 Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift create mode 100644 Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift create mode 100644 Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift create mode 100644 Pods/RxSwift/RxSwift/ConnectableObservableType.swift create mode 100644 Pods/RxSwift/RxSwift/Date+Dispatch.swift create mode 100644 Pods/RxSwift/RxSwift/Disposable.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/Disposables.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift create mode 100644 Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift create mode 100644 Pods/RxSwift/RxSwift/Errors.swift create mode 100644 Pods/RxSwift/RxSwift/Event.swift create mode 100644 Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift create mode 100644 Pods/RxSwift/RxSwift/GroupedObservable.swift create mode 100644 Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift create mode 100644 Pods/RxSwift/RxSwift/Observable+Concurrency.swift create mode 100644 Pods/RxSwift/RxSwift/Observable.swift create mode 100644 Pods/RxSwift/RxSwift/ObservableConvertibleType.swift create mode 100644 Pods/RxSwift/RxSwift/ObservableType+Extensions.swift create mode 100644 Pods/RxSwift/RxSwift/ObservableType.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/AddRef.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Amb.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/AsMaybe.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/AsSingle.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Buffer.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Catch.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/CombineLatest.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/CompactMap.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Concat.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Create.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Debounce.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Debug.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Decode.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Deferred.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Delay.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Dematerialize.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Do.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/ElementAt.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Empty.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Enumerated.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Error.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Filter.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/First.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Generate.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/GroupBy.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Just.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Map.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Materialize.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Merge.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Multicast.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Never.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/ObserveOn.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Optional.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Producer.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Range.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Reduce.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Repeat.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/RetryWhen.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Sample.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Scan.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Sequence.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/SingleAsync.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Sink.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Skip.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/SkipUntil.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/SkipWhile.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/StartWith.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Switch.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Take.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/TakeLast.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/TakeWithPredicate.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Throttle.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Timeout.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Timer.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/ToArray.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Using.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Window.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/WithUnretained.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Zip+arity.swift create mode 100644 Pods/RxSwift/RxSwift/Observables/Zip.swift create mode 100644 Pods/RxSwift/RxSwift/ObserverType.swift create mode 100644 Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift create mode 100644 Pods/RxSwift/RxSwift/Observers/ObserverBase.swift create mode 100644 Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift create mode 100644 Pods/RxSwift/RxSwift/Reactive.swift create mode 100644 Pods/RxSwift/RxSwift/Rx.swift create mode 100644 Pods/RxSwift/RxSwift/RxMutableBox.swift create mode 100644 Pods/RxSwift/RxSwift/SchedulerType.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift create mode 100644 Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift create mode 100644 Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift create mode 100644 Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift create mode 100644 Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift create mode 100644 Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift create mode 100644 Pods/RxSwift/RxSwift/Subjects/SubjectType.swift create mode 100644 Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/Infallible/Infallible+CombineLatest+Collection.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/Infallible/Infallible+CombineLatest+arity.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/Infallible/Infallible+Concurrency.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/Infallible/Infallible+Create.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/Infallible/Infallible+Debug.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/Infallible/Infallible+Operators.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/Infallible/Infallible+Zip+arity.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/Infallible/Infallible.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/Infallible/ObservableConvertibleType+Infallible.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/PrimitiveSequence/Completable+AndThen.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/PrimitiveSequence/Completable.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/PrimitiveSequence/Maybe.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/PrimitiveSequence/ObservableType+PrimitiveSequence.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Zip+arity.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift create mode 100644 Pods/RxSwift/RxSwift/Traits/PrimitiveSequence/Single.swift create mode 100644 Pods/RxTest/LICENSE.md create mode 100644 Pods/RxTest/Platform/AtomicInt.swift create mode 100644 Pods/RxTest/Platform/DataStructures/Bag.swift create mode 100644 Pods/RxTest/Platform/DataStructures/InfiniteSequence.swift create mode 100644 Pods/RxTest/Platform/DataStructures/PriorityQueue.swift create mode 100644 Pods/RxTest/Platform/DataStructures/Queue.swift create mode 100644 Pods/RxTest/Platform/DispatchQueue+Extensions.swift create mode 100644 Pods/RxTest/Platform/Platform.Darwin.swift create mode 100644 Pods/RxTest/Platform/Platform.Linux.swift create mode 100644 Pods/RxTest/Platform/RecursiveLock.swift create mode 100644 Pods/RxTest/README.md create mode 100644 Pods/RxTest/RxTest/Any+Equatable.swift create mode 100644 Pods/RxTest/RxTest/ColdObservable.swift create mode 100644 Pods/RxTest/RxTest/Event+Equatable.swift create mode 100644 Pods/RxTest/RxTest/HotObservable.swift create mode 100644 Pods/RxTest/RxTest/Recorded+Event.swift create mode 100644 Pods/RxTest/RxTest/Recorded.swift create mode 100644 Pods/RxTest/RxTest/RxTest.swift create mode 100644 Pods/RxTest/RxTest/Schedulers/TestScheduler.swift create mode 100644 Pods/RxTest/RxTest/Schedulers/TestSchedulerVirtualTimeConverter.swift create mode 100644 Pods/RxTest/RxTest/Subscription.swift create mode 100644 Pods/RxTest/RxTest/TestableObservable.swift create mode 100644 Pods/RxTest/RxTest/TestableObserver.swift create mode 100644 Pods/RxTest/RxTest/XCTest+Rx.swift create mode 100644 Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-acknowledgements.markdown create mode 100644 Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-acknowledgements.plist create mode 100644 Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-dummy.m create mode 100644 Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-umbrella.h create mode 100644 Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.debug.xcconfig create mode 100644 Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.modulemap create mode 100644 Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.release.xcconfig create mode 100644 Pods/Target Support Files/RxBlocking/RxBlocking-dummy.m create mode 100644 Pods/Target Support Files/RxBlocking/RxBlocking-prefix.pch create mode 100644 Pods/Target Support Files/RxBlocking/RxBlocking-umbrella.h create mode 100644 Pods/Target Support Files/RxBlocking/RxBlocking.debug.xcconfig create mode 100644 Pods/Target Support Files/RxBlocking/RxBlocking.modulemap create mode 100644 Pods/Target Support Files/RxBlocking/RxBlocking.release.xcconfig create mode 100644 Pods/Target Support Files/RxCocoa/RxCocoa-Info.plist create mode 100644 Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m create mode 100644 Pods/Target Support Files/RxCocoa/RxCocoa-prefix.pch create mode 100644 Pods/Target Support Files/RxCocoa/RxCocoa-umbrella.h create mode 100644 Pods/Target Support Files/RxCocoa/RxCocoa.debug.xcconfig create mode 100644 Pods/Target Support Files/RxCocoa/RxCocoa.modulemap create mode 100644 Pods/Target Support Files/RxCocoa/RxCocoa.release.xcconfig create mode 100644 Pods/Target Support Files/RxRelay/RxRelay-Info.plist create mode 100644 Pods/Target Support Files/RxRelay/RxRelay-dummy.m create mode 100644 Pods/Target Support Files/RxRelay/RxRelay-prefix.pch create mode 100644 Pods/Target Support Files/RxRelay/RxRelay-umbrella.h create mode 100644 Pods/Target Support Files/RxRelay/RxRelay.debug.xcconfig create mode 100644 Pods/Target Support Files/RxRelay/RxRelay.modulemap create mode 100644 Pods/Target Support Files/RxRelay/RxRelay.release.xcconfig create mode 100644 Pods/Target Support Files/RxSwift-framework/RxSwift-framework-Info.plist create mode 100644 Pods/Target Support Files/RxSwift-framework/RxSwift-framework-dummy.m create mode 100644 Pods/Target Support Files/RxSwift-framework/RxSwift-framework-prefix.pch create mode 100644 Pods/Target Support Files/RxSwift-framework/RxSwift-framework-umbrella.h create mode 100644 Pods/Target Support Files/RxSwift-framework/RxSwift-framework.debug.xcconfig create mode 100644 Pods/Target Support Files/RxSwift-framework/RxSwift-framework.modulemap create mode 100644 Pods/Target Support Files/RxSwift-framework/RxSwift-framework.release.xcconfig create mode 100644 Pods/Target Support Files/RxSwift-library/RxSwift-library-dummy.m create mode 100644 Pods/Target Support Files/RxSwift-library/RxSwift-library-prefix.pch create mode 100644 Pods/Target Support Files/RxSwift-library/RxSwift-library-umbrella.h create mode 100644 Pods/Target Support Files/RxSwift-library/RxSwift-library.debug.xcconfig create mode 100644 Pods/Target Support Files/RxSwift-library/RxSwift-library.modulemap create mode 100644 Pods/Target Support Files/RxSwift-library/RxSwift-library.release.xcconfig create mode 100644 Pods/Target Support Files/RxTest/RxTest-dummy.m create mode 100644 Pods/Target Support Files/RxTest/RxTest-prefix.pch create mode 100644 Pods/Target Support Files/RxTest/RxTest-umbrella.h create mode 100644 Pods/Target Support Files/RxTest/RxTest.debug.xcconfig create mode 100644 Pods/Target Support Files/RxTest/RxTest.modulemap create mode 100644 Pods/Target Support Files/RxTest/RxTest.release.xcconfig diff --git a/AVIRO.xcodeproj/project.pbxproj b/AVIRO.xcodeproj/project.pbxproj index a474462c..83d87a72 100644 --- a/AVIRO.xcodeproj/project.pbxproj +++ b/AVIRO.xcodeproj/project.pbxproj @@ -7,7 +7,8 @@ objects = { /* Begin PBXBuildFile section */ - A156F24E1DC1F5FA54D44A76 /* Pods_AVIRO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 796022A3066B91147B712BB4 /* Pods_AVIRO.framework */; }; + 07B07E7D2181EE7FE8658FF3 /* Pods_AVIRO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 666C79719FFC2B1B1010E863 /* Pods_AVIRO.framework */; }; + BAABB6DFC862FB737E319364 /* libPods-AVIROTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 145E32B416F8757C584E1EC5 /* libPods-AVIROTests.a */; }; C50367F52A1795D10020C6BB /* HomeViewPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50367F42A1795D10020C6BB /* HomeViewPresenter.swift */; }; C505EB162ACC048E0057A4F8 /* Berry2.json in Resources */ = {isa = PBXBuildFile; fileRef = C505EB152ACC048E0057A4F8 /* Berry2.json */; }; C505EB182ACC5AC50057A4F8 /* LaunchScreenViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C505EB172ACC5AC50057A4F8 /* LaunchScreenViewController.swift */; }; @@ -96,6 +97,7 @@ C53C54D22AD67E8800C3662A /* MarkerModelLocalDB.swift in Sources */ = {isa = PBXBuildFile; fileRef = C53C54D12AD67E8800C3662A /* MarkerModelLocalDB.swift */; }; C541521D2AC125E100F39826 /* TutorialTopLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C541521C2AC125E100F39826 /* TutorialTopLabel.swift */; }; C54657882ABF2DBA003A0BCB /* API.plist in Resources */ = {isa = PBXBuildFile; fileRef = C54657872ABF2DBA003A0BCB /* API.plist */; }; + C5476B4D2B2F1F1F00F5FC6E /* AVIROTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B4C2B2F1F1F00F5FC6E /* AVIROTests.swift */; }; C547A8BA2A17D8D4004D1339 /* KakaoAPIManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C547A8B92A17D8D4004D1339 /* KakaoAPIManager.swift */; }; C54BC0DB2A2C2D0D00B65439 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C54BC0DA2A2C2D0D00B65439 /* UIColor+Extension.swift */; }; C552D5342ABE8CA500933D8A /* AVIRODeleteAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C552D5332ABE8CA500933D8A /* AVIRODeleteAPI.swift */; }; @@ -209,10 +211,22 @@ C5FF13572A42C8970026981D /* AVIROPlaceReviews+DTO.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5FF13562A42C8970026981D /* AVIROPlaceReviews+DTO.swift */; }; /* End PBXBuildFile section */ +/* Begin PBXContainerItemProxy section */ + C5476B4E2B2F1F1F00F5FC6E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = C52FA3372A175B20005E70DC /* Project object */; + proxyType = 1; + remoteGlobalIDString = C52FA33E2A175B20005E70DC; + remoteInfo = AVIRO; + }; +/* End PBXContainerItemProxy section */ + /* Begin PBXFileReference section */ - 4EB01DC761F38F50251EAA43 /* Pods-AVIRO.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AVIRO.release.xcconfig"; path = "Target Support Files/Pods-AVIRO/Pods-AVIRO.release.xcconfig"; sourceTree = ""; }; - 796022A3066B91147B712BB4 /* Pods_AVIRO.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AVIRO.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B57500A8C1EA6C6CFDED2C4C /* Pods-AVIRO.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AVIRO.debug.xcconfig"; path = "Target Support Files/Pods-AVIRO/Pods-AVIRO.debug.xcconfig"; sourceTree = ""; }; + 145E32B416F8757C584E1EC5 /* libPods-AVIROTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-AVIROTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1F4D9C82B45E94A145093777 /* Pods-AVIRO.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AVIRO.release.xcconfig"; path = "Target Support Files/Pods-AVIRO/Pods-AVIRO.release.xcconfig"; sourceTree = ""; }; + 209280C6A805DB12C44C7A1C /* Pods-AVIROTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AVIROTests.debug.xcconfig"; path = "Target Support Files/Pods-AVIROTests/Pods-AVIROTests.debug.xcconfig"; sourceTree = ""; }; + 543A0041DDDA86D0223E371E /* Pods-AVIRO.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AVIRO.debug.xcconfig"; path = "Target Support Files/Pods-AVIRO/Pods-AVIRO.debug.xcconfig"; sourceTree = ""; }; + 666C79719FFC2B1B1010E863 /* Pods_AVIRO.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AVIRO.framework; sourceTree = BUILT_PRODUCTS_DIR; }; C50367F42A1795D10020C6BB /* HomeViewPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewPresenter.swift; sourceTree = ""; }; C505EB152ACC048E0057A4F8 /* Berry2.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Berry2.json; sourceTree = ""; }; C505EB172ACC5AC50057A4F8 /* LaunchScreenViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LaunchScreenViewController.swift; sourceTree = ""; }; @@ -304,6 +318,8 @@ C541521C2AC125E100F39826 /* TutorialTopLabel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TutorialTopLabel.swift; sourceTree = ""; }; C54657862ABF2D82003A0BCB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; C54657872ABF2DBA003A0BCB /* API.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = API.plist; path = ../AVIRO/AVIRO/App/API.plist; sourceTree = SOURCE_ROOT; }; + C5476B4A2B2F1F1F00F5FC6E /* AVIROTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AVIROTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + C5476B4C2B2F1F1F00F5FC6E /* AVIROTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AVIROTests.swift; sourceTree = ""; }; C547A8B92A17D8D4004D1339 /* KakaoAPIManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KakaoAPIManager.swift; sourceTree = ""; }; C54BC0DA2A2C2D0D00B65439 /* UIColor+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+Extension.swift"; sourceTree = ""; }; C552D5332ABE8CA500933D8A /* AVIRODeleteAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AVIRODeleteAPI.swift; sourceTree = ""; }; @@ -417,6 +433,7 @@ C5FF13522A42C8810026981D /* AVIROPlaceInfo+DTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AVIROPlaceInfo+DTO.swift"; sourceTree = ""; }; C5FF13542A42C88D0026981D /* AVIROPlaceMenus+DTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AVIROPlaceMenus+DTO.swift"; sourceTree = ""; }; C5FF13562A42C8970026981D /* AVIROPlaceReviews+DTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AVIROPlaceReviews+DTO.swift"; sourceTree = ""; }; + F704C4270ED4B2E1C26DC5BB /* Pods-AVIROTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AVIROTests.release.xcconfig"; path = "Target Support Files/Pods-AVIROTests/Pods-AVIROTests.release.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -425,7 +442,15 @@ buildActionMask = 2147483647; files = ( C50DB74E2A9B2A8C0078B501 /* WebKit.framework in Frameworks */, - A156F24E1DC1F5FA54D44A76 /* Pods_AVIRO.framework in Frameworks */, + 07B07E7D2181EE7FE8658FF3 /* Pods_AVIRO.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C5476B472B2F1F1F00F5FC6E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + BAABB6DFC862FB737E319364 /* libPods-AVIROTests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -436,7 +461,8 @@ isa = PBXGroup; children = ( C50DB74D2A9B2A8C0078B501 /* WebKit.framework */, - 796022A3066B91147B712BB4 /* Pods_AVIRO.framework */, + 666C79719FFC2B1B1010E863 /* Pods_AVIRO.framework */, + 145E32B416F8757C584E1EC5 /* libPods-AVIROTests.a */, ); name = Frameworks; sourceTree = ""; @@ -444,8 +470,10 @@ BE7C2C07294F8980354FE766 /* Pods */ = { isa = PBXGroup; children = ( - B57500A8C1EA6C6CFDED2C4C /* Pods-AVIRO.debug.xcconfig */, - 4EB01DC761F38F50251EAA43 /* Pods-AVIRO.release.xcconfig */, + 543A0041DDDA86D0223E371E /* Pods-AVIRO.debug.xcconfig */, + 1F4D9C82B45E94A145093777 /* Pods-AVIRO.release.xcconfig */, + 209280C6A805DB12C44C7A1C /* Pods-AVIROTests.debug.xcconfig */, + F704C4270ED4B2E1C26DC5BB /* Pods-AVIROTests.release.xcconfig */, ); path = Pods; sourceTree = ""; @@ -764,6 +792,7 @@ children = ( C5351B4A2A1919F700116D50 /* .swiftlint.yml */, C52FA3412A175B20005E70DC /* AVIRO */, + C5476B4B2B2F1F1F00F5FC6E /* AVIROTests */, BE7C2C07294F8980354FE766 /* Pods */, C52FA3402A175B20005E70DC /* Products */, 0C3C6AC2BC6B49CCDD2FE9BF /* Frameworks */, @@ -774,6 +803,7 @@ isa = PBXGroup; children = ( C52FA33F2A175B20005E70DC /* AVIRO.app */, + C5476B4A2B2F1F1F00F5FC6E /* AVIROTests.xctest */, ); name = Products; sourceTree = ""; @@ -787,6 +817,7 @@ C50367F32A1795BE0020C6BB /* Model */, C50367F22A1795B90020C6BB /* Manager */, C50367ED2A1791840020C6BB /* Scene */, + C5D654F82B27597B00A04F4F /* Infrastructure */, ); path = AVIRO; sourceTree = ""; @@ -867,6 +898,14 @@ path = OperationHours; sourceTree = ""; }; + C5476B4B2B2F1F1F00F5FC6E /* AVIROTests */ = { + isa = PBXGroup; + children = ( + C5476B4C2B2F1F1F00F5FC6E /* AVIROTests.swift */, + ); + path = AVIROTests; + sourceTree = ""; + }; C54BC0D82A2C2CEE00B65439 /* UIButton */ = { isa = PBXGroup; children = ( @@ -908,6 +947,7 @@ C5EB50EB2A1C72C600B29CC1 /* TabBarViewController.swift */, C5EB50ED2A1C76FC00B29CC1 /* Home */, C5351B722A1B369000116D50 /* Enroll */, + C5AAEB472B2F044000507C73 /* Challenge */, C5EB50F02A1C772300B29CC1 /* MyPage */, ); path = TabBar; @@ -1128,6 +1168,13 @@ path = FacadeManager; sourceTree = ""; }; + C5AAEB472B2F044000507C73 /* Challenge */ = { + isa = PBXGroup; + children = ( + ); + path = Challenge; + sourceTree = ""; + }; C5B071E22A59B3C200AE709A /* UITextField */ = { isa = PBXGroup; children = ( @@ -1252,6 +1299,21 @@ path = Constants; sourceTree = ""; }; + C5D654F82B27597B00A04F4F /* Infrastructure */ = { + isa = PBXGroup; + children = ( + C5D654F92B275D4400A04F4F /* Network */, + ); + path = Infrastructure; + sourceTree = ""; + }; + C5D654F92B275D4400A04F4F /* Network */ = { + isa = PBXGroup; + children = ( + ); + path = Network; + sourceTree = ""; + }; C5D8EB242A9D78F900EF629F /* SubView */ = { isa = PBXGroup; children = ( @@ -1483,12 +1545,12 @@ isa = PBXNativeTarget; buildConfigurationList = C52FA3532A175B20005E70DC /* Build configuration list for PBXNativeTarget "AVIRO" */; buildPhases = ( - 94D666AE4260592A253C27D2 /* [CP] Check Pods Manifest.lock */, + D7D5DA7E12DC2962A2A12597 /* [CP] Check Pods Manifest.lock */, C52FA33B2A175B20005E70DC /* Sources */, C52FA33C2A175B20005E70DC /* Frameworks */, C52FA33D2A175B20005E70DC /* Resources */, C5351B492A19160600116D50 /* swiftlint */, - C60A8D31733F9A2D78370C5C /* [CP] Embed Pods Frameworks */, + EFB56813950653F6BBFA7E35 /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); @@ -1499,6 +1561,25 @@ productReference = C52FA33F2A175B20005E70DC /* AVIRO.app */; productType = "com.apple.product-type.application"; }; + C5476B492B2F1F1F00F5FC6E /* AVIROTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = C5476B522B2F1F1F00F5FC6E /* Build configuration list for PBXNativeTarget "AVIROTests" */; + buildPhases = ( + 2EF359596099E4A8E159BA54 /* [CP] Check Pods Manifest.lock */, + C5476B462B2F1F1F00F5FC6E /* Sources */, + C5476B472B2F1F1F00F5FC6E /* Frameworks */, + C5476B482B2F1F1F00F5FC6E /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + C5476B4F2B2F1F1F00F5FC6E /* PBXTargetDependency */, + ); + name = AVIROTests; + productName = AVIROTests; + productReference = C5476B4A2B2F1F1F00F5FC6E /* AVIROTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -1506,12 +1587,16 @@ isa = PBXProject; attributes = { BuildIndependentTargetsInParallel = 1; - LastSwiftUpdateCheck = 1430; - LastUpgradeCheck = 1430; + LastSwiftUpdateCheck = 1510; + LastUpgradeCheck = 1510; TargetAttributes = { C52FA33E2A175B20005E70DC = { CreatedOnToolsVersion = 14.3; }; + C5476B492B2F1F1F00F5FC6E = { + CreatedOnToolsVersion = 15.1; + TestTargetID = C52FA33E2A175B20005E70DC; + }; }; }; buildConfigurationList = C52FA33A2A175B20005E70DC /* Build configuration list for PBXProject "AVIRO" */; @@ -1529,6 +1614,7 @@ projectRoot = ""; targets = ( C52FA33E2A175B20005E70DC /* AVIRO */, + C5476B492B2F1F1F00F5FC6E /* AVIROTests */, ); }; /* End PBXProject section */ @@ -1554,10 +1640,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C5476B482B2F1F1F00F5FC6E /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 94D666AE4260592A253C27D2 /* [CP] Check Pods Manifest.lock */ = { + 2EF359596099E4A8E159BA54 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -1572,7 +1665,7 @@ outputFileListPaths = ( ); outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-AVIRO-checkManifestLockResult.txt", + "$(DERIVED_FILE_DIR)/Pods-AVIROTests-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -1598,7 +1691,29 @@ shellPath = /bin/sh; shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n\n export PATH=\"$PATH:/opt/homebrew/bin\"\n if which swiftlint > /dev/null; then\n swiftlint\n else\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\n fi\n"; }; - C60A8D31733F9A2D78370C5C /* [CP] Embed Pods Frameworks */ = { + D7D5DA7E12DC2962A2A12597 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-AVIRO-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + EFB56813950653F6BBFA7E35 /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -1810,8 +1925,24 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C5476B462B2F1F1F00F5FC6E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C5476B4D2B2F1F1F00F5FC6E /* AVIROTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ +/* Begin PBXTargetDependency section */ + C5476B4F2B2F1F1F00F5FC6E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = C52FA33E2A175B20005E70DC /* AVIRO */; + targetProxy = C5476B4E2B2F1F1F00F5FC6E /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + /* Begin PBXVariantGroup section */ C52FA34D2A175B20005E70DC /* LaunchScreen.storyboard */ = { isa = PBXVariantGroup; @@ -1947,7 +2078,7 @@ }; C52FA3542A175B20005E70DC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B57500A8C1EA6C6CFDED2C4C /* Pods-AVIRO.debug.xcconfig */; + baseConfigurationReference = 543A0041DDDA86D0223E371E /* Pods-AVIRO.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -1982,7 +2113,7 @@ }; C52FA3552A175B20005E70DC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4EB01DC761F38F50251EAA43 /* Pods-AVIRO.release.xcconfig */; + baseConfigurationReference = 1F4D9C82B45E94A145093777 /* Pods-AVIRO.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -2015,6 +2146,63 @@ }; name = Release; }; + C5476B502B2F1F1F00F5FC6E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 209280C6A805DB12C44C7A1C /* Pods-AVIROTests.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = C4K2HXA435; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MACOSX_DEPLOYMENT_TARGET = 13.5; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = SeonghunJeon.AVIROTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = auto; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AVIRO.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/AVIRO"; + }; + name = Debug; + }; + C5476B512B2F1F1F00F5FC6E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F704C4270ED4B2E1C26DC5BB /* Pods-AVIROTests.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = C4K2HXA435; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MACOSX_DEPLOYMENT_TARGET = 13.5; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = SeonghunJeon.AVIROTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = auto; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AVIRO.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/AVIRO"; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -2036,6 +2224,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + C5476B522B2F1F1F00F5FC6E /* Build configuration list for PBXNativeTarget "AVIROTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C5476B502B2F1F1F00F5FC6E /* Debug */, + C5476B512B2F1F1F00F5FC6E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ }; rootObject = C52FA3372A175B20005E70DC /* Project object */; diff --git a/AVIRO.xcodeproj/xcshareddata/xcschemes/AVIRO.xcscheme b/AVIRO.xcodeproj/xcshareddata/xcschemes/AVIRO.xcscheme index 3b4b4f4d..b0b3e87a 100644 --- a/AVIRO.xcodeproj/xcshareddata/xcschemes/AVIRO.xcscheme +++ b/AVIRO.xcodeproj/xcshareddata/xcschemes/AVIRO.xcscheme @@ -1,6 +1,6 @@ + + + + + + 0.4.14' +pod 'RxSwift', '6.6.0' +pod 'RxCocoa', '6.6.0' # Pods for AVIRO end +target 'AVIROTests' do + +pod 'RxBlocking', '6.6.0' +pod 'RxTest', '6.6.0' + +end + post_install do |installer| installer.generated_projects.each do |project| project.targets.each do |target| diff --git a/Podfile.lock b/Podfile.lock index eb180b27..225a35e7 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -10,6 +10,16 @@ PODS: - Realm/Headers (10.43.0) - RealmSwift (10.43.0): - Realm (= 10.43.0) + - RxBlocking (6.6.0): + - RxSwift (= 6.6.0) + - RxCocoa (6.6.0): + - RxRelay (= 6.6.0) + - RxSwift (= 6.6.0) + - RxRelay (6.6.0): + - RxSwift (= 6.6.0) + - RxSwift (6.6.0) + - RxTest (6.6.0): + - RxSwift (= 6.6.0) - Toast-Swift (5.0.1) DEPENDENCIES: @@ -18,6 +28,10 @@ DEPENDENCIES: - lottie-ios - NMapsMap - RealmSwift + - RxBlocking (= 6.6.0) + - RxCocoa (= 6.6.0) + - RxSwift (= 6.6.0) + - RxTest (= 6.6.0) - Toast-Swift SPEC REPOS: @@ -29,6 +43,11 @@ SPEC REPOS: - NMapsMap - Realm - RealmSwift + - RxBlocking + - RxCocoa + - RxRelay + - RxSwift + - RxTest - Toast-Swift SPEC CHECKSUMS: @@ -39,8 +58,13 @@ SPEC CHECKSUMS: NMapsMap: a5b909a31b6f3d27a670f6eb2ddc913c38975474 Realm: fc65bea3f5c3da2ecdc76324f180e054e7cf4eb0 RealmSwift: a7d48361c585769690c175428cc2bf15e1074444 + RxBlocking: fbd1f8501443024f686e556f36dac79b0d5f4d7c + RxCocoa: 44a80de90e25b739b5aeaae3c8c371a32e3343cc + RxRelay: 45eaa5db8ee4fb50e5ebd57deec0159e97fa51e6 + RxSwift: a4b44f7d24599f674deebd1818eab82e58410632 + RxTest: a23f26bb53a5e146a0a69db4f0fa0b69001ce7f4 Toast-Swift: 9b6a70f28b3bf0b96c40d46c0c4b9d6639846711 -PODFILE CHECKSUM: 04c926d24049590164209d06260a809ea3594da3 +PODFILE CHECKSUM: 5bafb821b58cc17bfa6bbffc0a44a56e947d7bf3 COCOAPODS: 1.12.1 diff --git a/Pods/Headers/Public/RxBlocking/RxBlocking-umbrella.h b/Pods/Headers/Public/RxBlocking/RxBlocking-umbrella.h new file mode 120000 index 00000000..24222423 --- /dev/null +++ b/Pods/Headers/Public/RxBlocking/RxBlocking-umbrella.h @@ -0,0 +1 @@ +../../../Target Support Files/RxBlocking/RxBlocking-umbrella.h \ No newline at end of file diff --git a/Pods/Headers/Public/RxBlocking/RxBlocking.modulemap b/Pods/Headers/Public/RxBlocking/RxBlocking.modulemap new file mode 120000 index 00000000..eec83e64 --- /dev/null +++ b/Pods/Headers/Public/RxBlocking/RxBlocking.modulemap @@ -0,0 +1 @@ +../../../Target Support Files/RxBlocking/RxBlocking.modulemap \ No newline at end of file diff --git a/Pods/Headers/Public/RxSwift/RxSwift-library-umbrella.h b/Pods/Headers/Public/RxSwift/RxSwift-library-umbrella.h new file mode 120000 index 00000000..9f03e0b7 --- /dev/null +++ b/Pods/Headers/Public/RxSwift/RxSwift-library-umbrella.h @@ -0,0 +1 @@ +../../../Target Support Files/RxSwift-library/RxSwift-library-umbrella.h \ No newline at end of file diff --git a/Pods/Headers/Public/RxSwift/RxSwift-library.modulemap b/Pods/Headers/Public/RxSwift/RxSwift-library.modulemap new file mode 120000 index 00000000..0fc4385b --- /dev/null +++ b/Pods/Headers/Public/RxSwift/RxSwift-library.modulemap @@ -0,0 +1 @@ +../../../Target Support Files/RxSwift-library/RxSwift-library.modulemap \ No newline at end of file diff --git a/Pods/Headers/Public/RxTest/RxTest-umbrella.h b/Pods/Headers/Public/RxTest/RxTest-umbrella.h new file mode 120000 index 00000000..6b43f445 --- /dev/null +++ b/Pods/Headers/Public/RxTest/RxTest-umbrella.h @@ -0,0 +1 @@ +../../../Target Support Files/RxTest/RxTest-umbrella.h \ No newline at end of file diff --git a/Pods/Headers/Public/RxTest/RxTest.modulemap b/Pods/Headers/Public/RxTest/RxTest.modulemap new file mode 120000 index 00000000..91fb2e5f --- /dev/null +++ b/Pods/Headers/Public/RxTest/RxTest.modulemap @@ -0,0 +1 @@ +../../../Target Support Files/RxTest/RxTest.modulemap \ No newline at end of file diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index eb180b27..225a35e7 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -10,6 +10,16 @@ PODS: - Realm/Headers (10.43.0) - RealmSwift (10.43.0): - Realm (= 10.43.0) + - RxBlocking (6.6.0): + - RxSwift (= 6.6.0) + - RxCocoa (6.6.0): + - RxRelay (= 6.6.0) + - RxSwift (= 6.6.0) + - RxRelay (6.6.0): + - RxSwift (= 6.6.0) + - RxSwift (6.6.0) + - RxTest (6.6.0): + - RxSwift (= 6.6.0) - Toast-Swift (5.0.1) DEPENDENCIES: @@ -18,6 +28,10 @@ DEPENDENCIES: - lottie-ios - NMapsMap - RealmSwift + - RxBlocking (= 6.6.0) + - RxCocoa (= 6.6.0) + - RxSwift (= 6.6.0) + - RxTest (= 6.6.0) - Toast-Swift SPEC REPOS: @@ -29,6 +43,11 @@ SPEC REPOS: - NMapsMap - Realm - RealmSwift + - RxBlocking + - RxCocoa + - RxRelay + - RxSwift + - RxTest - Toast-Swift SPEC CHECKSUMS: @@ -39,8 +58,13 @@ SPEC CHECKSUMS: NMapsMap: a5b909a31b6f3d27a670f6eb2ddc913c38975474 Realm: fc65bea3f5c3da2ecdc76324f180e054e7cf4eb0 RealmSwift: a7d48361c585769690c175428cc2bf15e1074444 + RxBlocking: fbd1f8501443024f686e556f36dac79b0d5f4d7c + RxCocoa: 44a80de90e25b739b5aeaae3c8c371a32e3343cc + RxRelay: 45eaa5db8ee4fb50e5ebd57deec0159e97fa51e6 + RxSwift: a4b44f7d24599f674deebd1818eab82e58410632 + RxTest: a23f26bb53a5e146a0a69db4f0fa0b69001ce7f4 Toast-Swift: 9b6a70f28b3bf0b96c40d46c0c4b9d6639846711 -PODFILE CHECKSUM: 04c926d24049590164209d06260a809ea3594da3 +PODFILE CHECKSUM: 5bafb821b58cc17bfa6bbffc0a44a56e947d7bf3 COCOAPODS: 1.12.1 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index fceb284f..8ead9944 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -24,702 +24,1273 @@ B521269790554904B95202DE2D5AC59C /* [CP] Copy XCFrameworks */, ); dependencies = ( - C782CF72A87F97F57C555DC1F205C921 /* PBXTargetDependency */, + 58B06DA4E14AA2F525C567375A699551 /* PBXTargetDependency */, ); name = NMapsMap; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000A88211338215AF3DF62AB932AE19D /* StyledView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D616E6829F99955CEAEADA9FF9D23953 /* StyledView.swift */; }; - 00A4EC88D28933ABE1570F80CFF739F2 /* AnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20D10781D96BD4560FFF812607286625 /* AnimationLayer.swift */; }; - 00BF14CDB53CA993FF69C1A38515DADF /* NodeProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C4F8A92A82CAD07C26E4817FDD212EE /* NodeProperty.swift */; }; - 00D2EA50D76FE77C68B05C6174F0E50D /* RLMObjectSchema.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A00353F8525EA3B62442B223AADD72B7 /* RLMObjectSchema.h */; }; - 01534387642D40D6114D56DD816AA7D4 /* Ellipse.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4C1295FCFBE7DF40A7A625F75B876FE /* Ellipse.swift */; }; - 0164F3A05EF99C22264D6A0806AB4E6C /* RLMSwiftCollectionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2D2114E31871657FE302286DD016BC /* RLMSwiftCollectionBase.h */; }; - 016843CF5640E796F74D1C012561F1F8 /* URL+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27F49DB8396288BCB626455CCA711F71 /* URL+ZIP.swift */; }; - 01BD2BEAB90425EBA4BDB2489136B27B /* RLMUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 454B353FB31B270BCE4AC1930C9D6B73 /* RLMUser.h */; }; - 01E4BF17E65E3032AA9697B88B38942F /* Font.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCA618AFFBEC22D0B0868016477DCB50 /* Font.swift */; }; - 01F440F099E84E401B62E5A92AC2CC57 /* PathOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB964C982DD9A455386AEEAC17CE0EE7 /* PathOutputNode.swift */; }; - 02A9BD5CFEF8CF5CDE82D5F3C99595A1 /* RLMObjectStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D2DC25EE3FE9F24ABFBA0B17D37180B /* RLMObjectStore.h */; }; - 03CFFAB7B53DCDF2AB6C216E304C9846 /* RLMLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 61DF2D3A5B3C1213724D1A6CEEFBF020 /* RLMLogger.h */; }; - 03EC58C4B7FEBA442A486619A69818F3 /* KeyframeGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 625C1F128A0E6DA6501B9E7AFC815992 /* KeyframeGroup.swift */; }; - 0442CEDEA4243DD8629F664272A285DE /* KeyPathStrings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41DEE2CE448EB23FA009F318D36613A0 /* KeyPathStrings.swift */; }; - 0472370E3CFB9E8A23DD51D83FC1C63B /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 199C39F898ADC27A4F5C404AE3DF1D4B /* LottieColor.swift */; }; - 047B484D61F4C6B4BD6BF25BAD3539A9 /* Fill.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76D7DB6BF680CDE11B5F62D63051CB48 /* Fill.swift */; }; - 04D7A62FC4D8A761493E347FF1788FDF /* RLMEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = EE276FBCF3332109045CC95F9FA881DF /* RLMEvent.h */; }; - 04DFBD6C5C408F03AD5915BE93DCEE25 /* AnimatedProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7C478519C78E16790810749945F1847 /* AnimatedProviding.swift */; }; - 05EC68A60F14F305F3AF79F800F133C3 /* RLMError.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B640C0DBE81DF1C70F4E7DA6933D4A /* RLMError.h */; }; - 06304E80795DA749417F68A31C6A4D74 /* Results.swift in Sources */ = {isa = PBXBuildFile; fileRef = 870C6E1D0C92CC05F84F1D5CD95CB27A /* Results.swift */; }; - 06358E068A2C99AE81BD71D78017CA21 /* RLMEmailPasswordAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E8B63753C1AD73A83768029CBE7644 /* RLMEmailPasswordAuth.h */; }; - 07C5FAA3384AED8B3A5D00EDC40EFCC5 /* GradientRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57BDD6FC757718EE27E2BCA7D1F03A69 /* GradientRenderLayer.swift */; }; - 07F261922769AA1165299B51787D22D6 /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A63B2BC433DE300A3D656029A75292F /* Query.swift */; }; - 08655D389BA5BB60C5135A9AAC131CC0 /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBA8D0FFDC4BF60A1648C05FAB6EC6E1 /* AnimationSubview.swift */; }; - 087F5257F058E00EB0393CF849DA2573 /* RLMMongoClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F6E3793D92144D4B1F4BA1A7BA67116 /* RLMMongoClient.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 09A22FE44483CD6DCDFCAE6A616D5B33 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = D37B1F0911D2E4414FA92FD4C2BF1288 /* KeyframeGroup+exactlyOneKeyframe.swift */; }; - 0AF5CF857933789515E0C3C9CF9734BB /* ShapeItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA185170409DFB8C039D9C071DDA36ED /* ShapeItem.swift */; }; - 0B084A2ED53F30E3F5C91705620FC5AB /* RLMAsyncTask_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 833154B62985F67515C31B2AA2330AB9 /* RLMAsyncTask_Private.h */; }; - 0B18B25A5051C779E3CCF50F950576B8 /* RLMProviderClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88042D1C2C2095E60B104647AD92863B /* RLMProviderClient.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 0B3B59A97C85AE1077DAA6BBCA438998 /* RLMProperty_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 052FA441B3AC4CA70E99A90B0D3B946D /* RLMProperty_Private.h */; }; - 0BE6A5DB343CA25E40C7B914FFB66592 /* ContentConfigurableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 756A2FDE480EB12B7E88E843020E1933 /* ContentConfigurableView.swift */; }; - 0CBFBBC52B77AEDD220B219AFA55B4F6 /* KeychainSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA9BF8B5B65608A7DD6EA15D179386D8 /* KeychainSwift.swift */; }; - 0D6C52E690487D298703BC1EAA63C0B3 /* RLMUser.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 454B353FB31B270BCE4AC1930C9D6B73 /* RLMUser.h */; }; - 0E3BDF08D024BF6E661D4F954719BEB8 /* PreCompLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C79288B8A24B75EF43275EEC98B7C31B /* PreCompLayerModel.swift */; }; - 0E7A97BD7EA7026B0879CAAD82C7BC9A /* RLMAsymmetricObject.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C0FED741228AC6F1082122545FE41E8B /* RLMAsymmetricObject.h */; }; - 0EDF63B3A2C61F94E8716B73FABA19C2 /* RLMObjectBase_Dynamic.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 09D71E69DD8EEC68A303DEC5A62F8CA3 /* RLMObjectBase_Dynamic.h */; }; - 0F33E9998D00FE35957B87D8F5CB55AA /* LayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8269DA906E07ADE08B35580B4F592F6C /* LayerModel.swift */; }; - 0F66BB0F0515C22CF07887AD73317FC7 /* RLMDictionary_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = B56B086CF8E7AED19CF31B55325C7292 /* RLMDictionary_Private.h */; }; - 0FBB768B02824170DF603676989A63D2 /* RLMSyncConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD810A0A60C72F849CAE57ADC216614 /* RLMSyncConfiguration.h */; }; - 1059F6E4C81D4442F9A0443E56682D22 /* RealmConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE099A2B9C406127D5246FFAF359376C /* RealmConfiguration.swift */; }; - 10898F0876DA43B388807A679B6124B9 /* EffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3F17FC60596226EC31A4D2F8DFC2D01 /* EffectValue.swift */; }; - 10968D29FC6BC265C0B6D1B24A2FB5A7 /* DataExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51149948E322682EB2A96FDC07500B1A /* DataExtension.swift */; }; - 117A753CAB61836303AD4FAE1513D581 /* RLMAsyncTask_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 833154B62985F67515C31B2AA2330AB9 /* RLMAsyncTask_Private.h */; }; - 12324B853D877BEACFD6655D43C0195F /* DropShadowAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9A962B0C7C28A4C8E9E365C990238B2 /* DropShadowAnimation.swift */; }; - 125B9F1F3A0A82FD76305D09298F6BC0 /* DotLottieManifest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B0E424C5BE718BEBB7331557DD97946 /* DotLottieManifest.swift */; }; - 1264261A2DE5E83DFAC6D96FDE9A17D9 /* Realm.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 17C1EF69F6A0916C0B2F718EB507DE03 /* Realm.h */; }; - 127D768C00E02D0644E825FED6D4A8AD /* RLMObjectStore.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 9D2DC25EE3FE9F24ABFBA0B17D37180B /* RLMObjectStore.h */; }; - 13B5FCEFE1051075D694B06BD6345BB2 /* Persistable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB7C77B515A4E808E050D10702040954 /* Persistable.swift */; }; - 14D43C999C7BA4B062D8D348886913A2 /* EpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C6067A5582236B8B77411699779E2A3 /* EpoxyModeled.swift */; }; - 151EB8D6774DE5F91653CAA2B3A8E44C /* RoundedCorners.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C0AED73A85CDD249A514DEE140ACFD4 /* RoundedCorners.swift */; }; - 1556AA5AC192E119BA9B7A9C22BE860D /* ImageLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09E4764F51F7F9A5405C97C6EC40E92C /* ImageLayer.swift */; }; - 158FA05DD9B461D776FE3A6DC0677360 /* KeyedDecodingContainerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32C9D01175A77DFA83A9A97AB05DB591 /* KeyedDecodingContainerExtensions.swift */; }; - 163BE3484DDE34A40D0A16522F394367 /* RLMAsyncTask.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 789C70D2EC86868D1AECBBCF94043A79 /* RLMAsyncTask.h */; }; - 17463F4AA1D5861E79F652321E52BBFF /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4A2CA5DBF9C38E207D2BD40C4BD7ABD /* KeyframeInterpolator.swift */; }; - 176D3B91FAC936C77DCE6B663B33CDC3 /* RLMDecimal128.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E4211F97D893B0BF1B95850B33C1E90 /* RLMDecimal128.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 17DEC8D03E3CFEBF3C38FA2056D97C11 /* EpoxyableView+SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C982156A14473EA5ED7DA2A098DDFFC0 /* EpoxyableView+SwiftUIView.swift */; }; + 000A88211338215AF3DF62AB932AE19D /* StyledView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB6E082117EAA5550B3E9DEDBCDABBF9 /* StyledView.swift */; }; + 008B1A848FC7CF6D2B75633938403375 /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79D7323A191A7BB4DBD877679DAF9E34 /* ElementAt.swift */; }; + 00A4EC88D28933ABE1570F80CFF739F2 /* AnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC6261E53EEFCF4B54C6C520B216495 /* AnimationLayer.swift */; }; + 00BF14CDB53CA993FF69C1A38515DADF /* NodeProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EA252794E988A4C9FCD3B34822A7FD /* NodeProperty.swift */; }; + 00D2EA50D76FE77C68B05C6174F0E50D /* RLMObjectSchema.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 53D07AFF10B85B63F7A7DC9F61002DA2 /* RLMObjectSchema.h */; }; + 01534387642D40D6114D56DD816AA7D4 /* Ellipse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E09C7E726CEEB5A690031DEBB49EBFF /* Ellipse.swift */; }; + 0164F3A05EF99C22264D6A0806AB4E6C /* RLMSwiftCollectionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FA9A8B5146E7B57A486DD31990F6982 /* RLMSwiftCollectionBase.h */; }; + 016843CF5640E796F74D1C012561F1F8 /* URL+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00A3820C78A03CDAA16CEE40FDE77AB8 /* URL+ZIP.swift */; }; + 018FEF87EB4F7AB5C6C274A27B19DB57 /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2524B8617B08AB2A656F7418D1DDEE4A /* SynchronizedDisposeType.swift */; }; + 01BD2BEAB90425EBA4BDB2489136B27B /* RLMUser.h in Headers */ = {isa = PBXBuildFile; fileRef = A155549DBA438C9F4BB0C3C992A6A0D7 /* RLMUser.h */; }; + 01E4BF17E65E3032AA9697B88B38942F /* Font.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFE9890902C01B64B93AE7C884EAABD8 /* Font.swift */; }; + 01F440F099E84E401B62E5A92AC2CC57 /* PathOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66CCDA6A7125A9D0D3D2D243B972174A /* PathOutputNode.swift */; }; + 01F658414AAC04A52EF2DEAFE3F9F964 /* RxCollectionViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0507E765871BB0F57888BFBB4B633C36 /* RxCollectionViewDataSourceProxy.swift */; }; + 025A39D4E6152DFF0C75A24232D4A1D4 /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8F45E2526370D34D8CB0560E1F70F /* ScheduledItem.swift */; }; + 027535850FB09987C59072B38AD528E7 /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8789E4DE7A86BE9DD829E4DBC202758A /* ScheduledDisposable.swift */; }; + 02A9BD5CFEF8CF5CDE82D5F3C99595A1 /* RLMObjectStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 698BFA42B204199D37CB5E53E909E9A0 /* RLMObjectStore.h */; }; + 02C9A00076A6DF2A477B02695882CC3B /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCC3C15E10A3AC0B7184E35FC48695B9 /* InfiniteSequence.swift */; }; + 03CFFAB7B53DCDF2AB6C216E304C9846 /* RLMLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DAF5FF02F05131C60201C1763C7E268 /* RLMLogger.h */; }; + 03E97605D8057A57A4C32B5434C35BDC /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 617DEA92672783051240E1FFE806F044 /* AnonymousObserver.swift */; }; + 03EC58C4B7FEBA442A486619A69818F3 /* KeyframeGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 173E3847DEFFA607F791F653625122CF /* KeyframeGroup.swift */; }; + 0442CEDEA4243DD8629F664272A285DE /* KeyPathStrings.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA147900BE16AF6C402F21095E70956D /* KeyPathStrings.swift */; }; + 0472370E3CFB9E8A23DD51D83FC1C63B /* LottieColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B7990B7F93AA73E7BAAE42B7E241345 /* LottieColor.swift */; }; + 047B484D61F4C6B4BD6BF25BAD3539A9 /* Fill.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6546BC0E8DAEC6CB6861EFA203EE78D /* Fill.swift */; }; + 04D7A62FC4D8A761493E347FF1788FDF /* RLMEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C2E661C2432DD0A25D8C2D19A167BA /* RLMEvent.h */; }; + 04DFBD6C5C408F03AD5915BE93DCEE25 /* AnimatedProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = F93414B33AE0190AE2A34CF706072B37 /* AnimatedProviding.swift */; }; + 0552F966CFEE769B4DDBF36E4A97CDC8 /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E57A6187C5E85AE877C63DDDFF75F46F /* HistoricalSchedulerTimeConverter.swift */; }; + 05E370A5DBD095E075D058418EEF13C6 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63F4AC580AAA1CB01A72D26CF50CA2DC /* Map.swift */; }; + 05EC68A60F14F305F3AF79F800F133C3 /* RLMError.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F11366AB98A25F58850B09966C02A59 /* RLMError.h */; }; + 06220F282A31EE62FCA54014991D7293 /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = B91361BE65E8D40884D4F5C6F70B87C4 /* SkipUntil.swift */; }; + 06304E80795DA749417F68A31C6A4D74 /* Results.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75F34552B06DFAAE785C3233021FB661 /* Results.swift */; }; + 06358E068A2C99AE81BD71D78017CA21 /* RLMEmailPasswordAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 00B783BADD4A97412D43D5CB3132033D /* RLMEmailPasswordAuth.h */; }; + 064919A7AF5C55A72BF0CA110E2ED790 /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE701527182A0A865BEA3E87B73BEE4C /* HistoricalScheduler.swift */; }; + 065FB91DA48C722620A5537ABF326778 /* Infallible+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A3FE610C78F7724BDFCD7948A357C1E /* Infallible+Create.swift */; }; + 069A9ACE79DB3B4A3FBB96DEE22761B0 /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79564758F1811E6E67A015D4C8D83074 /* RetryWhen.swift */; }; + 06AC9ADBD882A1694D629C9D8AFC1A57 /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C2B93B794819BE45A0BB0D79DA25705 /* Amb.swift */; }; + 07B64FFC5BFD8F406E43A861EE34EC0A /* Decode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E13C10737BBF5AA3DD7ED4809A4E484 /* Decode.swift */; }; + 07C5FAA3384AED8B3A5D00EDC40EFCC5 /* GradientRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 737F86D1E6EF92051A6C142E02989157 /* GradientRenderLayer.swift */; }; + 07F261922769AA1165299B51787D22D6 /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3552A1395238920B84C2D2BD9220392 /* Query.swift */; }; + 084B91099B0AC64656DDD83692F611C8 /* UISlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52B57F7E8D39303188F76DF0623D9EC4 /* UISlider+Rx.swift */; }; + 08655D389BA5BB60C5135A9AAC131CC0 /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D73FE08A858EB34A9242BD4768E5864 /* AnimationSubview.swift */; }; + 087F5257F058E00EB0393CF849DA2573 /* RLMMongoClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7B557FD9BBE6CB69CBFF39A67240205A /* RLMMongoClient.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 09A22FE44483CD6DCDFCAE6A616D5B33 /* KeyframeGroup+exactlyOneKeyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48EC5F752EC122CD818E259A05364E76 /* KeyframeGroup+exactlyOneKeyframe.swift */; }; + 0A698206A12D7164659C1A50559626A6 /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7536E6E9B07BEB522685CA429E6B663 /* Zip.swift */; }; + 0AF5CF857933789515E0C3C9CF9734BB /* ShapeItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BE4962026DEFB8F3FA5EFE53F4B57F8 /* ShapeItem.swift */; }; + 0B084A2ED53F30E3F5C91705620FC5AB /* RLMAsyncTask_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 21002CFE410DEB8EFCA5CA8DC126F284 /* RLMAsyncTask_Private.h */; }; + 0B0BA5CC3A990576B958A46801FB5F30 /* Any+Equatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDE8252767700D860BEDA5F5A0CADA05 /* Any+Equatable.swift */; }; + 0B18B25A5051C779E3CCF50F950576B8 /* RLMProviderClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99BCDA54649359F69C8628B2DA7C3028 /* RLMProviderClient.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 0B3B59A97C85AE1077DAA6BBCA438998 /* RLMProperty_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 484A43A40FBAB3DD9B992F32AC2BA16D /* RLMProperty_Private.h */; }; + 0BDDACCC7E43790995F64290C6AD9173 /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9757F3F59B16B4D82E1F1DDBBA3BED8 /* GroupedObservable.swift */; }; + 0BE6A5DB343CA25E40C7B914FFB66592 /* ContentConfigurableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68FF112D57A44E9831B8BFB0A2818E70 /* ContentConfigurableView.swift */; }; + 0BFF58AA2577A3228C4B514B583310E3 /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9326B8E9A62BDAAB3D2CADB522F34A2A /* Sink.swift */; }; + 0C22A59184E2B9EE14CAD8EDE9EBDDF3 /* RxCocoa-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EC009036D9AAF3452B9437DA829D09A2 /* RxCocoa-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0C5A71CAA79B663315D69C979DCC12EA /* Infallible+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28EAD857D6F665FF1753560A487A0357 /* Infallible+Concurrency.swift */; }; + 0C6C747EC84D302031DF6C77D4B86A12 /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5511F3E60A4AB8F6178D91202EAD9E2E /* DispatchQueueConfiguration.swift */; }; + 0CBFBBC52B77AEDD220B219AFA55B4F6 /* KeychainSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B39E3456E1D6F5DDFBBC5285B092BDF /* KeychainSwift.swift */; }; + 0D4D6A12DF96CA2C08527FBFD7151D1C /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEE0B8B8E821374435C065BA3DEF65AC /* Dematerialize.swift */; }; + 0D6C52E690487D298703BC1EAA63C0B3 /* RLMUser.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A155549DBA438C9F4BB0C3C992A6A0D7 /* RLMUser.h */; }; + 0E3BDF08D024BF6E661D4F954719BEB8 /* PreCompLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 320B18CBFE6A398BFDC86E9426C64B16 /* PreCompLayerModel.swift */; }; + 0E64DC6957386DC96BD69871D5075183 /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA68685CC8D3587939F4D12D01B1E021 /* Never.swift */; }; + 0E730511A1994EE8552D5FFD3E229486 /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1BC9BC404D031AD4024077495C2D358 /* AtomicInt.swift */; }; + 0E7A97BD7EA7026B0879CAAD82C7BC9A /* RLMAsymmetricObject.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D6B4D134F48128AA95E47E6A0F6639BF /* RLMAsymmetricObject.h */; }; + 0E8B02B24E6D20525AC028EB4A9EC958 /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EA00BB965E2B2DC494C444FA7504D1E /* PublishSubject.swift */; }; + 0EA1FBBC8A3F5B8B3ACC7164E53C7796 /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76826A06FB116FCD4D9991A1F10DE38B /* SerialDispatchQueueScheduler.swift */; }; + 0ED8A20BF62953864A3CA64339815A8D /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 905176FECE64A18B0CBFBCD249924E68 /* RefCountDisposable.swift */; }; + 0EDF63B3A2C61F94E8716B73FABA19C2 /* RLMObjectBase_Dynamic.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6A309F3DB9563378927C7C2DDDE09C00 /* RLMObjectBase_Dynamic.h */; }; + 0F079036AE1DB0BB1AEF0B5FA154E848 /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3CA3D525AB28D70F09461825EF902E7 /* MainScheduler.swift */; }; + 0F1B0B9DA067670F3672FDA658D1D1D0 /* RxWKNavigationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85A3507B1D27127A4BE6D5F9BCF14676 /* RxWKNavigationDelegateProxy.swift */; }; + 0F33E9998D00FE35957B87D8F5CB55AA /* LayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD2052E50E103A95B8D3C61BDE85AB60 /* LayerModel.swift */; }; + 0F470287E09768EE0416E04720C43283 /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B445F7BDDB003E276EF07A3E46198AB /* Debounce.swift */; }; + 0F4F50A5582DF322D48C1EA8FEE6325F /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8067B38C5F0B08F34EB1AFFA11A5C63B /* Skip.swift */; }; + 0F66BB0F0515C22CF07887AD73317FC7 /* RLMDictionary_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 7B9A175EFA6655B6B26236CFF7067527 /* RLMDictionary_Private.h */; }; + 0FBB768B02824170DF603676989A63D2 /* RLMSyncConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = E7D1BDB455434610F24CF94AEEFFF63E /* RLMSyncConfiguration.h */; }; + 1010B62761CFAE48BD31A0E4018F5CBB /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 766CA7DDECB0DA0A29110034D044CA15 /* Queue.swift */; }; + 1059F6E4C81D4442F9A0443E56682D22 /* RealmConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29AFCE1F4685C353477EABA4E9E5A140 /* RealmConfiguration.swift */; }; + 10898F0876DA43B388807A679B6124B9 /* EffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 293E65997890C7C324639D4F0EE6231E /* EffectValue.swift */; }; + 10968D29FC6BC265C0B6D1B24A2FB5A7 /* DataExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1142DE1A28A340FBB65F49F670B20F89 /* DataExtension.swift */; }; + 10A0B72ED30154F85C0C8D4B2262F671 /* NSObject+Rx+KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF09F05A710C5513E4403D2F9D62C7D8 /* NSObject+Rx+KVORepresentable.swift */; }; + 1105A0A9EC686161407E31992013DD37 /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6614E2C4346C0A68F3F62F8C81547F7D /* Reactive.swift */; }; + 113A7B21C54D6861B578F10DBD54F21C /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BB43362235B43FFCD80AD7934201996 /* CombineLatest+arity.swift */; }; + 1171F0C211793BADBDA3C8DF8CD7048F /* Infallible+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90A853C515B74BCA67FB2403E017F713 /* Infallible+Bind.swift */; }; + 117A753CAB61836303AD4FAE1513D581 /* RLMAsyncTask_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 21002CFE410DEB8EFCA5CA8DC126F284 /* RLMAsyncTask_Private.h */; }; + 12324B853D877BEACFD6655D43C0195F /* DropShadowAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAFB3FC60B564C8861272AFA4855EBD4 /* DropShadowAnimation.swift */; }; + 125B9F1F3A0A82FD76305D09298F6BC0 /* DotLottieManifest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DCC5A137BE69716B67DA577D5C697C1 /* DotLottieManifest.swift */; }; + 1264261A2DE5E83DFAC6D96FDE9A17D9 /* Realm.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D0BB637647ACA09B72211510776DFA0D /* Realm.h */; }; + 127D768C00E02D0644E825FED6D4A8AD /* RLMObjectStore.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 698BFA42B204199D37CB5E53E909E9A0 /* RLMObjectStore.h */; }; + 135BD6CC14257CD0EFE77467A23842D6 /* UIApplication+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE9BA063794CE533B2B7560A89AFC667 /* UIApplication+Rx.swift */; }; + 137CE12130498555F0C0AF03E21B6AE3 /* RxDelegateProxyCrashFix.swift in Sources */ = {isa = PBXBuildFile; fileRef = C048D2127BA139AA1741D47D10CA0015 /* RxDelegateProxyCrashFix.swift */; }; + 13B5FCEFE1051075D694B06BD6345BB2 /* Persistable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98455DA568314130C33A99119A9337E6 /* Persistable.swift */; }; + 142B8792E6A83F6993155ABBA31F772D /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79564758F1811E6E67A015D4C8D83074 /* RetryWhen.swift */; }; + 14D43C999C7BA4B062D8D348886913A2 /* EpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1E52076AB010B535872F3E2290C5113 /* EpoxyModeled.swift */; }; + 15076E7056795128EEF46A9BAEC66F46 /* SharedSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC916E5E2006F4D20F74CF425C9B4159 /* SharedSequence+Concurrency.swift */; }; + 151EB8D6774DE5F91653CAA2B3A8E44C /* RoundedCorners.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB84DD00EB59156015A4179BC82E9964 /* RoundedCorners.swift */; }; + 1556AA5AC192E119BA9B7A9C22BE860D /* ImageLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E3FE0D532E85D150FE057DCCF553B6D /* ImageLayer.swift */; }; + 155FFF8C90A3B82CDD24CE51966A6BD4 /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A339C91569DC7EE930C0196E7AEAC5B /* RecursiveScheduler.swift */; }; + 158FA05DD9B461D776FE3A6DC0677360 /* KeyedDecodingContainerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDD4510330F3844965318013977AC5E5 /* KeyedDecodingContainerExtensions.swift */; }; + 163247BE8C8181DBC0334FF07370EE9A /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA68685CC8D3587939F4D12D01B1E021 /* Never.swift */; }; + 163BE3484DDE34A40D0A16522F394367 /* RLMAsyncTask.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FC73C73F8937B7141C246B6A71F8F916 /* RLMAsyncTask.h */; }; + 16444867D6B17DCB5BE7283DD28714CD /* RxCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F7C58947F0CD5F09656A535D5F16ECF /* RxCocoa.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 164864AA43F040C62C331940FADF822C /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33A287CDF23907C4B181476DAB8D5B90 /* SchedulerServices+Emulation.swift */; }; + 16BBCDC6EA9D28EAD4110D568AF6F8BE /* ObservableConvertibleType+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE0F67671B890B3CA6A7ED1BA5E34512 /* ObservableConvertibleType+Driver.swift */; }; + 17463F4AA1D5861E79F652321E52BBFF /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E37D861225A4D5733692E397AE12EA0 /* KeyframeInterpolator.swift */; }; + 175FFA5B7F65B72806629CD9BDB1FA43 /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33817E0FE756712586BF3DB3B090952D /* Completable.swift */; }; + 176D3B91FAC936C77DCE6B663B33CDC3 /* RLMDecimal128.mm in Sources */ = {isa = PBXBuildFile; fileRef = D575A7F18C29FCCFF8B1545856DA2F6C /* RLMDecimal128.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 17DEC8D03E3CFEBF3C38FA2056D97C11 /* EpoxyableView+SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7DFE11DACA5B8910EFD5063B96FF24 /* EpoxyableView+SwiftUIView.swift */; }; + 17E13A48E022F07BE92336D2C9488DD3 /* Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3128FBBACBC135964B73663F79EEB39 /* Driver.swift */; }; 17E5507F92F0DF1DD5C3AB12E53F559F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; - 186A9950AD2BC40A5E06896B3F3FFBC4 /* RealmSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 21541F1B08BA35ACDBF2E8B50E16D144 /* RealmSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 189009C8E5E5CD765B357ED19A6CEE19 /* RLMApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 362E791CE9F275451035B7C2B419365B /* RLMApp.h */; }; - 18982A87C93DD59D610F9C3F2B0CF6A6 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04D2BABA9DAA1291124D6779F6FB8EF8 /* Constants.swift */; }; - 189867E3F4E986179993DD3ABCC16607 /* AnimationTime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BD2F73DE053B358B886C9C26BBAB25E /* AnimationTime.swift */; }; - 189D57C35E8312EF727A1F7F43300B53 /* RLMObjectSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = A00353F8525EA3B62442B223AADD72B7 /* RLMObjectSchema.h */; }; - 193CAA8B3B118FA426CDF3C87664E974 /* RLMRealm+Sync.mm in Sources */ = {isa = PBXBuildFile; fileRef = DA3342EBCFFFC9D3E0DF0B8F3238DFDB /* RLMRealm+Sync.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 1980C714AA91288D891B1D1A4EC204C9 /* OutputFileStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F229391BED5F2EC5EC5BA7A7D3D921D /* OutputFileStream.swift */; }; - 19B2E30A5E939028D258D4EF00833C61 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5920B7E0E828FEA36AD51B02F3D79BDB /* Merge.swift */; }; - 1A69AEC8CC749389A385C6B8E42CABAD /* GradientValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2BB9B51803CCBE4888FF21C55A56D50 /* GradientValueProvider.swift */; }; - 1A949B9B7F1591690E8138D6B7FBB8D6 /* Archive+Writing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E89C352EC689DF0A293A254AB4E68E1 /* Archive+Writing.swift */; }; - 1AE31850261F971BBAE81FA9859C5DBE /* SortDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 345BF57E7A6974E0863A584F44BD485C /* SortDescriptor.swift */; }; - 1B5996D834C26D69BA373CDA48A86EEF /* RLMNetworkTransport.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56C8D581AD0FD2B2A1F908C122895CAE /* RLMNetworkTransport.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 1BD4BFDCB4734F61ECEFD90BBD45BE97 /* RLMRealm_Dynamic.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3B978AEC658DDE5A75121A241567BFAE /* RLMRealm_Dynamic.h */; }; - 1C26633042D373D65232B9774FFB94DF /* DotLottieFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92FD3E0F2EE69809E3B0C0B856061904 /* DotLottieFile.swift */; }; - 1C48FF8C98F113D2885F9AC5DC711058 /* RLMCollection.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D3643B180A19B837FD1DE977D09BCA95 /* RLMCollection.h */; }; - 1CA0567A035870C832DE6060E1C348A1 /* LinkingObjects.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EB9B24C47B95FAB2ADE50E14360ECFC /* LinkingObjects.swift */; }; - 1D32995BC2018332D9E0571C219D20BD /* InfiniteOpaqueAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5821D18880FB3447E85F69FB2F270E8D /* InfiniteOpaqueAnimationLayer.swift */; }; - 1DCEF06012900769CDB233459597E17A /* RLMCollection.mm in Sources */ = {isa = PBXBuildFile; fileRef = D546DFEF778883664723A59336AEC8FF /* RLMCollection.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 1DECAD58520BFD21C0B6090177B37DB3 /* GradientStrokeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 805237E7AC265D9A395D62B5BC8FA63F /* GradientStrokeRenderer.swift */; }; - 1E563604E3C43CD98D2CFC150359E536 /* RealmCollectionImpl.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54E140483DF843DB253894534DBAB6CB /* RealmCollectionImpl.swift */; }; - 1EBCADF464B5D6A91EA859D7F533959C /* LottieView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBF988A3DF82940B3C0192114590B5B7 /* LottieView.swift */; }; - 1ECA5F3D8BF1CC95397CD6A8F76CC476 /* Mask.swift in Sources */ = {isa = PBXBuildFile; fileRef = B501CE6BCA6B0524C8FEF6B6385B9595 /* Mask.swift */; }; - 1EDCFCAC99F02B709A1DA5181A6B3BE3 /* IndexChangeset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 720CC4DA7103B1758B86E260455C8A8B /* IndexChangeset.swift */; }; - 1F59E2EDE8BB7806133ED73D31F1CAE7 /* RLMProviderClient.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 284D6587AF8EC278DC8096038654181D /* RLMProviderClient.h */; }; - 201DF0685280223F72A0EE804C42DFBF /* RLMFindOneAndModifyOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = B130981C1333EAD8EB807AD8C0E6363D /* RLMFindOneAndModifyOptions.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 2055FEC99390853B8B20133A790FE771 /* Trim.swift in Sources */ = {isa = PBXBuildFile; fileRef = 124B2E4AC262422515FBB166C49D35A7 /* Trim.swift */; }; - 2100DC7E5EF21FFE347446D5DCF8D8B7 /* RemnantDataMigration.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7A6D8665EB789F31C2510EC9ECF8796 /* RemnantDataMigration.swift */; }; - 21640959E9CE3D99AB3E64D6B1476FE0 /* RLMFindOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = C29D41A0880A28EA8764059BCCA64CDE /* RLMFindOptions.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 243CCA73AB0DA0E6177D2427F7FE76B9 /* MacOSLifecycleMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B77C9EAFB14E78BFC7C0880D19FF3BE /* MacOSLifecycleMonitor.swift */; }; - 24799E6107E335930E0F695551F0F9E3 /* LayerModel+makeAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE9805BE277706C04C79D1293FFBAE8F /* LayerModel+makeAnimationLayer.swift */; }; - 24C7A2FF974C2EFAF6381888E21945A7 /* CAAnimation+TimingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08AB171B9CEBE1ECC55F8BB91865720C /* CAAnimation+TimingConfiguration.swift */; }; - 25288A0E049B582F8B97030FC89F2188 /* NSError+RLMSync.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F96C9DDBCF215AF301733D358E2CE465 /* NSError+RLMSync.h */; }; - 252CC3FFD233D0E687BBE6928E710F46 /* RLMAsymmetricObject.h in Headers */ = {isa = PBXBuildFile; fileRef = C0FED741228AC6F1082122545FE41E8B /* RLMAsymmetricObject.h */; }; - 25F378F390278B8BD236B4B175D4BD17 /* RLMCredentials.mm in Sources */ = {isa = PBXBuildFile; fileRef = E55E357BB672D63E90EC8898484AC67C /* RLMCredentials.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 25F3F292FF644A128DA6ED70F562BFE6 /* RLMProperty.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5D5804F7360B1AFD2297318E038B57FD /* RLMProperty.h */; }; - 25F79F5BC37037AA59319A668C60FE7F /* lottie-ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CED23268033B0BBB22087F3A42F3FE45 /* lottie-ios-dummy.m */; }; - 2670A5A2789DA3553D275F63297A52F1 /* RLMEvent.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = EE276FBCF3332109045CC95F9FA881DF /* RLMEvent.h */; }; - 267A15995369158948DEEE31FA523BFB /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5020B6635D944C62EAAFEA829F36DA79 /* Configuration.swift */; }; - 270395931E472A42991C9BE27EACAF09 /* RoundedCornersNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41ABCD51562CEBF5C24327A3F14EF54 /* RoundedCornersNode.swift */; }; - 273E1071A9C053F77E25DDE31C9F36B1 /* RLMSwiftSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C6F3C466944FBE6898A6A3E11A14E83 /* RLMSwiftSupport.m */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 27C6414300533AB312AEC4C40CDAA341 /* RLMMongoDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 506E8F1E71CCF2EE831C4E9269BE39A1 /* RLMMongoDatabase.h */; }; - 28019C2739FEF78BF07E9CBB569E80A0 /* KeypathSearchable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEBB74F68756AD34AC2A250E4E1C1B92 /* KeypathSearchable.swift */; }; - 287B181CE2842B8EEB1700CCA7CA664E /* RLMValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB29DA96ABCB8A75A63976F1B58C255 /* RLMValue.h */; }; - 28AE9A2EFD595E0BAACB8512286848C9 /* NodePropertyMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5E2555A00D1BD031DCBBF6BB99A152A /* NodePropertyMap.swift */; }; - 298946030A825D7750016DCAFEE23039 /* RLMSchema.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 974A6CD926D99083E9EFF66C0DD242AE /* RLMSchema.h */; }; - 29C7AB9EE67DB83850C75692523842D4 /* RLMSectionedResults.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7C8226AF0B799590D452B148F40108EF /* RLMSectionedResults.h */; }; - 29F8FB9F7431486518FD5FFF41A6D64B /* RLMRealmUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = E9B5CBDDCD883F275CE4AF17B372EEF0 /* RLMRealmUtil.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 2A46E2BCEE9BE37DB10DF4D454B07F79 /* RLMSwiftValueStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88EB86CBC697B67142CB037AE2F45B18 /* RLMSwiftValueStorage.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 2B1A964A2AF4B39439A8C7B7E3DF1811 /* RLMBSON.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 81037120FA84062A4F85FDD304978928 /* RLMBSON.h */; }; - 2BF92AC802D5B4E2D986F41990C81C7A /* RLMSet.h in Headers */ = {isa = PBXBuildFile; fileRef = D18F56833C06C6B1614FF524C37B3444 /* RLMSet.h */; }; - 2C25F4BBA315332B8BAE0AD1BFB7CF21 /* TextDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = 254EE68875321ACB4D0CAA3BB91B962B /* TextDocument.swift */; }; - 2C42FC3D2DE97614EAC0B66EDD7CCC11 /* RLMConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 228B1B220EEF798328F7F07F4748F621 /* RLMConstants.m */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 2C7492344C6598F8514582D5B34F6956 /* ObjectiveCSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27AD08B92FC78443B81F00E6E71D42B3 /* ObjectiveCSupport.swift */; }; - 2CA823A0284D819B4E8F7E23A98D0625 /* RLMSyncSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E5D515FC98234DDC41C559456D9552 /* RLMSyncSubscription.h */; }; - 2D451642AC755B81FB7B564B7DA6B871 /* RLMRealmConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A658241EA986A3969EBFFA0F91D9A95 /* RLMRealmConfiguration.h */; }; - 2E389380CD3D227C846806A5193FE401 /* EllipseAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD8506EF9825DFAAE461A106A7ACCF84 /* EllipseAnimation.swift */; }; - 2E9DCF5DE252DD97076AFC91842225CF /* AnyRealmValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7C53B0237EB3D348DD7C41E2D76172E /* AnyRealmValue.swift */; }; - 2EEF4C16927E7154B69239A93C452C72 /* StrokeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C7259EE447CBCE0DD214636A467ECCB /* StrokeNode.swift */; }; - 2EF91AF0889342D1B81D1DEA288D7415 /* RLMSyncManager.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0DAA3A902B9505851FBB229E534EC06A /* RLMSyncManager.h */; }; - 301E11573A01EEC55F01DD8AF3345675 /* RLMRealm+Sync.h in Headers */ = {isa = PBXBuildFile; fileRef = C49CB281974AEFEEAE2C1D34E7003C8C /* RLMRealm+Sync.h */; }; + 183AC0D556D9B5F874A211A70AD98386 /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 001C89D783603103D2E7A4C3CFA41F70 /* Buffer.swift */; }; + 186A9950AD2BC40A5E06896B3F3FFBC4 /* RealmSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 59422AC4EACCBAC57E3F8C9C6275975C /* RealmSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 189009C8E5E5CD765B357ED19A6CEE19 /* RLMApp.h in Headers */ = {isa = PBXBuildFile; fileRef = E87A4DD1639C457A4A2D92A34EE8F890 /* RLMApp.h */; }; + 18982A87C93DD59D610F9C3F2B0CF6A6 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D92C17858E9E389FC709AD83574483 /* Constants.swift */; }; + 189867E3F4E986179993DD3ABCC16607 /* AnimationTime.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12F326CB79AB386EFBE87BF3ABD80B7 /* AnimationTime.swift */; }; + 189D57C35E8312EF727A1F7F43300B53 /* RLMObjectSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 53D07AFF10B85B63F7A7DC9F61002DA2 /* RLMObjectSchema.h */; }; + 193CAA8B3B118FA426CDF3C87664E974 /* RLMRealm+Sync.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2EB8F30305326AAE5CE8DC030D27341E /* RLMRealm+Sync.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 1980C714AA91288D891B1D1A4EC204C9 /* OutputFileStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C8EEA342550F39A48E1EBE4E01F0DEF /* OutputFileStream.swift */; }; + 199EA0A4D1BFC87B7C43B51965C83655 /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E980EBFB951A592001CC3959EE5FAA8 /* DistinctUntilChanged.swift */; }; + 19B2E30A5E939028D258D4EF00833C61 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60FEA4AC2EA1588C3E8AABDEDAE496DF /* Merge.swift */; }; + 1A0855D726B9D26FC479D2A9ADD4632F /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 542D4F6DAA524F814249BE56DB9958E8 /* Enumerated.swift */; }; + 1A69AEC8CC749389A385C6B8E42CABAD /* GradientValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC4C21678DC6B14D8B8958BC10D2A65 /* GradientValueProvider.swift */; }; + 1A949B9B7F1591690E8138D6B7FBB8D6 /* Archive+Writing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 326EC037910377400A172281549D8836 /* Archive+Writing.swift */; }; + 1AE31850261F971BBAE81FA9859C5DBE /* SortDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E8DF07037286B52929BB877BC5E0D93 /* SortDescriptor.swift */; }; + 1AEEDC67160E4073806165FF1D7967D5 /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78B4E82CF62895788A7B3D5992375750 /* Delay.swift */; }; + 1B48C0DE9C0DDE239323752F75E47B7F /* TestableObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 093D1D2DDAC4C8513E1C43D727F9AFF7 /* TestableObserver.swift */; }; + 1B49AE8DD19D300E0C3FE52EF2AE0EE7 /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 886B4D73AE46A1BBBE9A4A6534810DE6 /* VirtualTimeScheduler.swift */; }; + 1B5996D834C26D69BA373CDA48A86EEF /* RLMNetworkTransport.mm in Sources */ = {isa = PBXBuildFile; fileRef = B7D0C08E5F29DC6B1C176F160CBD7B9F /* RLMNetworkTransport.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 1B59AB6F6D9EDC1845F341EB3C6E1A29 /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC151FA6EAFD79A22D7FF0FD706471CD /* Completable+AndThen.swift */; }; + 1BD4BFDCB4734F61ECEFD90BBD45BE97 /* RLMRealm_Dynamic.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 978E1DF510A74CBC691BBF6747026B95 /* RLMRealm_Dynamic.h */; }; + 1BE3AE5164B048B17D43EFB91D7E1B99 /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 489E13F9C9A49223BA899CB2185DB0E0 /* ScheduledItemType.swift */; }; + 1C26633042D373D65232B9774FFB94DF /* DotLottieFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 080E3DAADC464CFFE0A29EC93335E2AF /* DotLottieFile.swift */; }; + 1C48FF8C98F113D2885F9AC5DC711058 /* RLMCollection.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4C9CCEE533A70708EB5148DE16AD7DA5 /* RLMCollection.h */; }; + 1CA0567A035870C832DE6060E1C348A1 /* LinkingObjects.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1EB55E74FF4247AABDDAC2CAB7110BA /* LinkingObjects.swift */; }; + 1D32995BC2018332D9E0571C219D20BD /* InfiniteOpaqueAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FAFE68880171E3CC3FBBB914C86A080 /* InfiniteOpaqueAnimationLayer.swift */; }; + 1DBA6C930595CD6C2CC041005E9B9C61 /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29F186411B51C5CA7F3532645C8F1A1D /* ObserveOn.swift */; }; + 1DCEF06012900769CDB233459597E17A /* RLMCollection.mm in Sources */ = {isa = PBXBuildFile; fileRef = C2892D88E72EF8D62CDFBFEE3592E295 /* RLMCollection.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 1DECAD58520BFD21C0B6090177B37DB3 /* GradientStrokeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D29A6FB309921AE9EA720BB76ABEAB0 /* GradientStrokeRenderer.swift */; }; + 1E563604E3C43CD98D2CFC150359E536 /* RealmCollectionImpl.swift in Sources */ = {isa = PBXBuildFile; fileRef = E72CCAF8F4D7F43385D6CE14A0699C93 /* RealmCollectionImpl.swift */; }; + 1E88A2A1149210CBD1CB6B86E369C7B5 /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3FBF547E580E4FC8AB88FC2CDD9A1DE /* AddRef.swift */; }; + 1EBCADF464B5D6A91EA859D7F533959C /* LottieView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A554A32E418FC10C23AD8F080689E9C0 /* LottieView.swift */; }; + 1ECA5F3D8BF1CC95397CD6A8F76CC476 /* Mask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14C3792B6C65D381BA5DC74A926B44F2 /* Mask.swift */; }; + 1EDCFCAC99F02B709A1DA5181A6B3BE3 /* IndexChangeset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5481F20B58F92702E54D874B50ECA7D7 /* IndexChangeset.swift */; }; + 1EEC882449ED888292291455510BFE57 /* Infallible+CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 658D33CBEE3802F725B0B71ADA30B5F2 /* Infallible+CombineLatest+Collection.swift */; }; + 1F046DED206B870C824BC89C72F721C1 /* Pods-AVIRO-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 658847CBA4BD2A4A00A095E26C7AB063 /* Pods-AVIRO-dummy.m */; }; + 1F59E2EDE8BB7806133ED73D31F1CAE7 /* RLMProviderClient.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C7E83A4A27FA925BE4FEB9ADA5F728E3 /* RLMProviderClient.h */; }; + 1F7199B62D469DC89689CB876FDD9BEA /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0530EB68CD3A5FFF1445CF240CD7AC9C /* First.swift */; }; + 1FA5A38DFC3D32A6FF04541229FD26F1 /* Infallible+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C1F3EEF57325228E9B5EDEF351D71F0 /* Infallible+Zip+arity.swift */; }; + 1FBFA46E0B99A48D4820953DD3D02E19 /* UINavigationController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C722734DEE24D06DD61B676728E5CB6 /* UINavigationController+Rx.swift */; }; + 1FFC48F1E0EE3BBAC03DFC1647822997 /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56D4C900CAF2C4B91296DD66FC5771E8 /* ReplaySubject.swift */; }; + 200304C1B8C5457625AFF7D1423B7756 /* UISearchBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFDBE9AA99AE07260CFC19D2359A2771 /* UISearchBar+Rx.swift */; }; + 201DF0685280223F72A0EE804C42DFBF /* RLMFindOneAndModifyOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3873FE8C1BAE8EA9F84CECEC532EEF36 /* RLMFindOneAndModifyOptions.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 203C3C1C7366967D94560B775937E0C6 /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = A45B0B58FCA1E2DDE29C1A6302CB69F0 /* Debug.swift */; }; + 20408617EAC0F466177F09B9D5E54659 /* Resources.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BF6A9A3156B18B18D3C97D7DE51E4D6 /* Resources.swift */; }; + 2055FEC99390853B8B20133A790FE771 /* Trim.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3406ACB3F57C7E5649323D6C6820198B /* Trim.swift */; }; + 2100DC7E5EF21FFE347446D5DCF8D8B7 /* RemnantDataMigration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35CCC1434540731CDBAF79935A704E67 /* RemnantDataMigration.swift */; }; + 21640959E9CE3D99AB3E64D6B1476FE0 /* RLMFindOptions.mm in Sources */ = {isa = PBXBuildFile; fileRef = CE931BBBAFE00A93818E68E4FAEBB3BF /* RLMFindOptions.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 219610984D2B62170858D885E9F76D13 /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00DEAEEC4AFDAE05C3346AB6E0DAF888 /* AsMaybe.swift */; }; + 222E1EA7765B64B49AB7D8116FF432B0 /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8AC584904870CA21904B1FFE4637AC /* Scan.swift */; }; + 2230398E54F695DE9CDD6CEA8B08EA12 /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = E867D8AAE484D20063E19781169F0E87 /* Single.swift */; }; + 2233858A1D70DDBE6346A3D5AFD80837 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C9E0DC21A244F8845AC5596F2BFC818 /* Utils.swift */; }; + 22E09CD84D6A8DF43BD3A9C5269274D0 /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00F13883E034FF5F6469AC7881E0E8DA /* Producer.swift */; }; + 239B59395A93B2A17B9AB852BD537D9B /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A6BD5DD7881558307B6D2677423235F /* Bag.swift */; }; + 23A2861943A80395A6C42C77F7138549 /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B445F7BDDB003E276EF07A3E46198AB /* Debounce.swift */; }; + 23E2425A70DFF13DE1B2036DA6D447FF /* RxTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70E903356FEAF3CE7F96AA1E83054836 /* RxTest.swift */; }; + 23F03C671E695EA3F737A28E9F19DB56 /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DDC9947324414FDA1DFFCADDAD76D11 /* AnyObserver.swift */; }; + 243CCA73AB0DA0E6177D2427F7FE76B9 /* MacOSLifecycleMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0911A46972A0804532B1EB39A36956 /* MacOSLifecycleMonitor.swift */; }; + 24799E6107E335930E0F695551F0F9E3 /* LayerModel+makeAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25DFF6DE948D39473A1D9F16881771A2 /* LayerModel+makeAnimationLayer.swift */; }; + 24C7A2FF974C2EFAF6381888E21945A7 /* CAAnimation+TimingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 159F11CB5886E26E6EED644302523D6A /* CAAnimation+TimingConfiguration.swift */; }; + 25288A0E049B582F8B97030FC89F2188 /* NSError+RLMSync.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 632967D471BAB6EC4B3E6B6AE2A90596 /* NSError+RLMSync.h */; }; + 252CC3FFD233D0E687BBE6928E710F46 /* RLMAsymmetricObject.h in Headers */ = {isa = PBXBuildFile; fileRef = D6B4D134F48128AA95E47E6A0F6639BF /* RLMAsymmetricObject.h */; }; + 25F378F390278B8BD236B4B175D4BD17 /* RLMCredentials.mm in Sources */ = {isa = PBXBuildFile; fileRef = ED7C4E0654D6EC2A2FBE08C20B3A4978 /* RLMCredentials.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 25F3F292FF644A128DA6ED70F562BFE6 /* RLMProperty.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1E621465D080F278E6D740E46A7B4281 /* RLMProperty.h */; }; + 25F79F5BC37037AA59319A668C60FE7F /* lottie-ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CCB6DF8D2FA430DCAB065BB9FA4C9E07 /* lottie-ios-dummy.m */; }; + 2670A5A2789DA3553D275F63297A52F1 /* RLMEvent.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 48C2E661C2432DD0A25D8C2D19A167BA /* RLMEvent.h */; }; + 267A15995369158948DEEE31FA523BFB /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB22CA870029FC140B876EFE6D0F9BB0 /* Configuration.swift */; }; + 268C56EB3E2E871154DF0E8255C8A326 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = A03687A3412C638DE09B487BEEC8A1D6 /* Platform.Darwin.swift */; }; + 270395931E472A42991C9BE27EACAF09 /* RoundedCornersNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45526FFF222A2E5969146ABF5A327F10 /* RoundedCornersNode.swift */; }; + 273E1071A9C053F77E25DDE31C9F36B1 /* RLMSwiftSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E40862F077B18F4CB8BFC34B36E8168 /* RLMSwiftSupport.m */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 2767FED0432C2C1ABBC5A7EBA9002980 /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82DE3091E5BE0D921D4F3EF97C9A65D7 /* Catch.swift */; }; + 27C6414300533AB312AEC4C40CDAA341 /* RLMMongoDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A1B10972E31354EE3F67D1784964F02 /* RLMMongoDatabase.h */; }; + 27DDCE38C1BADCBBFE79C72BDC4F6E25 /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB7EC37C4BE56170B8B4CD52173041F7 /* DelaySubscription.swift */; }; + 28019C2739FEF78BF07E9CBB569E80A0 /* KeypathSearchable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D62AC1C83B72512C076016BA92DC3350 /* KeypathSearchable.swift */; }; + 287B181CE2842B8EEB1700CCA7CA664E /* RLMValue.h in Headers */ = {isa = PBXBuildFile; fileRef = A64F36E5169979F2F7E2A0E0AE65FE51 /* RLMValue.h */; }; + 28AE9A2EFD595E0BAACB8512286848C9 /* NodePropertyMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = A46E7B2BE1CD0443BEDE5F437E569352 /* NodePropertyMap.swift */; }; + 2960AF44887F543F27EAA56C95DBC9D9 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C3846393F8E723E42C1597F915A52AE /* Errors.swift */; }; + 298946030A825D7750016DCAFEE23039 /* RLMSchema.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 385A3507E7FA129668D715BA74A205CF /* RLMSchema.h */; }; + 29C7AB9EE67DB83850C75692523842D4 /* RLMSectionedResults.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A74C81B22B3AC313A6F125A6BAD0F154 /* RLMSectionedResults.h */; }; + 29F8FB9F7431486518FD5FFF41A6D64B /* RLMRealmUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0384A5E816EF230B477D6D01ADBAFD7D /* RLMRealmUtil.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 2A46E2BCEE9BE37DB10DF4D454B07F79 /* RLMSwiftValueStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = E802536029710822E45FFFAC1F47FFDB /* RLMSwiftValueStorage.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 2A6FFA4C0FD1E68F1D75E79E9ACA1979 /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70633AE6ED6BF0C393657353D12AB6E7 /* Zip+arity.swift */; }; + 2A98A1F6D0A0F47E495E9BB0682C3D78 /* KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2FBB38EE5A39812BFD4E917BDA2FA6E /* KVORepresentable.swift */; }; + 2AF70D936CB3D6C26E6CD5703A52042E /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F9D4D1472F8B8771747127A4DA448A5 /* GroupBy.swift */; }; + 2B1A964A2AF4B39439A8C7B7E3DF1811 /* RLMBSON.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 118145025830CC5ED1D8B8542651CE7E /* RLMBSON.h */; }; + 2B43EBEA12E620A01E90ACB739FDA06D /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8AF0097E65B9B2347C526BF3C611D86 /* DispatchQueue+Extensions.swift */; }; + 2BF92AC802D5B4E2D986F41990C81C7A /* RLMSet.h in Headers */ = {isa = PBXBuildFile; fileRef = C23383D690CCBB1C3C427F376EA4AE65 /* RLMSet.h */; }; + 2C25F4BBA315332B8BAE0AD1BFB7CF21 /* TextDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = C24DCE192033AC4D6E1C2AC287E6D20F /* TextDocument.swift */; }; + 2C42FC3D2DE97614EAC0B66EDD7CCC11 /* RLMConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F466807AFB0D67AB2617BF836B3A4FA4 /* RLMConstants.m */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 2C52A87169E1ACC4028E4D34C78B6768 /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F86C6BD69088682E7DAEC4758D18E02E /* SkipWhile.swift */; }; + 2C7492344C6598F8514582D5B34F6956 /* ObjectiveCSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7217FA6A0946DD0FF2D1F894B552E719 /* ObjectiveCSupport.swift */; }; + 2CA823A0284D819B4E8F7E23A98D0625 /* RLMSyncSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = E372A7FE022080FC8C96158C85665B48 /* RLMSyncSubscription.h */; }; + 2CBAEE4DD70AE7982CC3915915F5119A /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DDE0B23CEE99EAD7DCBA6215EF6E0FE /* Merge.swift */; }; + 2CD3775E0486F7B1C973E90EDD29A124 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63F4AC580AAA1CB01A72D26CF50CA2DC /* Map.swift */; }; + 2D1D46A9B70AF19FE0978F4B0399AAE7 /* ObservableConvertibleType+Blocking.swift in Sources */ = {isa = PBXBuildFile; fileRef = A64C834AAC6C0727CCC123AF14C84B71 /* ObservableConvertibleType+Blocking.swift */; }; + 2D3806DFB069BA12BAEC34A0AA296501 /* TextInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF3165382A66DA196C34ACCB96F6AFA1 /* TextInput.swift */; }; + 2D451642AC755B81FB7B564B7DA6B871 /* RLMRealmConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = E18B947D96079060FD81A44AA56758C0 /* RLMRealmConfiguration.h */; }; + 2D8F4FE8EFAA47FD719FCD16038D6049 /* _RXKVOObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = C13E6157035ECC8DAEFB457CBB6FBD73 /* _RXKVOObserver.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2D924CC5836A833E85688DDD9272E1ED /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB825B25516F0A88B6ABB051A0A124C6 /* ImmediateSchedulerType.swift */; }; + 2DC65A03526D2A7086C62B34B34F6E67 /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F1377AE2A018374F7E38102DAB38EC1 /* SingleAssignmentDisposable.swift */; }; + 2E223DDF4B5CC9AE5E4CB1AAAC892E1E /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B94C2ED02DE7D7EAE9480419D066AA5 /* CombineLatest+Collection.swift */; }; + 2E389380CD3D227C846806A5193FE401 /* EllipseAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 263AC5F3B02CB153AC663322D192767D /* EllipseAnimation.swift */; }; + 2E743BE5294D121EFCE82E3AB597EF40 /* Infallible+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A3FE610C78F7724BDFCD7948A357C1E /* Infallible+Create.swift */; }; + 2E9DCF5DE252DD97076AFC91842225CF /* AnyRealmValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1839A7C9E05304AC8ADC0CDC54D26DFF /* AnyRealmValue.swift */; }; + 2EEF4C16927E7154B69239A93C452C72 /* StrokeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED1C9A4979104E0884B5ACF57A3F3DC9 /* StrokeNode.swift */; }; + 2EF91AF0889342D1B81D1DEA288D7415 /* RLMSyncManager.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 03F464E083C39261ECF027662E19A9F7 /* RLMSyncManager.h */; }; + 2FB2EDA4DE035DFE96FAEB12B978F5FE /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76826A06FB116FCD4D9991A1F10DE38B /* SerialDispatchQueueScheduler.swift */; }; + 2FC0553D2BC00C6C769F289944E5F546 /* RxCollectionViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43554CB77F289DCD321EA65CF223F0E2 /* RxCollectionViewDelegateProxy.swift */; }; + 300641EE1BB2AC2A1552FA423147BF57 /* RxCollectionViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF58C55710814E316DACF05BBD80E384 /* RxCollectionViewDataSourceType.swift */; }; + 301E11573A01EEC55F01DD8AF3345675 /* RLMRealm+Sync.h in Headers */ = {isa = PBXBuildFile; fileRef = DE10937CD839AEA9524A2518C0777C86 /* RLMRealm+Sync.h */; }; 303D08D6D79CED2333F95CD0B2A5FE43 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FC44524D343C3B738F0361E1E8AE2679 /* QuartzCore.framework */; }; - 30E832A6E54FCBA6BCC6CB16671A697D /* RLMEmailPasswordAuth.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 38E8B63753C1AD73A83768029CBE7644 /* RLMEmailPasswordAuth.h */; }; - 312372C97D4A2DEBEFA13A38A354D4E1 /* SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D896D2CE745628D60142BD18648F651E /* SwiftUIView.swift */; }; - 3177979DD85089C9E20FAD62CA9C65DC /* UnitBezier.swift in Sources */ = {isa = PBXBuildFile; fileRef = A48287ED8D9BE2766B6B2E9854F74AE0 /* UnitBezier.swift */; }; - 31973530C043C3DBFF6B515AAF509695 /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A73ADB60C2075A36EF84CBE1D2968 /* TestHelpers.swift */; }; - 327594FD12BFD5A6282F157EE3B04A5C /* Archive.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9B26D7A37150A621803CC4ECD6148C5 /* Archive.swift */; }; - 32C6E8F469B4E195C59FC25D8F4F8C79 /* RLMSchema_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 8EED4CEC8AE255627390E14EDE98E742 /* RLMSchema_Private.h */; }; - 33BF9D4F523B37BC98DEFFA47E53D607 /* RLMProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5804F7360B1AFD2297318E038B57FD /* RLMProperty.h */; }; - 33E19DC5B0C4219F9DBA3DA065C3D2D5 /* RLMSwiftCollectionBase.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1A2D2114E31871657FE302286DD016BC /* RLMSwiftCollectionBase.h */; }; - 33F84AB110CBE7AC7E71C170D50E9D10 /* RLMMongoCollection_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AF0A386C8092B507B15FA8A2127FEAD /* RLMMongoCollection_Private.h */; }; - 347A1FB037B7D10E6628063D711AC3E1 /* Archive+ReadingDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B9EAFB29D1AEDEC2476EF9BCEF10219 /* Archive+ReadingDeprecated.swift */; }; - 36191DCA721346837807FBE0CB82098F /* RevenueEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF14EEE6E52252AC0AEB54C461201B98 /* RevenueEvent.swift */; }; - 3696CAB97D3EB3CA6EFC0C17636CE1E8 /* EllipseNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1B5F4282E471ECDF371D05BCABBC968 /* EllipseNode.swift */; }; - 37E48B8E5D889A05DFFBF70B5C690A85 /* ViewDifferentiatorProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 057EC2EEA5E7C976C06767E28176CD8D /* ViewDifferentiatorProviding.swift */; }; - 37EA332A08F6CBE514EF8892A1A4B6EC /* DidEndDisplayingProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9158E2D888C99B5045412C1315BF8621 /* DidEndDisplayingProviding.swift */; }; - 37EC024F54023B0D698A37C47122C953 /* KeychainSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 066D2D776758CFE74C85E3D772FA7E77 /* KeychainSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 37EC5BBA3E913B89AFE9B8C24303EE69 /* RLMArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 22EF2607C1AAA9034F4A42D29369F482 /* RLMArray.h */; }; - 3852DA002C2FF5588B5F2626BDCB5085 /* RLMEmbeddedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AC66256EC7E6F0C0557B2A91F069F6 /* RLMEmbeddedObject.h */; }; - 390D21C9E0D7DD44D749F09795729457 /* LayerTextProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCC2F218AAFF8A5E4DE851A4AF6DDD9E /* LayerTextProvider.swift */; }; - 3939E6C5CD760878B796A6A053B9BD37 /* RLMObjectBase.mm in Sources */ = {isa = PBXBuildFile; fileRef = 874CF215F44323A34846CA3BB9A470DC /* RLMObjectBase.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 39901C4D4268B4A4DCEFFEAAAF86F485 /* RLMLogger_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 63EBA32DB11EF7F034BAF85CAE6122C4 /* RLMLogger_Private.h */; }; - 39EA99A31B37C65E005202F18FBB2782 /* Aliases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 329F2013C14436462A221BEB5CFF4A40 /* Aliases.swift */; }; - 3A75FB721E56403663773C781BABB475 /* BaseCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C4C84C0A05071A9B44745CD753281C3 /* BaseCompositionLayer.swift */; }; - 3A80C5008C51C472DD9EEF65A04F1F74 /* RLMUUID.mm in Sources */ = {isa = PBXBuildFile; fileRef = AE608F7BD3F4149C14478C007723CFA6 /* RLMUUID.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 3AD8FE611A556A57CE41ADD818D03642 /* AnyEquatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 480D4B7900FABAD0FBBD57547E2B02AD /* AnyEquatable.swift */; }; - 3AFDFE59945839EF74639D0FCB06D8A0 /* RLMQueryUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = D5009CBC0719F1C6822BD50856E2B517 /* RLMQueryUtil.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 3B021A9BCDEEED24254C605DECBB69F0 /* RLMScheduler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 290FE647FEF822E128AEDE79660ED915 /* RLMScheduler.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 3C602CF707CD328CDF0AB2C0E6E8E714 /* HttpClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F628152A7FB37640E0C30BEA6AEAF48 /* HttpClient.swift */; }; - 3C6886B7C7A89AFEA13AE77D9B52F529 /* RLMMongoCollection.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6E45824F06596F9F9686E5817F46D71D /* RLMMongoCollection.h */; }; - 3C7C51B018CEE9A67A5C7D5F400A1B21 /* RLMSwiftProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 070563A556DAB724FCE32890BA09BB10 /* RLMSwiftProperty.h */; }; - 3D9CE1B8CE0417B207F5ADE1DEC9650A /* TextLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3476C0A1F926CCE2B98EF022022E81D /* TextLayer.swift */; }; - 3DEA6C28288178B4E5641631DF7B72CA /* Star.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D7399E1BF7C287B095EC1E8B6E35CB9 /* Star.swift */; }; - 3E036CAA97F279B0C6ABD859726A047A /* CustomPersistable.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFBE09A5275D677D3FCFB5EE0BF27291 /* CustomPersistable.swift */; }; - 3E1B5386B32268FA87A5B13C81242612 /* Sync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FD73B570B89E5FA8BBC496C084BB20F /* Sync.swift */; }; - 3EEB0BAB4684DBA87988BEBEE5A42AD7 /* RLMBSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 81037120FA84062A4F85FDD304978928 /* RLMBSON.h */; }; - 3EEB5CD0432AE4C966A336FE407F4564 /* SyncSubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D5082C2C835E8CC24FD81B39A653E77 /* SyncSubscription.swift */; }; - 3F5DC8E1E4127053A92C72E08D27F5D8 /* BSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9186BDB9F012821F631AB275C99BA576 /* BSON.swift */; }; - 400F010F4FB10F60F96F3534E1EDDA61 /* RLMUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B8669F6FFD864F38DE570A0B7CF62CD /* RLMUtil.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 409221ABB1CE39C1A87EE5E10B03225E /* RLMConstants.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1578D0385D2365407A56E41EB0ECA1E5 /* RLMConstants.h */; }; - 409539FCD976909F6F7DCFD24CB16606 /* MeasuringViewRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFAEE40FDF2777614CF6A400F08FB774 /* MeasuringViewRepresentable.swift */; }; - 412DDFCE41F82C3C7947903A74A76034 /* RLMSyncSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A0ABB3771F1F27FFBB2ACAB9F2B245 /* RLMSyncSession.h */; }; - 423383518233E6F1ACC337BD39AF3DF5 /* ImageLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A08251A571DAA6739976FB5EA966B41 /* ImageLayerModel.swift */; }; - 424A0270662F864BBF2A8ED15B3ED053 /* Mediator.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0994D26E39D807AA28A8F4C0076D71F /* Mediator.swift */; }; - 42606A9EC6B47ACFFCD3795165998394 /* RLMResults.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7D054DA143745DBA135D0398693CFEEF /* RLMResults.h */; }; - 434FB2F0E1D2A41F940B3FBFF8B4E816 /* RLMScheduler.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = D04BAB9F6A9BC7BFF141B7620856B60A /* RLMScheduler.h */; }; - 43CD2267C95A4B1EBFE60AD7B3F8E485 /* RLMObject.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7F93D92F4837BDC6264A9E61832B517E /* RLMObject.h */; }; - 43EB342A357E3018E36B5376BC868417 /* lottie-ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2BA6FE4CA01E4F4EA7EB1F1B0F19CA /* lottie-ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4447B1BA8610DE71F3088F568A03A3E2 /* Archive+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BFB0EC9D5EA409146311005CDDBF3F9 /* Archive+ZIP64.swift */; }; - 455BE0C854203003959BD4AE28C123C6 /* Pods-AVIRO-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E122BBE903BD003FBF3BD32C235526DF /* Pods-AVIRO-dummy.m */; }; - 4594196E9D5AAB720845820628D7274C /* RepeaterLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B2AF7B1375772ECAB6FEBFA30547405 /* RepeaterLayer.swift */; }; - 4616109FBC4685034F709544CBF5C7F8 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF5ADE96BACD561E99A03905EC4663AC /* LottieAnimationView.swift */; }; - 465AA7555639DF9229CD1F76BEA79F5A /* LegacyDatabaseStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F98B0EA7611FD0E8C7A18091E3636D60 /* LegacyDatabaseStorage.swift */; }; - 4677B933CB1FAF2518CCEE839EDDD168 /* RLMMongoClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D2AA35701CF2D42781630F324963D837 /* RLMMongoClient.h */; }; - 467D8AEE183654AB29DAADC843B3C63F /* Pods-AVIRO-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3728B056ADE22C29EB6C1FEAB7FC0F3B /* Pods-AVIRO-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 46C58C1A36007F6630138B6E6AD9034F /* RLMPushClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1FAFF516AF705128DDB08F71F98C01A0 /* RLMPushClient.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 46E2E4EFFEF0F85EA58EFE7B4659732F /* ShapeContainerLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59388D180F9BF67CD8520B33EFD65F80 /* ShapeContainerLayer.swift */; }; - 47037E27705D5BC9492598AC27C7A132 /* RLMAnalytics.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14463C884EED193CBF7610CAD2C21163 /* RLMAnalytics.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 4724AB5CD1E16BBFF664FC2BA7556DBF /* RLMObjectId.h in Headers */ = {isa = PBXBuildFile; fileRef = DD247B0AF9FCEFE9DE9A6473C527A5CA /* RLMObjectId.h */; }; - 47D4A0C3E2AA44B81CA808C6D939E9B3 /* RLMRealm_Dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B978AEC658DDE5A75121A241567BFAE /* RLMRealm_Dynamic.h */; }; - 47FC77A51CECCFC5122DCB2218839A5C /* CompatibilityTracker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A336D31EF81FED2F159C6D2D14A3036 /* CompatibilityTracker.swift */; }; - 48AA22E671AA055C8FE33506EDC9FF20 /* AmplitudeDestinationPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0202F99C45762261415BCF9AEA26147 /* AmplitudeDestinationPlugin.swift */; }; - 48AA32CF5B639AD940F8A7DF34051EFF /* RLMResults.mm in Sources */ = {isa = PBXBuildFile; fileRef = EB4186E564203C9C11072D5DC39E0F26 /* RLMResults.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 48BAB96B2D4C1E919776910961DCFCD7 /* PreCompLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEABD10E1A7FF1E5C6FFE8ABC9101796 /* PreCompLayer.swift */; }; - 491B8D6BE084868B5D582A1CAF68CA41 /* LottieViewType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88A0E125A35A660E4D8D52041BC15AD1 /* LottieViewType.swift */; }; - 493B99C275405D8B93AC82D7BF8D75FB /* Keyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 696EE1A544273E991740CB2FA0820EB5 /* Keyframe.swift */; }; - 49E30F6DC130CD748EF4060F0430204E /* RLMBSON.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13CDF3A61238598CB8B872669B10AA06 /* RLMBSON.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 4A44D6711B8C5F7651B5FDA6364D6113 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E52746CC2034FC2CB160339E62F2945F /* ShapeLayerModel.swift */; }; - 4B2A53D7BF39839D0372A20A0ACFE993 /* Rectangle.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCE9D5401D6AAC4ED13934A85B32875E /* Rectangle.swift */; }; - 4B914B45266E593F512F835750D69DE3 /* RLMAPIKeyAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A95C8471697952026D3F24815801DC /* RLMAPIKeyAuth.h */; }; - 4C1F11107AB2E9CCFA4788C416803B3C /* FileManager+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEBFF303E29038D81B844D31BFE7AC83 /* FileManager+ZIP.swift */; }; - 4C4AEC99C6A0B22F78E476A79E6B5BF6 /* LottieLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A3FA04443741F9E7A77EFB4062A09E6 /* LottieLogger.swift */; }; - 4DB5FE18D10D125729558D0AEE743C4D /* CombinedShapeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 563FAEAEC8E0A5F03D2BF452987615DF /* CombinedShapeAnimation.swift */; }; - 4DFBC9C9B11F956CF0F14270DD1A5F10 /* RLMObject_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 7B7E4CF4A046A74618C0FFF8BE50143C /* RLMObject_Private.h */; }; - 4E178C6095D3D26797CAC1B9DF4A833C /* RLMEmailPasswordAuth.mm in Sources */ = {isa = PBXBuildFile; fileRef = 443DCDC925739FA4A8ED2A3284A05CCA /* RLMEmailPasswordAuth.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 4F7FF5CC1EEE5227E9E26443C007534E /* PointValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1180F50B9248F823941EC40B6FFAD464 /* PointValueProvider.swift */; }; - 50443117E9BAAEE5E88AE2D202A4B79F /* RLMArray_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 2695BE0D783076A29AE9085839E78E5F /* RLMArray_Private.h */; }; - 5059D7DC3E94C2471AA9F96A1E91DA25 /* RLMUpdateResult.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 766B97BBD21B8F9636D9EF08ACA2434D /* RLMUpdateResult.h */; }; - 50BAFFF55551215125C9544C69E0C2C9 /* PathNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = B963E928E25D4C72D97389CF1E885824 /* PathNode.swift */; }; - 51A7ED73D2C078CF76A964EB991E7E79 /* LayerProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = B89D28320E2954638D28597AECCFA1E7 /* LayerProperty.swift */; }; - 51BA9462B158C88B90D92621AB86DA45 /* RLMScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = D04BAB9F6A9BC7BFF141B7620856B60A /* RLMScheduler.h */; }; - 5225DF91D4D6E38AA118BC75F790FA40 /* EpoxySwiftUIHostingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27BAFBB1118459F63E05E19B5943537D /* EpoxySwiftUIHostingView.swift */; }; - 52620766EADCB8BF13E844FFD2283916 /* ErasedContentProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 913171AF8444D6DF145ED4A480433907 /* ErasedContentProviding.swift */; }; - 528B8116D765A57896499F6D0800FD22 /* RLMManagedArray.mm in Sources */ = {isa = PBXBuildFile; fileRef = FE58487E2CB34093105100D75B14AD42 /* RLMManagedArray.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 5313421C25EA95F13ED92D974231EFF5 /* RLMClassInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29328ED03E794306636E55752C6E4D8C /* RLMClassInfo.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 5324985361E5E8CE1278766A6FA2D2A5 /* MakeViewProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BA73136655B28344903D9D85A4DDE7A /* MakeViewProviding.swift */; }; - 541F03D9B528E2B8CF078C059CBD8C85 /* AnyEpoxyModelProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = D816A3855236519E1A0E0A46ECD7D0CC /* AnyEpoxyModelProperty.swift */; }; - 546894780B599D72BE629DE603CE1408 /* RLMObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F93D92F4837BDC6264A9E61832B517E /* RLMObject.h */; }; - 54A3854C13C2BC05E1F983672735E914 /* RLMSet_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A9319A800B87685589E57A6D6B11E8F /* RLMSet_Private.h */; }; - 54E8E3C44C5E0828FE21063FFE942099 /* RLMDictionary.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6997DB662B9D29F70ED81E000B79367E /* RLMDictionary.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 55E276D2917BDAC0475306F173E50FC4 /* Archive+Reading.swift in Sources */ = {isa = PBXBuildFile; fileRef = D01740C96A09F50C2535EE2C6A04EC5C /* Archive+Reading.swift */; }; - 560049D73717D8E68B3A81C624FB4BCA /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0C912DB3EB64AC1A6B4FD6EE816EE09 /* Entry.swift */; }; - 56040CFFA72105E3B95C1D44A8AAD299 /* RealmSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BD30311DB665E8AB415DC4AE4C6EB95F /* RealmSwift-dummy.m */; }; - 572FBB51A5C8FEACD77A51082ABAE10C /* ValueProviderStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFE44398FF4BCDAEEA464DD296C215AA /* ValueProviderStore.swift */; }; - 5749D1A65604B226A1BFFF407FEF11F8 /* AmplitudeSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6FA385E65199988DD38045CE8A2451 /* AmplitudeSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5858E83F858272F084A4B75F0C01DFBF /* RLMSyncSubscription_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = CF8D54BCC02776B75CC58DC48EECF24F /* RLMSyncSubscription_Private.h */; }; - 5859B1C3F605671841F88404BF1CBE81 /* RLMObjectBase_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 01C4F04FDDF605F4DDEE9132BA38F570 /* RLMObjectBase_Private.h */; }; - 5894C7EBC46552D467DDE0B64204D6CF /* State.swift in Sources */ = {isa = PBXBuildFile; fileRef = D580785B0CC5F34F60C230871B103456 /* State.swift */; }; - 58B5581101DE8AE5EBFF2FC544D32F0C /* RLMObjectBase_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C4F04FDDF605F4DDEE9132BA38F570 /* RLMObjectBase_Private.h */; }; - 58C96277ECC03358ED0A472DA23F3F53 /* RLMSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 246382F6D83203A35759E71B6EF35D51 /* RLMSupport.swift */; }; + 304A34F9CD57E38897766A2AEEE02735 /* ItemEvents.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC601B7E96506022547679EBA61EDB08 /* ItemEvents.swift */; }; + 3071E81B181D340426D7499E3766D26B /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF7C9475407D2F53A3559CA405771782 /* RecursiveLock.swift */; }; + 30E832A6E54FCBA6BCC6CB16671A697D /* RLMEmailPasswordAuth.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 00B783BADD4A97412D43D5CB3132033D /* RLMEmailPasswordAuth.h */; }; + 30EA28F45841206E63D33DF0EACF983D /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91DD90BA645F6C04BE83EE943B29883B /* BinaryDisposable.swift */; }; + 310A816290D44150ED60D15122886130 /* _RXKVOObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = A3A80D814438187DF312D8739946F79B /* _RXKVOObserver.m */; }; + 312372C97D4A2DEBEFA13A38A354D4E1 /* SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1AF27D2FA3AC62D2D047162A9ECD34D /* SwiftUIView.swift */; }; + 31247AE04A5568B8A6C8D6B652169400 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A6BD5DD7881558307B6D2677423235F /* Bag.swift */; }; + 314D7C13BFE920DDBB526E778D3CEBEA /* Pods-AVIRO-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D8F08FFA0C96FDF547EA1DF290FE4F /* Pods-AVIRO-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3177979DD85089C9E20FAD62CA9C65DC /* UnitBezier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 392A37C1D291D2FAA87E2EEF77936E62 /* UnitBezier.swift */; }; + 31973530C043C3DBFF6B515AAF509695 /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDB433E24090A614B8F0B6A25EB5F955 /* TestHelpers.swift */; }; + 327594FD12BFD5A6282F157EE3B04A5C /* Archive.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC7B217C9D4C24899033F25CE430B075 /* Archive.swift */; }; + 32C6E8F469B4E195C59FC25D8F4F8C79 /* RLMSchema_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 0DDC54E1B28948A12329D32270057885 /* RLMSchema_Private.h */; }; + 32E452BF8E6ACD592403CB7C0A4D8DA6 /* RxCollectionViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74DEE313102957F7397DD61362D546F9 /* RxCollectionViewReactiveArrayDataSource.swift */; }; + 33BF9D4F523B37BC98DEFFA47E53D607 /* RLMProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E621465D080F278E6D740E46A7B4281 /* RLMProperty.h */; }; + 33E19DC5B0C4219F9DBA3DA065C3D2D5 /* RLMSwiftCollectionBase.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1FA9A8B5146E7B57A486DD31990F6982 /* RLMSwiftCollectionBase.h */; }; + 33F84AB110CBE7AC7E71C170D50E9D10 /* RLMMongoCollection_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B2653B0D9C91ECDA2BAABB08D84D79 /* RLMMongoCollection_Private.h */; }; + 345A20B1ACFE4AD6C092A06F5EC030CC /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A7AE97462D0F7B50D7360C0D9A9FA17 /* OperationQueueScheduler.swift */; }; + 347A1FB037B7D10E6628063D711AC3E1 /* Archive+ReadingDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71225498F5D2D3B14D1F855AE5E14470 /* Archive+ReadingDeprecated.swift */; }; + 34A585172E0AA36FE0D52353FD70CD1D /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = E867D8AAE484D20063E19781169F0E87 /* Single.swift */; }; + 34BD36BF1D0DB5321FC5EC1719EA5828 /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 684E3D82C7CD617041F8FCFA162CF26C /* AtomicInt.swift */; }; + 34C405D05092660520C487D1F6A9C0DF /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 441C4F83B048DA79D9C417B458354EBD /* CurrentThreadScheduler.swift */; }; + 35A7A603BCE1889608D512C1CDF64FEB /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9685C119CF0A3A66F30614AEDA513A2C /* NopDisposable.swift */; }; + 36191DCA721346837807FBE0CB82098F /* RevenueEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20306C38198D5F978F8CBA68954D3FFB /* RevenueEvent.swift */; }; + 3696CAB97D3EB3CA6EFC0C17636CE1E8 /* EllipseNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF50B1B410F5AA049299ECBD7F6CAEAC /* EllipseNode.swift */; }; + 37290FA3822D3DD2EE9B182639F71477 /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2E35B001D8E6B24570A6E45880B6FD3 /* TakeLast.swift */; }; + 37E48B8E5D889A05DFFBF70B5C690A85 /* ViewDifferentiatorProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE96A4360FAF43A8CF2472AB3E45BA37 /* ViewDifferentiatorProviding.swift */; }; + 37E6281723579F84EE460D1C481A4F10 /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 886B4D73AE46A1BBBE9A4A6534810DE6 /* VirtualTimeScheduler.swift */; }; + 37EA332A08F6CBE514EF8892A1A4B6EC /* DidEndDisplayingProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0560B045D900514A39899E1A7A993B9 /* DidEndDisplayingProviding.swift */; }; + 37EC024F54023B0D698A37C47122C953 /* KeychainSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 59ACD231A627BC30A00D00CF143706E4 /* KeychainSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 37EC5BBA3E913B89AFE9B8C24303EE69 /* RLMArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BDB6BD7DC15A72425F2D3BAA0B3D001 /* RLMArray.h */; }; + 3852DA002C2FF5588B5F2626BDCB5085 /* RLMEmbeddedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA3F2ABB67D05296195FBC5098DB9DD /* RLMEmbeddedObject.h */; }; + 390D21C9E0D7DD44D749F09795729457 /* LayerTextProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 888BE7E8B3D305A2ED17DD24E4DE746B /* LayerTextProvider.swift */; }; + 3939E6C5CD760878B796A6A053B9BD37 /* RLMObjectBase.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56279550ECBD4268D544292D82AD7AE4 /* RLMObjectBase.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 39901C4D4268B4A4DCEFFEAAAF86F485 /* RLMLogger_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = E12E6376F912E76BF73F1D84D4F17515 /* RLMLogger_Private.h */; }; + 39EA99A31B37C65E005202F18FBB2782 /* Aliases.swift in Sources */ = {isa = PBXBuildFile; fileRef = E80DBBC2ECBBE61D6781FDDF6CD9A92E /* Aliases.swift */; }; + 3A5043ACF0D4BF7D4DDB3EE5877E0629 /* Observable+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A66AAED0F94CCD8F3A84F7DB3E85793 /* Observable+Concurrency.swift */; }; + 3A75FB721E56403663773C781BABB475 /* BaseCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38725AED42C209B7402B8B302DA0123F /* BaseCompositionLayer.swift */; }; + 3A80C5008C51C472DD9EEF65A04F1F74 /* RLMUUID.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20C8D14F2BD8DDB7864757283A4BE00E /* RLMUUID.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 3AD8FE611A556A57CE41ADD818D03642 /* AnyEquatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2ECAD6367127B7436A19BEF9ADD73DA /* AnyEquatable.swift */; }; + 3AE0F1254F5BACA99290F675F9BACBC7 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68739916950FC1D5429BE6BD8D7AB6C6 /* SwiftSupport.swift */; }; + 3AFDFE59945839EF74639D0FCB06D8A0 /* RLMQueryUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = F9522CCF57C949F7E499FF5DD03AD5F7 /* RLMQueryUtil.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 3B000CDD0B03EEA484CB76202685DA34 /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A339C91569DC7EE930C0196E7AEAC5B /* RecursiveScheduler.swift */; }; + 3B021A9BCDEEED24254C605DECBB69F0 /* RLMScheduler.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE9D1C1FE157B18C01449B4FA8EE520D /* RLMScheduler.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 3B3484E8CE6C44851C1E7F784AE800AF /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = B91361BE65E8D40884D4F5C6F70B87C4 /* SkipUntil.swift */; }; + 3B8B5CFBE1964C1CB93B5C4CC4420FC6 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4B4EF58AEF0E9288D603D0C8E2CB8A4 /* RecursiveLock.swift */; }; + 3C602CF707CD328CDF0AB2C0E6E8E714 /* HttpClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC9375186A2DEEF41444D81D40CE5E9B /* HttpClient.swift */; }; + 3C6886B7C7A89AFEA13AE77D9B52F529 /* RLMMongoCollection.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = B515B49D804654DEAA945AE1F9D3001A /* RLMMongoCollection.h */; }; + 3C781FF289FE7DBAE6687DD27DE659C7 /* RxCocoaRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = EE88B14F80923C07009DBC98E1454066 /* RxCocoaRuntime.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3C7C51B018CEE9A67A5C7D5F400A1B21 /* RLMSwiftProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EB6C1E306DDA6BD2C56DC6C2D7B1FAC /* RLMSwiftProperty.h */; }; + 3D83F25EC701CC16F3D0AD85273295B9 /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 875ADA8C436E3A76647880FF1D8749CE /* SwitchIfEmpty.swift */; }; + 3D9CE1B8CE0417B207F5ADE1DEC9650A /* TextLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7881EA4E72AE99FD100838C658A993F5 /* TextLayer.swift */; }; + 3DEA6C28288178B4E5641631DF7B72CA /* Star.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEE497A61506A2E1B8E85F338456C36A /* Star.swift */; }; + 3E036CAA97F279B0C6ABD859726A047A /* CustomPersistable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1E6D783574575CFAE5293E230B05B7A /* CustomPersistable.swift */; }; + 3E13E72BADBBA1E4DAA260C9787BCCC0 /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00F13883E034FF5F6469AC7881E0E8DA /* Producer.swift */; }; + 3E1B5386B32268FA87A5B13C81242612 /* Sync.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8D69334EEAEA2ED82B23299D31F5D5 /* Sync.swift */; }; + 3E2F67A6DB2B47A63273A20E91E59313 /* Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 522C0862CE62DD0D18F58DC510619CD4 /* Subscription.swift */; }; + 3EB23667AD932BD06017F1470235B777 /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8822D938FEC4E4C6A3921F1E0F1AAA77 /* ToArray.swift */; }; + 3EE6768D08001A68D649BDCA7DD57E53 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05D7A2BC80FFCCC95BE8D97A208EF0E6 /* Empty.swift */; }; + 3EEB0BAB4684DBA87988BEBEE5A42AD7 /* RLMBSON.h in Headers */ = {isa = PBXBuildFile; fileRef = 118145025830CC5ED1D8B8542651CE7E /* RLMBSON.h */; }; + 3EEB5CD0432AE4C966A336FE407F4564 /* SyncSubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = E858102593AE2F926B312B1CF24A1F5D /* SyncSubscription.swift */; }; + 3F5DC8E1E4127053A92C72E08D27F5D8 /* BSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 051C9B6F953C1914927944B62A91AD62 /* BSON.swift */; }; + 3FE6ECCA48447AACD400BBA0FAA68C55 /* UIScrollView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEFC6DC50ADA21288DCAAADD7C89F0D7 /* UIScrollView+Rx.swift */; }; + 3FEDA52699B8EDF1E75FEC8B64C0EEB5 /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D97A7D7B4F9C7F8BC1B04A172320928 /* AnonymousDisposable.swift */; }; + 400F010F4FB10F60F96F3534E1EDDA61 /* RLMUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1249C968C1A5CFE6137D99BD0326B0D2 /* RLMUtil.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 409221ABB1CE39C1A87EE5E10B03225E /* RLMConstants.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C42CCE88D17761CA95CF0424D6008467 /* RLMConstants.h */; }; + 409539FCD976909F6F7DCFD24CB16606 /* MeasuringViewRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 959AB0233C8A9F1E98F205B8CB27A7B5 /* MeasuringViewRepresentable.swift */; }; + 40A7E63894934F59F2D8FE22EA69BBE3 /* CompactMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2B596FAC8657BE8F78E515807B15C70 /* CompactMap.swift */; }; + 40C04ECB0137BDFCE55FCA68412BCC16 /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7FEA2A54651E065B2372F5E8AC8300E /* Maybe.swift */; }; + 4106E233F91B96E690844EAD596D1A34 /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D97A7D7B4F9C7F8BC1B04A172320928 /* AnonymousDisposable.swift */; }; + 412DDFCE41F82C3C7947903A74A76034 /* RLMSyncSession.h in Headers */ = {isa = PBXBuildFile; fileRef = A79BBFAA30E15FE04639C6B2F774ACB7 /* RLMSyncSession.h */; }; + 413AA7D4B66DB837623BF2313631D3C1 /* RxSearchBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = A092D05FB9D43C48043A0DB333DDA3EA /* RxSearchBarDelegateProxy.swift */; }; + 423383518233E6F1ACC337BD39AF3DF5 /* ImageLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 295F880F759883C9544EBB0AC0750265 /* ImageLayerModel.swift */; }; + 424A0270662F864BBF2A8ED15B3ED053 /* Mediator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79356AC2AE44944FBFE298350F70B580 /* Mediator.swift */; }; + 42606A9EC6B47ACFFCD3795165998394 /* RLMResults.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 83FB166805E59B887D6FEB1E492F11AC /* RLMResults.h */; }; + 434FB2F0E1D2A41F940B3FBFF8B4E816 /* RLMScheduler.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = F26C5A9EFD42C2FBD808172944C45B6F /* RLMScheduler.h */; }; + 43CD2267C95A4B1EBFE60AD7B3F8E485 /* RLMObject.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 4EE566FDFA1CD12F7BA6F0C71E109B8F /* RLMObject.h */; }; + 43EB342A357E3018E36B5376BC868417 /* lottie-ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE0E6F9C0E022F45E876CD983BC2F54 /* lottie-ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4410FEA335C7919B2B57132B66CABEBE /* NSControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 861DA6411995BAEA58FE752D9DE0D313 /* NSControl+Rx.swift */; }; + 44181EC98EA3AD8298E941E4F0A6C281 /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9685C119CF0A3A66F30614AEDA513A2C /* NopDisposable.swift */; }; + 4447B1BA8610DE71F3088F568A03A3E2 /* Archive+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75465EBB6C0D11C0CAC1B5E1331AEF00 /* Archive+ZIP64.swift */; }; + 457BADA96E51AE257C56AADB01EDD0FD /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37D7F860F78D8FFE12F06BF9A91D46C2 /* ObservableType.swift */; }; + 457C032F95EECBFFB814E988345C6693 /* ColdObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66F3A446DBD8ECE560066DD3C867F6D3 /* ColdObservable.swift */; }; + 4594196E9D5AAB720845820628D7274C /* RepeaterLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D5F0D7C90A145FC63E62989E7A2AE4C /* RepeaterLayer.swift */; }; + 45988489B16639370E7BED871BB06A05 /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 103ADFAA6FAC14D13768C65F699B62EC /* ObservableConvertibleType.swift */; }; + 4616109FBC4685034F709544CBF5C7F8 /* LottieAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23BE9F7C7EE5248B51A198F37926AE9E /* LottieAnimationView.swift */; }; + 465AA7555639DF9229CD1F76BEA79F5A /* LegacyDatabaseStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BCAFAB4A057F4D9CA1E7193690F13E5 /* LegacyDatabaseStorage.swift */; }; + 4677B933CB1FAF2518CCEE839EDDD168 /* RLMMongoClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 8711FFAF3BE62ABD350952C307B32FD9 /* RLMMongoClient.h */; }; + 46C58C1A36007F6630138B6E6AD9034F /* RLMPushClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4A37C9B25E2889CD6D986512ABA3C9F /* RLMPushClient.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 46D6E1F04D971DE2B8931695CB40B4B3 /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 466DC29DA9D9A69983D4A1A0D77D2EC4 /* Materialize.swift */; }; + 46E2E4EFFEF0F85EA58EFE7B4659732F /* ShapeContainerLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80BA24566DEFE3198BD5211AB9842848 /* ShapeContainerLayer.swift */; }; + 47037E27705D5BC9492598AC27C7A132 /* RLMAnalytics.mm in Sources */ = {isa = PBXBuildFile; fileRef = DDED7A44A21A5623DB60C14C6D83D8B0 /* RLMAnalytics.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 4724AB5CD1E16BBFF664FC2BA7556DBF /* RLMObjectId.h in Headers */ = {isa = PBXBuildFile; fileRef = 557896491F6529811FA722AF4A37D9D4 /* RLMObjectId.h */; }; + 47D4A0C3E2AA44B81CA808C6D939E9B3 /* RLMRealm_Dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 978E1DF510A74CBC691BBF6747026B95 /* RLMRealm_Dynamic.h */; }; + 47FC77A51CECCFC5122DCB2218839A5C /* CompatibilityTracker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 269953BDB9609B25439FE87D54A24041 /* CompatibilityTracker.swift */; }; + 48AA22E671AA055C8FE33506EDC9FF20 /* AmplitudeDestinationPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4BE5D6468F1DCD9C5B79EEE935F8F8 /* AmplitudeDestinationPlugin.swift */; }; + 48AA32CF5B639AD940F8A7DF34051EFF /* RLMResults.mm in Sources */ = {isa = PBXBuildFile; fileRef = B4EC8EB26DB969079C3A2BCD2EB9EC5E /* RLMResults.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 48BAB96B2D4C1E919776910961DCFCD7 /* PreCompLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70F71936E7F17AE44470E0AB831F67E0 /* PreCompLayer.swift */; }; + 490D08A997D04533EFDA3023DEEAF03D /* RxScrollViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0FF6F2916AD33FD5BC09AABA5529615 /* RxScrollViewDelegateProxy.swift */; }; + 491B8D6BE084868B5D582A1CAF68CA41 /* LottieViewType.swift in Sources */ = {isa = PBXBuildFile; fileRef = E973C0AD313FA185D7883A70B3DB644E /* LottieViewType.swift */; }; + 493B99C275405D8B93AC82D7BF8D75FB /* Keyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 229488CEEF0EFA1B255E19A10642B294 /* Keyframe.swift */; }; + 49D2CBE6D7C228D9089D85B08F885160 /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 875ADA8C436E3A76647880FF1D8749CE /* SwitchIfEmpty.swift */; }; + 49E30F6DC130CD748EF4060F0430204E /* RLMBSON.mm in Sources */ = {isa = PBXBuildFile; fileRef = DC236BFC9A2DB42649A285C0019D2A4C /* RLMBSON.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 4A0D6504843591AE9880FCC535EDCCDA /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12A3F1C0D910933BE53CFAFDE661348A /* Sequence.swift */; }; + 4A3603267F6D4C393E4E5C744D7C2D81 /* UITextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E69CE0F927E980F7FD7333244A097BE /* UITextField+Rx.swift */; }; + 4A44D6711B8C5F7651B5FDA6364D6113 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE232DDBFF02C7108B42BE2A13D58D63 /* ShapeLayerModel.swift */; }; + 4AB31164F1802213748D154A81EA60C7 /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB7C7803757167E5C73E20C7585E68EF /* InvocableType.swift */; }; + 4B2A53D7BF39839D0372A20A0ACFE993 /* Rectangle.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB230B5BD51AA84A1CE8F0ECD1FFF01A /* Rectangle.swift */; }; + 4B7C52073AF920947CC1AF0747B3DE7B /* Infallible+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6FF510C123E469BD34A5CE298355E53 /* Infallible+Operators.swift */; }; + 4B90C2464D121B1E83EFAF2885E3B112 /* Driver+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0DC6BB37E772C838D211B4E469406B8 /* Driver+Subscription.swift */; }; + 4B914B45266E593F512F835750D69DE3 /* RLMAPIKeyAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 3281B9719A62EF27E3095EBBD9128C75 /* RLMAPIKeyAuth.h */; }; + 4C1F11107AB2E9CCFA4788C416803B3C /* FileManager+ZIP.swift in Sources */ = {isa = PBXBuildFile; fileRef = 548BB54B6B8AC573C0F1CD8BECFCBA35 /* FileManager+ZIP.swift */; }; + 4C4AEC99C6A0B22F78E476A79E6B5BF6 /* LottieLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43CE4DB0703CAB85F31532CC6D79025D /* LottieLogger.swift */; }; + 4CD1D926433ADBFA48C0DEB50F64FEA9 /* Decode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E13C10737BBF5AA3DD7ED4809A4E484 /* Decode.swift */; }; + 4CE07550F733491F83A8D1A20E848CC9 /* RxTableViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77C3EE03899AD9A3B2823A7992507F63 /* RxTableViewDataSourceType.swift */; }; + 4D3D136BE3DDE2AEA805741CBE356F11 /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F335876373BF5F36C9356B7860E51AF /* VirtualTimeConverterType.swift */; }; + 4D66B6E64999CBD11557671C2D6255EE /* Observable+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A66AAED0F94CCD8F3A84F7DB3E85793 /* Observable+Concurrency.swift */; }; + 4DB5FE18D10D125729558D0AEE743C4D /* CombinedShapeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B72D863C491B2B7A846D1FFA1181A1B /* CombinedShapeAnimation.swift */; }; + 4DFBC9C9B11F956CF0F14270DD1A5F10 /* RLMObject_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = C624B4503218077DCDBB1E00A24C075A /* RLMObject_Private.h */; }; + 4E178C6095D3D26797CAC1B9DF4A833C /* RLMEmailPasswordAuth.mm in Sources */ = {isa = PBXBuildFile; fileRef = 07DFCB2023DB9C2425076165D8015634 /* RLMEmailPasswordAuth.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 4E3A54E8638D45F6C4E71C3475469712 /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D345072F5BBCB6B06D5CF38D8A09E1E /* Cancelable.swift */; }; + 4F65B4F12828DAF6A3D010170ED1F7BB /* Date+Dispatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = D26C0CB0261E18D1D767B6A99E51CD20 /* Date+Dispatch.swift */; }; + 4F7FF5CC1EEE5227E9E26443C007534E /* PointValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF84E09C34CC32B2EFB7C3FF51C3B5 /* PointValueProvider.swift */; }; + 4F877574E03A09B380828FB4FD165278 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EFBB99E7EC9818EF7A1D513BA386222 /* RecursiveLock.swift */; }; + 4FB339AC990617F3E959CB11772E5A09 /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE26F9C17973A4C7D9ED740468E1F2AD /* Event.swift */; }; + 50443117E9BAAEE5E88AE2D202A4B79F /* RLMArray_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = CCA1B9B561DEB0B4AC2651E1F3AC0256 /* RLMArray_Private.h */; }; + 5059D7DC3E94C2471AA9F96A1E91DA25 /* RLMUpdateResult.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 203D35C6E9C626DEABAD23530C56EB65 /* RLMUpdateResult.h */; }; + 50BAFFF55551215125C9544C69E0C2C9 /* PathNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9322B6B94A528E6F0A23C16D946153B8 /* PathNode.swift */; }; + 516EE5C8EA1B24B4E7465A37B6D48643 /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF63BC0AD430C351E771F71A57E674B8 /* CompositeDisposable.swift */; }; + 51A7ED73D2C078CF76A964EB991E7E79 /* LayerProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = A41784785CF120C1EC83A5270B852E4A /* LayerProperty.swift */; }; + 51BA9462B158C88B90D92621AB86DA45 /* RLMScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = F26C5A9EFD42C2FBD808172944C45B6F /* RLMScheduler.h */; }; + 5225DF91D4D6E38AA118BC75F790FA40 /* EpoxySwiftUIHostingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49861EFA1327020DD328940A463AE027 /* EpoxySwiftUIHostingView.swift */; }; + 52620766EADCB8BF13E844FFD2283916 /* ErasedContentProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6F873B3B4CEFB5E2364CA12CF18208E /* ErasedContentProviding.swift */; }; + 528B8116D765A57896499F6D0800FD22 /* RLMManagedArray.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4ECDF1C9D72FDBF34EB3E857AFC21C54 /* RLMManagedArray.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 52CA2C7BBF49F61574604500745546B6 /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9326B8E9A62BDAAB3D2CADB522F34A2A /* Sink.swift */; }; + 5313421C25EA95F13ED92D974231EFF5 /* RLMClassInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90F9DF80FCE7DB32A74091D6F9121186 /* RLMClassInfo.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 5324985361E5E8CE1278766A6FA2D2A5 /* MakeViewProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50164484152A5192763F53D44393AC00 /* MakeViewProviding.swift */; }; + 541F03D9B528E2B8CF078C059CBD8C85 /* AnyEpoxyModelProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8602EBA3E0AE78AA4FA16BCE00D0B09 /* AnyEpoxyModelProperty.swift */; }; + 5423058DD6933995B0CFCE6D58A71C6E /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 433DDAE6C7338D2B12A98583AAA3737D /* AtomicInt.swift */; }; + 5457E8851FB44CFDBB096C81AB61AE8E /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71089096F8C350C9C983A82FCFDE864C /* Zip+Collection.swift */; }; + 546894780B599D72BE629DE603CE1408 /* RLMObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE566FDFA1CD12F7BA6F0C71E109B8F /* RLMObject.h */; }; + 546BC5CC4F96554277FCB5D38EF9C53F /* UIRefreshControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41A90A119AE13B18BD986AF741CB6B85 /* UIRefreshControl+Rx.swift */; }; + 54A3854C13C2BC05E1F983672735E914 /* RLMSet_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D4A00CD5102F35E8E47A58F1FE16D7A /* RLMSet_Private.h */; }; + 54E8E3C44C5E0828FE21063FFE942099 /* RLMDictionary.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3BB5CEA09C8A2640C959FC109BE98804 /* RLMDictionary.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 55E276D2917BDAC0475306F173E50FC4 /* Archive+Reading.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B79BD29E9030E0FB3162FB72930CD24 /* Archive+Reading.swift */; }; + 560049D73717D8E68B3A81C624FB4BCA /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 976AD7DA50FAEB394DC3F9AD5AEC70EF /* Entry.swift */; }; + 56040CFFA72105E3B95C1D44A8AAD299 /* RealmSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E5B39142AE68CF13E0372BAEC39D605 /* RealmSwift-dummy.m */; }; + 5675E80D44EA5E3BD18D9FC26DFAAE09 /* PrimitiveSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = B48BF66F4403EF23343A0DDD9B215326 /* PrimitiveSequence+Concurrency.swift */; }; + 569654A9C2BE004493E9018BA3BD3AA1 /* RxTest-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F0B13E686C0BEE2F4A6F9B43B19A2C /* RxTest-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5699EA7F2B3A95B6893D530FB1C98F2C /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 905176FECE64A18B0CBFBCD249924E68 /* RefCountDisposable.swift */; }; + 56B0551FA86E0DF854294F47F5BAA2F7 /* PrimitiveSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = B48BF66F4403EF23343A0DDD9B215326 /* PrimitiveSequence+Concurrency.swift */; }; + 56B2946A9841EB2F198258261968605B /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8D8C4793F08A8437A613286DA1393CC /* RxMutableBox.swift */; }; + 5707E3AAF765D2E2536B6EC1EADA6DDD /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 542D4F6DAA524F814249BE56DB9958E8 /* Enumerated.swift */; }; + 572FBB51A5C8FEACD77A51082ABAE10C /* ValueProviderStore.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45E8ECAD0B725D4A4FCA9EC542EFB365 /* ValueProviderStore.swift */; }; + 5749D1A65604B226A1BFFF407FEF11F8 /* AmplitudeSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4FDDDD08F6C66026E26D425804CF72 /* AmplitudeSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5858E83F858272F084A4B75F0C01DFBF /* RLMSyncSubscription_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 919234D1DFD1157CADC0FE5CD11067A1 /* RLMSyncSubscription_Private.h */; }; + 5859B1C3F605671841F88404BF1CBE81 /* RLMObjectBase_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = E03B48B1F9A46AA29113939A8047B938 /* RLMObjectBase_Private.h */; }; + 5894C7EBC46552D467DDE0B64204D6CF /* State.swift in Sources */ = {isa = PBXBuildFile; fileRef = F66421D316977E885E1366885D9FEA16 /* State.swift */; }; + 58B5581101DE8AE5EBFF2FC544D32F0C /* RLMObjectBase_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E03B48B1F9A46AA29113939A8047B938 /* RLMObjectBase_Private.h */; }; + 58C96277ECC03358ED0A472DA23F3F53 /* RLMSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79C163B97646D6ADFD9595182C426457 /* RLMSupport.swift */; }; + 5911A508553BA886DC5A2FD83E581C8A /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDE09FFAC51CB12052320F2237E99EC9 /* Rx.swift */; }; + 595063D7FD957DD282DCA569D0CB31BE /* RxSwift-framework-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 133032016CFC717B68DB23DA68B655AD /* RxSwift-framework-dummy.m */; }; 5980D06240C5AF4F22E9DC45D7C9CFA5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; - 59AB2A91AFE0A7380C99847878C03E9E /* RenderingEngineOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CDE6ECEB775615D9A1E6E85663EE0CE /* RenderingEngineOption.swift */; }; - 59D9EED2874474580D0CE585C7DC9EDC /* RLMArray_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2695BE0D783076A29AE9085839E78E5F /* RLMArray_Private.h */; }; - 59F88D733011BD9EDE50BEC7BF9DC932 /* PersistentStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5797180B8E509FAAD9050753CDCDF17C /* PersistentStorage.swift */; }; - 5A112F8271072DE73024CBA8078043AA /* Projection.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD2F95E31E77D7917248F01EA71194F6 /* Projection.swift */; }; - 5B0169F631EC630145D68B509CE4E2B4 /* BehaviorsConfigurableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B3438E5D5086413F257ED7AEA59A2A2 /* BehaviorsConfigurableView.swift */; }; - 5B0FE3835069F5DE3B4EE2D3C86CAB0B /* RLMResults_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 642BCEEBC24CEDE1A2A9CA998857D042 /* RLMResults_Private.h */; }; - 5B2A024D9D1101EA26AA593D56E1B9FC /* WatchOSLifecycleMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D2BDEE55EDF9AC97B851B210A6878CF /* WatchOSLifecycleMonitor.swift */; }; - 5B5556F705C9116031FF947C4833426A /* DotLottieCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE8AD825CF18C83D98D49AE1F1651725 /* DotLottieCache.swift */; }; + 59AB2A91AFE0A7380C99847878C03E9E /* RenderingEngineOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7F6194A61742982DFA9D8E481E8C894 /* RenderingEngineOption.swift */; }; + 59ADBE9B7C46FBC83DDA8ABEB03B4832 /* ControlTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9F47C1C33F294EE17EFAC13BED14A1F /* ControlTarget.swift */; }; + 59D9EED2874474580D0CE585C7DC9EDC /* RLMArray_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CCA1B9B561DEB0B4AC2651E1F3AC0256 /* RLMArray_Private.h */; }; + 59F88D733011BD9EDE50BEC7BF9DC932 /* PersistentStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01FF0371669F47A7DAF37D0483420BB8 /* PersistentStorage.swift */; }; + 5A112F8271072DE73024CBA8078043AA /* Projection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4028F03A7BA0524ACAC7099F21F9D0F3 /* Projection.swift */; }; + 5B0169F631EC630145D68B509CE4E2B4 /* BehaviorsConfigurableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8D2F0562C5AD4AAA419046AC189284 /* BehaviorsConfigurableView.swift */; }; + 5B0FE3835069F5DE3B4EE2D3C86CAB0B /* RLMResults_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC11EFEA7C1989F0F6977016929C221 /* RLMResults_Private.h */; }; + 5B2A024D9D1101EA26AA593D56E1B9FC /* WatchOSLifecycleMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 155E465F9A60DDD805A831F26C2792E0 /* WatchOSLifecycleMonitor.swift */; }; + 5B5556F705C9116031FF947C4833426A /* DotLottieCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 941C08827A4EF199BD939D98DDAF9D1A /* DotLottieCache.swift */; }; 5B652F4154CC552760BF6B5A62941937 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32C5330ED6F0BAC79B49D4AF0DCEBB56 /* CoreGraphics.framework */; }; - 5B8A458DC7C87F427A5C463F3CAC517B /* Decimal128.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9368ADABE8B43E7297FCFA01BE7CC28B /* Decimal128.swift */; }; - 5BF823878F8F6A082C28B977CBD89D0F /* RLMProviderClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 284D6587AF8EC278DC8096038654181D /* RLMProviderClient.h */; }; - 5BF915283943BA781822EC558E3C8D3B /* EpoxySwiftUILayoutMargins.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27B4521CF6F785B405783CF7E5DFBAB8 /* EpoxySwiftUILayoutMargins.swift */; }; - 5C119A9284DC0111821F912194582B78 /* RenderNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5A9D773601E9074CC040D94757C72C5 /* RenderNode.swift */; }; - 5C2319C4B57E9EDAD36D44FE3214E0BE /* DotLottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17CA758EA8D0D83B9C856FC345540ACF /* DotLottieConfiguration.swift */; }; - 5C5E3EF8A9DDD6AD960384FD63550A9F /* RLMUserAPIKey.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1772FB2F3838C04E340923DD2196714A /* RLMUserAPIKey.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 5C5EEB343C3FC9264792162D474F78AA /* KeyframeData.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9AD6FF187C186C57AAB2DDFCADD98EB /* KeyframeData.swift */; }; - 5D25127AE8CACC715CF5D4211F74DD7B /* RLMApp.mm in Sources */ = {isa = PBXBuildFile; fileRef = 569809F436CDA7A0B8A02B4D7F481B6E /* RLMApp.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 5E39C8B9DE6A736337725B6AB3E365EB /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BBABF396A9D165E38D2240FBB0E7781 /* AnimationImageProvider.swift */; }; - 5E3DFA05C0DBBE379D00AB99AF04296E /* RLMAsyncTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 789C70D2EC86868D1AECBBCF94043A79 /* RLMAsyncTask.h */; }; - 5EDE608C519C24AF939914110C7CE74B /* RLMLogger_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 63EBA32DB11EF7F034BAF85CAE6122C4 /* RLMLogger_Private.h */; }; - 5EEFA6679BF28683E2B0F5E00A1EE713 /* Collection+Diff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2703A5F9C58FDF84EDD08202C38E37EA /* Collection+Diff.swift */; }; - 5F0A29426B5289CE22EE51AFE0A28775 /* ObjectiveCSupport+Sync.swift in Sources */ = {isa = PBXBuildFile; fileRef = D56B27B284EC71520BD337E1712463E3 /* ObjectiveCSupport+Sync.swift */; }; - 5F60C05920DE08C51913604CEB3768A7 /* SizeValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EA4752B73E63203CB356EBDD437099C /* SizeValueProvider.swift */; }; + 5B83B05F4CC0FCD8CFB5397724C4FD93 /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 038ADDE00333895272A23634193D969C /* DisposeBag.swift */; }; + 5B8A458DC7C87F427A5C463F3CAC517B /* Decimal128.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A2FB707E8364F846466B5ED973980B4 /* Decimal128.swift */; }; + 5BF823878F8F6A082C28B977CBD89D0F /* RLMProviderClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C7E83A4A27FA925BE4FEB9ADA5F728E3 /* RLMProviderClient.h */; }; + 5BF915283943BA781822EC558E3C8D3B /* EpoxySwiftUILayoutMargins.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFC6E7C05BFC3BA550C17D6FCBC38569 /* EpoxySwiftUILayoutMargins.swift */; }; + 5C119A9284DC0111821F912194582B78 /* RenderNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F205826CF53F221C55766668B310CD4A /* RenderNode.swift */; }; + 5C2319C4B57E9EDAD36D44FE3214E0BE /* DotLottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 997D2F04ADAADEFE4C690333E29FADB1 /* DotLottieConfiguration.swift */; }; + 5C5E3EF8A9DDD6AD960384FD63550A9F /* RLMUserAPIKey.mm in Sources */ = {isa = PBXBuildFile; fileRef = 65883CBD3C82960B442D363DD2A1BAAF /* RLMUserAPIKey.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 5C5EEB343C3FC9264792162D474F78AA /* KeyframeData.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEC59383042CE47F8D0CEB5A19B090FA /* KeyframeData.swift */; }; + 5C769931192AD7279C895D7B6BD3940C /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 650030FB46C8158AE9D6776E55362552 /* DispatchQueue+Extensions.swift */; }; + 5C819F1ED9C7F670C455ECC0124AB1DD /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAFB10B90F6B08FA5A16B72351755C60 /* Platform.Linux.swift */; }; + 5CDD26EC54DC9389D8548F9776A77344 /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F1377AE2A018374F7E38102DAB38EC1 /* SingleAssignmentDisposable.swift */; }; + 5CE25C943925A2ECDF73B3319B59CC0F /* Recorded.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC91FDFBA01EAF6E81823766C48F913D /* Recorded.swift */; }; + 5D25127AE8CACC715CF5D4211F74DD7B /* RLMApp.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88E953D5F320AA06E4A055560B8D6323 /* RLMApp.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 5D407E579959281B31CEB06D8EBE57DE /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 088EF3AE010B5FEC4D59BEF60958A54C /* Multicast.swift */; }; + 5D6E566D294FAD7C3E7B6BD6EC571955 /* KVORepresentable+Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11DB5F058182415F6B3F073561A0FD77 /* KVORepresentable+Swift.swift */; }; + 5DF37D08FD45FAA70B5D533CB213B3FC /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33A287CDF23907C4B181476DAB8D5B90 /* SchedulerServices+Emulation.swift */; }; + 5E39C8B9DE6A736337725B6AB3E365EB /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 932BD8F9B3FA154815FA11FA5F5FB230 /* AnimationImageProvider.swift */; }; + 5E3DFA05C0DBBE379D00AB99AF04296E /* RLMAsyncTask.h in Headers */ = {isa = PBXBuildFile; fileRef = FC73C73F8937B7141C246B6A71F8F916 /* RLMAsyncTask.h */; }; + 5EDE608C519C24AF939914110C7CE74B /* RLMLogger_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E12E6376F912E76BF73F1D84D4F17515 /* RLMLogger_Private.h */; }; + 5EEAA67192C30531B6B6C14E3CAA913B /* KVORepresentable+CoreGraphics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 927F2ED0D8C691378E9D7EF3CB5C739D /* KVORepresentable+CoreGraphics.swift */; }; + 5EEFA6679BF28683E2B0F5E00A1EE713 /* Collection+Diff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C93D6535C7BC867E4C69E506694CD59 /* Collection+Diff.swift */; }; + 5F098717B430F34EDEDBD6A2CA25242E /* UIButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BE3F25208E99A10C0F37F0679798973 /* UIButton+Rx.swift */; }; + 5F0A29426B5289CE22EE51AFE0A28775 /* ObjectiveCSupport+Sync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D3080B76325FCF138D63CC517D48B6E /* ObjectiveCSupport+Sync.swift */; }; + 5F1587F7D254178C9A5B5660156B766F /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28925FF6F58A742E5E6DD3F3C07EDFE4 /* Error.swift */; }; + 5F2EE5A1C2A3B49BDFDB3173C3A438BC /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0530EB68CD3A5FFF1445CF240CD7AC9C /* First.swift */; }; + 5F60C05920DE08C51913604CEB3768A7 /* SizeValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E81382070E2871E3D5635C3947818820 /* SizeValueProvider.swift */; }; 5F878C835ECE9613898BAADD81628269 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 22333CAC86E4AF65A2E095FCAB5CA60C /* Security.framework */; }; - 604A0FCE129EEDBD6C237F0C9A944E64 /* RLMUpdateChecker.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9A78D4DD411D95BBCD453AE8D1C3AFF9 /* RLMUpdateChecker.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 609EB115EBE2C1BB25EE2FF2EE67A4BD /* Property.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D6359DB9B2826A4F81147FA5D705A39 /* Property.swift */; }; - 60BAEA9801B61919AD530641BE413C28 /* ClassReference.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59AED4516C95B175F961BA866E06B83E /* ClassReference.swift */; }; - 617D6FE7B9A9A14DB1264645C911E4E0 /* RLMAsymmetricObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA25DE0E2643B1EC0E980EB93C57D3DA /* RLMAsymmetricObject.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 61A18462BDA78A93839D3BB9F5B9AED8 /* GroupInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76760289CE276015628335EE998E177C /* GroupInterpolator.swift */; }; - 61D388C2FC70B04E3009F8B637031495 /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16F9243AECE5E40A0319EFA6521FA74B /* AnimatedButton.swift */; }; - 620156D990F4C04C434B664018B04F32 /* DotLottieCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C6792F58D0831D4996C24DA0D8D4868 /* DotLottieCacheProvider.swift */; }; - 620B9F393C7BBC2C3F35CEFE249433B2 /* GradientFillNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2492C5FA2031D75A5F76423EE814F791 /* GradientFillNode.swift */; }; - 622729269E4AD85978169EB71E4167B8 /* SectionedChangeset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 726B7172C27F38E023D565B92EE60381 /* SectionedChangeset.swift */; }; - 6256DB01A97ACA7D0AD1C5389696F1F0 /* CustomPathAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F95A14EF92AAC7F16BCD2AD31B64927 /* CustomPathAnimation.swift */; }; - 628CDB06C7F3F3E57DB94DD64667153B /* CGFloatExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B24C80FE57C70B4FB2208269EB5FF682 /* CGFloatExtensions.swift */; }; - 63277073366CA40ED96BD5328E9805DB /* AnimationCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F0015A2EDC47766A9C0189023BF39E /* AnimationCacheProvider.swift */; }; - 63EFE87E8A7A3CE96F08E6069D806DC8 /* StringExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77B5B0EF9598ECCB3901F7128032B4A0 /* StringExtensions.swift */; }; - 646AD1360EFBC515834B854FB30B8F73 /* RLMObjectId.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5B62F4AF4BE8D8E741862E4B8D730EAF /* RLMObjectId.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 64DAB8A56B358275914C16CBD48DA571 /* TrackingOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD0FC473387B7ABF63B20A1E5880882E /* TrackingOptions.swift */; }; - 64E230FC52FC8F5F5B1952E8981720BD /* FillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13D087D6CAB65EC7172F8CEBAA2550A1 /* FillRenderer.swift */; }; - 64EBACEE7943F2F32D6A72465ADA5942 /* ShapeRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AB18E854422E2E075CBE851142C891C /* ShapeRenderLayer.swift */; }; - 65965B455F7501E3B98AB73CFAABD884 /* EpoxyModelProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 483E1BBDFF9D2BADA7A6FA4C82FE66D5 /* EpoxyModelProperty.swift */; }; - 6743BC63F3BED2A10609CEF981BABBC6 /* ShapeLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1403F3C09A6E005D9AB0441AEFB3A5B2 /* ShapeLayer.swift */; }; - 6757755C2E0681C5BE3F417257C33E43 /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDC373898DAF7FFB6F27DB4BAE49E648 /* Group.swift */; }; - 679087304863DD71CA12BE503B33280A /* Archive+BackingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2153295D7D55786DB39F2D530A3524B8 /* Archive+BackingConfiguration.swift */; }; - 67F8FAC2EA8069948CB07E41CD9A7187 /* RLMFindOneAndModifyOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 63D399C9CE2DC691792ECF9A4FC59A15 /* RLMFindOneAndModifyOptions.h */; }; - 682649CEC1CA3CFF6F01C692754E53D5 /* App.swift in Sources */ = {isa = PBXBuildFile; fileRef = 938FC1BD2495AB94035AE46CDA14171F /* App.swift */; }; - 6852804C48D8E70FF824D25EDAF123E5 /* SwiftUIMeasurementContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C40DBBFC02FF6821538FD7D82C54452E /* SwiftUIMeasurementContainer.swift */; }; - 68988A40797DD32AB199E413AA208632 /* CoreAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20DB8386DD36489F0F24FCD1546A3EDC /* CoreAnimationLayer.swift */; }; - 69E7A60C8E32C5FD9D51B19C96529484 /* RLMResults.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D054DA143745DBA135D0398693CFEEF /* RLMResults.h */; }; - 6A0030E3CECDCD5F8D4F3EDE64FF9E37 /* ColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C115278709DA827A8B29064522A37AB /* ColorExtension.swift */; }; - 6A345C49FD31944746373F3DB67EFDB3 /* GroupIdentifyEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = C68BAE4C01BC69BC15DC14EE64DD2B43 /* GroupIdentifyEvent.swift */; }; - 6A64A8B1373AB0E2FB4B8F67E6F1232C /* RectangleAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 476BA50B533E5DFAF86BCA6F2FDD540E /* RectangleAnimation.swift */; }; - 6AB49426FB6ADB70AE672224937E64A9 /* RLMLogger.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 61DF2D3A5B3C1213724D1A6CEEFBF020 /* RLMLogger.h */; }; - 6B298E8B32805A1466D0B4CCC73AC7A5 /* DotLottieImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 438306A4F2821D2E85E43B3841080B09 /* DotLottieImageProvider.swift */; }; - 6BD9EDC02B8BE625AE23F093BD557CF5 /* GroupOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0D1B40C4EF2E478BA1CC798CC816769 /* GroupOutputNode.swift */; }; - 6C133193471A0A93B4CE45491148072A /* TegKeychainConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1732A242CAFE23B8D1F21BC603F5E66B /* TegKeychainConstants.swift */; }; - 6C30B5428653570B67A240D491AA0B2C /* RLMRealm_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC52D95A44EEA06BFFC6AAD76558623 /* RLMRealm_Private.h */; }; - 6CCE4E2180DE5FEB5B8CE98B9768DE6D /* RLMFindOneAndModifyOptions.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 63D399C9CE2DC691792ECF9A4FC59A15 /* RLMFindOneAndModifyOptions.h */; }; - 6CF869385B68714ECCF7C24A53EBCCF2 /* RLMError.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 52B640C0DBE81DF1C70F4E7DA6933D4A /* RLMError.h */; }; - 6DCE8234EB9670F3E3B3627B4A6E4309 /* Revenue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EEBB37A05CF00336AF27C41233D4FB3 /* Revenue.swift */; }; - 6DFA70326D4C540DC43BD455F5A4A658 /* Toast-Swift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F9788ABEDF3EE8324D788A9FFCD93A /* Toast-Swift-dummy.m */; }; - 6E91E81F5B0EAD294DDC61682905135A /* AnyNodeProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAC043563295EAE19EEAB5AB5B9390BB /* AnyNodeProperty.swift */; }; - 6EEF08E1970531934EA69185040B71F1 /* RLMCredentials.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 43E179EE9759F2086189DCD2433D8713 /* RLMCredentials.h */; }; - 6F0BD1ED488665BCB5E418BFB949379B /* RLMSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 974A6CD926D99083E9EFF66C0DD242AE /* RLMSchema.h */; }; - 6F68AFE592DE871F7AA1CE31B413707F /* LegacyGradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FEDFE08B9841D968C29D13F97778666 /* LegacyGradientFillRenderer.swift */; }; - 6FC16F5639926D99A63C51C6AB855C2D /* PropertyAccessors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A14331D14A82CA107B492C9464B9FD1 /* PropertyAccessors.swift */; }; - 7003751838B815A2CED970B9FFE2E472 /* RLMApp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 362E791CE9F275451035B7C2B419365B /* RLMApp.h */; }; - 70B38FE38BC1033664F4287CCC545BB3 /* RLMApp_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 3537A564CA40319E278C5F26FFFFD0AB /* RLMApp_Private.h */; }; - 71ED8B725658B0D3E35D4B72106BC615 /* SchemaDiscovery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 045B9BAAD188C122A8DBBEF655C86517 /* SchemaDiscovery.swift */; }; - 72C4A427880F50CD06F2246543F5A63E /* RLMObjectBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA262080A3BDCF01B24AFFCCC65D45D /* RLMObjectBase.h */; }; - 72F625D1872BACF2B714F35BD4400C16 /* RLMMongoCollection_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 2AF0A386C8092B507B15FA8A2127FEAD /* RLMMongoCollection_Private.h */; }; - 731778ABB84CEEC6A9F75289A4483DCC /* Sessions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D7AEA6E86F717A4396DCDB666EC8336 /* Sessions.swift */; }; - 732981CA8A49AA1C8CAA06E28CB5009F /* RLMUserAPIKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB4F153A939AAEC82F139AC2B9072B0 /* RLMUserAPIKey.h */; }; - 752C7184ED4531729174293BFC7AF6E7 /* Migration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D8FE0EF22E6701FAA918A9947AC7EC4 /* Migration.swift */; }; - 75A4037EC9BCDAFE13C59C0F9D51F1FC /* Repeater.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6658549B2116D0E9747F436C56FC1CDC /* Repeater.swift */; }; - 763934ABCAC2107F689FFA1C636E8CC1 /* RLMSet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2FE4A54EFB2AFC2BF2FA875380DAEF45 /* RLMSet.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 76623954A536129B13F2FFCEE433284C /* RLMDictionary_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B56B086CF8E7AED19CF31B55325C7292 /* RLMDictionary_Private.h */; }; - 7686BDEA02FB018135B77E758C91C1EB /* RLMMigration.h in Headers */ = {isa = PBXBuildFile; fileRef = EBA1D7604C213456DBF0E6F8C38BF068 /* RLMMigration.h */; }; - 76C3F373B29A5253A14FA662D8C1DB8B /* ShapeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B5EAB9AA44398E55C8FF8479F89679A /* ShapeNode.swift */; }; - 76C6E0D86861969763B419ACB1DCE18F /* CoreTextRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 388035D86AD5210A0D7A636B50F726CA /* CoreTextRenderLayer.swift */; }; - 76D6A67C276309C675005F8F2D9BACD5 /* RLMCollection_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 41276D5A90A8EF06F419DE3CE2F110FC /* RLMCollection_Private.h */; }; - 7790A8E9CD7CC166BCBF9A458D7C7161 /* Diffable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AED604359ACAFD7A0E5DC640273219CD /* Diffable.swift */; }; - 781196D64582DA37C53701FCE40DF952 /* LottieAnimationSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF4E2FACFB6FD0FA3D6FA246A6E6461A /* LottieAnimationSource.swift */; }; - 781671C9525101E2C5AC80A6C3DF54C6 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = A86D8EBE976B3BEA2EA51DE29AD13000 /* Map.swift */; }; - 785AAB8D341C2E92AA837AD70D3DC9B3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; - 78EAFEA99E81D3D905E7A155D362CEAA /* BaseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B18429EFDD37CEEAA5BCCB4E9F22ADD /* BaseEvent.swift */; }; - 79084BB080F196C1466CC498E520D560 /* PolygonNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD84B6CC54B055661967F44DB159C58D /* PolygonNode.swift */; }; - 7930CC94FEDB66C83232ABF1D66FA504 /* RLMSchema.mm in Sources */ = {isa = PBXBuildFile; fileRef = D07E39D477AFAF2BC2CE650B5F518A14 /* RLMSchema.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 79357127CF464E581B98E88DBD44AAAD /* ImageCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C22A2E2350913BC70DCA91FC461BC8F3 /* ImageCompositionLayer.swift */; }; - 798DAF48522E71F1F8C5B79A6762C5CE /* AnyValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A321CB5D3E0DE838C9DA04B993A8757 /* AnyValueProvider.swift */; }; - 79C86C021536DED61E1F80461103B46B /* RootAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ACFE69119899B7D3459E843FDAE6895 /* RootAnimationLayer.swift */; }; - 79DF5164542097A87970D857C22688FD /* SectionedResults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DF733B063BB9D55E2B1C9248C17C4DE /* SectionedResults.swift */; }; - 7A696A85D76170467B53EABAC39B8602 /* UIView+SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98BBDB661B80D66EDE4E693BB8928C50 /* UIView+SwiftUIView.swift */; }; - 7AA5D2ED28C6B278DB39BC615D38ED5B /* EmbeddedObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26BA2E52440B94DE5BDAAB89C020D581 /* EmbeddedObject.swift */; }; - 7BA7FEA98B6EF202744404FD8199BC91 /* RLMPushClient.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EA971B2E54A6178765A35DE29D09F9A2 /* RLMPushClient.h */; }; - 7CA92C3E7B77BCE5A34C6B0B3F4B72E9 /* Glyph.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88F83019CAD3AC1A24126FB28227624A /* Glyph.swift */; }; - 7CE8619CE9A3F77EB60D35C845F4B516 /* StarNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D2A92B88B472CFE91649E197B18A0FB /* StarNode.swift */; }; - 7D895A4E1DD3F1364591B2DFDF00D39C /* UrlExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64A3D15DA65211306A33C85657A5C695 /* UrlExtension.swift */; }; - 7DD679732E35E5228BAAD0F33CD488AF /* Stroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = 924836D47B15E6303A7A2EAD04E55592 /* Stroke.swift */; }; - 7DE1FF54265584B1CC6BF98F9C9973C5 /* QueueTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DAA7669FDAD14ADB6F35212085FA0B6 /* QueueTimer.swift */; }; - 7E0A0DBC92E477F9C6A59E43672EB925 /* RLMSyncSession.mm in Sources */ = {isa = PBXBuildFile; fileRef = 22EBA8932E77F8B65697496399410BD3 /* RLMSyncSession.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 7E6B77C186F89336B1619344171487C2 /* VisibilityAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F6E806F55D4C45538F526EBE5400F6C /* VisibilityAnimation.swift */; }; - 7EB01DAC4A49792A80A1B6905A43F3CA /* EpoxySwiftUIHostingController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95A5C354AF98AE1FF16AE854820DD928 /* EpoxySwiftUIHostingController.swift */; }; - 7F92CD47A767254D994615EE4A9BDA0C /* CGPointExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F802AF2917E9AA77899AB8FAFAD7BC7B /* CGPointExtension.swift */; }; - 7FA37685B51EA68D5DFE130A80555B67 /* RLMRealm.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D7BFA522990AF1B40C678DB197CDAEF /* RLMRealm.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 7FA7B3FD6373D6749899BA771301554A /* ShapeCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CB771BF88CE17F14239FE2D5B865F2F /* ShapeCompositionLayer.swift */; }; - 802C8700DC0809CF4002A2CFA2BED876 /* RLMThreadSafeReference.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 61EDB2BAE00548F62CE2B66A2BC04AE7 /* RLMThreadSafeReference.h */; }; - 80350B5AF08197CA460BB98110663D89 /* RLMArray.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95121F1A519266FC9DE2328ED668863E /* RLMArray.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 813510793F6679E5B5E346716F929F78 /* EventPipeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BED51D5D23F9964558118F9E6D24BB8 /* EventPipeline.swift */; }; - 8149453866F74E14E251C543C00F4F4A /* RLMRealm+Sync.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C49CB281974AEFEEAE2C1D34E7003C8C /* RLMRealm+Sync.h */; }; - 81576232C86D1FC298BA607AFEA8BC82 /* DefaultAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF1B0D1EA447A777447695F899DB891D /* DefaultAnimationCache.swift */; }; - 81857B00CB3B7487E6EB03EB28006CEE /* LayerDebugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF3D03841FC8919E8A2EB97BEF97E9B6 /* LayerDebugging.swift */; }; - 823C771490E7D1DDA1901467E5CBBCD0 /* EventOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED940207DB28AA7483B3D31A5E1CB84C /* EventOptions.swift */; }; - 8265E3DD925B875260795DD9F5D4E78B /* AnimatorNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 706A373605DA6DE514EB4DDF7E346D38 /* AnimatorNode.swift */; }; - 829BF45FCE221D845A77D858D9AB8CCA /* DotLottieUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 538373E4A512C555B6D2427BFFCEE4A9 /* DotLottieUtils.swift */; }; - 8319F4D6CA27AB8D6DB919DDEF0168FC /* RLMMigration.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EBA1D7604C213456DBF0E6F8C38BF068 /* RLMMigration.h */; }; - 83E05D94926C7E9E091B3C409A8C4892 /* RLMSwiftValueStorage.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6176455C6D63603B5DDCE76B88D462F4 /* RLMSwiftValueStorage.h */; }; - 840529400322C792BCEBF26F90723CA4 /* RLMAccessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 694A0826CE39C4E8042EE53DBFDA4CFB /* RLMAccessor.h */; }; - 85B6C302162F2ADEC2769BF74C8871FB /* RLMMigration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61497CDAE7B6DEDB4FBDF9E8EFAFBAC1 /* RLMMigration.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 85BB0BF6EE479120F6D16DB0D1CD9F34 /* ShapeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = A20FDDF81A6BCAC95D2832A932698D5C /* ShapeTransform.swift */; }; - 85E70E6DDE80C8AB3C175E179B0FEA41 /* AnimationTextProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C61026F8E1C6DF54CDB5A69F15C2200B /* AnimationTextProvider.swift */; }; - 8614573B023ED802C1EEB78B880E438F /* Atomic.swift in Sources */ = {isa = PBXBuildFile; fileRef = C187FD27B373CF6DF98FE027B4ADEF85 /* Atomic.swift */; }; - 861938F84AE148CCDFFE0CBC34A9FFD0 /* Bundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6510416D95CE35D1CF66968816548A05 /* Bundle.swift */; }; - 86398C0FDA78F714415C4D95A995C250 /* RLMObjectBase.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FAA262080A3BDCF01B24AFFCCC65D45D /* RLMObjectBase.h */; }; - 868EC2D6F5E462D6EC55BCAA99DA1848 /* ObjectiveCSupport+BSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AED2DDC10D3CF0C4312A1DC76D1CE84 /* ObjectiveCSupport+BSON.swift */; }; - 876EE37947934409808939990FBC28D7 /* SwiftUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB9DF0E023DBC2C70D66912158736B06 /* SwiftUI.swift */; }; - 87C0EC9442F9A655B1060393C5B53EBA /* AmplitudeSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F3E3D98492D034F23565CF6FC33D388 /* AmplitudeSwift-dummy.m */; }; + 604A0FCE129EEDBD6C237F0C9A944E64 /* RLMUpdateChecker.mm in Sources */ = {isa = PBXBuildFile; fileRef = 131C20BEB34257CDC703ED2E73EBD9C3 /* RLMUpdateChecker.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 6060412AEF1B5FF40E6F17EDA4577E37 /* TestableObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D1B73AA090CE62DEB33A5541738881B /* TestableObservable.swift */; }; + 606E820E0429E36AB6B3B037071842CF /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCB7652C1673BFCE771CDA331530C443 /* Platform.Linux.swift */; }; + 609EB115EBE2C1BB25EE2FF2EE67A4BD /* Property.swift in Sources */ = {isa = PBXBuildFile; fileRef = 004F0BAB7881E7C98A1772F64D66B4CF /* Property.swift */; }; + 60A758AC5AF93BE2CB5306A322B00BD7 /* Infallible+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C1F3EEF57325228E9B5EDEF351D71F0 /* Infallible+Zip+arity.swift */; }; + 60BAEA9801B61919AD530641BE413C28 /* ClassReference.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B60955EA27FE213C89E46EBE2F1B48E /* ClassReference.swift */; }; + 611EF6FC6CC7718D83A72E89299DE7B5 /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7031BBA1EE40AE5DE251922D41E89891 /* Timer.swift */; }; + 617D6FE7B9A9A14DB1264645C911E4E0 /* RLMAsymmetricObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 077A7244017E7A9FB3B3929A11D3EFF8 /* RLMAsymmetricObject.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 61A18462BDA78A93839D3BB9F5B9AED8 /* GroupInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 064B3A5517581611B0A73B0011BB26E6 /* GroupInterpolator.swift */; }; + 61D388C2FC70B04E3009F8B637031495 /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = F306D24C58AA4738DBA94EE688D5F7A4 /* AnimatedButton.swift */; }; + 620156D990F4C04C434B664018B04F32 /* DotLottieCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7264331C9E4073714A8CB32782E158F /* DotLottieCacheProvider.swift */; }; + 620B9F393C7BBC2C3F35CEFE249433B2 /* GradientFillNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA2A0C135790DFE7166F3CB4645A9A32 /* GradientFillNode.swift */; }; + 621597FDE1C168BD9F1C79DF649BB3C3 /* UITableView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70D2E65022B76ACFD0A44CF366600877 /* UITableView+Rx.swift */; }; + 622729269E4AD85978169EB71E4167B8 /* SectionedChangeset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 528778E00AC8AAF2B4D10A4EBFEC7DBF /* SectionedChangeset.swift */; }; + 625417F9577DEEB73A75A0F6C4C0AE9B /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = B57DB4ADB381420D15042B715A56F9A7 /* ObservableType+PrimitiveSequence.swift */; }; + 6256DB01A97ACA7D0AD1C5389696F1F0 /* CustomPathAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F52EF652738EA87B2BE89981D156DC02 /* CustomPathAnimation.swift */; }; + 626B8F9A558B20AC6A9B1A26CAC94E5A /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3966491D8320CAAE6A81CCF410B99F3 /* PrimitiveSequence+Zip+arity.swift */; }; + 6284AC51A29E6B3F3A05E60AF222A84E /* Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49A56DFE3B841B57363C435618F204A2 /* Infallible.swift */; }; + 628CDB06C7F3F3E57DB94DD64667153B /* CGFloatExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C35562723E0E2056F449067DB6C2DAB4 /* CGFloatExtensions.swift */; }; + 6302AA661E8ED73DE214B5D811FD0054 /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8822D938FEC4E4C6A3921F1E0F1AAA77 /* ToArray.swift */; }; + 6319CD8FD5879CE7B27B538453F4FBF0 /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20BC2C485BEA8772CAF6748A5B5729E8 /* InvocableScheduledItem.swift */; }; + 63277073366CA40ED96BD5328E9805DB /* AnimationCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E176483703262CDC89222DE31103618A /* AnimationCacheProvider.swift */; }; + 63328EE52982943381D1F2F52EEE56F2 /* RxPickerViewAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D92337490A4759085C8C939DF06CAA8 /* RxPickerViewAdapter.swift */; }; + 63DB8632C56426446E46FA16EA0DC951 /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33817E0FE756712586BF3DB3B090952D /* Completable.swift */; }; + 63EFE87E8A7A3CE96F08E6069D806DC8 /* StringExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E10DC33ED82F903929824DEC996C732A /* StringExtensions.swift */; }; + 641CCC92DE6F507D9A4133C3EAC760D2 /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B94C2ED02DE7D7EAE9480419D066AA5 /* CombineLatest+Collection.swift */; }; + 6445446E477FE1621F47283C0EE130AE /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D54ECF1779A15F4508AC0BF2A4EFD4A /* AsyncSubject.swift */; }; + 646AD1360EFBC515834B854FB30B8F73 /* RLMObjectId.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA3445FFF1C35F96331D1FC35F9F414F /* RLMObjectId.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 6483F13D3F439EC3F14AEE7093389928 /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 038ADDE00333895272A23634193D969C /* DisposeBag.swift */; }; + 649AA5104EEF892189F3FEBACC38B38D /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45955CA019BD6182F0AC9DBF5CC2FB83 /* Platform.Darwin.swift */; }; + 64D88A7392F24FCAE2105F347B13152C /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 609D5A3A0BD0C67C146E51BF3CA93EAB /* Range.swift */; }; + 64DAB8A56B358275914C16CBD48DA571 /* TrackingOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 682A1828DE2821641CC464271BB2CAD9 /* TrackingOptions.swift */; }; + 64E230FC52FC8F5F5B1952E8981720BD /* FillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E139263F8BBDB3A95487DCB5BB9B0CD /* FillRenderer.swift */; }; + 64EBACEE7943F2F32D6A72465ADA5942 /* ShapeRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17D3B81289714EDD74A5156F510B90C8 /* ShapeRenderLayer.swift */; }; + 64FDD18C8AFA1122777C02E301A95BC3 /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3CA3D525AB28D70F09461825EF902E7 /* MainScheduler.swift */; }; + 658D6B4BEDAD417225CA32D53C5CE9D3 /* SharedSequence+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8B496F3656EACCE6BB9DAEDBD8BF095 /* SharedSequence+Operators.swift */; }; + 65965B455F7501E3B98AB73CFAABD884 /* EpoxyModelProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5057D37AC049BAA45DCA73EBA5C7123 /* EpoxyModelProperty.swift */; }; + 65A152B1E7EF9F149C135FB1A270665A /* RxTextViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 993D18DBE661C6C05EB3E998C473C1C1 /* RxTextViewDelegateProxy.swift */; }; + 66326E797C7E1B1FAFA63991FCB60838 /* NSView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00E3EE9A4E0C4F472F569827D168A28D /* NSView+Rx.swift */; }; + 66C8837C6C94501154E05320B5E592E9 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59832376EA6C94389397CB9936A9D322 /* Bag.swift */; }; + 6714E8DC76B0F1EEAB5110A42093BA6C /* BlockingObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E99782464EB9FC233FAB3AA9EC8DE03 /* BlockingObservable.swift */; }; + 6743BC63F3BED2A10609CEF981BABBC6 /* ShapeLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8027070DF25C8ED54AE15E7E06F68397 /* ShapeLayer.swift */; }; + 6757755C2E0681C5BE3F417257C33E43 /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = B73EF561D06A291CA388F3E279D1BE39 /* Group.swift */; }; + 679087304863DD71CA12BE503B33280A /* Archive+BackingConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C181A786B86040AF164424444B92E04 /* Archive+BackingConfiguration.swift */; }; + 67A316F219C90400A109C2FDC765EFD5 /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66A4D4CE48F5708FD3F46BCFFBDCCF64 /* Using.swift */; }; + 67F8FAC2EA8069948CB07E41CD9A7187 /* RLMFindOneAndModifyOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A948869F2FFA6AC988559994969074C /* RLMFindOneAndModifyOptions.h */; }; + 682649CEC1CA3CFF6F01C692754E53D5 /* App.swift in Sources */ = {isa = PBXBuildFile; fileRef = 308B61B35364FF69046366D07C715F97 /* App.swift */; }; + 6852804C48D8E70FF824D25EDAF123E5 /* SwiftUIMeasurementContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7ED364F15E6DE9A42AFCA6595BFF965 /* SwiftUIMeasurementContainer.swift */; }; + 68988A40797DD32AB199E413AA208632 /* CoreAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1FD67C6CD86BD3064EAE2D549771CBD /* CoreAnimationLayer.swift */; }; + 68ACCF8F6A5C6724DDBE6F67065EB24B /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E711D9BE08F6411E387B1DD6E3C4B0CC /* SerialDisposable.swift */; }; + 69D4BA448DFD49F506C44DB5CFD43B43 /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF63BC0AD430C351E771F71A57E674B8 /* CompositeDisposable.swift */; }; + 69E7A60C8E32C5FD9D51B19C96529484 /* RLMResults.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FB166805E59B887D6FEB1E492F11AC /* RLMResults.h */; }; + 6A0030E3CECDCD5F8D4F3EDE64FF9E37 /* ColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AE9D33941589916776DD5574A20D6D8 /* ColorExtension.swift */; }; + 6A345C49FD31944746373F3DB67EFDB3 /* GroupIdentifyEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3FF87AEA82E94DC3871DF193989E93B /* GroupIdentifyEvent.swift */; }; + 6A64A8B1373AB0E2FB4B8F67E6F1232C /* RectangleAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = E78883F5A05E743DA35DBAE01EEB8522 /* RectangleAnimation.swift */; }; + 6AB49426FB6ADB70AE672224937E64A9 /* RLMLogger.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3DAF5FF02F05131C60201C1763C7E268 /* RLMLogger.h */; }; + 6ADA128BA557892BCB0293BB79559C4A /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70633AE6ED6BF0C393657353D12AB6E7 /* Zip+arity.swift */; }; + 6B298E8B32805A1466D0B4CCC73AC7A5 /* DotLottieImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 129BD882637F2F938CB6C853C5266B04 /* DotLottieImageProvider.swift */; }; + 6B82FFA3BD02953ABA4E8126B6E75F06 /* HotObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 740BE94EC18CA6A5382C86DC1B46FA4E /* HotObservable.swift */; }; + 6BD9EDC02B8BE625AE23F093BD557CF5 /* GroupOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 402009B8D4C46DF4C533BB83C2D1E270 /* GroupOutputNode.swift */; }; + 6C133193471A0A93B4CE45491148072A /* TegKeychainConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB06DA9745B40F2A9A45F6491A5DC709 /* TegKeychainConstants.swift */; }; + 6C30B5428653570B67A240D491AA0B2C /* RLMRealm_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6558C12582C6008A6A366AB05C1D541A /* RLMRealm_Private.h */; }; + 6CCE4E2180DE5FEB5B8CE98B9768DE6D /* RLMFindOneAndModifyOptions.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3A948869F2FFA6AC988559994969074C /* RLMFindOneAndModifyOptions.h */; }; + 6CD558933F1520219719F2AC2ED44E59 /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B35284DCDF41CC60756FCC3B0D63EF6 /* PrimitiveSequence.swift */; }; + 6CF869385B68714ECCF7C24A53EBCCF2 /* RLMError.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1F11366AB98A25F58850B09966C02A59 /* RLMError.h */; }; + 6DB3DDF5BBBEB0307F7D43725CA9E41C /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4168666E95A8679EE3B962AB55F462A /* SubscribeOn.swift */; }; + 6DCE8234EB9670F3E3B3627B4A6E4309 /* Revenue.swift in Sources */ = {isa = PBXBuildFile; fileRef = E78739A2741CBF2B86358EAF57193D02 /* Revenue.swift */; }; + 6DE98D4D1A6C2924F21419F94A65110A /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29F186411B51C5CA7F3532645C8F1A1D /* ObserveOn.swift */; }; + 6DFA70326D4C540DC43BD455F5A4A658 /* Toast-Swift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1310F2915BBD3692B996F4F25C27D1 /* Toast-Swift-dummy.m */; }; + 6E04B1BCCC822DA7BCA83A4A054EE8F8 /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F12A5A8FEEA8CA0E5A9DA11F15BA80B5 /* Observable.swift */; }; + 6E12E7EF4FBB63C1D48270B57D0BD7DA /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD8C48A6452494281645A53D71B7C002 /* Disposables.swift */; }; + 6E91E81F5B0EAD294DDC61682905135A /* AnyNodeProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1173B0E4444DBF6F8164F5481F93C751 /* AnyNodeProperty.swift */; }; + 6EDF30E50B4EE22F5B72EA04297E0452 /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60446A48826CB6592871310646E31F54 /* StartWith.swift */; }; + 6EEF08E1970531934EA69185040B71F1 /* RLMCredentials.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 9615FC6B90324F508CAE7ADF1E4367EB /* RLMCredentials.h */; }; + 6EF38E60DD4C0FF75DEC80B622966516 /* Binder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EA46B1BF24A1454DDAA8A19C2E58971 /* Binder.swift */; }; + 6F0BD1ED488665BCB5E418BFB949379B /* RLMSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = 385A3507E7FA129668D715BA74A205CF /* RLMSchema.h */; }; + 6F68AFE592DE871F7AA1CE31B413707F /* LegacyGradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD23EF836688F14BC6DA3BFE431F7331 /* LegacyGradientFillRenderer.swift */; }; + 6F7AD65C094EAA53E38710347908057E /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = A45B0B58FCA1E2DDE29C1A6302CB69F0 /* Debug.swift */; }; + 6F9562ACD6CEDA78F83D75B7A0FAB209 /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82DE3091E5BE0D921D4F3EF97C9A65D7 /* Catch.swift */; }; + 6FC16F5639926D99A63C51C6AB855C2D /* PropertyAccessors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75CE12C3E385F99080B0426B0AB86BD1 /* PropertyAccessors.swift */; }; + 6FF97FCF0002C68E1DCC33B966EE32E0 /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = B57DB4ADB381420D15042B715A56F9A7 /* ObservableType+PrimitiveSequence.swift */; }; + 7003751838B815A2CED970B9FFE2E472 /* RLMApp.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E87A4DD1639C457A4A2D92A34EE8F890 /* RLMApp.h */; }; + 7010F3E9E0D97F9BC37EA0DCB049EAD4 /* RxBlocking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE7FC255DC9625AAF88290DE0418E8A /* RxBlocking-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70AC24DD7FE50B3D00D28E4F1533AF62 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 444770367DBE67800F4317A123F566B2 /* InfiniteSequence.swift */; }; + 70B38FE38BC1033664F4287CCC545BB3 /* RLMApp_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = A9EF4A0903A0413A50DF2E666CFA2E3D /* RLMApp_Private.h */; }; + 7112B21B30C21C190F85D7726FDD28F6 /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBAB1CB1D7370132460AF15D8F9856BD /* Generate.swift */; }; + 7129868F63B1EB9DE44DC8F742605A7D /* Binder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EA46B1BF24A1454DDAA8A19C2E58971 /* Binder.swift */; }; + 71ED8B725658B0D3E35D4B72106BC615 /* SchemaDiscovery.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD52D29D79E4F075B1F9E8C43822CCDB /* SchemaDiscovery.swift */; }; + 725D55EB78221105579A7D990B3ED1E9 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D3B28F645FAB86D2BBADF61D1D6FD74 /* Platform.Linux.swift */; }; + 72C4A427880F50CD06F2246543F5A63E /* RLMObjectBase.h in Headers */ = {isa = PBXBuildFile; fileRef = BD3008DB1FC827037E3658F425B418BB /* RLMObjectBase.h */; }; + 72F625D1872BACF2B714F35BD4400C16 /* RLMMongoCollection_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = B2B2653B0D9C91ECDA2BAABB08D84D79 /* RLMMongoCollection_Private.h */; }; + 731778ABB84CEEC6A9F75289A4483DCC /* Sessions.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC69BDD57BB554660EEA3B767EBCD245 /* Sessions.swift */; }; + 7321CB1BE5CD85C165083B1E9C706333 /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 609D5A3A0BD0C67C146E51BF3CA93EAB /* Range.swift */; }; + 732981CA8A49AA1C8CAA06E28CB5009F /* RLMUserAPIKey.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5365F2191B179405C44F9603022DE9 /* RLMUserAPIKey.h */; }; + 73B4D0F82BE5A8CD73FC6EF421D2D8EA /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1BC9BC404D031AD4024077495C2D358 /* AtomicInt.swift */; }; + 73BF4E0B40CC1D7C1446EF57626AF225 /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F335876373BF5F36C9356B7860E51AF /* VirtualTimeConverterType.swift */; }; + 745622229EB192D8B78EBD3A852464C5 /* RxTest-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C09D185350515595E57516FBAEAE0896 /* RxTest-dummy.m */; }; + 74C9E61AA90E644FF6CD3EED62672282 /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = AECA3A35E70228E8F00008F47C956E54 /* AsSingle.swift */; }; + 74D084AAAF967E0BF0C6824F9FD8DF30 /* Infallible+CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 658D33CBEE3802F725B0B71ADA30B5F2 /* Infallible+CombineLatest+Collection.swift */; }; + 75253E1AF1435C34B899E6E7AB6C2098 /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2466D6161E3C60E02DB20EC7907CFF5 /* BehaviorSubject.swift */; }; + 752C7184ED4531729174293BFC7AF6E7 /* Migration.swift in Sources */ = {isa = PBXBuildFile; fileRef = F24EF2C380DBF740D379E27400A4BD98 /* Migration.swift */; }; + 757ED09234B43C2B8381195F7F3CC943 /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EFFC69F9BC5A4764130DA628B2E190A /* ConnectableObservableType.swift */; }; + 75A4037EC9BCDAFE13C59C0F9D51F1FC /* Repeater.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA11571C4BABF534A56CE14A1EF12F31 /* Repeater.swift */; }; + 75C7E20E81B7B4134E28CBD580A08A80 /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AD94CC8262D710BD25455B1814E3BAC /* Repeat.swift */; }; + 763934ABCAC2107F689FFA1C636E8CC1 /* RLMSet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77F2EA54168F7A6AA57065E4D051BAFD /* RLMSet.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 76564BB3B7BC444088A51A910580D41B /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FE2F455BB0B3BB511814A6969E19707 /* DispatchQueue+Extensions.swift */; }; + 76623954A536129B13F2FFCEE433284C /* RLMDictionary_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B9A175EFA6655B6B26236CFF7067527 /* RLMDictionary_Private.h */; }; + 7686BDEA02FB018135B77E758C91C1EB /* RLMMigration.h in Headers */ = {isa = PBXBuildFile; fileRef = F108155AC694055D24110B36BD0ED2E8 /* RLMMigration.h */; }; + 76C3F373B29A5253A14FA662D8C1DB8B /* ShapeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 815DA6A516F57D2BEBC576BAF3ED85DA /* ShapeNode.swift */; }; + 76C6E0D86861969763B419ACB1DCE18F /* CoreTextRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A51C456198DEE49073991328B60F38E /* CoreTextRenderLayer.swift */; }; + 76D6A67C276309C675005F8F2D9BACD5 /* RLMCollection_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 0115229EC3822492F61080555ED0EA6A /* RLMCollection_Private.h */; }; + 76FDB7F0ACAC702D1FD7E5C7B26A3B19 /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C291189F16072FF3DEC3490950649B7E /* SchedulerType.swift */; }; + 7783C544112FE6141DAF72C975C31DE0 /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 605284BA9A07713F37ABE3CD02643C2A /* Bag+Rx.swift */; }; + 7790A8E9CD7CC166BCBF9A458D7C7161 /* Diffable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 955BCBB1495E5D0C1A66959FB9176C80 /* Diffable.swift */; }; + 781196D64582DA37C53701FCE40DF952 /* LottieAnimationSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = A28170F968C7E7018F117EE6DB96285D /* LottieAnimationSource.swift */; }; + 781671C9525101E2C5AC80A6C3DF54C6 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B8C09DFCE62F0A68A5C323A25C77A90 /* Map.swift */; }; + 78619D374991D035C59CD4ED5D7A980B /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1228B5B1566720D12D44921D520BEF /* PriorityQueue.swift */; }; + 78C70C568511F47E70304121EAAC57FF /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C77C700850BC1A31EE7CE81FE49C10A /* DefaultIfEmpty.swift */; }; + 78EAFEA99E81D3D905E7A155D362CEAA /* BaseEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1AA613B48EA607AFB1E793045AB7CE4 /* BaseEvent.swift */; }; + 7901EA24082064D3F1008679B801DB49 /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20BC2C485BEA8772CAF6748A5B5729E8 /* InvocableScheduledItem.swift */; }; + 79084BB080F196C1466CC498E520D560 /* PolygonNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 690C3BF8D2E4A505ADA508CCF3B5AC70 /* PolygonNode.swift */; }; + 7930CC94FEDB66C83232ABF1D66FA504 /* RLMSchema.mm in Sources */ = {isa = PBXBuildFile; fileRef = 33C190425D6245B4ED6DAA47D9EDA3DD /* RLMSchema.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 79357127CF464E581B98E88DBD44AAAD /* ImageCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A47C7BEC960C9F369BA067586920B5C8 /* ImageCompositionLayer.swift */; }; + 79741307834F56DA9971748B70FEFCFE /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71089096F8C350C9C983A82FCFDE864C /* Zip+Collection.swift */; }; + 798DAF48522E71F1F8C5B79A6762C5CE /* AnyValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0B118E1805BE674C532297DB58584A2 /* AnyValueProvider.swift */; }; + 7998CA14107B3B792999F4B2EF26AB2E /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7536E6E9B07BEB522685CA429E6B663 /* Zip.swift */; }; + 79C86C021536DED61E1F80461103B46B /* RootAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE646227FA81878914174D0021B4AC93 /* RootAnimationLayer.swift */; }; + 79DF5164542097A87970D857C22688FD /* SectionedResults.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E270A06306C720EBE6537BB2662B08A /* SectionedResults.swift */; }; + 7A696A85D76170467B53EABAC39B8602 /* UIView+SwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 955EED4F1C437C25AAB5E0BE222A543A /* UIView+SwiftUIView.swift */; }; + 7A7BB9BA0E4E854BA3D032E6C8F29419 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; + 7AA5D2ED28C6B278DB39BC615D38ED5B /* EmbeddedObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE89C48F7272D699A1D021E68C587AAD /* EmbeddedObject.swift */; }; + 7AD4CE7B802E658C3E3438AD2712BDD7 /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C14977A1807ACBB8AAAD395373C7543 /* ObservableType+Extensions.swift */; }; + 7B2AF4D8909C3996E1AD886153429987 /* NSTextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29D6C316F63A13DF4EFF7C7F9FB06821 /* NSTextView+Rx.swift */; }; + 7B726E8DE10B96AC2E39F33D86F78901 /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3FBF547E580E4FC8AB88FC2CDD9A1DE /* AddRef.swift */; }; + 7B7AC66AB31C29F8FF67CA447B23A0EF /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0273365CF273519C454BF191B7A6B33 /* SingleAsync.swift */; }; + 7BA7FEA98B6EF202744404FD8199BC91 /* RLMPushClient.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2D45FB0BC8A3B8259BA20596AA273096 /* RLMPushClient.h */; }; + 7C65598A2C031035E21E2D37966F851F /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF6605FE8C5C1DA836346D4A71D26C8 /* Do.swift */; }; + 7CA92C3E7B77BCE5A34C6B0B3F4B72E9 /* Glyph.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F14F0442AA48C96C40E738A4B7D5038 /* Glyph.swift */; }; + 7CE8619CE9A3F77EB60D35C845F4B516 /* StarNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FE61DF3F991F27E533F4850E9010A9C /* StarNode.swift */; }; + 7CFD97A4A66883EB2EF09C977F36E1F7 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C3846393F8E723E42C1597F915A52AE /* Errors.swift */; }; + 7D895A4E1DD3F1364591B2DFDF00D39C /* UrlExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F031ECF4F27C68D363C9BFCB739F1E21 /* UrlExtension.swift */; }; + 7DD679732E35E5228BAAD0F33CD488AF /* Stroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6562B6625171D02335B52219E9B448ED /* Stroke.swift */; }; + 7DE1FF54265584B1CC6BF98F9C9973C5 /* QueueTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F5BC10F3CE8140266D32374A7710B3B /* QueueTimer.swift */; }; + 7E0A0DBC92E477F9C6A59E43672EB925 /* RLMSyncSession.mm in Sources */ = {isa = PBXBuildFile; fileRef = B67B8CEC03DE32A39DCC001C2E7458B4 /* RLMSyncSession.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 7E1061DDF20372D5A0EBF71867F2C36F /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCAF46AA5FAB0728FB3BDD9C07F9BC44 /* Queue.swift */; }; + 7E2E8B9CE672652CD88D17368B611FD3 /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 088EF3AE010B5FEC4D59BEF60958A54C /* Multicast.swift */; }; + 7E6B77C186F89336B1619344171487C2 /* VisibilityAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90A0F1F0BD2017F9E91E63366C603905 /* VisibilityAnimation.swift */; }; + 7E6FDE5F76D785912C9294D973CE8E56 /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 320A162AE9287D8C452A95752E566595 /* ConcurrentMainScheduler.swift */; }; + 7EAA8B28240F7E5CE19C0AA6E191FABC /* RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = 109CBA34D6C8C174705203729BE9B5AF /* RxCocoa.swift */; }; + 7EB01DAC4A49792A80A1B6905A43F3CA /* EpoxySwiftUIHostingController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8558816C571B744717FE046A4A354C8C /* EpoxySwiftUIHostingController.swift */; }; + 7EC5CBF9F3E7E96A1198B8EECB8FC2CB /* UIGestureRecognizer+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 533540299068399C3E9BC3DD57AD95B4 /* UIGestureRecognizer+Rx.swift */; }; + 7EF32B18C5B484658F63722DCEDDBA21 /* Pods-AVIROTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BF72053E2EFB7108CE50D5C32ED657EC /* Pods-AVIROTests-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EF9F53380243D66558AF936EC5AE2E0 /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57C74CE2BC19C73E021D5A554165A059 /* Create.swift */; }; + 7F726644507BED425BC25779B7B00A43 /* ObservableConvertibleType+Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C21B4F02575F203F9DBAFA4EAC38EC2 /* ObservableConvertibleType+Infallible.swift */; }; + 7F92CD47A767254D994615EE4A9BDA0C /* CGPointExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AC4B094059E30A4C8CBF8104C9C11B7 /* CGPointExtension.swift */; }; + 7FA37685B51EA68D5DFE130A80555B67 /* RLMRealm.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2DB6C0D1CF5318263A2F22511B2FC677 /* RLMRealm.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 7FA7B3FD6373D6749899BA771301554A /* ShapeCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E057B584725E8568504D18EBB3888B5A /* ShapeCompositionLayer.swift */; }; + 7FABE4EB70DEF0B67BE661D32AF68E06 /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8789E4DE7A86BE9DD829E4DBC202758A /* ScheduledDisposable.swift */; }; + 802C8700DC0809CF4002A2CFA2BED876 /* RLMThreadSafeReference.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A981DA45CA15D31A9DB132F606CFA21D /* RLMThreadSafeReference.h */; }; + 80348E17B7D829503E8761FF8B3C38BE /* RxTableViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2EED5CFAAFD9B94B115C200FB447B44 /* RxTableViewReactiveArrayDataSource.swift */; }; + 80350B5AF08197CA460BB98110663D89 /* RLMArray.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8BFBBCCD8493E16893C8E1F9C897329 /* RLMArray.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 80922C312F0234E217199AB5930C101C /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4ADE78DCE41527E36CCE32B7618453CA /* PriorityQueue.swift */; }; + 80929105D768D703FCED146D1E640D60 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCB7652C1673BFCE771CDA331530C443 /* Platform.Linux.swift */; }; + 813510793F6679E5B5E346716F929F78 /* EventPipeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3912D66FAC951F49A0D745DC90439581 /* EventPipeline.swift */; }; + 8149453866F74E14E251C543C00F4F4A /* RLMRealm+Sync.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DE10937CD839AEA9524A2518C0777C86 /* RLMRealm+Sync.h */; }; + 81576232C86D1FC298BA607AFEA8BC82 /* DefaultAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00E998788F29854B09D51B4C97423E67 /* DefaultAnimationCache.swift */; }; + 81649F8CCBAE8B2E402BCFCCEC2CCB60 /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BB43362235B43FFCD80AD7934201996 /* CombineLatest+arity.swift */; }; + 81857B00CB3B7487E6EB03EB28006CEE /* LayerDebugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2B01BCB1BD1DA06FA52F9CAFF699B64 /* LayerDebugging.swift */; }; + 81F1628E5F2840243A4EBC8E5CFB9A39 /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AD94CC8262D710BD25455B1814E3BAC /* Repeat.swift */; }; + 82025CEA0E45E6A0CBF1FFDC1D09EDAF /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15091179A2A3B9FE9E545F7B16FB0AD4 /* DisposeBase.swift */; }; + 823C771490E7D1DDA1901467E5CBBCD0 /* EventOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DC2BCF25907169BF5A4EEF6860481C4 /* EventOptions.swift */; }; + 8265E3DD925B875260795DD9F5D4E78B /* AnimatorNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53B3DB3C0CAB53E80767317BB31AEAEB /* AnimatorNode.swift */; }; + 826FB267A1987158B31C95195F12509F /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2555864FD7C6130553E28889C9533125 /* BooleanDisposable.swift */; }; + 829BF45FCE221D845A77D858D9AB8CCA /* DotLottieUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A40B1DA9AD9057086D84EC2F25AAED2 /* DotLottieUtils.swift */; }; + 8319F4D6CA27AB8D6DB919DDEF0168FC /* RLMMigration.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = F108155AC694055D24110B36BD0ED2E8 /* RLMMigration.h */; }; + 83708D207D410D06E58B64B56661355B /* RxCocoa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EA62B21A257098E5120BE54B840D34D3 /* RxCocoa-dummy.m */; }; + 83E05D94926C7E9E091B3C409A8C4892 /* RLMSwiftValueStorage.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 98E9E623CD959BE173AD84B684638857 /* RLMSwiftValueStorage.h */; }; + 83F508C5073F92B00E75012FF111A68F /* NSTextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92CB2D56C6BA535714F9D897545B13FC /* NSTextField+Rx.swift */; }; + 840529400322C792BCEBF26F90723CA4 /* RLMAccessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 60E647C4165513364E29C07EA7A6872F /* RLMAccessor.h */; }; + 841014B283EE9F2F8580D9C8804EE7F2 /* RxSwift-framework-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BCE84E01FFA9166B5439D056918A4FF4 /* RxSwift-framework-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 85445DAEDDC3947B16A65ABA7EB59155 /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C7643CC668329A9F9ADF24B26F3440 /* SynchronizedUnsubscribeType.swift */; }; + 85697FE431315B7DFAD0ED4862CE02E4 /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6A9E2EEB4981BE4B5CD3A9F16905AD8 /* Deferred.swift */; }; + 858098B5697C822078C2FBAD3073B50D /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D345072F5BBCB6B06D5CF38D8A09E1E /* Cancelable.swift */; }; + 859252B74C821CA06B56A5178B85442D /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E711D9BE08F6411E387B1DD6E3C4B0CC /* SerialDisposable.swift */; }; + 85B6C302162F2ADEC2769BF74C8871FB /* RLMMigration.mm in Sources */ = {isa = PBXBuildFile; fileRef = D35E966B8CF31BAFEA570EEA1FA6BA43 /* RLMMigration.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 85BB0BF6EE479120F6D16DB0D1CD9F34 /* ShapeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C16C1A32F3A62984CEA6D5DFF181591 /* ShapeTransform.swift */; }; + 85E70E6DDE80C8AB3C175E179B0FEA41 /* AnimationTextProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 322BE6CE68BD1DCB1B8FA921E14D54A5 /* AnimationTextProvider.swift */; }; + 8614573B023ED802C1EEB78B880E438F /* Atomic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 314BAC27A6F2084191E3A21D693F828D /* Atomic.swift */; }; + 861938F84AE148CCDFFE0CBC34A9FFD0 /* Bundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = A66C09F0ED8AE5BE3546CD10F6FEA5BF /* Bundle.swift */; }; + 86398C0FDA78F714415C4D95A995C250 /* RLMObjectBase.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BD3008DB1FC827037E3658F425B418BB /* RLMObjectBase.h */; }; + 868EC2D6F5E462D6EC55BCAA99DA1848 /* ObjectiveCSupport+BSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91F50E9DB4F119C11C2A8B28D86CB8A6 /* ObjectiveCSupport+BSON.swift */; }; + 86A9F1E04041FE72058D224729CD7F8E /* SchedulerType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C9947240567F2CBA0E16E5BFB48C3CA /* SchedulerType+SharedSequence.swift */; }; + 86F003CEA78F5AF6453C5FF49498F51F /* Date+Dispatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = D26C0CB0261E18D1D767B6A99E51CD20 /* Date+Dispatch.swift */; }; + 86FEDAA4078FBA3CB106F95186FDBF69 /* CompactMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2B596FAC8657BE8F78E515807B15C70 /* CompactMap.swift */; }; + 876EE37947934409808939990FBC28D7 /* SwiftUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8095D139F8AFA9621F73F9604E0C4D0E /* SwiftUI.swift */; }; + 87A2E52A0CE3D0EFC986C109B8B3734E /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A17220BFF737F7746770AE6DC714571 /* DispatchQueue+Extensions.swift */; }; + 87C0EC9442F9A655B1060393C5B53EBA /* AmplitudeSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 66CC02664AFD4B717578DA92C8D259AF /* AmplitudeSwift-dummy.m */; }; 87E3B15B2AA7D226CB60059610C1241A /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FC44524D343C3B738F0361E1E8AE2679 /* QuartzCore.framework */; }; - 89142820F9B92275CFE11B4CD1710A34 /* StarAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C825A1A8613F553854B1DB58419CE650 /* StarAnimation.swift */; }; - 89CC858F841DAFE05B4AAC8CECC18CA7 /* TextAnimatorNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1111FFD5BA6CA1DA7E82D21FB7ADADD /* TextAnimatorNode.swift */; }; - 89FFD982A163C5845AC893BA842DC86C /* AnimatorNodeDebugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E242B0418B2FCD497FE2C8D5E440EEF /* AnimatorNodeDebugging.swift */; }; - 8A9025AE4A9232EF04AAFFA2EEA1416F /* ComplexTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B89E955E9BF8B05EFCEEC1F626182E0 /* ComplexTypes.swift */; }; - 8AE10C0E7D0B0AA68D83CD9471748730 /* LottieSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84BE1D4F230DED4DD965CC2849D4E32B /* LottieSwitch.swift */; }; - 8B2072B251574B461AEF7A915C8AF90F /* RLMObject_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B7E4CF4A046A74618C0FFF8BE50143C /* RLMObject_Private.h */; }; - 8B50670495858E54B180558568B52D07 /* LayerTransformNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0562F4E415C5D503D1C44E8D147EE294 /* LayerTransformNode.swift */; }; - 8BB525347161239365FB81511E634776 /* Marker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AF593A8B8F26C667FC2244FF4C8F7EB /* Marker.swift */; }; - 8BD86B5E5C4D9040FF6F940A7DDE5B5E /* Events.swift in Sources */ = {isa = PBXBuildFile; fileRef = 337238BD521563334DDFF8818D6B1060 /* Events.swift */; }; - 8BD9D141C5B7707226B40ED458DE9A46 /* RLMCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = D3643B180A19B837FD1DE977D09BCA95 /* RLMCollection.h */; }; - 8BFA582E32D4CCA22809D5D430075BA1 /* RLMUser_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 451EA1ACAC6C5BA6578EDD0EE4B69B13 /* RLMUser_Private.h */; }; - 8C42A7A9022BBAFCF982F250E3A7500D /* Schema.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA703F82DA6E9DA67358F00BB1E07934 /* Schema.swift */; }; - 8C600446F61A0811FAEF6EF16A800A9D /* CALayer+addAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE6461FFF487FE2242AC0B6D253B094 /* CALayer+addAnimation.swift */; }; - 8D5C5BDB9FDC1F4CC1FE4728AAD2596E /* BezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = A62BA6BA0B225FFBB4D55598BA000365 /* BezierPath.swift */; }; - 8D914D0B7698C7B33CDCCE35CA5A04A6 /* Types.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3252B31DC4150DB57E315FD6D3436BD /* Types.swift */; }; - 8F0710C18DAE2AA6285254CA73FD3347 /* DataIDProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3991C2A53BDA42624A61BB3BDF09F4B /* DataIDProviding.swift */; }; - 8F3B61FDAC0D3D8226AADDF013946108 /* RLMMongoDatabase.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 506E8F1E71CCF2EE831C4E9269BE39A1 /* RLMMongoDatabase.h */; }; - 8F43278BE5C756108EA3A0B50803EC0F /* RLMObjectId.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = DD247B0AF9FCEFE9DE9A6473C527A5CA /* RLMObjectId.h */; }; - 8F82E78D6E8BB8CFF319D8D1F5BC7204 /* RLMValue.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5AB29DA96ABCB8A75A63976F1B58C255 /* RLMValue.h */; }; - 8FCD00BA998893DDCF87DC69E9A47C51 /* CALayer+setupLayerHierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C157B395E0985161CFE1DD61FF9EB2E5 /* CALayer+setupLayerHierarchy.swift */; }; - 8FD8D53B797803137EE6E4AD0D60E686 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFAAC639751A73F3DE727FE6E3818828 /* Timeline.swift */; }; - 8FE32363CD8C3E59A8AE9D7A068D384C /* RLMManagedSet.mm in Sources */ = {isa = PBXBuildFile; fileRef = B871C9F09F74396AA67FB14A90BF44AF /* RLMManagedSet.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 8FE84C22C10FB60A6415744AB2F868A1 /* RLMSyncConfiguration.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = CCD810A0A60C72F849CAE57ADC216614 /* RLMSyncConfiguration.h */; }; + 88A0AEF3BF25B5AB230D3FF8280F6D16 /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AA0919B195E457DC4090EC47A3D8985 /* Disposable.swift */; }; + 89142820F9B92275CFE11B4CD1710A34 /* StarAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EA9C17A856DC033823ED0E37F4ACD5C /* StarAnimation.swift */; }; + 89CC858F841DAFE05B4AAC8CECC18CA7 /* TextAnimatorNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D24178972D03DC2CF2D50494842E38B /* TextAnimatorNode.swift */; }; + 89FFD982A163C5845AC893BA842DC86C /* AnimatorNodeDebugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = D298C0F3678058548E35C34CCE930406 /* AnimatorNodeDebugging.swift */; }; + 8A3CF40E98F18AED18202AFB13D21312 /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2E35B001D8E6B24570A6E45880B6FD3 /* TakeLast.swift */; }; + 8A9025AE4A9232EF04AAFFA2EEA1416F /* ComplexTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2D3E56A937B1C0DA4B7415A0BD137E4 /* ComplexTypes.swift */; }; + 8AD62B971FC7631CF0A7BD73E04FBAC1 /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9AD481FD59F64451799D78FEA007C1D /* Window.swift */; }; + 8AE10C0E7D0B0AA68D83CD9471748730 /* LottieSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E1E62FD77D81C6619046C2785896A6 /* LottieSwitch.swift */; }; + 8AF4868973692BDD65558514FD82AEFF /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EA00BB965E2B2DC494C444FA7504D1E /* PublishSubject.swift */; }; + 8B1F0A86460BBA1A779CCC30EBAFEB4D /* RxTableViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2CD587C58414AD8C075D947CF7F0DB9 /* RxTableViewDataSourceProxy.swift */; }; + 8B2072B251574B461AEF7A915C8AF90F /* RLMObject_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C624B4503218077DCDBB1E00A24C075A /* RLMObject_Private.h */; }; + 8B2E331E093F7856F580D81AEC0743EE /* UIActivityIndicatorView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58352309D98CED7BD720DDFAAC382FDC /* UIActivityIndicatorView+Rx.swift */; }; + 8B50670495858E54B180558568B52D07 /* LayerTransformNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 405E765CFD7E18D6EEC5BCDA06BEFEDD /* LayerTransformNode.swift */; }; + 8BB525347161239365FB81511E634776 /* Marker.swift in Sources */ = {isa = PBXBuildFile; fileRef = A383BADF66500A3FC94AD12F4EEFB980 /* Marker.swift */; }; + 8BD86B5E5C4D9040FF6F940A7DDE5B5E /* Events.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B5A9F2D9A66E044AD38CA953899F38C /* Events.swift */; }; + 8BD9D141C5B7707226B40ED458DE9A46 /* RLMCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9CCEE533A70708EB5148DE16AD7DA5 /* RLMCollection.h */; }; + 8BFA582E32D4CCA22809D5D430075BA1 /* RLMUser_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 59C345AC9D43ED895D604E99F4D7185A /* RLMUser_Private.h */; }; + 8C42A7A9022BBAFCF982F250E3A7500D /* Schema.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E4D4A037CD52FB099F211D7880A7FA3 /* Schema.swift */; }; + 8C600446F61A0811FAEF6EF16A800A9D /* CALayer+addAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D57F05776A63A08AE8E165126084ADA3 /* CALayer+addAnimation.swift */; }; + 8C9C440CB8FA053BD3647DC523574F5F /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF7B5C304E1B36D8D2BE47858CC3B76B /* ObserverType.swift */; }; + 8D1CB3C2CAED0673415F4138D42C0E75 /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF5991BD010773334EBAB041F268DE1 /* Timeout.swift */; }; + 8D5C5BDB9FDC1F4CC1FE4728AAD2596E /* BezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED81A592D8ACE6FE251C739B6D970581 /* BezierPath.swift */; }; + 8D914D0B7698C7B33CDCCE35CA5A04A6 /* Types.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D281CDAA1CE4B6D5B54A3A93C39D702 /* Types.swift */; }; + 8E12AB1108C4C834139FD90DA2F03213 /* RxTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38B7EF484DB48E9A06F55064F8E99509 /* RxTarget.swift */; }; + 8E22B26F0B84DE95997A8C9531C889F8 /* Event+Equatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE9A5FE5ED0657DF9A39A210CB6E8DD4 /* Event+Equatable.swift */; }; + 8E237E62C911ADF9CAB69E50216F8819 /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF7B5C304E1B36D8D2BE47858CC3B76B /* ObserverType.swift */; }; + 8E24E2B4D3989AE092E9233E51FFBA73 /* Infallible+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12DE36707CD21D8DA6286392C1043A9D /* Infallible+Debug.swift */; }; + 8E563156EC197B15D61B1B3F82150940 /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74942741CDEE0CBD5033ACF8A764AD4 /* Throttle.swift */; }; + 8EA1B688709F9143D7566FEF0675EBE8 /* DelegateProxyType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03819EAC9CC0EB430937A823B89898FB /* DelegateProxyType.swift */; }; + 8F0710C18DAE2AA6285254CA73FD3347 /* DataIDProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89558EC67BEEB1D8C7046735B6ABB4E7 /* DataIDProviding.swift */; }; + 8F3B61FDAC0D3D8226AADDF013946108 /* RLMMongoDatabase.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2A1B10972E31354EE3F67D1784964F02 /* RLMMongoDatabase.h */; }; + 8F43278BE5C756108EA3A0B50803EC0F /* RLMObjectId.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 557896491F6529811FA722AF4A37D9D4 /* RLMObjectId.h */; }; + 8F82E78D6E8BB8CFF319D8D1F5BC7204 /* RLMValue.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A64F36E5169979F2F7E2A0E0AE65FE51 /* RLMValue.h */; }; + 8FAA12E0B74CC9E9095E4552610EEC28 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; + 8FCD00BA998893DDCF87DC69E9A47C51 /* CALayer+setupLayerHierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8AE4B78534F1C228BAB9B3F1D70A0B6 /* CALayer+setupLayerHierarchy.swift */; }; + 8FD00334DE912E8D4049B259A418082A /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3661B79D569F9E786A4AE80DACBA8EC /* SubjectType.swift */; }; + 8FD8D53B797803137EE6E4AD0D60E686 /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39668C8491803F9994072389A75EB3E3 /* Timeline.swift */; }; + 8FE32363CD8C3E59A8AE9D7A068D384C /* RLMManagedSet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D746718A0F8BA45E9DD333D8B02CD12 /* RLMManagedSet.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 8FE84C22C10FB60A6415744AB2F868A1 /* RLMSyncConfiguration.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E7D1BDB455434610F24CF94AEEFFF63E /* RLMSyncConfiguration.h */; }; + 90E44784FCE4A68C3F895C313DA4BEC5 /* SectionedViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0121C39190868703D96C9EE3F8D423F9 /* SectionedViewDataSourceType.swift */; }; 910145FF03824ABFF17CA653C7F0BD5E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; - 91420C785F4816950347FCF77F2179E3 /* RLMSyncSubscription.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 50E5D515FC98234DDC41C559456D9552 /* RLMSyncSubscription.h */; }; - 91513C4ED700546574A58DF47ECFA823 /* Entry+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2E4097D6B3F296ABA449836684B7FDB /* Entry+ZIP64.swift */; }; - 91A36FDEDB3697B2A9CF64A4C1517106 /* RLMCredentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E179EE9759F2086189DCD2433D8713 /* RLMCredentials.h */; }; - 91B29F52C5EF543D44DF546AC51F7EB9 /* UIColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = F86EFE37E4E5F84050E765D3822AFD27 /* UIColorExtension.swift */; }; - 91E96A26B3F6BA87455262872734A647 /* GradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF80F5192A52DB28BBDFD5ED930232B3 /* GradientFillRenderer.swift */; }; - 92C86DD35BB35AD8C829F7BD677E1BD5 /* RLMSchema_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EED4CEC8AE255627390E14EDE98E742 /* RLMSchema_Private.h */; }; - 92CEAF0AC0DAFE2966978ECD29380EC5 /* BasePlugins.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC679C13ABAE50D99342E3563D490868 /* BasePlugins.swift */; }; - 93C038BEF68F11991649B8975D2D371C /* BundleImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3E2ABC8366E63A838F37E767067F0D3 /* BundleImageProvider.swift */; }; - 940BA64E3D53B7F4E75B9A154B10AE96 /* RLMUserAPIKey.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 1EB4F153A939AAEC82F139AC2B9072B0 /* RLMUserAPIKey.h */; }; - 949B9622BC36F6EC7953D97935CE2745 /* RLMUser.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31D36292AFF2AC540AC703E5A92D0180 /* RLMUser.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 9597DE830E0C73D5AD1078178E2D2CE8 /* FloatValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6116EE55B2599D953DBBC582CDE79420 /* FloatValueProvider.swift */; }; - 96E2765222D50BBA5E5C5C5E90E00213 /* ShapeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1038534C00CEDF862C8EF417F1B8907 /* ShapeAnimation.swift */; }; - 971328B5C2BBA4D11D1EDA68799FCBD6 /* RLMRealm.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 57C6CAEBE67053322E54B4449D59DDA2 /* RLMRealm.h */; }; - 97FC352B1ECE6980A313E50222CA100C /* RLMAPIKeyAuth.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 06A95C8471697952026D3F24815801DC /* RLMAPIKeyAuth.h */; }; - 9811B1C4F898EB3970895029EDFD7436 /* RLMSwiftObject.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = BBAF6B7D410DC5844C3A19B0FC0C7466 /* RLMSwiftObject.h */; }; - 98F7690D2CC16F6D99B0E011EF123ABA /* EpoxyModelStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 555473186EC1E6190616CA464F025375 /* EpoxyModelStorage.swift */; }; - 994A915004A26244DD59B177DC55463E /* CallbackContextEpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = F550180DDC544B8FA18FCF3ACE5EC3F9 /* CallbackContextEpoxyModeled.swift */; }; - 9967BBD9E33F5310CEA67C1F1ABBF273 /* RLMDecimal128.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FC4711E286E0ACB6160C1FD31670557A /* RLMDecimal128.h */; }; - 99984AD4DD54D5DD8289EC28D8892170 /* RLMObservation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37139FBFD634A8DAF09E9F36B9349D0C /* RLMObservation.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - 99AD1520D80F67ADFD15294CF87F502D /* SingleValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A280CA75865CFFBBF8E0D13D75004035 /* SingleValueProvider.swift */; }; - 9BE8898F423EBCB96A734E538D99292D /* PassThroughOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB07F9F5511EC432901E9244416C45C3 /* PassThroughOutputNode.swift */; }; - 9C20856EDF5A9D048A25A0E5E6C4D6EC /* RLMSet_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 6A9319A800B87685589E57A6D6B11E8F /* RLMSet_Private.h */; }; - 9C38F4A2700C7A8FA3E01DF077CD7B6D /* RLMUpdateResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 766B97BBD21B8F9636D9EF08ACA2434D /* RLMUpdateResult.h */; }; - 9C6E79060795603DBA5CE9E4C48C7437 /* TransformLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 348104567F88E116122B5B31CBFEADF6 /* TransformLayer.swift */; }; - 9C7A9DE5E81599EB456F1D454F9B9360 /* NSError+RLMSync.h in Headers */ = {isa = PBXBuildFile; fileRef = F96C9DDBCF215AF301733D358E2CE465 /* NSError+RLMSync.h */; }; - 9C8B7263B0CDA519E6F5AED80B95085D /* BaseAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB271E0B57884464C02F1575DB0846E1 /* BaseAnimationLayer.swift */; }; - 9D088891C4077B7C96B4626A7C9C0113 /* RLMSwiftProperty.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 070563A556DAB724FCE32890BA09BB10 /* RLMSwiftProperty.h */; }; - 9D1C7542A7BCDEBA0F62F273FD7231B0 /* Realm-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F96B93C565C1050B7E7DCB83B93B07A2 /* Realm-dummy.m */; }; - 9D97D7A9F367B1010DE815000736A2DC /* KeyframeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85556BFFE11145E9E85E101B2B676FC5 /* KeyframeExtensions.swift */; }; - 9EF94950CA31A710A904D8616E7FA45F /* IOSLifecycleMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = C309B1A1E3B1A9F944AEA68C5F182E79 /* IOSLifecycleMonitor.swift */; }; - 9FA9DB38B6AAFB96C9AC29D8E74BC853 /* TextAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A30157CCFC9C31BC5CB23741A1823EE /* TextAnimator.swift */; }; - A004B052D42091A2EB8702DD85F41B61 /* TrimPathNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FCEB0BDDD8E6FE153E11F17351D4289 /* TrimPathNode.swift */; }; - A0E1E99D275AC0763FDC74D83CB671A1 /* RLMArray.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 22EF2607C1AAA9034F4A42D29369F482 /* RLMArray.h */; }; - A1CD18B5FCB867925D31D44A189D601E /* Transform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16D3C2768C8E277D01D36754F641B087 /* Transform.swift */; }; - A2447EC46336FA6FF69AB1DC13170E8F /* RLMProperty.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9C4352D40FA10E001A7118FE41F226C7 /* RLMProperty.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - A25CEEBA5A399AD188DE8DFA8DE1D475 /* DidDisplayProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3293DD6F2F74BD69F152AAACC0D9D31 /* DidDisplayProviding.swift */; }; - A25F17DA8495451A0E06FB19EE3C2B61 /* ColorValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CD0EAEE6306F94D0A694861F8595826 /* ColorValueProvider.swift */; }; - A2D241953E4F2DA88EEC3CED7DEDF8B1 /* Realm.swift in Sources */ = {isa = PBXBuildFile; fileRef = 586CBBCC3BD5BD2D03B0AFAA51A143D4 /* Realm.swift */; }; - A32A6EA37EC2F6F87CFC55CC19953E87 /* RLMObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4A8EC6F8C9A2BD56C19829A0E610C4A0 /* RLMObject.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - A34746857C1D93ED5EB769679BE3348B /* RLMSwiftValueStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 6176455C6D63603B5DDCE76B88D462F4 /* RLMSwiftValueStorage.h */; }; - A39AFF3B0598FA5D710D92DF3D33A661 /* DropShadowStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = E03AB0573EE818531725CE054B577797 /* DropShadowStyle.swift */; }; - A39BE5F95EAE4E34BEF96B8A5F72CC50 /* CALayer+fillBounds.swift in Sources */ = {isa = PBXBuildFile; fileRef = F561B2FC8A4D401A83E9874A09B3ED00 /* CALayer+fillBounds.swift */; }; - A3F9E306A2049442A5569A140618D6BE /* AnimatedControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99B987C5520C9C4268CE5D4D93BA2940 /* AnimatedControl.swift */; }; - A429CAF4313C07DACFDA175BB61C0FCF /* IdentityEventSender.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16877C6EBDAF2AB2AE77E571B31D70DB /* IdentityEventSender.swift */; }; - A58F76A1F2431B06EE45143C94D9E774 /* SolidCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F664B0A33E0AB7A1E8ED859324BC2B5 /* SolidCompositionLayer.swift */; }; - A5FA86A6EE727C965D0865CA9D36531D /* RLMEmbeddedObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 62051FAD237ECCFB4C1A2907AF6FE52D /* RLMEmbeddedObject.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - A6547FC4C7D2C575ADC640F3C8A9F65F /* NSError+RLMSync.m in Sources */ = {isa = PBXBuildFile; fileRef = FC723E6C64B20EC24D5BBCF818D8ADFB /* NSError+RLMSync.m */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - A66BF837A4D360FAD30186528CF311BF /* LottieAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6074539526D31DC7E4E828C87974D23B /* LottieAnimationCache.swift */; }; - A69CB1A8EDF7F03AB5038B5EF4A3568C /* RLMEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = 63C78F8404D6FE70C19FF1939EF8CAC3 /* RLMEvent.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - A6E6072DF7430D90EA6DC3066FA7F7C7 /* RLMFindOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0105F14BCE5027503594BE0B9A101C /* RLMFindOptions.h */; }; - A76663C8A64410B8E5A066555E1B1B1F /* TextCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9CEF9CB5ED60F706AB7408B92A72BB4 /* TextCompositionLayer.swift */; }; - A792B8D5022D3246F710D86145BC4D72 /* FilepathImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 276E371660D70A6B95D51818627028F8 /* FilepathImageProvider.swift */; }; - A80FC03D01FA6E92776FE5C11F5977AC /* RLMSyncConfiguration.mm in Sources */ = {isa = PBXBuildFile; fileRef = C766F1471E082B68A6AA50DD28B457CE /* RLMSyncConfiguration.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - A8C20FC8D3EE7B05B6D506C8D69C575C /* SolidLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6F038FDFBF871C3E7A0A5F8E7A2F3DA /* SolidLayer.swift */; }; - A90005D97EA72A326B442F06D5449761 /* RLMLogger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 16AB1B1DC60ECF0E6F7CD6C75AE3DFD7 /* RLMLogger.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - A90CBD8E1781E2E19989DD93E5BE8033 /* RLMSyncConfiguration_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 156F0C27C261646D25016E1D22B5EFD4 /* RLMSyncConfiguration_Private.h */; }; - A92F58693CB51ECB55569EE2F6B035DE /* AnimationKeypathExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = E04729D9EB2D946A313FD97A39FB82AA /* AnimationKeypathExtension.swift */; }; - A961A6A4F5DEEEEFD5A03DF58AD26462 /* RLMSyncManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DAA3A902B9505851FBB229E534EC06A /* RLMSyncManager.h */; }; + 912A71A07511B5A578D26A48243A9605 /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD8C48A6452494281645A53D71B7C002 /* Disposables.swift */; }; + 91420C785F4816950347FCF77F2179E3 /* RLMSyncSubscription.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E372A7FE022080FC8C96158C85665B48 /* RLMSyncSubscription.h */; }; + 91513C4ED700546574A58DF47ECFA823 /* Entry+ZIP64.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5020D79CB71B74F91AC162889185B769 /* Entry+ZIP64.swift */; }; + 916CC9848945F0598F1954B63EE811E4 /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = A56EECF3BB38E43277CC5974C33BDCAB /* Lock.swift */; }; + 91A36FDEDB3697B2A9CF64A4C1517106 /* RLMCredentials.h in Headers */ = {isa = PBXBuildFile; fileRef = 9615FC6B90324F508CAE7ADF1E4367EB /* RLMCredentials.h */; }; + 91A7258F94D008A3D84CB29CF11A1AF5 /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8D8C4793F08A8437A613286DA1393CC /* RxMutableBox.swift */; }; + 91B29F52C5EF543D44DF546AC51F7EB9 /* UIColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = B71AD9AC552F496F0D3E67491CED2F71 /* UIColorExtension.swift */; }; + 91E26869282B5BDC09C1364502C71DFE /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3966491D8320CAAE6A81CCF410B99F3 /* PrimitiveSequence+Zip+arity.swift */; }; + 91E96A26B3F6BA87455262872734A647 /* GradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F3C49CA372585808C7CA06EB5E6C63E /* GradientFillRenderer.swift */; }; + 92BFD3CA2F51DC5E00463E6177F73DBA /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79D7323A191A7BB4DBD877679DAF9E34 /* ElementAt.swift */; }; + 92C86DD35BB35AD8C829F7BD677E1BD5 /* RLMSchema_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DDC54E1B28948A12329D32270057885 /* RLMSchema_Private.h */; }; + 92CEAF0AC0DAFE2966978ECD29380EC5 /* BasePlugins.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7147F4509C1329B8BA7FBDAD6E5FC194 /* BasePlugins.swift */; }; + 9352A63FDB23FE79C0D3F436A9BD42D6 /* _RXDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A8FF17081019B8D99A324B18F4DF82 /* _RXDelegateProxy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 93C038BEF68F11991649B8975D2D371C /* BundleImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB6412A09081951A5C46F4026A700AA4 /* BundleImageProvider.swift */; }; + 940BA64E3D53B7F4E75B9A154B10AE96 /* RLMUserAPIKey.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FE5365F2191B179405C44F9603022DE9 /* RLMUserAPIKey.h */; }; + 94435A2580C858C129539CF5F2269AD5 /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 724500373D9A5B9F20C77DF0140A7928 /* CombineLatest.swift */; }; + 949B9622BC36F6EC7953D97935CE2745 /* RLMUser.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8EE90F15DF6820A8877AD5E5E9F3925A /* RLMUser.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 949D359C31CA4788759C7221D9974853 /* UITabBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D68FD9228D0FDB3EC91620C34D6F18EA /* UITabBar+Rx.swift */; }; + 9597DE830E0C73D5AD1078178E2D2CE8 /* FloatValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD9CF0B65206D9CE1CA15EC1B85EB65E /* FloatValueProvider.swift */; }; + 95F4E8BB7CEA70B08B578DA59A748BF0 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DDE0B23CEE99EAD7DCBA6215EF6E0FE /* Merge.swift */; }; + 95F80CA43243EA0B50782D2F864CEC90 /* UISwitch+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E697144E2F836628D0EF1F988E48798C /* UISwitch+Rx.swift */; }; + 96E2765222D50BBA5E5C5C5E90E00213 /* ShapeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACE1C6A805A7577CC7C850DB0CF158FE /* ShapeAnimation.swift */; }; + 971328B5C2BBA4D11D1EDA68799FCBD6 /* RLMRealm.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 2C1C74D187BB2F0829923F69ED542CF2 /* RLMRealm.h */; }; + 973BD401E3C5733AEBFE160E4267A199 /* UITextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FCD006987B77D590CA980F9E1CF7021 /* UITextView+Rx.swift */; }; + 97772977644D2CE45C6B73F668E6E38B /* Infallible+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12DE36707CD21D8DA6286392C1043A9D /* Infallible+Debug.swift */; }; + 97805516DB95089270B8AA6AC3FDC63E /* ObservableConvertibleType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65B0B44D347A9C40C57F4A8609AD3F1D /* ObservableConvertibleType+SharedSequence.swift */; }; + 9784284124B30375541353AFA1F0FC50 /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9AD481FD59F64451799D78FEA007C1D /* Window.swift */; }; + 97922F9BA3139B1104BB4C483EFA1647 /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6A9E2EEB4981BE4B5CD3A9F16905AD8 /* Deferred.swift */; }; + 97DB580C72FB16C1FDED0607569F4B6D /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE701527182A0A865BEA3E87B73BEE4C /* HistoricalScheduler.swift */; }; + 97FC352B1ECE6980A313E50222CA100C /* RLMAPIKeyAuth.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3281B9719A62EF27E3095EBBD9128C75 /* RLMAPIKeyAuth.h */; }; + 980F7EB1BAC39CC466933436915339E6 /* Infallible+CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4E6C46462DF43DF9325E5908D9CE9AD /* Infallible+CombineLatest+arity.swift */; }; + 9811B1C4F898EB3970895029EDFD7436 /* RLMSwiftObject.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E21EC97CCAF4505B503D36BB7A62F2E6 /* RLMSwiftObject.h */; }; + 98F7690D2CC16F6D99B0E011EF123ABA /* EpoxyModelStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F515F69DB7CD5DA8104A142D8B6FB71 /* EpoxyModelStorage.swift */; }; + 98F9F7D849CEE718BF5D3A805685F4CD /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 466DC29DA9D9A69983D4A1A0D77D2EC4 /* Materialize.swift */; }; + 994A915004A26244DD59B177DC55463E /* CallbackContextEpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = E861D91ED730AAE5A74DCBFCFD6BB361 /* CallbackContextEpoxyModeled.swift */; }; + 9967BBD9E33F5310CEA67C1F1ABBF273 /* RLMDecimal128.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 0B1C9B68E8F6E5B0300C870FCAA08A7F /* RLMDecimal128.h */; }; + 99984AD4DD54D5DD8289EC28D8892170 /* RLMObservation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67AC59C43B73EA388CAFDEE51F9A86DE /* RLMObservation.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + 99AD1520D80F67ADFD15294CF87F502D /* SingleValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1259417AFE273F11E984F41ADFFD32C8 /* SingleValueProvider.swift */; }; + 9B0AE9B754403B07C8F23D8B85967380 /* ControlProperty+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = A46B2B011E92DACF7756C7250B0A0A1B /* ControlProperty+Driver.swift */; }; + 9BE8898F423EBCB96A734E538D99292D /* PassThroughOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1B43608C474DDBFEDFD8A7770AE6C9A /* PassThroughOutputNode.swift */; }; + 9C003FCE28C43675BA6489FF9668C29A /* NSObject+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35BF15271ACD5B34320E33A1BC87103E /* NSObject+Rx.swift */; }; + 9C20856EDF5A9D048A25A0E5E6C4D6EC /* RLMSet_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 9D4A00CD5102F35E8E47A58F1FE16D7A /* RLMSet_Private.h */; }; + 9C38F4A2700C7A8FA3E01DF077CD7B6D /* RLMUpdateResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 203D35C6E9C626DEABAD23530C56EB65 /* RLMUpdateResult.h */; }; + 9C5710636AE0AADFA60044F48D3BA090 /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3309E5D7855CD6A606ECAFBA2980425 /* Sample.swift */; }; + 9C6E79060795603DBA5CE9E4C48C7437 /* TransformLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA9056B65C1EF8B5A8D110B44181AD35 /* TransformLayer.swift */; }; + 9C7A9DE5E81599EB456F1D454F9B9360 /* NSError+RLMSync.h in Headers */ = {isa = PBXBuildFile; fileRef = 632967D471BAB6EC4B3E6B6AE2A90596 /* NSError+RLMSync.h */; }; + 9C8B7263B0CDA519E6F5AED80B95085D /* BaseAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5235CD207BFA19BA129620A596A79621 /* BaseAnimationLayer.swift */; }; + 9C918F78A94240E89A94B5B52D9BE307 /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB7EC37C4BE56170B8B4CD52173041F7 /* DelaySubscription.swift */; }; + 9CA3D4D1D90483613AA29BABB5A9C16A /* BlockingObservable+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6677861AC3C48E73D6620269C0DECC06 /* BlockingObservable+Operators.swift */; }; + 9CBA76964E94A557D6C13ACCB804297B /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD38BEBDC7FC0EDD36F43573A3311449 /* Filter.swift */; }; + 9D088891C4077B7C96B4626A7C9C0113 /* RLMSwiftProperty.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 7EB6C1E306DDA6BD2C56DC6C2D7B1FAC /* RLMSwiftProperty.h */; }; + 9D1C7542A7BCDEBA0F62F273FD7231B0 /* Realm-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 02AD247EA75F5E2DA57E76E9B9DBD188 /* Realm-dummy.m */; }; + 9D326EB935C78A675A97BA4C6703D27F /* UIControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A7B33A398BF141FBAD3310E1FE7940B /* UIControl+Rx.swift */; }; + 9D6E5FC20BC3B538575835028DAEF893 /* _RXDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = D19B6A9B96810333E9927C72EF7DDEF4 /* _RXDelegateProxy.m */; }; + 9D97D7A9F367B1010DE815000736A2DC /* KeyframeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D530E2D317C4204BCDB0676F3B1D78F9 /* KeyframeExtensions.swift */; }; + 9E9AF3E1DEEA8367F067431519548AE3 /* RxTableViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4F2928C490A62492DFB099057923ED8 /* RxTableViewDataSourcePrefetchingProxy.swift */; }; + 9EB0CD93CCE4694C4B6226B32BF34AEC /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3AA42800640EE6AC430C93A15D83902 /* AsyncLock.swift */; }; + 9EF642F8B133B46807D75D4E98BA487D /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3661B79D569F9E786A4AE80DACBA8EC /* SubjectType.swift */; }; + 9EF94950CA31A710A904D8616E7FA45F /* IOSLifecycleMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 515CE46AA8FD9078FFAF6AF7A199B90C /* IOSLifecycleMonitor.swift */; }; + 9F1CF8083D7732C578ADC4E4BA0D3302 /* RxPickerViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5802438CF37AE5873F19B98C16D817E8 /* RxPickerViewDataSourceType.swift */; }; + 9F7AC51620C9D9DEA9454FF6584DED83 /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91DD90BA645F6C04BE83EE943B29883B /* BinaryDisposable.swift */; }; + 9FA9DB38B6AAFB96C9AC29D8E74BC853 /* TextAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84862197285CF8DA0D9017B238DDA71C /* TextAnimator.swift */; }; + A004B052D42091A2EB8702DD85F41B61 /* TrimPathNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = D911F1F22D4B0DC5B1B5952B5CE49190 /* TrimPathNode.swift */; }; + A006A9A0C658D32D6D599E6F47CF1562 /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66A4D4CE48F5708FD3F46BCFFBDCCF64 /* Using.swift */; }; + A00F3986B2A16E862E2F8A94F8720EF9 /* RxBlocking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CB0F12EC861F2C69260A8A2FE2E5387E /* RxBlocking-dummy.m */; }; + A0E1E99D275AC0763FDC74D83CB671A1 /* RLMArray.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 6BDB6BD7DC15A72425F2D3BAA0B3D001 /* RLMArray.h */; }; + A1CD18B5FCB867925D31D44A189D601E /* Transform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC936ECD56A74E4B136C873394817BB /* Transform.swift */; }; + A1EA0761AF94CF6B3B31205DB504004C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; + A2447EC46336FA6FF69AB1DC13170E8F /* RLMProperty.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F206A861B70225C71B2FC97D66D6A87 /* RLMProperty.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + A25CEEBA5A399AD188DE8DFA8DE1D475 /* DidDisplayProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DD7BC445A0F1010A612ADEBD2BDA683 /* DidDisplayProviding.swift */; }; + A25F17DA8495451A0E06FB19EE3C2B61 /* ColorValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7D7FD6DAD231E96E295B86CCC13ADC1 /* ColorValueProvider.swift */; }; + A2D241953E4F2DA88EEC3CED7DEDF8B1 /* Realm.swift in Sources */ = {isa = PBXBuildFile; fileRef = E68139A80D76B00EDA968764F3B3449A /* Realm.swift */; }; + A2DE66DCC11931C4F656601AA2BDF7DE /* Infallible+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6FF510C123E469BD34A5CE298355E53 /* Infallible+Operators.swift */; }; + A32A6EA37EC2F6F87CFC55CC19953E87 /* RLMObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6F40E631E74920F5AFEA3B82D5163C67 /* RLMObject.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + A34746857C1D93ED5EB769679BE3348B /* RLMSwiftValueStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E9E623CD959BE173AD84B684638857 /* RLMSwiftValueStorage.h */; }; + A368040EA5B0E93C7179E414E74ECA41 /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64822AE780FD6956D86D6A1DD348815F /* Concat.swift */; }; + A39AFF3B0598FA5D710D92DF3D33A661 /* DropShadowStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52F1E6AC2BC0E5E4A2030EABF5BCF9AD /* DropShadowStyle.swift */; }; + A39BE5F95EAE4E34BEF96B8A5F72CC50 /* CALayer+fillBounds.swift in Sources */ = {isa = PBXBuildFile; fileRef = F222CE05707FE466417BDE2C4E09FE88 /* CALayer+fillBounds.swift */; }; + A3A2F11B0E21777F869E3D8D3E94F7B7 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 238409D7878DE58EDD535CB17AE1E1B9 /* Bag.swift */; }; + A3E8C8C3E02FAB1EE48202D2A2B8BB15 /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37D7F860F78D8FFE12F06BF9A91D46C2 /* ObservableType.swift */; }; + A3F9E306A2049442A5569A140618D6BE /* AnimatedControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04FE7F7F56F7ECB8AEB12EA76F43654A /* AnimatedControl.swift */; }; + A429CAF4313C07DACFDA175BB61C0FCF /* IdentityEventSender.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B69CE84ED843C3AE736866E7AAA3A40 /* IdentityEventSender.swift */; }; + A58F76A1F2431B06EE45143C94D9E774 /* SolidCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2A3FDA53B7E94FCB3AC69C9A60091C1 /* SolidCompositionLayer.swift */; }; + A5FA86A6EE727C965D0865CA9D36531D /* RLMEmbeddedObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8F86865B156E6F3D0F5A7F8323A6ED75 /* RLMEmbeddedObject.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + A6547FC4C7D2C575ADC640F3C8A9F65F /* NSError+RLMSync.m in Sources */ = {isa = PBXBuildFile; fileRef = DA15E36C3D2C47D605C23438DE603F99 /* NSError+RLMSync.m */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + A65B8394F4FDC6A500F8290327D7F2A9 /* TestScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF926AE70A68337A9C7C741B88EF6D07 /* TestScheduler.swift */; }; + A66BF837A4D360FAD30186528CF311BF /* LottieAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE0308DEE2FFCA6CA9007B06C6BE17F4 /* LottieAnimationCache.swift */; }; + A69CB1A8EDF7F03AB5038B5EF4A3568C /* RLMEvent.mm in Sources */ = {isa = PBXBuildFile; fileRef = A229AB5E01E5AB641A41927742EA91F4 /* RLMEvent.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + A6B6D994B61DCC5BE8EC781EEA79F1C1 /* TakeWithPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECC0D2257CF566B6350F3B2D1AE69AB7 /* TakeWithPredicate.swift */; }; + A6E6072DF7430D90EA6DC3066FA7F7C7 /* RLMFindOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5591FAE6B23033D83C73813DFDEBD875 /* RLMFindOptions.h */; }; + A724FC173860BA33829C2D5B0CD82FE5 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCC3C15E10A3AC0B7184E35FC48695B9 /* InfiniteSequence.swift */; }; + A76663C8A64410B8E5A066555E1B1B1F /* TextCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D469B874713B0F309874C8FF8E49D70 /* TextCompositionLayer.swift */; }; + A791E0FAED5482AA2CBC96BBFF3F6906 /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27156BF2D39ECA5104E73A3AF07E1A4E /* Switch.swift */; }; + A792B8D5022D3246F710D86145BC4D72 /* FilepathImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEF65C0B1B62EEF12B279F9110555D13 /* FilepathImageProvider.swift */; }; + A7944869F3770FAB6302AAA4D1BFA7FA /* RxCocoaObjCRuntimeError+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DC159E9ED344CCD9C690E1CB4EC8CC9 /* RxCocoaObjCRuntimeError+Extensions.swift */; }; + A80FC03D01FA6E92776FE5C11F5977AC /* RLMSyncConfiguration.mm in Sources */ = {isa = PBXBuildFile; fileRef = CE524C69273834832E915AED7DCB5BA2 /* RLMSyncConfiguration.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + A83F9A3F4E7C7C82CD8210C78DA1F443 /* Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49A56DFE3B841B57363C435618F204A2 /* Infallible.swift */; }; + A8C20FC8D3EE7B05B6D506C8D69C575C /* SolidLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F055B08EC70088A43D3C0C6A2EEDDA9E /* SolidLayer.swift */; }; + A8D7E9360C56E2229E6943AAA0185C98 /* ControlEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86A335AC4403CA55CFE4E6E4A2C791E7 /* ControlEvent.swift */; }; + A90005D97EA72A326B442F06D5449761 /* RLMLogger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4A9495286335E0BE912B405DB84C287A /* RLMLogger.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + A90CBD8E1781E2E19989DD93E5BE8033 /* RLMSyncConfiguration_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BF2E33CD13D1441E9361D4036C3D749A /* RLMSyncConfiguration_Private.h */; }; + A92F58693CB51ECB55569EE2F6B035DE /* AnimationKeypathExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E1F3682C9B09184EE5416EB2DF703C9 /* AnimationKeypathExtension.swift */; }; + A961A6A4F5DEEEEFD5A03DF58AD26462 /* RLMSyncManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03F464E083C39261ECF027662E19A9F7 /* RLMSyncManager.h */; }; + A9CB30992B0698EAC8B4CFB5F1CCDAE0 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = D21FF42CAEEFE4A7556D18008FB5E1D8 /* Platform.Darwin.swift */; }; A9CCD04E513E9AF636B6D2836A51BAEF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; - AAD9FDCF7389C0EFE67CCD5B9BAF3115 /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 858865DBB3F03A4A1F7673E7322570EE /* Optional.swift */; }; - ABD61BF538B0440B014502E121AD906D /* MongoClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87A8BAE94D8110F652FDCBB667DEC960 /* MongoClient.swift */; }; - AC2B3358725F8AFB36A2CD27240177F2 /* RLMRealm_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = BDC52D95A44EEA06BFFC6AAD76558623 /* RLMRealm_Private.h */; }; - AD227A5445DDCE3F7493564A61BCFC0B /* RLMRealmConfiguration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 62D7D377A7772C7567216C0DA8969EAB /* RLMRealmConfiguration.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - AEFDAB7256B33D13B6B1F732D13499A4 /* AnimationKeypath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92C459189B52647D938D1B09D25B6A6B /* AnimationKeypath.swift */; }; - AFFEB160C9DAC32478B61FCCED14535B /* PersistedProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53BFF822F1A4950D31B47AEA37CDD862 /* PersistedProperty.swift */; }; - B040048B02022042FAD7AA495FCB0323 /* RLMRealmConfiguration_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 90B4BBC0D6CB41BF138510B9A01A4D09 /* RLMRealmConfiguration_Private.h */; }; - B0F6648B7B06016F49CFAE0A6D837DF4 /* RLMNetworkTransport.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 55436145186F09929BAA7390E70AD2CD /* RLMNetworkTransport.h */; }; - B13E37853F3DDD39DBDA5A44FD72F510 /* Archive+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD9005902C75823CFD67A7E8BCC645F8 /* Archive+Helpers.swift */; }; - B211F1C97199CD5707F84E693CEC0105 /* AnimationContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD01264970D500B5BB3B5DE49CDBC7CA /* AnimationContext.swift */; }; - B247323EAE1CEDBB996AEBCE3083522E /* Shape.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69C691940718E7F64F536E5729556683 /* Shape.swift */; }; + A9EE6FC0B66CE74D05C013B75968FA6A /* SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4C1AA464B02383FB990C642B5F53D00 /* SharedSequence.swift */; }; + AA7D712F6F5E4902825120D447DDDF83 /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2466D6161E3C60E02DB20EC7907CFF5 /* BehaviorSubject.swift */; }; + AAD9FDCF7389C0EFE67CCD5B9BAF3115 /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11B4945B0068C35EA1D812C086E5706D /* Optional.swift */; }; + AB7CC336CBD76CF8009B7DB26103C218 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE31A23837332C96DF9A51A44C6AFBCA /* Queue.swift */; }; + AB8A64166D700BB79461D0A75A8CDE08 /* NSTextStorage+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C2264F01AC688B577A19EB71FFDA42D /* NSTextStorage+Rx.swift */; }; + ABD1FB1E50838F100EFC43A7A15DD4C5 /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = D99D4B7D9EEA877DFC136342FED19365 /* Just.swift */; }; + ABD5B83D15621B835AF8E9956732A232 /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 916C9E4C2AC4E15026EAF4E7D44E600F /* ObserverBase.swift */; }; + ABD61BF538B0440B014502E121AD906D /* MongoClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = D42BA9D4C8532090169F8C308C6B0467 /* MongoClient.swift */; }; + AC2B3358725F8AFB36A2CD27240177F2 /* RLMRealm_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 6558C12582C6008A6A366AB05C1D541A /* RLMRealm_Private.h */; }; + AC56DD6563EFB4F084311EC99F27C6D3 /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7031BBA1EE40AE5DE251922D41E89891 /* Timer.swift */; }; + AD11AA80C3FE71311DB6C7C91336199C /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7FEA2A54651E065B2372F5E8AC8300E /* Maybe.swift */; }; + AD227A5445DDCE3F7493564A61BCFC0B /* RLMRealmConfiguration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6677385814EBFD162488CF1CDA8F6027 /* RLMRealmConfiguration.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + AD6237C8337DE6B2A08127FD23D94976 /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51C8E5EEF0C3C9436BC02A9697FA2282 /* WithLatestFrom.swift */; }; + AD6E24EC42DE020441BD7F8E5329789B /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 103ADFAA6FAC14D13768C65F699B62EC /* ObservableConvertibleType.swift */; }; + AE56B923B4A92DF55D2BFCA196F0CDDB /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4ADE78DCE41527E36CCE32B7618453CA /* PriorityQueue.swift */; }; + AECBC83544CE5B0469A79F5BDA95C1A0 /* RxSearchControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D5DF8097AA1B13165298BB6A9A9489E /* RxSearchControllerDelegateProxy.swift */; }; + AEFDAB7256B33D13B6B1F732D13499A4 /* AnimationKeypath.swift in Sources */ = {isa = PBXBuildFile; fileRef = F594C59F98F8FB78B84D28682A26C838 /* AnimationKeypath.swift */; }; + AFFEB160C9DAC32478B61FCCED14535B /* PersistedProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFE33CD99B23141B8AFCBAA91F096F79 /* PersistedProperty.swift */; }; + B040048B02022042FAD7AA495FCB0323 /* RLMRealmConfiguration_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = B1DA9A75EB8759EEB62FE205EE92F95F /* RLMRealmConfiguration_Private.h */; }; + B0B2396991B16F01315F514D11F0420D /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = D99D4B7D9EEA877DFC136342FED19365 /* Just.swift */; }; + B0C19F1BB81A76E117DDCB673CCAE796 /* WithUnretained.swift in Sources */ = {isa = PBXBuildFile; fileRef = D111A50B81A294CB5D6ED0717641EDA6 /* WithUnretained.swift */; }; + B0F6648B7B06016F49CFAE0A6D837DF4 /* RLMNetworkTransport.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FE336D7F7560C735A67A074571EFEBAB /* RLMNetworkTransport.h */; }; + B13E37853F3DDD39DBDA5A44FD72F510 /* Archive+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94CA12994CD96AEC4DA15C0301640F9E /* Archive+Helpers.swift */; }; + B1C3F0E159138B08795F7AE68120FF94 /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C14977A1807ACBB8AAAD395373C7543 /* ObservableType+Extensions.swift */; }; + B1D0901C232DA3422495493EAEAFA704 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A70976A63EBF93CA1F595533B5851EF /* Queue.swift */; }; + B1D7E5323FFC22C4B8127FE58AAAB475 /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60446A48826CB6592871310646E31F54 /* StartWith.swift */; }; + B211F1C97199CD5707F84E693CEC0105 /* AnimationContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30215225AC1EF01A4708E6D421D58706 /* AnimationContext.swift */; }; + B247323EAE1CEDBB996AEBCE3083522E /* Shape.swift in Sources */ = {isa = PBXBuildFile; fileRef = A426201EB5A91F9751220645B6AC149E /* Shape.swift */; }; + B29F9ED7C4BB608579D2DE842A8226BE /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C2B93B794819BE45A0BB0D79DA25705 /* Amb.swift */; }; + B2D3AB5C16F92F522C3A587966A18FD8 /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB7C7803757167E5C73E20C7585E68EF /* InvocableType.swift */; }; B2D8571EBFE987979450679D1E51B050 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0C0277469E9A47FA9700308B6CAFB9C7 /* UIKit.framework */; }; - B2EAB5380F3F9D29CB13844EF3CB13C2 /* OpacityAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C26ABF8BF80EBDB10379FAA77F1A0B8A /* OpacityAnimation.swift */; }; - B38E2C7991A41C799B9023C61C079E5A /* LottieAnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 471A84AC28A10700E9387A4C9AA9EC08 /* LottieAnimationViewInitializers.swift */; }; - B39BF720A3E471DC10CDC6CC3986D2A9 /* KeychainSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C35815C49F31DBE7D3A47A22E4255FD /* KeychainSwift-dummy.m */; }; - B46E52EDBD14DEA140A5EE7F128F7D70 /* RealmProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = E41B018DE155AD4BC6FF7FC9A1994F21 /* RealmProperty.swift */; }; - B4EE276AF7CB12ED9DB48318D8914C2B /* RealmCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 816235A9392C4AF655D03CEF94B79CEC /* RealmCollection.swift */; }; - B59E22971F8D4CE5681BF67535A363F7 /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = F455AAC966493F2EC7E8FF0F6851AEBC /* Combine.swift */; }; - B5DC337BA9C577C37BAC04B8F4DB66D4 /* TransformAnimations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91FF4CA967F12F0F9BF00500A2BD96F5 /* TransformAnimations.swift */; }; - B6051B422B346D7C2C0C78083AE42593 /* RLMCollection_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 41276D5A90A8EF06F419DE3CE2F110FC /* RLMCollection_Private.h */; }; - B6A3D618A7C6CCF10195A4F578A6B1F6 /* ContextPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4912035A26B3F2F09F3F0A19B1EBA9B0 /* ContextPlugin.swift */; }; - B785E35AE212C2CB4C4CD0D84C49B90D /* AsymmetricObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB831597BC82BA527157AFB2AD3AF26 /* AsymmetricObject.swift */; }; - B7D510282322A78C4EA2B6D1D30B27E7 /* CGColor+RGB.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6968A26C99C961457E447826C46E3D8F /* CGColor+RGB.swift */; }; - B837F9BAA1E321E18780F3B8903BC004 /* MutableSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F419AB987C9FB1F50D9261CC2D4BE8B3 /* MutableSet.swift */; }; - B83E48EFD2C63624D885AA8CC906DC19 /* CompatibleAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4929767F2BCD68231390FDEEF963CA0D /* CompatibleAnimationView.swift */; }; - B88F655CCDE919C424C30CB5DBE225F6 /* RLMSyncManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4D7093C1B358D74989723745D0F1080E /* RLMSyncManager.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - B8BA1F4ACC183F65920DDDB506CCC900 /* GradientStroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEF3A41916953240EA7FDA40F9D80E04 /* GradientStroke.swift */; }; - B8F18808F31887455F72E0A435AB2FBF /* LottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F5DFCA36E9F4E0FFDF24E42E13515EB /* LottieConfiguration.swift */; }; - B988E89D944626E016CF4A5E1F0C0D74 /* Entry+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 882A13497CE1E9C9F115E4931C99BC16 /* Entry+Serialization.swift */; }; - B9B88E7ED730F1F89746B2448FE19D6D /* RLMThreadSafeReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 61EDB2BAE00548F62CE2B66A2BC04AE7 /* RLMThreadSafeReference.h */; }; - B9D4D143F8756E71AE30E19A3A778EF6 /* Keyframes+combined.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62A91C796BC9A1E0D6A626593649B4E3 /* Keyframes+combined.swift */; }; - BB7A3DBB7889EBA206FC3FDD507258F5 /* InterpolatableExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C3AA9F758B0C38E87CECC8783F91B37 /* InterpolatableExtensions.swift */; }; - BBCE391F1AC55EFC2A589E550ACCC1B6 /* ObjectiveCSupport+AnyRealmValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACFCB6E4B51ED20DBA2FB05728EBBAAA /* ObjectiveCSupport+AnyRealmValue.swift */; }; - BC312A1A61AFB28BBC40F1A1B592E8EC /* LottieButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 720EE191715F567136A04AB1F45C297C /* LottieButton.swift */; }; - BC3911DB8D9772FB0710218B3A3F4640 /* SetContentProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2BF29C67B645E6880A7948E00FE1050 /* SetContentProviding.swift */; }; - BC8C22A69E4E5836EFE540F31E84BDB5 /* DictionaryInitializable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 746852E6901A421E923336147ECFDD22 /* DictionaryInitializable.swift */; }; - BCC16BD326E2270E91F40163F6E39DA1 /* RLMRealmConfiguration_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B4BBC0D6CB41BF138510B9A01A4D09 /* RLMRealmConfiguration_Private.h */; }; - BDA3E8E9E108AADF5DB6553A1BDE59AB /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D1CED719FAB8BB8AF182430A81A5536 /* DashPattern.swift */; }; - BDEBD8996C53C8E7D08366BF0B17F113 /* GradientAnimations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 117EBE15DB80CE617303A8652D9BF2AF /* GradientAnimations.swift */; }; - BEBEEBDD6543109E845B69CC102EF872 /* RLMDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD3344303C51846CB5D3B5A347E2AC4 /* RLMDictionary.h */; }; - BF1310CD0F3E3BBCF8D5680C9DC983DD /* ValueContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D28383CD7EAE5E302C08CA24B14A0547 /* ValueContainer.swift */; }; - BF20C741EBB18F936CA31F2E41DC9F23 /* Toast-Swift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E37B3F30705226952570964D5F3FD597 /* Toast-Swift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BF5352E6A21E27DB879C2189155F17EA /* BasicTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BB38A194B3C4C33650775D4AB01231F /* BasicTypes.swift */; }; - BFD0F424ECEBC29C62E8135BA39D9667 /* MaskCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E28A0B3F7CF6B141C781F3AD5613EBA /* MaskCompositionLayer.swift */; }; - C035AF600F3EC75858CEF6E7C138BC09 /* CompatibleAnimationKeypath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A2CEE5949485C5FAE0C0F8ABA81B4BC /* CompatibleAnimationKeypath.swift */; }; - C0608E243C3F211C8DCB15E88D070A2F /* RLMValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3DA3AB990D26181CBE5FFE6F2A0533A /* RLMValue.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - C0A510D23913C1A80054180A925729F6 /* RLMError.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7278D42063B266927C137B897B91E7C /* RLMError.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - C11339074CE5C4A8DF75384CCC987B77 /* ObjectId.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A6B24461AEEE028EFBE40BD9A7DE1C8 /* ObjectId.swift */; }; - C1D404B29A5E0014B859126947CE95E1 /* PathElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4407ED31EBC346427D3CF1E4CB07943 /* PathElement.swift */; }; - C1E86EE4E40166827A4E42468F6EEE1D /* Data+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 433C7553A834AAA75E970DC929F7020C /* Data+Serialization.swift */; }; - C1FD432E9CBF46B53AEB2152A00DCC91 /* RLMMongoCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E45824F06596F9F9686E5817F46D71D /* RLMMongoCollection.h */; }; - C1FF8B3B78355BC1041BB74C7C56BEDF /* RLMManagedDictionary.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2FE5EAEF33F301D010D51E0F10AE6098 /* RLMManagedDictionary.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - C227A035FABE8C27079FB27231960CA2 /* RLMSyncSession.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 06A0ABB3771F1F27FFBB2ACAB9F2B245 /* RLMSyncSession.h */; }; - C23B8C2E470885559EB420C91B5F67C9 /* RLMThreadSafeReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8066249011DD57CF1AB93F9862FD1926 /* RLMThreadSafeReference.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - C297C44E0AA065B0BA60D32087EB2E53 /* EpoxyModelArrayBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2596C6AC2322648B4005A1206F42FBBB /* EpoxyModelArrayBuilder.swift */; }; - C30FC6E64D82C78281F1314C692ADAD0 /* Binding+Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8A1D4FBA04502437BE21EFDA6BC2F38 /* Binding+Map.swift */; }; - C35E0CD2948E8712AC74B4AB13E71483 /* RLMUpdateResult.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E3D77B0DC4188788BD4D6DB1C74D87A /* RLMUpdateResult.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - C3D07554B051CD79B4E03F45576E7FE3 /* ViewProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB64743F0ED8819269665E76B55705A6 /* ViewProviding.swift */; }; - C42011187161B53B74FB66AF35BAFFAA /* ImageAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0AFC5C0CDD6172838A697D8BF2D2127 /* ImageAsset.swift */; }; - C4960A4AD3A14AC45AE7391B98500BB9 /* LayerImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = D40668DDD0D4964BCDAEA10C35BFBB63 /* LayerImageProvider.swift */; }; - C51FAAD69D5C41A2477920784F8953FB /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D5D246000AD309756B690D244F6964F /* Vectors.swift */; }; + B2EAB5380F3F9D29CB13844EF3CB13C2 /* OpacityAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = E31D1AD29B3D6B53F32577884DC59C2F /* OpacityAnimation.swift */; }; + B364352010EE6728166BCC1611218E3C /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AA0919B195E457DC4090EC47A3D8985 /* Disposable.swift */; }; + B38E2C7991A41C799B9023C61C079E5A /* LottieAnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34D34AB320CFDD5F985B19170EB91C0B /* LottieAnimationViewInitializers.swift */; }; + B39BF720A3E471DC10CDC6CC3986D2A9 /* KeychainSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 487DDF16E6A9A9728F022B8741FC497E /* KeychainSwift-dummy.m */; }; + B46E52EDBD14DEA140A5EE7F128F7D70 /* RealmProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4ADC75C2563E9628D794ED4C62B26746 /* RealmProperty.swift */; }; + B488F4CCA727C5CB786CE18D2BC3B8CF /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5511F3E60A4AB8F6178D91202EAD9E2E /* DispatchQueueConfiguration.swift */; }; + B4EE276AF7CB12ED9DB48318D8914C2B /* RealmCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = D113E27D4F7314EE7CBA58DDCB51E935 /* RealmCollection.swift */; }; + B58D12279898463AB061C35F192FD02D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; + B59E22971F8D4CE5681BF67535A363F7 /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E7861E6E7E3AD9536B15E3763CED578 /* Combine.swift */; }; + B5DC337BA9C577C37BAC04B8F4DB66D4 /* TransformAnimations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08B7C39B5116EDE6326F50378970E4B7 /* TransformAnimations.swift */; }; + B6051B422B346D7C2C0C78083AE42593 /* RLMCollection_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0115229EC3822492F61080555ED0EA6A /* RLMCollection_Private.h */; }; + B6A3D618A7C6CCF10195A4F578A6B1F6 /* ContextPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DDD4821ADAADE6D16B854CCCC9D705D /* ContextPlugin.swift */; }; + B785E35AE212C2CB4C4CD0D84C49B90D /* AsymmetricObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D4A43E1D3EA8B23E30C2BC88C7235BD /* AsymmetricObject.swift */; }; + B7C62CBC8575D18B029F44ADF44BE3A3 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34D91BB3FD498C243403C1FDB239100F /* Take.swift */; }; + B7D510282322A78C4EA2B6D1D30B27E7 /* CGColor+RGB.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EC9ACD79AA84D3B862A84FB531ACD61 /* CGColor+RGB.swift */; }; + B837F9BAA1E321E18780F3B8903BC004 /* MutableSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = F778C756E167543C9A90FD3FA712A350 /* MutableSet.swift */; }; + B83E48EFD2C63624D885AA8CC906DC19 /* CompatibleAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AAA398DAAF9E7859B2987B07495F7C6 /* CompatibleAnimationView.swift */; }; + B88F655CCDE919C424C30CB5DBE225F6 /* RLMSyncManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE03CB20521FB460928545771A728B89 /* RLMSyncManager.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + B8BA1F4ACC183F65920DDDB506CCC900 /* GradientStroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF5D53950FFC8FB763A00E431D75FFC7 /* GradientStroke.swift */; }; + B8F18808F31887455F72E0A435AB2FBF /* LottieConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BB0CA0B6693A5A2F10C8489229AEEC4 /* LottieConfiguration.swift */; }; + B9162C3D497554A66A632744373A7A0E /* RxRelay-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CEA841B00F96A839941230D6A8078F14 /* RxRelay-dummy.m */; }; + B954A3A6D4BF827448BE84FEBE708849 /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3511165BD92F716B65DAE699C189522A /* TailRecursiveSink.swift */; }; + B988E89D944626E016CF4A5E1F0C0D74 /* Entry+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41B615601B0A4DCE7115D7919A38C7A0 /* Entry+Serialization.swift */; }; + B9B88E7ED730F1F89746B2448FE19D6D /* RLMThreadSafeReference.h in Headers */ = {isa = PBXBuildFile; fileRef = A981DA45CA15D31A9DB132F606CFA21D /* RLMThreadSafeReference.h */; }; + B9D4D143F8756E71AE30E19A3A778EF6 /* Keyframes+combined.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E8A2D134401852E4A6C869C09FDCAD /* Keyframes+combined.swift */; }; + BB7A3DBB7889EBA206FC3FDD507258F5 /* InterpolatableExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF8E9C62B7F963B81C0963D5F617C15B /* InterpolatableExtensions.swift */; }; + BBAB7D9EAD6D92989B3485E40D39C0FA /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0C1B88DB2AEB2FEFBBE71D6FFDFFE9D /* Reduce.swift */; }; + BBCE391F1AC55EFC2A589E550ACCC1B6 /* ObjectiveCSupport+AnyRealmValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CE1DF85E20C2660FF42D5487734D93B /* ObjectiveCSupport+AnyRealmValue.swift */; }; + BC2002D898532CFD165FEF9626F500D2 /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1261E7A051D207A52D87F0770405803C /* SubscriptionDisposable.swift */; }; + BC2453A03A9CACA92701F61E7E0E987A /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 617DEA92672783051240E1FFE806F044 /* AnonymousObserver.swift */; }; + BC312A1A61AFB28BBC40F1A1B592E8EC /* LottieButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B3995979B983237097AA4ADED53CD5D /* LottieButton.swift */; }; + BC3358E38DC1946F2B4D13A790EB4907 /* UISegmentedControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27CCD2EA3E9C236DEB35C9D1270D1562 /* UISegmentedControl+Rx.swift */; }; + BC3911DB8D9772FB0710218B3A3F4640 /* SetContentProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF4D5F9BC7534DDF5A9E15AAE7A9A4AE /* SetContentProviding.swift */; }; + BC75150ADF04C63EB6EDB5A65A450942 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28925FF6F58A742E5E6DD3F3C07EDFE4 /* Error.swift */; }; + BC8C22A69E4E5836EFE540F31E84BDB5 /* DictionaryInitializable.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB29FA481044DA557396E1997FB445C /* DictionaryInitializable.swift */; }; + BCC16BD326E2270E91F40163F6E39DA1 /* RLMRealmConfiguration_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B1DA9A75EB8759EEB62FE205EE92F95F /* RLMRealmConfiguration_Private.h */; }; + BDA3E8E9E108AADF5DB6553A1BDE59AB /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9105F35CB71741D830F74527B6521528 /* DashPattern.swift */; }; + BDE30EFB7B16D5C7B743245997719E47 /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F9D4D1472F8B8771747127A4DA448A5 /* GroupBy.swift */; }; + BDEBD8996C53C8E7D08366BF0B17F113 /* GradientAnimations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99241E73967093ADAA624636DEA8A03F /* GradientAnimations.swift */; }; + BE182C5501F0B120ACD5FEF98DAA2953 /* ObservableConvertibleType+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8464668B248FFC557AEB720AF3B03887 /* ObservableConvertibleType+Signal.swift */; }; + BE3A9E68BD56C81312F98B98B21E9851 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = E910CFC74C7DFF1D534FC1C7A59E32F8 /* InfiniteSequence.swift */; }; + BEBEEBDD6543109E845B69CC102EF872 /* RLMDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = FD5B0AFEB338B84613EC0F9108253236 /* RLMDictionary.h */; }; + BF1310CD0F3E3BBCF8D5680C9DC983DD /* ValueContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84EE95E307B608809881C842DFD1F5FA /* ValueContainer.swift */; }; + BF20C741EBB18F936CA31F2E41DC9F23 /* Toast-Swift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 67955A2781FE17A1195CE65CBB3D23D2 /* Toast-Swift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BF352BDBFA4634EA6774B894C3C5C897 /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78B4E82CF62895788A7B3D5992375750 /* Delay.swift */; }; + BF3B8B9866206BDACBED7C9E5A6102FE /* Infallible+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6691A97D7DCD31673D9D9E5CDFA8AFE2 /* Infallible+Driver.swift */; }; + BF510581405BF1EB78D9CCF2BA8B11EA /* RunLoopLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAEEEFD7B3ECBA5B3DDA384862CF16F1 /* RunLoopLock.swift */; }; + BF5352E6A21E27DB879C2189155F17EA /* BasicTypes.swift in Sources */ = {isa = PBXBuildFile; fileRef = F424ADC6E5EF30A7D44EC381592B5437 /* BasicTypes.swift */; }; + BFD0F424ECEBC29C62E8135BA39D9667 /* MaskCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE5B0D847F8A029FE07573A5BAE5211 /* MaskCompositionLayer.swift */; }; + C035AF600F3EC75858CEF6E7C138BC09 /* CompatibleAnimationKeypath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75EC9B1622135B6D0F384BE647D09B4B /* CompatibleAnimationKeypath.swift */; }; + C0568DF48139A2DD240FCC692ED3696B /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8067B38C5F0B08F34EB1AFFA11A5C63B /* Skip.swift */; }; + C0608E243C3F211C8DCB15E88D070A2F /* RLMValue.mm in Sources */ = {isa = PBXBuildFile; fileRef = EDD4BB34E5589781E376828F325CDD52 /* RLMValue.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + C0A510D23913C1A80054180A925729F6 /* RLMError.mm in Sources */ = {isa = PBXBuildFile; fileRef = 670B83EC6863FED7C0D719D57AA8AE8B /* RLMError.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + C0D174B64659D91A34F3EF12803F088E /* DelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 792F9C290DDAE29DFD49560EDACDF1DC /* DelegateProxy.swift */; }; + C10E77244A4D189940E4DE21C8435804 /* PublishRelay+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F682BA1971024A5C3E4250D013E7435D /* PublishRelay+Signal.swift */; }; + C11339074CE5C4A8DF75384CCC987B77 /* ObjectId.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3586744DE24EEB74E72D22609E4D588 /* ObjectId.swift */; }; + C12D397074DDBF1345B477AD7E46766A /* UITabBarController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 273FC59E1E9B3996AEC45576F818AB8B /* UITabBarController+Rx.swift */; }; + C19D0CF6848D6C346EC0BFDA3D1DF6A3 /* Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAD1ECFE4ADB4A2C9F6CAFF6B543DE3A /* Signal.swift */; }; + C1C80CEFEE65EE7EEBA30044D81E4490 /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56D4C900CAF2C4B91296DD66FC5771E8 /* ReplaySubject.swift */; }; + C1D404B29A5E0014B859126947CE95E1 /* PathElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = B65935F8197830FA8CC3B6D19B1B68FA /* PathElement.swift */; }; + C1D6041BAD973C35377AFFF04008A72D /* RxTabBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2BF8BDDF829D0E05B050CC2AC3DA3E7 /* RxTabBarDelegateProxy.swift */; }; + C1E86EE4E40166827A4E42468F6EEE1D /* Data+Serialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C1B20618216B31C9FE4F1F095733450 /* Data+Serialization.swift */; }; + C1FD432E9CBF46B53AEB2152A00DCC91 /* RLMMongoCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = B515B49D804654DEAA945AE1F9D3001A /* RLMMongoCollection.h */; }; + C1FF8B3B78355BC1041BB74C7C56BEDF /* RLMManagedDictionary.mm in Sources */ = {isa = PBXBuildFile; fileRef = E41CB4A1DE8211F0FA0150F575578427 /* RLMManagedDictionary.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + C227A035FABE8C27079FB27231960CA2 /* RLMSyncSession.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A79BBFAA30E15FE04639C6B2F774ACB7 /* RLMSyncSession.h */; }; + C23B8C2E470885559EB420C91B5F67C9 /* RLMThreadSafeReference.mm in Sources */ = {isa = PBXBuildFile; fileRef = 371D8986F6E71CAF46430C460BA12D98 /* RLMThreadSafeReference.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + C256D9BD5C756FF7CA65DDE283A2CCAF /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9757F3F59B16B4D82E1F1DDBBA3BED8 /* GroupedObservable.swift */; }; + C260CAD07A80D5305714D6C25827EF10 /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3309E5D7855CD6A606ECAFBA2980425 /* Sample.swift */; }; + C2730F371E0FBF30017A6DFAF7651CD9 /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A7AE97462D0F7B50D7360C0D9A9FA17 /* OperationQueueScheduler.swift */; }; + C297C44E0AA065B0BA60D32087EB2E53 /* EpoxyModelArrayBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED20397C703C8C2D2ED3BC2D12EBD19C /* EpoxyModelArrayBuilder.swift */; }; + C2E7D47D0DCE91C0C335D29D8FE97760 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3196AD8C5667E195254BCAE3E77F078A /* Observable+Bind.swift */; }; + C30FC6E64D82C78281F1314C692ADAD0 /* Binding+Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED31C1AE4B6B478BC1C5335307471591 /* Binding+Map.swift */; }; + C35902869C592210C63FE613C0A7E652 /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59EC02FF635518C647F9F6457A193E23 /* LockOwnerType.swift */; }; + C35E0CD2948E8712AC74B4AB13E71483 /* RLMUpdateResult.mm in Sources */ = {isa = PBXBuildFile; fileRef = B51EAA2DA9030EB070BD234B5A032111 /* RLMUpdateResult.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + C36AA7FD8FB24066AE8B0A4F5E2EAD0C /* UIPickerView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 422FA0BF97FB89EE0765BC0784DEB05F /* UIPickerView+Rx.swift */; }; + C3D07554B051CD79B4E03F45576E7FE3 /* ViewProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE2E86D6CDE8AE727E28013651EB4638 /* ViewProviding.swift */; }; + C42011187161B53B74FB66AF35BAFFAA /* ImageAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9E5F45A99E1ED80DC6DFE8FFDD344B4 /* ImageAsset.swift */; }; + C4960A4AD3A14AC45AE7391B98500BB9 /* LayerImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 037D5E0300687A215AA897379C8A5E12 /* LayerImageProvider.swift */; }; + C501700A41A57E5C1D399D62AF8759C1 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34D91BB3FD498C243403C1FDB239100F /* Take.swift */; }; + C51FAAD69D5C41A2477920784F8953FB /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74FF95C7111EE8CDA3A0F173F6B601CD /* Vectors.swift */; }; + C526F18E310906A5AF2250FC85A23461 /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D54ECF1779A15F4508AC0BF2A4EFD4A /* AsyncSubject.swift */; }; + C52C709CE499A6DDF23BCBF10F441909 /* TakeWithPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECC0D2257CF566B6350F3B2D1AE69AB7 /* TakeWithPredicate.swift */; }; C543B2A5CF83423F50EF2DFA3A7F1141 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; - C54F8B1D5565EA15ACC9B057614DAFB8 /* RLMMongoCollection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 009142C8EEB227A4C4661864A387B645 /* RLMMongoCollection.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + C54F8B1D5565EA15ACC9B057614DAFB8 /* RLMMongoCollection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 05939B4EB37BB3CE4584124070DF1E60 /* RLMMongoCollection.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; C56FB34706124BF1DA27D02F2890DB9F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */; }; - C57AA7AA381473F8C9FEE4FD7179E6B3 /* RLMDictionary.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 7CD3344303C51846CB5D3B5A347E2AC4 /* RLMDictionary.h */; }; - C5A4090DAABFF7686A8AEBB938C61029 /* ConsoleLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72997C358FDD664879892D5B0A089E39 /* ConsoleLogger.swift */; }; - C5E7221FC8C06705689F7963475EDEDB /* LayerEffect.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1FA2E92E78BA64A7D8D1BBD283797C6 /* LayerEffect.swift */; }; - C6F5D69BF4AB286B17CE3A8C95D2BEB0 /* MaskContainerLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 269921796C8822381E0DC80C153B370F /* MaskContainerLayer.swift */; }; - C73017B0A46A5E71A7E6DEC66DCABFBB /* StrokeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 175265C05A57BEE55D8B272FCF489A77 /* StrokeRenderer.swift */; }; - C84947EA5630C0F1A23E18A6F4B6BBF9 /* AnimatedSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75CA372D3D8B2D199B1E2FB95F550063 /* AnimatedSwitch.swift */; }; - C97E9141FEDD6F16EE8EB2FD7D84CA3F /* RLMMongoClient.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D2AA35701CF2D42781630F324963D837 /* RLMMongoClient.h */; }; - C9DA09B8C451DA1EC2847A5750E7B484 /* LottieAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68C50323447603857ADFE3E3B33A26D2 /* LottieAnimationLayer.swift */; }; - CA2EB2F906DBDEF4E63C54ECF96008B2 /* PersistentStorageResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC0D0F573510ABE90AF72ED1660F7849 /* PersistentStorageResponseHandler.swift */; }; - CAA07CB065FC7B5F15A76B5CB92598D2 /* EventBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9016D9557092B11EC9342D7CE8D4C01C /* EventBridge.swift */; }; - CAE29563450C7ED7B9BEFD4F8C3788CA /* Toast.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB94B48EC9D489EFEE199FF3A179173C /* Toast.swift */; }; - CB20C24CB4D2EE8934F5DA85906633C6 /* BezierPathRoundExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE6D616EBB84C9DC6B6C1E3C832301F9 /* BezierPathRoundExtension.swift */; }; - CB608375EDB2552EE0BF5301FEC55C6A /* Archive+MemoryFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB543F2A515EE8F7B49F875E6678D31F /* Archive+MemoryFile.swift */; }; - CCC55B25CFC9567D6A2803336B7D1D17 /* RLMDecimal128.h in Headers */ = {isa = PBXBuildFile; fileRef = FC4711E286E0ACB6160C1FD31670557A /* RLMDecimal128.h */; }; - CCD1C585CE4E9DBE15769F38E06842C2 /* ThreadSafeReference.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8EBAA2C4C5F0B80A3072ED2050AE3E7 /* ThreadSafeReference.swift */; }; - CCD45FDEB83D4145A69A63C06D5194B8 /* AppUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 705621F775458F15705136D761DA6603 /* AppUtil.swift */; }; - CD777204DD034F952A9C1FA18D425FC7 /* DotLottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 039DAAB79C5113238A91638E2283E622 /* DotLottieAnimation.swift */; }; - CD85BC6C6857D4CA6B53AB179B65BD96 /* Archive+WritingDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 315014AA07D6AA22E49D53CA155ED729 /* Archive+WritingDeprecated.swift */; }; - CDAE6C99DE0D73273DE14DDEF151B983 /* Data+Compression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7205424248BD4FF2BD02B22973FF7133 /* Data+Compression.swift */; }; - CDF7184E59ABAEFD12CCB2CF886D6DAA /* DecodingStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4294607D7E91B4082733685F29557A10 /* DecodingStrategy.swift */; }; - CF09CB7C6102AE110B28FB2713A5323D /* LottieAnimationHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B3AB7A356AE4D8E716B9E59428730E2 /* LottieAnimationHelpers.swift */; }; - CF1805108A4066853F90B4B1CE0B98DA /* LottieAnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEA5975020FEB83E6ADF91D0486A152D /* LottieAnimationViewBase.swift */; }; - CFA39FBDB6CDF6015E774C5B80B2F480 /* GradientFill.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CBB6C339DF908B46529C4FC87258F54 /* GradientFill.swift */; }; - CFF632C9F9F6ED8889B406C381D1823D /* UIViewConfiguringSwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CABC07BA1A43EE7F6934D48615650384 /* UIViewConfiguringSwiftUIView.swift */; }; - D0A22FECD9AFFEC60B35A58BEE37A51A /* RLMNetworkTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 55436145186F09929BAA7390E70AD2CD /* RLMNetworkTransport.h */; }; - D0CDE9D885F2EAF6AFB3FFF21DEA19CF /* InMemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC0532B226588F43CB3BC4399E364E75 /* InMemoryStorage.swift */; }; - D1243934E772496997298DBFF0DE3422 /* RLMProperty_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 052FA441B3AC4CA70E99A90B0D3B946D /* RLMProperty_Private.h */; }; - D16DD15CC2E7B91F74F293969CDAEB9D /* CachedImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF0A593603472D30687719424074C401 /* CachedImageProvider.swift */; }; - D24F7B66723CFE98E1BF4E8111B33FEE /* MathKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB09169E5772F46927E07289594C0206 /* MathKit.swift */; }; - D36817EC6FBC5D7621A5549879992EA1 /* RLMObjectSchema.mm in Sources */ = {isa = PBXBuildFile; fileRef = 48C7EA9C0F5255EB80526C0C7A8E1381 /* RLMObjectSchema.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - D4F0525AB89FE49FA1D2727ED08441C9 /* DestinationPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = E036FA26579924535B3E76245E0EA74F /* DestinationPlugin.swift */; }; - D504D18B65C4071A08171C05D5B592D1 /* RLMResults_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 642BCEEBC24CEDE1A2A9CA998857D042 /* RLMResults_Private.h */; }; - D76CFF4D1DEF89A2E8CD2DA3E471EF2F /* FillNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = C567314B30885448B44581E563ADBDEF /* FillNode.swift */; }; - D79754FE9629832D30A7AB0B9E61043D /* AssetLibrary.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F52E7A09E7974F04943A912544A2500 /* AssetLibrary.swift */; }; - D84E0EDB3E68EEA59D1A18F19A7B0F29 /* GradientStrokeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06FC87E7D608AB294FA13C6023B7738B /* GradientStrokeNode.swift */; }; - D86B60BE7C8B73BB00A0047D376C0235 /* CompositionLayersInitializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02D5AB701C5DF45DB35F7115F8D080E4 /* CompositionLayersInitializer.swift */; }; - D8D1B4F2270ACD873FBF2D1C3CED0D61 /* StyleIDProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7522B74D083E25C50A1EE4AD0C6823E5 /* StyleIDProviding.swift */; }; - D8F3CF60883AC0938F886907A9885EA4 /* ViewEpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0605737166C5354E972F2A6608202B3 /* ViewEpoxyModeled.swift */; }; - D9139F2BD1B5CDA5378FE801681A67AB /* RLMObjectSchema_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 31B11605C5202948EEA9D055DD650C76 /* RLMObjectSchema_Private.h */; }; - D9A7B2A7821605D50409B738534A23F6 /* Realm.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C1EF69F6A0916C0B2F718EB507DE03 /* Realm.h */; }; - D9D8EA266CD7C5885464952BC9B2678D /* ObjcBridgeable.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB6962B59CCCA1E21D688D8EF72BFD4E /* ObjcBridgeable.swift */; }; - DA5F562DB7EE74FB809673838FA1C520 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C52109CE580E088232E9383A81464F8 /* Asset.swift */; }; - DAA004638959EC68CF96EE83EEEDDCC4 /* DotLottieFileHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = C27A0F8199AA68CC4F45DFFE5F419B67 /* DotLottieFileHelpers.swift */; }; - DB3A48A22F1600F90FBFD86DC7A3E876 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2636ABE736F5E76D7B68CEE477CED275 /* Interpolatable.swift */; }; - DBF8C09183B5C6745B864076215CF166 /* WillDisplayProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9768A22FD3C8757341AC9BD834D71AFE /* WillDisplayProviding.swift */; }; - DC1CC94EA95338783CD4596CF2882942 /* List.swift in Sources */ = {isa = PBXBuildFile; fileRef = C28F582BED545F0985BB50AC9F4C422D /* List.swift */; }; - DC3749B5D84AEF0EE98378BA0975F31A /* AnimationFontProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 613A99E592EDDA1898A8D7439D8AC619 /* AnimationFontProvider.swift */; }; - DCBC7DCA9D779775EA39CE5A2554347C /* EpoxyLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EB104F7D54AC23CE0C0FD5787A80315 /* EpoxyLogger.swift */; }; - DD7008D6BCB38C7617B2841CE62FAE0F /* LottiePlaybackMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D31339F4481B367CC16FB147042246 /* LottiePlaybackMode.swift */; }; - DE9AC4D1B35C9E07B979930D5C0B38DF /* CollectionAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = 157B71F8DEE686A730A1E8C426500FED /* CollectionAccess.swift */; }; - DEB4B1192A01C11306500422A677D67D /* RLMSectionedResults.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C8226AF0B799590D452B148F40108EF /* RLMSectionedResults.h */; }; - DFDF02FBC28E4C9934A43E2800F63C8E /* ItemsExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 428492039AC1C11B454EE21650D59FD5 /* ItemsExtension.swift */; }; - DFE3D9A4694A51FD0214E86873DA558A /* RLMObjectSchema_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B11605C5202948EEA9D055DD650C76 /* RLMObjectSchema_Private.h */; }; - E03D27D23C9C0976B1A755E8EC4795BF /* ReducedMotionOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0FC6BA73B1D4A55184295473DBA164 /* ReducedMotionOption.swift */; }; - E077E5D6DF28D8BDA20B8C49A2D98BD7 /* TraitCollectionProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 912399F9777F184810D6D93338493CBC /* TraitCollectionProviding.swift */; }; - E29E3E106023F452D942798B1A98C791 /* RLMAccessor.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 694A0826CE39C4E8042EE53DBFDA4CFB /* RLMAccessor.h */; }; - E2E91E87F29CC5EFD482805AC2551D1F /* ShapeItemLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F9D98AD1F5595A9ED6789F536FE0FC1 /* ShapeItemLayer.swift */; }; - E2FD0625D4B979F6A02DBEA797347FAE /* AnyValueContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3CC133D57D32A1D3A52EF21C9E1081B /* AnyValueContainer.swift */; }; - E34B80A9A8B49857FCD043CAE44D1EC0 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2858CE21CAB7EA8460919556A9F409EC /* Util.swift */; }; - E3DC7B809D4812814D1275565D9A52B7 /* RLMRealm.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C6CAEBE67053322E54B4449D59DDA2 /* RLMRealm.h */; }; - E4440A766E941411480A3658F2B4E5F9 /* StoragePrefixMigration.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1933AFF7C95EC064EA8F43114C413B4 /* StoragePrefixMigration.swift */; }; - E470C2482F4DF1D1703ADB97EA7389C3 /* DiffableSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54657275653BA5C6C5ED9112C9CAFBF1 /* DiffableSection.swift */; }; - E58C6B8947953B74ECCF0E5F9CB653A2 /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06F36FB26DD99048ECA47351580BC655 /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */; }; - E6595B00A83513B21DC169C6319F834F /* RLMSyncSubscription_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8D54BCC02776B75CC58DC48EECF24F /* RLMSyncSubscription_Private.h */; }; - E6BAB40757816D2538ACB9664B3F91AE /* DropShadowEffect.swift in Sources */ = {isa = PBXBuildFile; fileRef = B503E304F4475CE4D0C2E37FACE1DF3F /* DropShadowEffect.swift */; }; - E7369C051E1776FDA103234E9508EF6B /* EpoxyableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6C496C6423E065D1B0DAFBD8B0DBA84 /* EpoxyableView.swift */; }; - E899987F3E6214F43909608AE045620A /* RLMPushClient.h in Headers */ = {isa = PBXBuildFile; fileRef = EA971B2E54A6178765A35DE29D09F9A2 /* RLMPushClient.h */; }; - E8E68A15275FD6942B3345A9CD29D237 /* RLMUser_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 451EA1ACAC6C5BA6578EDD0EE4B69B13 /* RLMUser_Private.h */; }; - E8F737F4B3CFAB5243725C0ABE7AE3D8 /* ColorEffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48DEBFF7A40F5A7D6D5F0A9DC09BBCFE /* ColorEffectValue.swift */; }; - E9750633552388C76783C7A9288A1FA1 /* Amplitude.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9209693DEE6A229AF5D78ADE056990AA /* Amplitude.swift */; }; - E9E2E61EC9FD1214FF6B7F985C4C6EF6 /* NullCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 848F505EED1CFC305DBE35BE3D82A327 /* NullCompositionLayer.swift */; }; - EA307249609FE6720B38B7467E5F6F8A /* RLMAsyncTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = E719FAC32B6439554A3F98ED655FDBFB /* RLMAsyncTask.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - EBA3A76502B2A3970E8428D797E8D356 /* RLMAccessor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 609B2E1C5F12442C2E9A62FE275E14CD /* RLMAccessor.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - ECB02BFA1F8070F971BAB91F9B6ECC69 /* RLMPredicateUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E4137D5675F38F9F883BFB7DA4A744D /* RLMPredicateUtil.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - ED3809E70CF17D27283F53CA4BB723B0 /* RLMSyncUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 929F6451FC43125A4FA045A6B2B7262E /* RLMSyncUtil.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - EDCF501D3E64254F91E810D4DBE8F411 /* RectNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F715F5321D6AEBA8C52D015FE64AE46 /* RectNode.swift */; }; - EE10ECEAC11D7DE167585585ADA3268A /* Vector1DEffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B7E59F21AC5E73CF480980022BF1B01 /* Vector1DEffectValue.swift */; }; - EE208FCDE0E387D5FE1769BF9AEB1045 /* RLMObjectStore.mm in Sources */ = {isa = PBXBuildFile; fileRef = 642042E8E7920FCA1C7D48DA20237611 /* RLMObjectStore.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - EECB495C6174780DAD8256BE67151B97 /* RLMFindOptions.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5A0105F14BCE5027503594BE0B9A101C /* RLMFindOptions.h */; }; - EF49711896884CD0CE2BBE8136A16662 /* CompoundBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EED41F01591762D9E082DD9B03E37D8 /* CompoundBezierPath.swift */; }; - EF62BE7480F47550ED525FB2B88BEAD6 /* SolidLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7EDF137A3B4E062DFB039FF3705C0C8 /* SolidLayerModel.swift */; }; - EFB63FD294C3795BFBB652D91E38A784 /* PrecompAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 116DE14272D9E1324CC0565D37E8419B /* PrecompAsset.swift */; }; - EFD2FD4FF7AB71C451EDD8B54B0BCA6F /* RLMSectionedResults.mm in Sources */ = {isa = PBXBuildFile; fileRef = ADEB9DB1CF9CCD00F8E3651CF8CD604E /* RLMSectionedResults.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - F05DD4ED9F1C07E3873F5DDA0F5FE938 /* VectorsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79410E0577F006E1BB489A031688BD84 /* VectorsExtensions.swift */; }; - F06412DD5F6B955FAF9626D6C32EBB1B /* IdentifyInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 588DB90D386D8374A00D9FE2DAAA62EB /* IdentifyInterceptor.swift */; }; - F0C68CAD88EEDA948E59BB2E89EC3052 /* RLMApp_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3537A564CA40319E278C5F26FFFFD0AB /* RLMApp_Private.h */; }; - F114CC5386665E0BC22D928C93F544E7 /* MainThreadAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 465BC0FFEEC1DE7299C4A32DF3934D39 /* MainThreadAnimationLayer.swift */; }; - F276FEA245DADC6946E22C43F89FB3EF /* DidSelectProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCDD7EA8E95A46845B25ED4E573BE29 /* DidSelectProviding.swift */; }; - F2C3B88CEC628AD017DEDB866FB2AD9A /* VendorSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA881E27EE7EE0C5451AF5348C2CE77A /* VendorSystem.swift */; }; - F3117B7CBCA74424D090B0911C96DC89 /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 124C1A35214BC98075DC7FFA33134812 /* Object.swift */; }; - F47F407E7D596D2E289EF59540A417E6 /* CompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62274ABE2673EABF6CC5EEFE8FFDF50C /* CompositionLayer.swift */; }; - F48B3E0D431BBBC6904CDCD2CF90031B /* RLMSet.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = D18F56833C06C6B1614FF524C37B3444 /* RLMSet.h */; }; - F48BBB342D22A1EE7AC2508682F827AE /* RLMSyncConfiguration_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 156F0C27C261646D25016E1D22B5EFD4 /* RLMSyncConfiguration_Private.h */; }; - F4E80B5B74CAF0B144C78F1FDEEA4060 /* View+ValueChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E8F658AB5126E76DD2ED03889CA80CB /* View+ValueChanged.swift */; }; - F5A53C2A508F1EB1D6CBBDAE29764A02 /* LayerFontProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2336F748C14CBF0B7FBC4C42FB9480E /* LayerFontProvider.swift */; }; - F6000E72F56B7F5DA025E8B059D646D5 /* LottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E43B43C5E2369DEE927A8CC82D632CF /* LottieAnimation.swift */; }; - F6B8EE91A32FB576A2E14C3D35D30D0C /* Archive+Progress.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62B866A675ADC596826EF0E2BB4DBC68 /* Archive+Progress.swift */; }; - F80CCCEBF9794DC3E8B4EEB8FAAA2D0B /* ObjectSchema.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF07D5E5F602D78DD0FFC5D8FFDE3B8C /* ObjectSchema.swift */; }; - F886034817F04FB2272A1BCF6B543A6C /* LRUAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FE038486534B0A3ADD8997E45DF52FC /* LRUAnimationCache.swift */; }; - F8CA00FDD7FFB764EE8E33F7C0832AEB /* RLMSyncSubscription.mm in Sources */ = {isa = PBXBuildFile; fileRef = 25CF51F01ACD45D5C9CF3FF604B82AEF /* RLMSyncSubscription.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - F94371C9169BE3AE599827232C38D2B0 /* RLMEmbeddedObject.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = A6AC66256EC7E6F0C0557B2A91F069F6 /* RLMEmbeddedObject.h */; }; - F9FA019AA5F4715F439D87602AA6E16E /* RLMRealmConfiguration.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 3A658241EA986A3969EBFFA0F91D9A95 /* RLMRealmConfiguration.h */; }; - FA619EFD1F2820503C84496CEF86AE20 /* RLMAPIKeyAuth.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0DEA9DE3C318B502D0DBD8879AAF5521 /* RLMAPIKeyAuth.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - FAA8AD4022E0A7BFE26E964D68A3333B /* GroupNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0BA3041CF29FCD67DE6D4D74C6C63FD /* GroupNode.swift */; }; - FAA9422DBF165F89AA81D94DB2DBF457 /* KeychainSwiftAccessOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3910DD3A5790A41214020770A6E429F3 /* KeychainSwiftAccessOptions.swift */; }; - FB8A83EC681BB91088394884EE68AE49 /* LayerStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FC84A277AEF7C4BCAC41F2C62EFCC31 /* LayerStyle.swift */; }; - FBAAA0540EC1023F5D36A51910586F1B /* Data+CompressionDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 527308F7416A5DC10FDF920E9C8E6682 /* Data+CompressionDeprecated.swift */; }; - FC70045C2FA5C9737707B3943F5638D4 /* TextLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B68B58BA0ED37137D546F521F78795C /* TextLayerModel.swift */; }; - FCA3AA572DB59FC9E2E45FEB3100DAF5 /* RLMConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1578D0385D2365407A56E41EB0ECA1E5 /* RLMConstants.h */; }; - FCBCB08417E8E0E13AFE2FF44A1F1A8F /* RLMSwiftCollectionBase.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E8553BD96653C39A80C043A56F6D428 /* RLMSwiftCollectionBase.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; - FCCD276C19F573A0B2253C5445BD7F7D /* CurveVertex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AEACCDFBE16D974FBECC3D8409E2E09 /* CurveVertex.swift */; }; - FD9531D8F0EC04FA5D6FA1BCA1ED6A1A /* IdentifyEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = E51121375D767D7F4148034AB440A41C /* IdentifyEvent.swift */; }; - FDCCD51C6620A0D2FDCC53E3EC880108 /* SetBehaviorsProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = C65D241DAD5AA3B62B7F67390E36426F /* SetBehaviorsProviding.swift */; }; - FE151674FAE685905D47A45F031AE297 /* CodableExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = D09D3291F7D159A84CDE0B3EFD4E6413 /* CodableExtension.swift */; }; - FE2F13D80F1F4B8A605390C3399EF3AD /* RealmKeyedCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68A1A0D5A3770E7F63EF7E51B69F9AFD /* RealmKeyedCollection.swift */; }; - FE37B576B68AC2671F9ADCB2FDC555C6 /* RLMObjectBase_Dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 09D71E69DD8EEC68A303DEC5A62F8CA3 /* RLMObjectBase_Dynamic.h */; }; - FE7FC652161CB9CBDDBA9E5BE3397011 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB50DB2073C61895245BE1ECEA3AF1C1 /* Error.swift */; }; - FE94DD45756FCA493D7E8C9A7EAFFFC1 /* ViewType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8697693CFECA89158EA240E2B0519DF /* ViewType.swift */; }; - FF21C29F2325E747CC04BA19B21CF38F /* RLMSwiftObject.h in Headers */ = {isa = PBXBuildFile; fileRef = BBAF6B7D410DC5844C3A19B0FC0C7466 /* RLMSwiftObject.h */; }; - FF4CE74CC63A83C0CC8D0295071C60D4 /* InvertedMatteLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC69C5056A692C9A17E5D38E959E8545 /* InvertedMatteLayer.swift */; }; - FFA30E4BA7608E8E654F0EE4AE07E2B1 /* BlendMode+Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E80D7500FF17E9EA1043FE3CBA20EA62 /* BlendMode+Filter.swift */; }; - FFA8F6B2C89AFD993B4010BDF728DD5C /* PreCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E0CD38F030AE5C1113F0320D9D2D50B /* PreCompositionLayer.swift */; }; - FFC74F1A48E282981DED9F8686227FEA /* Identify.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F5877349B0D6B278CF84BAFEA3F5C58 /* Identify.swift */; }; - FFE86F4A59C618772EB62D60DA19EE92 /* StrokeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A471E722BBC0987A30D3158A46EB3D7 /* StrokeAnimation.swift */; }; + C57AA7AA381473F8C9FEE4FD7179E6B3 /* RLMDictionary.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = FD5B0AFEB338B84613EC0F9108253236 /* RLMDictionary.h */; }; + C5A4090DAABFF7686A8AEBB938C61029 /* ConsoleLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 262DDDF7EFAEDB066C6320DD342B2CC8 /* ConsoleLogger.swift */; }; + C5E7221FC8C06705689F7963475EDEDB /* LayerEffect.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED5622CFFD5E05DAAF8EEA1C8AD56EDA /* LayerEffect.swift */; }; + C5F9F7A34408E6A5C785B55FF5DD861A /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E980EBFB951A592001CC3959EE5FAA8 /* DistinctUntilChanged.swift */; }; + C5FE5151C69BC12AFC01C87940DF0497 /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D076844A55EF9863B458AAD9D1F96EA /* ShareReplayScope.swift */; }; + C6F27BB6671C89F5DB705A00E81C51FD /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8E1A2EA300F45CF1236EF693429A7CD /* PriorityQueue.swift */; }; + C6F5D69BF4AB286B17CE3A8C95D2BEB0 /* MaskContainerLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E73D980ABDFE1AFA38A348986FB05061 /* MaskContainerLayer.swift */; }; + C71EF1D50DEDD64C07F2769D1E5E25D8 /* RxCollectionViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFE228D3E249E011CEF879ED6BF7F160 /* RxCollectionViewDataSourcePrefetchingProxy.swift */; }; + C7230A41C04915B681803BB372726AF0 /* ReplayRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38158AFF15430C62EB996D4CE79A6019 /* ReplayRelay.swift */; }; + C73017B0A46A5E71A7E6DEC66DCABFBB /* StrokeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE38D94C0175DEDF31BF19A69C04BE9C /* StrokeRenderer.swift */; }; + C799B51AC871F44590F1D6B0B8E3A7B2 /* NotificationCenter+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28545824B1CE006F5ECF89DF63EC67DF /* NotificationCenter+Rx.swift */; }; + C7D763F4A906E9BDDA8F9CC592CCAD40 /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51C8E5EEF0C3C9436BC02A9697FA2282 /* WithLatestFrom.swift */; }; + C83FF06E7A917F4856171FE31E4267CD /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12A3F1C0D910933BE53CFAFDE661348A /* Sequence.swift */; }; + C84947EA5630C0F1A23E18A6F4B6BBF9 /* AnimatedSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC964A1BAE8C5C7C580B32520DE4D03C /* AnimatedSwitch.swift */; }; + C8B51D345C71C8FA2B9D67B97ADDB3B5 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F25F2957384D6E247B4261ABA2D1331 /* Bag.swift */; }; + C91A745A76FF4C40C3B5C2BFFF6CC990 /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2524B8617B08AB2A656F7418D1DDEE4A /* SynchronizedDisposeType.swift */; }; + C97E9141FEDD6F16EE8EB2FD7D84CA3F /* RLMMongoClient.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 8711FFAF3BE62ABD350952C307B32FD9 /* RLMMongoClient.h */; }; + C9CAB7859CA4DC2009F1811732C568E3 /* UICollectionView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9CE946D1EC38DA41A1A646078485929 /* UICollectionView+Rx.swift */; }; + C9DA09B8C451DA1EC2847A5750E7B484 /* LottieAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82762A94A16EECCCB0BE41A33B378F05 /* LottieAnimationLayer.swift */; }; + CA13C6ECF413F77188B55D97A2957802 /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1A276A29DEAB9DDC4BA2367671C577A /* SynchronizedOnType.swift */; }; + CA2EB2F906DBDEF4E63C54ECF96008B2 /* PersistentStorageResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FE73C2C38E66F22240730CFAF1526DE /* PersistentStorageResponseHandler.swift */; }; + CA79349CC7B00B5C4DF6C4537B2AC60F /* Signal+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7935061DFC786FD7D4D79C03D01F489 /* Signal+Subscription.swift */; }; + CA989545055299BEB23DC4A86F4D140A /* BehaviorRelay+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5C2F1DD778C46F1124AC3948590307B /* BehaviorRelay+Driver.swift */; }; + CAA07CB065FC7B5F15A76B5CB92598D2 /* EventBridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95D033F6AAE6E51AEDC31DDD80BA2E4A /* EventBridge.swift */; }; + CAE29563450C7ED7B9BEFD4F8C3788CA /* Toast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D220875FDFD3FE9B83C5990F3DEE517 /* Toast.swift */; }; + CB20C24CB4D2EE8934F5DA85906633C6 /* BezierPathRoundExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BE8882CB649842E7CD6C0FC821D8229 /* BezierPathRoundExtension.swift */; }; + CB608375EDB2552EE0BF5301FEC55C6A /* Archive+MemoryFile.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8A63D15D3511F102342E5C6615BE104 /* Archive+MemoryFile.swift */; }; + CC2EB130C92CE276D8357FF3333C0F47 /* TestSchedulerVirtualTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D6614F4A98E277548DB9784CB5D191D /* TestSchedulerVirtualTimeConverter.swift */; }; + CCC55B25CFC9567D6A2803336B7D1D17 /* RLMDecimal128.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B1C9B68E8F6E5B0300C870FCAA08A7F /* RLMDecimal128.h */; }; + CCD1C585CE4E9DBE15769F38E06842C2 /* ThreadSafeReference.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5B061C54FA4000CC108780CE9C31CC6 /* ThreadSafeReference.swift */; }; + CCD45FDEB83D4145A69A63C06D5194B8 /* AppUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ED9ED0D16D4ED0F5F3310E87FF43B74 /* AppUtil.swift */; }; + CCDF322A8B66078152641CD1558A8B19 /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1261E7A051D207A52D87F0770405803C /* SubscriptionDisposable.swift */; }; + CD777204DD034F952A9C1FA18D425FC7 /* DotLottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9896FD6754C887DF1416D0367996E44 /* DotLottieAnimation.swift */; }; + CD85BC6C6857D4CA6B53AB179B65BD96 /* Archive+WritingDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6FE2E02F190FC9B4A0435649E8C9A63 /* Archive+WritingDeprecated.swift */; }; + CDAE6C99DE0D73273DE14DDEF151B983 /* Data+Compression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 701A32585B61A5766D5C4525902FFACB /* Data+Compression.swift */; }; + CDF7184E59ABAEFD12CCB2CF886D6DAA /* DecodingStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D7CDF19E8911E5BF9D6B19BECD0188F /* DecodingStrategy.swift */; }; + CF09CB7C6102AE110B28FB2713A5323D /* LottieAnimationHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = D41FAFE7F791CF593E37AC386C1A3085 /* LottieAnimationHelpers.swift */; }; + CF1805108A4066853F90B4B1CE0B98DA /* LottieAnimationViewBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 774F21DA8AC1A1A85775095EB84226DF /* LottieAnimationViewBase.swift */; }; + CF220E54DDF22688DF913DE23B468CAC /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 489E13F9C9A49223BA899CB2185DB0E0 /* ScheduledItemType.swift */; }; + CF95FD6CD69703336E4AA455FF876DDD /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD38BEBDC7FC0EDD36F43573A3311449 /* Filter.swift */; }; + CFA39FBDB6CDF6015E774C5B80B2F480 /* GradientFill.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0945BE9A327250698068AE1853D7BCCE /* GradientFill.swift */; }; + CFB99976116F3F6F6959C751DC72DBD8 /* BehaviorRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D06B64E7E7CE6D3CD8214AED9480E73 /* BehaviorRelay.swift */; }; + CFF632C9F9F6ED8889B406C381D1823D /* UIViewConfiguringSwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4D8BC5AF7180E5118BD40FFA4ADF4B9 /* UIViewConfiguringSwiftUIView.swift */; }; + D062B21EA8626384B15DA211559DF16C /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF5991BD010773334EBAB041F268DE1 /* Timeout.swift */; }; + D0A22FECD9AFFEC60B35A58BEE37A51A /* RLMNetworkTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = FE336D7F7560C735A67A074571EFEBAB /* RLMNetworkTransport.h */; }; + D0CDE9D885F2EAF6AFB3FFF21DEA19CF /* InMemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFD465D2767EB8DABB8B8494FC7D9277 /* InMemoryStorage.swift */; }; + D1243934E772496997298DBFF0DE3422 /* RLMProperty_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 484A43A40FBAB3DD9B992F32AC2BA16D /* RLMProperty_Private.h */; }; + D16DD15CC2E7B91F74F293969CDAEB9D /* CachedImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1596FB8ECB0CB3B983E0AB952FFF5A1D /* CachedImageProvider.swift */; }; + D1CD7ECEB932C87421701A31617368C8 /* Infallible+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28EAD857D6F665FF1753560A487A0357 /* Infallible+Concurrency.swift */; }; + D24F7B66723CFE98E1BF4E8111B33FEE /* MathKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F1ED32FBFC99CB7DB27B97EFF6EEEF /* MathKit.swift */; }; + D2EE7351903009229C0A9E42911CDFAD /* NSSlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F646CC570EB612EAC356A27C416BF7C /* NSSlider+Rx.swift */; }; + D36817EC6FBC5D7621A5549879992EA1 /* RLMObjectSchema.mm in Sources */ = {isa = PBXBuildFile; fileRef = FCD68BD04D693964A5E9F1867AC711B6 /* RLMObjectSchema.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + D3A3E5CBEB60BD7FC256065A73D363AE /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4168666E95A8679EE3B962AB55F462A /* SubscribeOn.swift */; }; + D3F7414A4EDECDAA8E9909D0AF5F7059 /* WithUnretained.swift in Sources */ = {isa = PBXBuildFile; fileRef = D111A50B81A294CB5D6ED0717641EDA6 /* WithUnretained.swift */; }; + D4F0525AB89FE49FA1D2727ED08441C9 /* DestinationPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0292652FC044413CF63CD1B1DD2F5A83 /* DestinationPlugin.swift */; }; + D504D18B65C4071A08171C05D5B592D1 /* RLMResults_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = FFC11EFEA7C1989F0F6977016929C221 /* RLMResults_Private.h */; }; + D513F3F9206A57644D7232F1BB555687 /* ObservableConvertibleType+Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C21B4F02575F203F9DBAFA4EAC38EC2 /* ObservableConvertibleType+Infallible.swift */; }; + D76CFF4D1DEF89A2E8CD2DA3E471EF2F /* FillNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4E8AAAD16D89326E5851E8A698EE952 /* FillNode.swift */; }; + D79754FE9629832D30A7AB0B9E61043D /* AssetLibrary.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC5F3C28EE206CF618619666A7EA09A4 /* AssetLibrary.swift */; }; + D7A1CAB9DFF52DBF41A8BF9EE10AAF77 /* WKWebView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = B925C5E67B5CFE8177522713DEE7186A /* WKWebView+Rx.swift */; }; + D7F14A70D6E40AF373E4790C3218E022 /* RxTextStorageDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 803B9C011E2CFBCFC74B4290139E3E2B /* RxTextStorageDelegateProxy.swift */; }; + D84CF391107FE0FAFD27AE816D856B9B /* RxSwift-library-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7482EAE4BC117EC7CA5C70238CACDE1B /* RxSwift-library-dummy.m */; }; + D84E0EDB3E68EEA59D1A18F19A7B0F29 /* GradientStrokeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9A4BC02E4DC98E9CB9E27523ACC4AE6 /* GradientStrokeNode.swift */; }; + D86B60BE7C8B73BB00A0047D376C0235 /* CompositionLayersInitializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A68BA96F8A08615BC9BC9EBBDFA0CD1E /* CompositionLayersInitializer.swift */; }; + D8D1B4F2270ACD873FBF2D1C3CED0D61 /* StyleIDProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72CE5AD0E0BA54D03804278D0412469D /* StyleIDProviding.swift */; }; + D8F3CF60883AC0938F886907A9885EA4 /* ViewEpoxyModeled.swift in Sources */ = {isa = PBXBuildFile; fileRef = B74BF391C4433D9CB80E6BFDEADEC0B0 /* ViewEpoxyModeled.swift */; }; + D90076AA39528B228EB694479B684AA8 /* UIDatePicker+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF8028CAA9CBF861B737A60512267C4 /* UIDatePicker+Rx.swift */; }; + D9139F2BD1B5CDA5378FE801681A67AB /* RLMObjectSchema_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 588F32C07F6A1AA4E4726470FAEC0E94 /* RLMObjectSchema_Private.h */; }; + D9A7B2A7821605D50409B738534A23F6 /* Realm.h in Headers */ = {isa = PBXBuildFile; fileRef = D0BB637647ACA09B72211510776DFA0D /* Realm.h */; }; + D9D8EA266CD7C5885464952BC9B2678D /* ObjcBridgeable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5385965C9F067940099DA09CCE9F3DE3 /* ObjcBridgeable.swift */; }; + DA3E6750DFE946D39DD13321B749ED1C /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 320A162AE9287D8C452A95752E566595 /* ConcurrentMainScheduler.swift */; }; + DA5F562DB7EE74FB809673838FA1C520 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60B0841F1070189EF98D354B4E40A910 /* Asset.swift */; }; + DA7FBB7E934EB047110236BF79D94E7D /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05D7A2BC80FFCCC95BE8D97A208EF0E6 /* Empty.swift */; }; + DAA004638959EC68CF96EE83EEEDDCC4 /* DotLottieFileHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36154A9F2642B9524ED319FA520DAE00 /* DotLottieFileHelpers.swift */; }; + DB0CC7EB970D5B48A6EAFA423FFB9392 /* XCTest+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87B1022825589D834006BEFEB11E8531 /* XCTest+Rx.swift */; }; + DB3A48A22F1600F90FBFD86DC7A3E876 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3B71670C83A3976A8AC85305BDECB50 /* Interpolatable.swift */; }; + DB7FCF7D27BF854F851A4B0AF3953A47 /* UISearchController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07BA7B8A1C04EF88163A36A74D32D1FE /* UISearchController+Rx.swift */; }; + DBF8C09183B5C6745B864076215CF166 /* WillDisplayProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22E8179D585169A7C6963C1E38D0BA84 /* WillDisplayProviding.swift */; }; + DC1CC94EA95338783CD4596CF2882942 /* List.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC96A54EB814FD7965A1D7A5AE74CAF8 /* List.swift */; }; + DC3749B5D84AEF0EE98378BA0975F31A /* AnimationFontProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DBB0B75D89351C997DB15F7EDCA3749 /* AnimationFontProvider.swift */; }; + DC681FE918A9B29EAD3A35393F570AFC /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45955CA019BD6182F0AC9DBF5CC2FB83 /* Platform.Darwin.swift */; }; + DC787C7B729C3D27A9D2346E668A9F84 /* RxSwift-library-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 493C7BB76D9EAA0BBD811D16101BB914 /* RxSwift-library-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC87B561084FFDF8D5535760A36D10C6 /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DDC9947324414FDA1DFFCADDAD76D11 /* AnyObserver.swift */; }; + DCBC7DCA9D779775EA39CE5A2554347C /* EpoxyLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08B25964FAB1DB177DA93ABFC80C52A7 /* EpoxyLogger.swift */; }; + DD7008D6BCB38C7617B2841CE62FAE0F /* LottiePlaybackMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = B91F78FF51C848D66D6C96A05622FF65 /* LottiePlaybackMode.swift */; }; + DDC5E044E5B0ABA30C014A6BC6F6967C /* RxPickerViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0470DA85079EBAEF51E9AEEED872593E /* RxPickerViewDelegateProxy.swift */; }; + DDE08C4324D2843FB11240170F127149 /* PublishRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CA5BEF3A0C95E43C0DD2D282872D5C6 /* PublishRelay.swift */; }; + DE9AC4D1B35C9E07B979930D5C0B38DF /* CollectionAccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF59B2B462112361DED182498D11F186 /* CollectionAccess.swift */; }; + DEB4B1192A01C11306500422A677D67D /* RLMSectionedResults.h in Headers */ = {isa = PBXBuildFile; fileRef = A74C81B22B3AC313A6F125A6BAD0F154 /* RLMSectionedResults.h */; }; + DF6FD5E6489588B3878129FA4EE184BD /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 724500373D9A5B9F20C77DF0140A7928 /* CombineLatest.swift */; }; + DFC5067255A455B81BAA3FAD7CA5377F /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57C74CE2BC19C73E021D5A554165A059 /* Create.swift */; }; + DFDF02FBC28E4C9934A43E2800F63C8E /* ItemsExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33609720D6A7BBF13859E159B404D843 /* ItemsExtension.swift */; }; + DFE3D9A4694A51FD0214E86873DA558A /* RLMObjectSchema_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 588F32C07F6A1AA4E4726470FAEC0E94 /* RLMObjectSchema_Private.h */; }; + E0124C428956811F8179E1EE39232A01 /* RxNavigationControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFBE2A95737DD33C2575D424E8E7889D /* RxNavigationControllerDelegateProxy.swift */; }; + E03D27D23C9C0976B1A755E8EC4795BF /* ReducedMotionOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = F22F893F7B8E356A9DD7A79AEDDA25CE /* ReducedMotionOption.swift */; }; + E077B70EA8DAA51E3A41EBFBE4364D39 /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1A276A29DEAB9DDC4BA2367671C577A /* SynchronizedOnType.swift */; }; + E077E5D6DF28D8BDA20B8C49A2D98BD7 /* TraitCollectionProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B8209612D87AE3DAD49DC9130F4A32C /* TraitCollectionProviding.swift */; }; + E15615F47845E70AA950366457359C8A /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC151FA6EAFD79A22D7FF0FD706471CD /* Completable+AndThen.swift */; }; + E207D63B72031816DE83E74BFBCA4D5B /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00DEAEEC4AFDAE05C3346AB6E0DAF888 /* AsMaybe.swift */; }; + E224C283AA84FF48BCE71EDB0283CB64 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 998A5E8D056AA39966D6804D9162AABF /* Platform.Darwin.swift */; }; + E295753C69223EFECEE9D57D90E68952 /* Recorded+Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A41F9DF86C366E661917D5FB5A75AC2 /* Recorded+Event.swift */; }; + E29E3E106023F452D942798B1A98C791 /* RLMAccessor.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 60E647C4165513364E29C07EA7A6872F /* RLMAccessor.h */; }; + E2E91E87F29CC5EFD482805AC2551D1F /* ShapeItemLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = BED2FF6A3A71BAB9CAF96AFB3DB21744 /* ShapeItemLayer.swift */; }; + E2FD0625D4B979F6A02DBEA797347FAE /* AnyValueContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 039E252DE0E8DE5FF547EC957807CE76 /* AnyValueContainer.swift */; }; + E34B80A9A8B49857FCD043CAE44D1EC0 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8733D6AB817B510652F108E55E42CF33 /* Util.swift */; }; + E375CDBCB57AFD47055B40D1D446E052 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 650030FB46C8158AE9D6776E55362552 /* DispatchQueue+Extensions.swift */; }; + E3DC7B809D4812814D1275565D9A52B7 /* RLMRealm.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1C74D187BB2F0829923F69ED542CF2 /* RLMRealm.h */; }; + E4440A766E941411480A3658F2B4E5F9 /* StoragePrefixMigration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B14939B23A6E2AC30DAC583A0FA22E1 /* StoragePrefixMigration.swift */; }; + E470C2482F4DF1D1703ADB97EA7389C3 /* DiffableSection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25228F6EA4B064717CA2913A3DAF5EA9 /* DiffableSection.swift */; }; + E491D3F86FF3E43A9E6C938990576445 /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEE0B8B8E821374435C065BA3DEF65AC /* Dematerialize.swift */; }; + E4B30C2FC6F770B35965F7A83FB45F1B /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C291189F16072FF3DEC3490950649B7E /* SchedulerType.swift */; }; + E4C31C495C95ADB3D4C7626A920FDF3B /* NSButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D430EFCC50B835D2C330752A86526CEA /* NSButton+Rx.swift */; }; + E4F762E79E6F5854C997F9B962A7D96E /* RxRelay-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C7D5793E449BCB90D5DE11A39615EA /* RxRelay-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E56775636E96D23213B7AE52834F2718 /* Pods-AVIROTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 22241EBA35B80D60F2DFA87DD9A9AB91 /* Pods-AVIROTests-dummy.m */; }; + E58C6B8947953B74ECCF0E5F9CB653A2 /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF934D724485749650D00F02F906D63F /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */; }; + E5C224465CBD11D3723460CBD10CCD8C /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CBAC3AC1A8D892308E4E5E063FAEFAF /* ConcurrentDispatchQueueScheduler.swift */; }; + E6217D67F33652D0734F26F441012898 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD9A460DF422E34A9D13E0FE004A0E9A /* InfiniteSequence.swift */; }; + E62592A24689420C4CC5F0A6264BED52 /* NSObject+Rx+RawRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88B8CACC0AE7196A1D83838215CCA1C6 /* NSObject+Rx+RawRepresentable.swift */; }; + E6595B00A83513B21DC169C6319F834F /* RLMSyncSubscription_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 919234D1DFD1157CADC0FE5CD11067A1 /* RLMSyncSubscription_Private.h */; }; + E68ED20625AF91E9DA00E03DE00DC679 /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0C1B88DB2AEB2FEFBBE71D6FFDFFE9D /* Reduce.swift */; }; + E6BAB40757816D2538ACB9664B3F91AE /* DropShadowEffect.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68E915F2943F7E8226C7FFBEDC54D5E7 /* DropShadowEffect.swift */; }; + E7369C051E1776FDA103234E9508EF6B /* EpoxyableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C71CC9CA6AFF006779EAFA9F05BFE6F /* EpoxyableView.swift */; }; + E7AFB4D5C2E45922675A8077041DEE3E /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB5E956CBBE153FC976EF0DB993F3285 /* Optional.swift */; }; + E7C5CC9FE5C8208B9206CEF237EA0F77 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF7C9475407D2F53A3559CA405771782 /* RecursiveLock.swift */; }; + E7D204CA7813CC4061154DAD40DCC3B6 /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C7643CC668329A9F9ADF24B26F3440 /* SynchronizedUnsubscribeType.swift */; }; + E813B8E55907FD9C9D90C22792AC827D /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B8CF477355B8AC63404B81103306278 /* RecursiveLock.swift */; }; + E83CDF125B26E80C4957513ACBBE18FC /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 001C89D783603103D2E7A4C3CFA41F70 /* Buffer.swift */; }; + E8622A9F5D68CF83D4A0F7BEB04A43D5 /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8F45E2526370D34D8CB0560E1F70F /* ScheduledItem.swift */; }; + E869EDD10A354055F3514C00BE14DA02 /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 605284BA9A07713F37ABE3CD02643C2A /* Bag+Rx.swift */; }; + E882E2FC6FF0575B40627F708AC3B971 /* _RXObjCRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = DB5E6C376F7E550AB056639C5F383CA0 /* _RXObjCRuntime.m */; }; + E899987F3E6214F43909608AE045620A /* RLMPushClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D45FB0BC8A3B8259BA20596AA273096 /* RLMPushClient.h */; }; + E8CB5726B0DE18CF71A8A08925B3CFA7 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68739916950FC1D5429BE6BD8D7AB6C6 /* SwiftSupport.swift */; }; + E8E68A15275FD6942B3345A9CD29D237 /* RLMUser_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = 59C345AC9D43ED895D604E99F4D7185A /* RLMUser_Private.h */; }; + E8F737F4B3CFAB5243725C0ABE7AE3D8 /* ColorEffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA504942A57612F81E1002D93F388D9C /* ColorEffectValue.swift */; }; + E9173A04F97BC7297AEB0A61DA9A12F6 /* ControlEvent+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D5EC1B46AE7D571B0DD04C392D8312D /* ControlEvent+Signal.swift */; }; + E91E0BD02DB8157A18E292957F034042 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83FA5D47E78BA6815209F77C96DEDA56 /* PriorityQueue.swift */; }; + E92EFB101833B001EA542188EDA91D94 /* _RX.m in Sources */ = {isa = PBXBuildFile; fileRef = 136DDABE6C86973B252803E7A37A6F48 /* _RX.m */; }; + E96CE118EE60AB398481EBB98D909159 /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64822AE780FD6956D86D6A1DD348815F /* Concat.swift */; }; + E9750633552388C76783C7A9288A1FA1 /* Amplitude.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2351A282715198D892E2C4CA89ABDB81 /* Amplitude.swift */; }; + E97864C85C221B43F5127AAD1A58D04D /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E57A6187C5E85AE877C63DDDFF75F46F /* HistoricalSchedulerTimeConverter.swift */; }; + E9E2E61EC9FD1214FF6B7F985C4C6EF6 /* NullCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30B8CBD290549F0EE27999BDFB361F7E /* NullCompositionLayer.swift */; }; + EA307249609FE6720B38B7467E5F6F8A /* RLMAsyncTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98467D6D0ECFEE9CCA71250DA2D4B6DD /* RLMAsyncTask.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + EA3728B159E2D05E27AD5C28D0D1A82F /* SharedSequence+Operators+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 484AC444DD3B9E11C01DAF8BC740D472 /* SharedSequence+Operators+arity.swift */; }; + EA78BE96DD14E2CA74588605A396E0B9 /* ControlProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A59B196A8F956B5A945C19461A30B06 /* ControlProperty.swift */; }; + EAA0497C0EDB5BB6999CF33CA75B88EF /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 441C4F83B048DA79D9C417B458354EBD /* CurrentThreadScheduler.swift */; }; + EAA3E86514B34B52B1BE1F6C19348E5F /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD8AC584904870CA21904B1FFE4637AC /* Scan.swift */; }; + EAA6DC88AD6760E6FC5D584043798D77 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4D4463CD5366F140F164933693B88C8 /* Platform.Linux.swift */; }; + EB810984B48BB08319411AC58C7DD552 /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBAB1CB1D7370132460AF15D8F9856BD /* Generate.swift */; }; + EBA3A76502B2A3970E8428D797E8D356 /* RLMAccessor.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2C5299FDABEC54BFAC6069EE13E6E9D /* RLMAccessor.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + EC1D2E9C77A543904BE5DE7D2C32A675 /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2555864FD7C6130553E28889C9533125 /* BooleanDisposable.swift */; }; + ECA8CB7EB8C07DF7A270B6D4A0B7A41B /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB5E956CBBE153FC976EF0DB993F3285 /* Optional.swift */; }; + ECB02BFA1F8070F971BAB91F9B6ECC69 /* RLMPredicateUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = E63619745896A934AE278E17F58DA3B2 /* RLMPredicateUtil.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + ED1C56919D5C98B19B471B9B81B9E4F1 /* UIBarButtonItem+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C5C40ECEA41C998C1E99B136B049F2 /* UIBarButtonItem+Rx.swift */; }; + ED3809E70CF17D27283F53CA4BB723B0 /* RLMSyncUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = FF004AB2087E2C8D9D2ECFDA3917162B /* RLMSyncUtil.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + EDCF501D3E64254F91E810D4DBE8F411 /* RectNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD96BE3C4A3E2D943FDEDE4DD7FF7237 /* RectNode.swift */; }; + EE10ECEAC11D7DE167585585ADA3268A /* Vector1DEffectValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5ACF47909685F76B57F5768AE82B6D2D /* Vector1DEffectValue.swift */; }; + EE208FCDE0E387D5FE1769BF9AEB1045 /* RLMObjectStore.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD9B2C9F91D4879F2811269EEA915C55 /* RLMObjectStore.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + EE7DFE8B712AD1DA331B9248684A278F /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF6605FE8C5C1DA836346D4A71D26C8 /* Do.swift */; }; + EE8657A2016412FBE0CF7F24CA6A4411 /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74942741CDEE0CBD5033ACF8A764AD4 /* Throttle.swift */; }; + EECB495C6174780DAD8256BE67151B97 /* RLMFindOptions.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = 5591FAE6B23033D83C73813DFDEBD875 /* RLMFindOptions.h */; }; + EEEFD68CCFA995C2CCA87161560DECC9 /* _RX.h in Headers */ = {isa = PBXBuildFile; fileRef = A874C206149B39BF14C57F5F87076353 /* _RX.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EEF7168FB48A5E06167323F9072834D5 /* URLSession+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8381A9139BE63FA2FB1DC1A067F519C /* URLSession+Rx.swift */; }; + EF222E9FE124BB244EFBA03C12630B45 /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B35284DCDF41CC60756FCC3B0D63EF6 /* PrimitiveSequence.swift */; }; + EF39E502A388B0305A48972903052D32 /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3511165BD92F716B65DAE699C189522A /* TailRecursiveSink.swift */; }; + EF49711896884CD0CE2BBE8136A16662 /* CompoundBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2327E01E1A8F84150921E25FEBC65449 /* CompoundBezierPath.swift */; }; + EF4C4F3716D4D380D63DFC39920EBCCC /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = AECA3A35E70228E8F00008F47C956E54 /* AsSingle.swift */; }; + EF502BF4513C9E7B190D624355892F07 /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C77C700850BC1A31EE7CE81FE49C10A /* DefaultIfEmpty.swift */; }; + EF62BE7480F47550ED525FB2B88BEAD6 /* SolidLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E371B578A71BE9B1B1189D0FE07DCE4 /* SolidLayerModel.swift */; }; + EFB63FD294C3795BFBB652D91E38A784 /* PrecompAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7088CE337B066330ACAAAA2C75935327 /* PrecompAsset.swift */; }; + EFD2FD4FF7AB71C451EDD8B54B0BCA6F /* RLMSectionedResults.mm in Sources */ = {isa = PBXBuildFile; fileRef = EAD09C3AC43773E0D9A661DA671C6CDF /* RLMSectionedResults.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + F05DD4ED9F1C07E3873F5DDA0F5FE938 /* VectorsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65EC27BF58C197E12ACB7146CA3E25AA /* VectorsExtensions.swift */; }; + F06412DD5F6B955FAF9626D6C32EBB1B /* IdentifyInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E862AD72E5AEAE6B4F56E46CE69B38 /* IdentifyInterceptor.swift */; }; + F0664F11084D14E6733855A8BB7CB19B /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59EC02FF635518C647F9F6457A193E23 /* LockOwnerType.swift */; }; + F0C68CAD88EEDA948E59BB2E89EC3052 /* RLMApp_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A9EF4A0903A0413A50DF2E666CFA2E3D /* RLMApp_Private.h */; }; + F114CC5386665E0BC22D928C93F544E7 /* MainThreadAnimationLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22A6BDFCFE3161709FF418323A4F21DA /* MainThreadAnimationLayer.swift */; }; + F1AC5C8BA85473E2D465A168F58AF94D /* ControlEvent+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D7023DEF4EB06C93B00406D184AE651 /* ControlEvent+Driver.swift */; }; + F24E28526E33CE9B1205E6FE92CDCF8D /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0273365CF273519C454BF191B7A6B33 /* SingleAsync.swift */; }; + F276FEA245DADC6946E22C43F89FB3EF /* DidSelectProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68BB49DFAEEEBB0F49C61AB7EB81D052 /* DidSelectProviding.swift */; }; + F2B27F60883E32A3B22070E1FFC0C173 /* Infallible+CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4E6C46462DF43DF9325E5908D9CE9AD /* Infallible+CombineLatest+arity.swift */; }; + F2C3B88CEC628AD017DEDB866FB2AD9A /* VendorSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C2C6FAE1869566CC7A39B7A0F3E7A2D /* VendorSystem.swift */; }; + F2E161033DF3DAC38E07C08581B5F5A9 /* RxPickerViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 643E1FDECB100AAA6E8EE39747105E62 /* RxPickerViewDataSourceProxy.swift */; }; + F2E58CB9052C6503AAA02780D267F260 /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6614E2C4346C0A68F3F62F8C81547F7D /* Reactive.swift */; }; + F3117B7CBCA74424D090B0911C96DC89 /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = A001F1AAA998BFE3CA1A83801E12AF34 /* Object.swift */; }; + F47F407E7D596D2E289EF59540A417E6 /* CompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 136D4E066CDF93D7FBAAE8A065993730 /* CompositionLayer.swift */; }; + F48B3E0D431BBBC6904CDCD2CF90031B /* RLMSet.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = C23383D690CCBB1C3C427F376EA4AE65 /* RLMSet.h */; }; + F48BBB342D22A1EE7AC2508682F827AE /* RLMSyncConfiguration_Private.h in Copy . Private Headers */ = {isa = PBXBuildFile; fileRef = BF2E33CD13D1441E9361D4036C3D749A /* RLMSyncConfiguration_Private.h */; }; + F4E80B5B74CAF0B144C78F1FDEEA4060 /* View+ValueChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DA723D79B41C128F767B776BB076A71 /* View+ValueChanged.swift */; }; + F50AE3738FF59C1D5F746261696CB2F9 /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D076844A55EF9863B458AAD9D1F96EA /* ShareReplayScope.swift */; }; + F5A4E8117CC404FBF30FAA18DDF2B464 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCAF46AA5FAB0728FB3BDD9C07F9BC44 /* Queue.swift */; }; + F5A53C2A508F1EB1D6CBBDAE29764A02 /* LayerFontProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 172CD3EDA4CC99FFCADB95039B389D4B /* LayerFontProvider.swift */; }; + F6000E72F56B7F5DA025E8B059D646D5 /* LottieAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EB8DABA55B1D42457A110A27BA4668D /* LottieAnimation.swift */; }; + F6B8EE91A32FB576A2E14C3D35D30D0C /* Archive+Progress.swift in Sources */ = {isa = PBXBuildFile; fileRef = 050C44669B66D8C9F49600ED7F6CF982 /* Archive+Progress.swift */; }; + F6E8225546FF80949844A03E0D132E6C /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CBAC3AC1A8D892308E4E5E063FAEFAF /* ConcurrentDispatchQueueScheduler.swift */; }; + F75B72CF84DB33B6560E5E78A86E4340 /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EFFC69F9BC5A4764130DA628B2E190A /* ConnectableObservableType.swift */; }; + F80CCCEBF9794DC3E8B4EEB8FAAA2D0B /* ObjectSchema.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94FEFEC4411FE2958F5F97BCEA384EF5 /* ObjectSchema.swift */; }; + F817863CB919C40D856F191E0F568D38 /* UIStepper+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C895E6BEA31C395D916D30A07A5A202A /* UIStepper+Rx.swift */; }; + F886034817F04FB2272A1BCF6B543A6C /* LRUAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA221B22E38A914664FA415A3768ED16 /* LRUAnimationCache.swift */; }; + F8BBC6FE3BA8F1AAFF4D357BC72F0968 /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDE09FFAC51CB12052320F2237E99EC9 /* Rx.swift */; }; + F8CA00FDD7FFB764EE8E33F7C0832AEB /* RLMSyncSubscription.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F232C444DA93CE6B55AA821524DAD71 /* RLMSyncSubscription.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + F8CA9ADC478F3C8DE2B0F65C4891E82C /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB825B25516F0A88B6ABB051A0A124C6 /* ImmediateSchedulerType.swift */; }; + F94371C9169BE3AE599827232C38D2B0 /* RLMEmbeddedObject.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = EFA3F2ABB67D05296195FBC5098DB9DD /* RLMEmbeddedObject.h */; }; + F9A188521930674A255FA9238F315EE3 /* RxTableViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19770F4E5BFA92A85C2A02BA862AA5D9 /* RxTableViewDelegateProxy.swift */; }; + F9A9DADC7CC1B4A69FC350F77CD14E4F /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3AA42800640EE6AC430C93A15D83902 /* AsyncLock.swift */; }; + F9D9C36DAEAD3700FA65B292FB65EF7D /* RxTabBarControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C66CB6EEDD5E3A17017C51C6A7D4D57F /* RxTabBarControllerDelegateProxy.swift */; }; + F9FA019AA5F4715F439D87602AA6E16E /* RLMRealmConfiguration.h in Copy . Public Headers */ = {isa = PBXBuildFile; fileRef = E18B947D96079060FD81A44AA56758C0 /* RLMRealmConfiguration.h */; }; + FA02DF628A2D0431207A001BC193FCF0 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19DD700DA89FE382231EDA75A28C42C3 /* Observable+Bind.swift */; }; + FA3D8F42E808BC6DF0E8428D7CE48D3F /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F12A5A8FEEA8CA0E5A9DA11F15BA80B5 /* Observable.swift */; }; + FA44A75F4BDA7E6B3D42E7B0BF6A8875 /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = F86C6BD69088682E7DAEC4758D18E02E /* SkipWhile.swift */; }; + FA619EFD1F2820503C84496CEF86AE20 /* RLMAPIKeyAuth.mm in Sources */ = {isa = PBXBuildFile; fileRef = EDC26AAE1A6DB7239A66B105AD495872 /* RLMAPIKeyAuth.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + FAA8AD4022E0A7BFE26E964D68A3333B /* GroupNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146F6C394DD2ACF55908793AD3268DD7 /* GroupNode.swift */; }; + FAA9422DBF165F89AA81D94DB2DBF457 /* KeychainSwiftAccessOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 075D2F7030634529B5843BED1A6E1404 /* KeychainSwiftAccessOptions.swift */; }; + FAD080E85B0F41F271FC471B98F90699 /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15091179A2A3B9FE9E545F7B16FB0AD4 /* DisposeBase.swift */; }; + FB8A83EC681BB91088394884EE68AE49 /* LayerStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BD13147A4561A0256D8EF59BC2B1FBB /* LayerStyle.swift */; }; + FBAAA0540EC1023F5D36A51910586F1B /* Data+CompressionDeprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43A19EB314D4432F58888F8FB4A0B9AA /* Data+CompressionDeprecated.swift */; }; + FBB5E1C645058DD688693C5597631C29 /* _RXObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = C0C51F960E2286A775D3AC5DC73CE50C /* _RXObjCRuntime.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC70045C2FA5C9737707B3943F5638D4 /* TextLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2917678695A28A8EF4CA31CC02EC7E80 /* TextLayerModel.swift */; }; + FCA3AA572DB59FC9E2E45FEB3100DAF5 /* RLMConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = C42CCE88D17761CA95CF0424D6008467 /* RLMConstants.h */; }; + FCBCB08417E8E0E13AFE2FF44A1F1A8F /* RLMSwiftCollectionBase.mm in Sources */ = {isa = PBXBuildFile; fileRef = 502C6DE16C0932CEA4401476581EDCB6 /* RLMSwiftCollectionBase.mm */; settings = {COMPILER_FLAGS = "-DREALM_HAVE_CONFIG -DREALM_COCOA_VERSION='@\"10.43.0\"' -D__ASSERTMACROS__ -DREALM_ENABLE_SYNC"; }; }; + FCCD276C19F573A0B2253C5445BD7F7D /* CurveVertex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67853E99CB67B73ED00B0D0D8FB8358B /* CurveVertex.swift */; }; + FD39798D4E6A2151C517E174154D163B /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = A56EECF3BB38E43277CC5974C33BDCAB /* Lock.swift */; }; + FD463B3BE92FCA4251D526C9AEB77B4E /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE26F9C17973A4C7D9ED740468E1F2AD /* Event.swift */; }; + FD9531D8F0EC04FA5D6FA1BCA1ED6A1A /* IdentifyEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 923426BB675BAF0C894C421323EAC11E /* IdentifyEvent.swift */; }; + FD992938EFEB1897BE1B039EE89206F7 /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 916C9E4C2AC4E15026EAF4E7D44E600F /* ObserverBase.swift */; }; + FDCCD51C6620A0D2FDCC53E3EC880108 /* SetBehaviorsProviding.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9ED9968E6FD4781C1E15D25E1E9E15A /* SetBehaviorsProviding.swift */; }; + FE151674FAE685905D47A45F031AE297 /* CodableExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2765B8FAD8525B7C1225F8E77C57C28 /* CodableExtension.swift */; }; + FE2F13D80F1F4B8A605390C3399EF3AD /* RealmKeyedCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DDE66220D7D63CC646B4B1EAAE3B259 /* RealmKeyedCollection.swift */; }; + FE37B576B68AC2671F9ADCB2FDC555C6 /* RLMObjectBase_Dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A309F3DB9563378927C7C2DDDE09C00 /* RLMObjectBase_Dynamic.h */; }; + FE37D6297754179D680E93B403CE3E40 /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27156BF2D39ECA5104E73A3AF07E1A4E /* Switch.swift */; }; + FE7FC652161CB9CBDDBA9E5BE3397011 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 326C73B7B41F474637936D3279146259 /* Error.swift */; }; + FE94DD45756FCA493D7E8C9A7EAFFFC1 /* ViewType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 765F577CFD28C69D33E3A072DD996D79 /* ViewType.swift */; }; + FF21C29F2325E747CC04BA19B21CF38F /* RLMSwiftObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E21EC97CCAF4505B503D36BB7A62F2E6 /* RLMSwiftObject.h */; }; + FF4CE74CC63A83C0CC8D0295071C60D4 /* InvertedMatteLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBB0D18520BF27C53AEBD3965BC1FE23 /* InvertedMatteLayer.swift */; }; + FFA30E4BA7608E8E654F0EE4AE07E2B1 /* BlendMode+Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8EB1E152D79133E40F042E410819375 /* BlendMode+Filter.swift */; }; + FFA8F6B2C89AFD993B4010BDF728DD5C /* PreCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADA5E23A86C014249ACC5020E06B071D /* PreCompositionLayer.swift */; }; + FFC74F1A48E282981DED9F8686227FEA /* Identify.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CC909D5A630273365944F71FB217D88 /* Identify.swift */; }; + FFE86F4A59C618772EB62D60DA19EE92 /* StrokeAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A62482D960C7C93EC005182D1C872B83 /* StrokeAnimation.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 10DEE9F5CA0D0C98A4FF26B21156C7A5 /* PBXContainerItemProxy */ = { + 08BFD16817070ADFADE50A3F0E47A84E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8E049F5F4E3BDC647F924FEF22D49D90; - remoteInfo = NMapsMap; + remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; + remoteInfo = RxCocoa; }; - 140A2AA3F4779FDF724642220A8E8CCF /* PBXContainerItemProxy */ = { + 1E176242EA3C149F0AA4F3CD38D2E35D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 782725687624F8665247B84AB581BEB1; - remoteInfo = RealmSwift; + remoteGlobalIDString = C8D93C508E21FFD4EE60D335DD6C22E3; + remoteInfo = RxTest; }; - 163082C5FC7FAEF5328657CD53A8484B /* PBXContainerItemProxy */ = { + 2CA16FBC1B5A54EDBF62DBCB3C571568 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B990BD87169C76A3ED3FE8A9258D91A3; remoteInfo = "Toast-Swift"; }; - 7B3EDF9F450903603470B3E2732D7FAD /* PBXContainerItemProxy */ = { + 4812463D67A8FF1A3F6036C5D8C1307B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 68494F30B4A13F8E5E88BCCAEC25B0A4; - remoteInfo = Realm; + remoteGlobalIDString = F243B36381C0CE83CCFF789AC38F0D36; + remoteInfo = RxBlocking; + }; + 5309F79A97415C1F34FBB8F259E46D6C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; + remoteInfo = RxRelay; + }; + 5B86227FFC12628296EE96DBC4B53893 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 782725687624F8665247B84AB581BEB1; + remoteInfo = RealmSwift; }; - 9DA64CD644D2B68D829FF0BFD6E3283E /* PBXContainerItemProxy */ = { + 67C242D58AD09FC2169816B7A8198199 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 524E387885E0F0463B2B6AAF53165788; + remoteInfo = "RxSwift-library"; + }; + 6D88A5A51A8363D250122467815BB894 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; + remoteInfo = RxRelay; + }; + 7BDCE3E37E2851BE804D6898DBF0071A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 524E387885E0F0463B2B6AAF53165788; + remoteInfo = "RxSwift-library"; + }; + 81FFF3328BCF7AA3F9F1CBD5788D0E2A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 07E54A78BCF82272E99319D7F7F5E8C1; remoteInfo = KeychainSwift; }; - 9E06D62155DA03C393F968B71F75FEE2 /* PBXContainerItemProxy */ = { + 8628A84CAD5AE44FF71DC5E136B0485B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 72E614C823EA09AB1AAE80D5CD8A4C58; - remoteInfo = NMapsGeometry; + remoteGlobalIDString = 91D17BEB3F6784AA8CA6D969FC78F446; + remoteInfo = "RxSwift-framework"; }; - B46DEBEF179C4895528AF7672D8A8596 /* PBXContainerItemProxy */ = { + 95734113656FFFB19A1337C5F8BB35D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 72E614C823EA09AB1AAE80D5CD8A4C58; - remoteInfo = NMapsGeometry; + remoteGlobalIDString = 91D17BEB3F6784AA8CA6D969FC78F446; + remoteInfo = "RxSwift-framework"; }; - CD7B6F88D2C02CD2218CB322B25D16DA /* PBXContainerItemProxy */ = { + A1B696D837BDFADC488DDAE1F50A9D76 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0B967D7F8561D42493EE289EC8D450D1; + remoteInfo = "lottie-ios"; + }; + A8BF358DCEDA1873E3288AB0A0FDABE3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = F2541C12E9BA697CFF5DE2E52A71D9D3; remoteInfo = AmplitudeSwift; }; - D7990E42729795579266128E3F66CA01 /* PBXContainerItemProxy */ = { + B0D7775457DD58A1A3D2C914F7D21855 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 91D17BEB3F6784AA8CA6D969FC78F446; + remoteInfo = "RxSwift-framework"; + }; + B1C485A96A8404151122519DCDE890D9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8E049F5F4E3BDC647F924FEF22D49D90; + remoteInfo = NMapsMap; + }; + BA084D10971EB6C3141A91B92A53B60B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 68494F30B4A13F8E5E88BCCAEC25B0A4; remoteInfo = Realm; }; - D898ECFB6782CCA76B164F38F2C60A23 /* PBXContainerItemProxy */ = { + C5F8BAD1D451EC3ADD2F850957D336AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0B967D7F8561D42493EE289EC8D450D1; - remoteInfo = "lottie-ios"; + remoteGlobalIDString = 72E614C823EA09AB1AAE80D5CD8A4C58; + remoteInfo = NMapsGeometry; + }; + C8956A14586069AB9B794433F127270B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 72E614C823EA09AB1AAE80D5CD8A4C58; + remoteInfo = NMapsGeometry; + }; + E632156EA5D1C77549F7306BDDE7CB4C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 524E387885E0F0463B2B6AAF53165788; + remoteInfo = "RxSwift-library"; + }; + FE8F7702EBA0B82A8012781B5D468C38 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 68494F30B4A13F8E5E88BCCAEC25B0A4; + remoteInfo = Realm; }; /* End PBXContainerItemProxy section */ @@ -823,595 +1394,963 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 009142C8EEB227A4C4661864A387B645 /* RLMMongoCollection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMMongoCollection.mm; path = Realm/RLMMongoCollection.mm; sourceTree = ""; }; - 00D1F416ACF803BA08199504291F3087 /* NMapsGeometry-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "NMapsGeometry-xcframeworks.sh"; sourceTree = ""; }; - 01C4F04FDDF605F4DDEE9132BA38F570 /* RLMObjectBase_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectBase_Private.h; path = include/RLMObjectBase_Private.h; sourceTree = ""; }; - 02D5AB701C5DF45DB35F7115F8D080E4 /* CompositionLayersInitializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositionLayersInitializer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift; sourceTree = ""; }; - 039DAAB79C5113238A91638E2283E622 /* DotLottieAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieAnimation.swift; path = Sources/Private/Model/DotLottie/DotLottieAnimation.swift; sourceTree = ""; }; - 045B9BAAD188C122A8DBBEF655C86517 /* SchemaDiscovery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchemaDiscovery.swift; path = RealmSwift/Impl/SchemaDiscovery.swift; sourceTree = ""; }; - 04D2BABA9DAA1291124D6779F6FB8EF8 /* Constants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constants.swift; path = Sources/Amplitude/Constants.swift; sourceTree = ""; }; - 052FA441B3AC4CA70E99A90B0D3B946D /* RLMProperty_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMProperty_Private.h; path = include/RLMProperty_Private.h; sourceTree = ""; }; - 0562F4E415C5D503D1C44E8D147EE294 /* LayerTransformNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerTransformNode.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift; sourceTree = ""; }; - 0569B39A57B17AA9FDED51C37A82A8C9 /* Pods-AVIRO.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AVIRO.modulemap"; sourceTree = ""; }; - 057EC2EEA5E7C976C06767E28176CD8D /* ViewDifferentiatorProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewDifferentiatorProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewDifferentiatorProviding.swift; sourceTree = ""; }; - 066D2D776758CFE74C85E3D772FA7E77 /* KeychainSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainSwift-umbrella.h"; sourceTree = ""; }; - 06A0ABB3771F1F27FFBB2ACAB9F2B245 /* RLMSyncSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncSession.h; path = include/RLMSyncSession.h; sourceTree = ""; }; - 06A95C8471697952026D3F24815801DC /* RLMAPIKeyAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMAPIKeyAuth.h; path = include/RLMAPIKeyAuth.h; sourceTree = ""; }; - 06D31339F4481B367CC16FB147042246 /* LottiePlaybackMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottiePlaybackMode.swift; path = Sources/Public/Animation/LottiePlaybackMode.swift; sourceTree = ""; }; - 06F36FB26DD99048ECA47351580BC655 /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUIIntrinsicContentSizeInvalidator.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIIntrinsicContentSizeInvalidator.swift; sourceTree = ""; }; - 06FC87E7D608AB294FA13C6023B7738B /* GradientStrokeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStrokeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift; sourceTree = ""; }; - 070563A556DAB724FCE32890BA09BB10 /* RLMSwiftProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSwiftProperty.h; path = include/RLMSwiftProperty.h; sourceTree = ""; }; - 08AB171B9CEBE1ECC55F8BB91865720C /* CAAnimation+TimingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAAnimation+TimingConfiguration.swift"; path = "Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift"; sourceTree = ""; }; - 09D71E69DD8EEC68A303DEC5A62F8CA3 /* RLMObjectBase_Dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectBase_Dynamic.h; path = include/RLMObjectBase_Dynamic.h; sourceTree = ""; }; - 09E4764F51F7F9A5405C97C6EC40E92C /* ImageLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageLayer.swift; path = Sources/Private/CoreAnimation/Layers/ImageLayer.swift; sourceTree = ""; }; - 0AC8DCA2015581D80D86B5166B10FB03 /* Toast-Swift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Toast-Swift.debug.xcconfig"; sourceTree = ""; }; - 0AED2DDC10D3CF0C4312A1DC76D1CE84 /* ObjectiveCSupport+BSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObjectiveCSupport+BSON.swift"; path = "RealmSwift/ObjectiveCSupport+BSON.swift"; sourceTree = ""; }; - 0B3438E5D5086413F257ED7AEA59A2A2 /* BehaviorsConfigurableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorsConfigurableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/BehaviorsConfigurableView.swift; sourceTree = ""; }; - 0B9EAFB29D1AEDEC2476EF9BCEF10219 /* Archive+ReadingDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+ReadingDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+ReadingDeprecated.swift"; sourceTree = ""; }; + 001C89D783603103D2E7A4C3CFA41F70 /* Buffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Buffer.swift; path = RxSwift/Observables/Buffer.swift; sourceTree = ""; }; + 004F0BAB7881E7C98A1772F64D66B4CF /* Property.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Property.swift; path = RealmSwift/Property.swift; sourceTree = ""; }; + 009117157D5C75381BDA8661FB9131F4 /* AmplitudeSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AmplitudeSwift.release.xcconfig; sourceTree = ""; }; + 00A3820C78A03CDAA16CEE40FDE77AB8 /* URL+ZIP.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+ZIP.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/URL+ZIP.swift"; sourceTree = ""; }; + 00B783BADD4A97412D43D5CB3132033D /* RLMEmailPasswordAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMEmailPasswordAuth.h; path = include/RLMEmailPasswordAuth.h; sourceTree = ""; }; + 00DEAEEC4AFDAE05C3346AB6E0DAF888 /* AsMaybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsMaybe.swift; path = RxSwift/Observables/AsMaybe.swift; sourceTree = ""; }; + 00E3EE9A4E0C4F472F569827D168A28D /* NSView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSView+Rx.swift"; path = "RxCocoa/macOS/NSView+Rx.swift"; sourceTree = ""; }; + 00E998788F29854B09D51B4C97423E67 /* DefaultAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultAnimationCache.swift; path = Sources/Public/AnimationCache/DefaultAnimationCache.swift; sourceTree = ""; }; + 00F13883E034FF5F6469AC7881E0E8DA /* Producer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Producer.swift; path = RxSwift/Observables/Producer.swift; sourceTree = ""; }; + 0115229EC3822492F61080555ED0EA6A /* RLMCollection_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMCollection_Private.h; path = include/RLMCollection_Private.h; sourceTree = ""; }; + 0121C39190868703D96C9EE3F8D423F9 /* SectionedViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedViewDataSourceType.swift; path = RxCocoa/Common/SectionedViewDataSourceType.swift; sourceTree = ""; }; + 01FF0371669F47A7DAF37D0483420BB8 /* PersistentStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PersistentStorage.swift; path = Sources/Amplitude/Storages/PersistentStorage.swift; sourceTree = ""; }; + 0292652FC044413CF63CD1B1DD2F5A83 /* DestinationPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DestinationPlugin.swift; path = Sources/Amplitude/Plugins/DestinationPlugin.swift; sourceTree = ""; }; + 02AD247EA75F5E2DA57E76E9B9DBD188 /* Realm-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Realm-dummy.m"; sourceTree = ""; }; + 031893FD3D882E436EC541DF783B1276 /* RxTest */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxTest; path = libRxTest.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 037D5E0300687A215AA897379C8A5E12 /* LayerImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerImageProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift; sourceTree = ""; }; + 03819EAC9CC0EB430937A823B89898FB /* DelegateProxyType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxyType.swift; path = RxCocoa/Common/DelegateProxyType.swift; sourceTree = ""; }; + 0384A5E816EF230B477D6D01ADBAFD7D /* RLMRealmUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMRealmUtil.mm; path = Realm/RLMRealmUtil.mm; sourceTree = ""; }; + 038ADDE00333895272A23634193D969C /* DisposeBag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBag.swift; path = RxSwift/Disposables/DisposeBag.swift; sourceTree = ""; }; + 039E252DE0E8DE5FF547EC957807CE76 /* AnyValueContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyValueContainer.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift; sourceTree = ""; }; + 03F464E083C39261ECF027662E19A9F7 /* RLMSyncManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncManager.h; path = include/RLMSyncManager.h; sourceTree = ""; }; + 0470DA85079EBAEF51E9AEEED872593E /* RxPickerViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift; sourceTree = ""; }; + 04FE7F7F56F7ECB8AEB12EA76F43654A /* AnimatedControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedControl.swift; path = Sources/Public/Controls/AnimatedControl.swift; sourceTree = ""; }; + 0507E765871BB0F57888BFBB4B633C36 /* RxCollectionViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift; sourceTree = ""; }; + 050C44669B66D8C9F49600ED7F6CF982 /* Archive+Progress.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Progress.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Progress.swift"; sourceTree = ""; }; + 051C9B6F953C1914927944B62A91AD62 /* BSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BSON.swift; path = RealmSwift/BSON.swift; sourceTree = ""; }; + 0530EB68CD3A5FFF1445CF240CD7AC9C /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = First.swift; path = RxSwift/Observables/First.swift; sourceTree = ""; }; + 05939B4EB37BB3CE4584124070DF1E60 /* RLMMongoCollection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMMongoCollection.mm; path = Realm/RLMMongoCollection.mm; sourceTree = ""; }; + 05D7A2BC80FFCCC95BE8D97A208EF0E6 /* Empty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Empty.swift; path = RxSwift/Observables/Empty.swift; sourceTree = ""; }; + 064B3A5517581611B0A73B0011BB26E6 /* GroupInterpolator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupInterpolator.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift; sourceTree = ""; }; + 06D92C17858E9E389FC709AD83574483 /* Constants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constants.swift; path = Sources/Amplitude/Constants.swift; sourceTree = ""; }; + 07186156FD4E71266897A834CB5CEABE /* RxCocoa.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.release.xcconfig; sourceTree = ""; }; + 075D2F7030634529B5843BED1A6E1404 /* KeychainSwiftAccessOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainSwiftAccessOptions.swift; path = Sources/KeychainSwiftAccessOptions.swift; sourceTree = ""; }; + 077A7244017E7A9FB3B3929A11D3EFF8 /* RLMAsymmetricObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMAsymmetricObject.mm; path = Realm/RLMAsymmetricObject.mm; sourceTree = ""; }; + 07BA7B8A1C04EF88163A36A74D32D1FE /* UISearchController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchController+Rx.swift"; path = "RxCocoa/iOS/UISearchController+Rx.swift"; sourceTree = ""; }; + 07DFCB2023DB9C2425076165D8015634 /* RLMEmailPasswordAuth.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMEmailPasswordAuth.mm; path = Realm/RLMEmailPasswordAuth.mm; sourceTree = ""; }; + 07FA727774ACFCAED7CE50DBF9B205E2 /* Pods-AVIRO-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AVIRO-acknowledgements.markdown"; sourceTree = ""; }; + 080E3DAADC464CFFE0A29EC93335E2AF /* DotLottieFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieFile.swift; path = Sources/Public/DotLottie/DotLottieFile.swift; sourceTree = ""; }; + 088EF3AE010B5FEC4D59BEF60958A54C /* Multicast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Multicast.swift; path = RxSwift/Observables/Multicast.swift; sourceTree = ""; }; + 08B25964FAB1DB177DA93ABFC80C52A7 /* EpoxyLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyLogger.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Logging/EpoxyLogger.swift; sourceTree = ""; }; + 08B7C39B5116EDE6326F50378970E4B7 /* TransformAnimations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformAnimations.swift; path = Sources/Private/CoreAnimation/Animations/TransformAnimations.swift; sourceTree = ""; }; + 093D1D2DDAC4C8513E1C43D727F9AFF7 /* TestableObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestableObserver.swift; path = RxTest/TestableObserver.swift; sourceTree = ""; }; + 0945BE9A327250698068AE1853D7BCCE /* GradientFill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFill.swift; path = Sources/Private/Model/ShapeItems/GradientFill.swift; sourceTree = ""; }; + 0A41F9DF86C366E661917D5FB5A75AC2 /* Recorded+Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Recorded+Event.swift"; path = "RxTest/Recorded+Event.swift"; sourceTree = ""; }; + 0A51C456198DEE49073991328B60F38E /* CoreTextRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CoreTextRenderLayer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift; sourceTree = ""; }; + 0A66AAED0F94CCD8F3A84F7DB3E85793 /* Observable+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Concurrency.swift"; path = "RxSwift/Observable+Concurrency.swift"; sourceTree = ""; }; + 0AC4B094059E30A4C8CBF8104C9C11B7 /* CGPointExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CGPointExtension.swift; path = Sources/Private/Utility/Primitives/CGPointExtension.swift; sourceTree = ""; }; + 0AD94CC8262D710BD25455B1814E3BAC /* Repeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeat.swift; path = RxSwift/Observables/Repeat.swift; sourceTree = ""; }; + 0B15851DBBC621C967C073A5EA1192A1 /* Realm-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Realm-xcframeworks.sh"; sourceTree = ""; }; + 0B1C9B68E8F6E5B0300C870FCAA08A7F /* RLMDecimal128.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMDecimal128.h; path = include/RLMDecimal128.h; sourceTree = ""; }; + 0B8209612D87AE3DAD49DC9130F4A32C /* TraitCollectionProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TraitCollectionProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/TraitCollectionProviding.swift; sourceTree = ""; }; + 0BB0CA0B6693A5A2F10C8489229AEEC4 /* LottieConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieConfiguration.swift; path = Sources/Public/Configuration/LottieConfiguration.swift; sourceTree = ""; }; 0C0277469E9A47FA9700308B6CAFB9C7 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; + 0C14977A1807ACBB8AAAD395373C7543 /* ObservableType+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Extensions.swift"; path = "RxSwift/ObservableType+Extensions.swift"; sourceTree = ""; }; 0C4CBD9773E7794962E30DD82A779441 /* Pods-AVIRO */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-AVIRO"; path = Pods_AVIRO.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0DAA3A902B9505851FBB229E534EC06A /* RLMSyncManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncManager.h; path = include/RLMSyncManager.h; sourceTree = ""; }; - 0DEA9DE3C318B502D0DBD8879AAF5521 /* RLMAPIKeyAuth.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMAPIKeyAuth.mm; path = Realm/RLMAPIKeyAuth.mm; sourceTree = ""; }; - 0E0CD38F030AE5C1113F0320D9D2D50B /* PreCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift; sourceTree = ""; }; - 0E4137D5675F38F9F883BFB7DA4A744D /* RLMPredicateUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMPredicateUtil.mm; path = Realm/RLMPredicateUtil.mm; sourceTree = ""; }; - 0EB9B24C47B95FAB2ADE50E14360ECFC /* LinkingObjects.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkingObjects.swift; path = RealmSwift/LinkingObjects.swift; sourceTree = ""; }; - 0F0FC6BA73B1D4A55184295473DBA164 /* ReducedMotionOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReducedMotionOption.swift; path = Sources/Public/Configuration/ReducedMotionOption.swift; sourceTree = ""; }; - 0F715F5321D6AEBA8C52D015FE64AE46 /* RectNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RectNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/RectNode.swift; sourceTree = ""; }; - 0FB831597BC82BA527157AFB2AD3AF26 /* AsymmetricObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsymmetricObject.swift; path = RealmSwift/AsymmetricObject.swift; sourceTree = ""; }; - 116DE14272D9E1324CC0565D37E8419B /* PrecompAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrecompAsset.swift; path = Sources/Private/Model/Assets/PrecompAsset.swift; sourceTree = ""; }; - 117EBE15DB80CE617303A8652D9BF2AF /* GradientAnimations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientAnimations.swift; path = Sources/Private/CoreAnimation/Animations/GradientAnimations.swift; sourceTree = ""; }; - 1180F50B9248F823941EC40B6FFAD464 /* PointValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PointValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift; sourceTree = ""; }; - 124B2E4AC262422515FBB166C49D35A7 /* Trim.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Trim.swift; path = Sources/Private/Model/ShapeItems/Trim.swift; sourceTree = ""; }; - 124C1A35214BC98075DC7FFA33134812 /* Object.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Object.swift; path = RealmSwift/Object.swift; sourceTree = ""; }; - 13CDF3A61238598CB8B872669B10AA06 /* RLMBSON.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMBSON.mm; path = Realm/RLMBSON.mm; sourceTree = ""; }; - 13D087D6CAB65EC7172F8CEBAA2550A1 /* FillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift; sourceTree = ""; }; - 1403F3C09A6E005D9AB0441AEFB3A5B2 /* ShapeLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeLayer.swift; path = Sources/Private/CoreAnimation/Layers/ShapeLayer.swift; sourceTree = ""; }; - 14463C884EED193CBF7610CAD2C21163 /* RLMAnalytics.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMAnalytics.mm; path = Realm/RLMAnalytics.mm; sourceTree = ""; }; - 156F0C27C261646D25016E1D22B5EFD4 /* RLMSyncConfiguration_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncConfiguration_Private.h; path = include/RLMSyncConfiguration_Private.h; sourceTree = ""; }; - 1578D0385D2365407A56E41EB0ECA1E5 /* RLMConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMConstants.h; path = include/RLMConstants.h; sourceTree = ""; }; - 157B71F8DEE686A730A1E8C426500FED /* CollectionAccess.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollectionAccess.swift; path = RealmSwift/Impl/CollectionAccess.swift; sourceTree = ""; }; - 16877C6EBDAF2AB2AE77E571B31D70DB /* IdentityEventSender.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IdentityEventSender.swift; path = Sources/Amplitude/Plugins/IdentityEventSender.swift; sourceTree = ""; }; - 16AB1B1DC60ECF0E6F7CD6C75AE3DFD7 /* RLMLogger.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMLogger.mm; path = Realm/RLMLogger.mm; sourceTree = ""; }; - 16D3C2768C8E277D01D36754F641B087 /* Transform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Transform.swift; path = Sources/Private/Model/Objects/Transform.swift; sourceTree = ""; }; - 16F9243AECE5E40A0319EFA6521FA74B /* AnimatedButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedButton.swift; path = Sources/Public/Controls/AnimatedButton.swift; sourceTree = ""; }; - 1732A242CAFE23B8D1F21BC603F5E66B /* TegKeychainConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TegKeychainConstants.swift; path = Sources/TegKeychainConstants.swift; sourceTree = ""; }; - 175265C05A57BEE55D8B272FCF489A77 /* StrokeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift; sourceTree = ""; }; - 1772FB2F3838C04E340923DD2196714A /* RLMUserAPIKey.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUserAPIKey.mm; path = Realm/RLMUserAPIKey.mm; sourceTree = ""; }; - 17C1EF69F6A0916C0B2F718EB507DE03 /* Realm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Realm.h; path = include/Realm.h; sourceTree = ""; }; - 17CA758EA8D0D83B9C856FC345540ACF /* DotLottieConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieConfiguration.swift; path = Sources/Public/DotLottie/DotLottieConfiguration.swift; sourceTree = ""; }; - 199C39F898ADC27A4F5C404AE3DF1D4B /* LottieColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieColor.swift; path = Sources/Public/Primitives/LottieColor.swift; sourceTree = ""; }; - 1A2D2114E31871657FE302286DD016BC /* RLMSwiftCollectionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSwiftCollectionBase.h; path = include/RLMSwiftCollectionBase.h; sourceTree = ""; }; - 1B3AB7A356AE4D8E716B9E59428730E2 /* LottieAnimationHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationHelpers.swift; path = Sources/Public/Animation/LottieAnimationHelpers.swift; sourceTree = ""; }; - 1B77C9EAFB14E78BFC7C0880D19FF3BE /* MacOSLifecycleMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MacOSLifecycleMonitor.swift; path = Sources/Amplitude/Plugins/Mac/MacOSLifecycleMonitor.swift; sourceTree = ""; }; - 1B8669F6FFD864F38DE570A0B7CF62CD /* RLMUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUtil.mm; path = Realm/RLMUtil.mm; sourceTree = ""; }; - 1BA73136655B28344903D9D85A4DDE7A /* MakeViewProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MakeViewProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/MakeViewProviding.swift; sourceTree = ""; }; - 1BB38A194B3C4C33650775D4AB01231F /* BasicTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BasicTypes.swift; path = RealmSwift/Impl/BasicTypes.swift; sourceTree = ""; }; - 1BD2F73DE053B358B886C9C26BBAB25E /* AnimationTime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationTime.swift; path = Sources/Public/Primitives/AnimationTime.swift; sourceTree = ""; }; - 1CD0EAEE6306F94D0A694861F8595826 /* ColorValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift; sourceTree = ""; }; - 1DFA2BDADDCF8952D2926167CAF8F22E /* Pods-AVIRO-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AVIRO-acknowledgements.plist"; sourceTree = ""; }; - 1EB104F7D54AC23CE0C0FD5787A80315 /* EpoxyLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyLogger.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Logging/EpoxyLogger.swift; sourceTree = ""; }; - 1EB4F153A939AAEC82F139AC2B9072B0 /* RLMUserAPIKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMUserAPIKey.h; path = include/RLMUserAPIKey.h; sourceTree = ""; }; - 1F5DFCA36E9F4E0FFDF24E42E13515EB /* LottieConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieConfiguration.swift; path = Sources/Public/Configuration/LottieConfiguration.swift; sourceTree = ""; }; - 1F664B0A33E0AB7A1E8ED859324BC2B5 /* SolidCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/SolidCompositionLayer.swift; sourceTree = ""; }; - 1F95A14EF92AAC7F16BCD2AD31B64927 /* CustomPathAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomPathAnimation.swift; path = Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift; sourceTree = ""; }; - 1FAFF516AF705128DDB08F71F98C01A0 /* RLMPushClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMPushClient.mm; path = Realm/RLMPushClient.mm; sourceTree = ""; }; - 2081C24D0F068D64A219AFC680E00575 /* RealmSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RealmSwift.release.xcconfig; sourceTree = ""; }; - 20D10781D96BD4560FFF812607286625 /* AnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/AnimationLayer.swift; sourceTree = ""; }; - 20DB8386DD36489F0F24FCD1546A3EDC /* CoreAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CoreAnimationLayer.swift; path = Sources/Private/CoreAnimation/CoreAnimationLayer.swift; sourceTree = ""; }; - 2153295D7D55786DB39F2D530A3524B8 /* Archive+BackingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+BackingConfiguration.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+BackingConfiguration.swift"; sourceTree = ""; }; - 21541F1B08BA35ACDBF2E8B50E16D144 /* RealmSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RealmSwift-umbrella.h"; sourceTree = ""; }; + 0C71CC9CA6AFF006779EAFA9F05BFE6F /* EpoxyableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/EpoxyableView.swift; sourceTree = ""; }; + 0C722734DEE24D06DD61B676728E5CB6 /* UINavigationController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UINavigationController+Rx.swift"; path = "RxCocoa/iOS/UINavigationController+Rx.swift"; sourceTree = ""; }; + 0C93D6535C7BC867E4C69E506694CD59 /* Collection+Diff.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Collection+Diff.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Collection+Diff.swift"; sourceTree = ""; }; + 0CC909D5A630273365944F71FB217D88 /* Identify.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Identify.swift; path = Sources/Amplitude/Events/Identify.swift; sourceTree = ""; }; + 0D076844A55EF9863B458AAD9D1F96EA /* ShareReplayScope.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareReplayScope.swift; path = RxSwift/Observables/ShareReplayScope.swift; sourceTree = ""; }; + 0D24178972D03DC2CF2D50494842E38B /* TextAnimatorNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextAnimatorNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift; sourceTree = ""; }; + 0D281CDAA1CE4B6D5B54A3A93C39D702 /* Types.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Types.swift; path = Sources/Amplitude/Types.swift; sourceTree = ""; }; + 0D29A6FB309921AE9EA720BB76ABEAB0 /* GradientStrokeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStrokeRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift; sourceTree = ""; }; + 0D5EC1B46AE7D571B0DD04C392D8312D /* ControlEvent+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Signal.swift"; path = "RxCocoa/Traits/Signal/ControlEvent+Signal.swift"; sourceTree = ""; }; + 0D6614F4A98E277548DB9784CB5D191D /* TestSchedulerVirtualTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestSchedulerVirtualTimeConverter.swift; path = RxTest/Schedulers/TestSchedulerVirtualTimeConverter.swift; sourceTree = ""; }; + 0D7023DEF4EB06C93B00406D184AE651 /* ControlEvent+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlEvent+Driver.swift"; sourceTree = ""; }; + 0DCC5A137BE69716B67DA577D5C697C1 /* DotLottieManifest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieManifest.swift; path = Sources/Private/Model/DotLottie/DotLottieManifest.swift; sourceTree = ""; }; + 0DDC54E1B28948A12329D32270057885 /* RLMSchema_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSchema_Private.h; path = include/RLMSchema_Private.h; sourceTree = ""; }; + 0DDD4821ADAADE6D16B854CCCC9D705D /* ContextPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContextPlugin.swift; path = Sources/Amplitude/Plugins/ContextPlugin.swift; sourceTree = ""; }; + 0E37D861225A4D5733692E397AE12EA0 /* KeyframeInterpolator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeInterpolator.swift; path = Sources/Private/Utility/Interpolatable/KeyframeInterpolator.swift; sourceTree = ""; }; + 0EA9C17A856DC033823ED0E37F4ACD5C /* StarAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StarAnimation.swift; path = Sources/Private/CoreAnimation/Animations/StarAnimation.swift; sourceTree = ""; }; + 0F1B14683F1F4F16054BC54DAC64BC05 /* Realm.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Realm.modulemap; sourceTree = ""; }; + 0FE61DF3F991F27E533F4850E9010A9C /* StarNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StarNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/StarNode.swift; sourceTree = ""; }; + 103ADFAA6FAC14D13768C65F699B62EC /* ObservableConvertibleType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableConvertibleType.swift; path = RxSwift/ObservableConvertibleType.swift; sourceTree = ""; }; + 109CBA34D6C8C174705203729BE9B5AF /* RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCocoa.swift; path = RxCocoa/RxCocoa.swift; sourceTree = ""; }; + 11403D067C0ECD67ACAED1223B7F10E0 /* realm-monorepo.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = "realm-monorepo.xcframework"; path = "core/realm-monorepo.xcframework"; sourceTree = ""; }; + 1142DE1A28A340FBB65F49F670B20F89 /* DataExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataExtension.swift; path = Sources/Private/Utility/Extensions/DataExtension.swift; sourceTree = ""; }; + 1173B0E4444DBF6F8164F5481F93C751 /* AnyNodeProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyNodeProperty.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift; sourceTree = ""; }; + 118145025830CC5ED1D8B8542651CE7E /* RLMBSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMBSON.h; path = include/RLMBSON.h; sourceTree = ""; }; + 11B4945B0068C35EA1D812C086E5706D /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RealmSwift/Optional.swift; sourceTree = ""; }; + 11DB5F058182415F6B3F073561A0FD77 /* KVORepresentable+Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+Swift.swift"; path = "RxCocoa/Foundation/KVORepresentable+Swift.swift"; sourceTree = ""; }; + 1249C968C1A5CFE6137D99BD0326B0D2 /* RLMUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUtil.mm; path = Realm/RLMUtil.mm; sourceTree = ""; }; + 1259417AFE273F11E984F41ADFFD32C8 /* SingleValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleValueProvider.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift; sourceTree = ""; }; + 1261E7A051D207A52D87F0770405803C /* SubscriptionDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscriptionDisposable.swift; path = RxSwift/Disposables/SubscriptionDisposable.swift; sourceTree = ""; }; + 129BD882637F2F938CB6C853C5266B04 /* DotLottieImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieImageProvider.swift; path = Sources/Private/Model/DotLottie/DotLottieImageProvider.swift; sourceTree = ""; }; + 12A3F1C0D910933BE53CFAFDE661348A /* Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sequence.swift; path = RxSwift/Observables/Sequence.swift; sourceTree = ""; }; + 12DE36707CD21D8DA6286392C1043A9D /* Infallible+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Debug.swift"; path = "RxSwift/Traits/Infallible/Infallible+Debug.swift"; sourceTree = ""; }; + 131C20BEB34257CDC703ED2E73EBD9C3 /* RLMUpdateChecker.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUpdateChecker.mm; path = Realm/RLMUpdateChecker.mm; sourceTree = ""; }; + 133032016CFC717B68DB23DA68B655AD /* RxSwift-framework-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwift-framework-dummy.m"; sourceTree = ""; }; + 136D4E066CDF93D7FBAAE8A065993730 /* CompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift; sourceTree = ""; }; + 136DDABE6C86973B252803E7A37A6F48 /* _RX.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RX.m; path = RxCocoa/Runtime/_RX.m; sourceTree = ""; }; + 146F6C394DD2ACF55908793AD3268DD7 /* GroupNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift; sourceTree = ""; }; + 14854AC285BFDA1B92AAC2DA6553DEBE /* NMapsGeometry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NMapsGeometry.release.xcconfig; sourceTree = ""; }; + 14C3792B6C65D381BA5DC74A926B44F2 /* Mask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mask.swift; path = Sources/Private/Model/Objects/Mask.swift; sourceTree = ""; }; + 15091179A2A3B9FE9E545F7B16FB0AD4 /* DisposeBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBase.swift; path = RxSwift/Disposables/DisposeBase.swift; sourceTree = ""; }; + 155E465F9A60DDD805A831F26C2792E0 /* WatchOSLifecycleMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WatchOSLifecycleMonitor.swift; path = Sources/Amplitude/Plugins/watchOS/WatchOSLifecycleMonitor.swift; sourceTree = ""; }; + 1596FB8ECB0CB3B983E0AB952FFF5A1D /* CachedImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedImageProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift; sourceTree = ""; }; + 159F11CB5886E26E6EED644302523D6A /* CAAnimation+TimingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CAAnimation+TimingConfiguration.swift"; path = "Sources/Private/CoreAnimation/Animations/CAAnimation+TimingConfiguration.swift"; sourceTree = ""; }; + 1649234E1B6874F074D894215436FE73 /* KeychainSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = KeychainSwift.modulemap; sourceTree = ""; }; + 172CD3EDA4CC99FFCADB95039B389D4B /* LayerFontProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerFontProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift; sourceTree = ""; }; + 173E3847DEFFA607F791F653625122CF /* KeyframeGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeGroup.swift; path = Sources/Private/Model/Keyframes/KeyframeGroup.swift; sourceTree = ""; }; + 17D3B81289714EDD74A5156F510B90C8 /* ShapeRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeRenderLayer.swift; path = Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift; sourceTree = ""; }; + 1839A7C9E05304AC8ADC0CDC54D26DFF /* AnyRealmValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyRealmValue.swift; path = RealmSwift/AnyRealmValue.swift; sourceTree = ""; }; + 19770F4E5BFA92A85C2A02BA862AA5D9 /* RxTableViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift; sourceTree = ""; }; + 19DD700DA89FE382231EDA75A28C42C3 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxRelay/Observable+Bind.swift"; sourceTree = ""; }; + 19E1E62FD77D81C6619046C2785896A6 /* LottieSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieSwitch.swift; path = Sources/Public/Controls/LottieSwitch.swift; sourceTree = ""; }; + 1B3995979B983237097AA4ADED53CD5D /* LottieButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieButton.swift; path = Sources/Public/Controls/LottieButton.swift; sourceTree = ""; }; + 1B69CE84ED843C3AE736866E7AAA3A40 /* IdentityEventSender.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IdentityEventSender.swift; path = Sources/Amplitude/Plugins/IdentityEventSender.swift; sourceTree = ""; }; + 1C77C700850BC1A31EE7CE81FE49C10A /* DefaultIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultIfEmpty.swift; path = RxSwift/Observables/DefaultIfEmpty.swift; sourceTree = ""; }; + 1D469B874713B0F309874C8FF8E49D70 /* TextCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift; sourceTree = ""; }; + 1DA723D79B41C128F767B776BB076A71 /* View+ValueChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "View+ValueChanged.swift"; path = "Sources/Private/Utility/Helpers/View+ValueChanged.swift"; sourceTree = ""; }; + 1DD7BC445A0F1010A612ADEBD2BDA683 /* DidDisplayProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidDisplayProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidDisplayProviding.swift; sourceTree = ""; }; + 1DDE66220D7D63CC646B4B1EAAE3B259 /* RealmKeyedCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RealmKeyedCollection.swift; path = RealmSwift/RealmKeyedCollection.swift; sourceTree = ""; }; + 1E621465D080F278E6D740E46A7B4281 /* RLMProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMProperty.h; path = include/RLMProperty.h; sourceTree = ""; }; + 1E69CE0F927E980F7FD7333244A097BE /* UITextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextField+Rx.swift"; path = "RxCocoa/iOS/UITextField+Rx.swift"; sourceTree = ""; }; + 1E980EBFB951A592001CC3959EE5FAA8 /* DistinctUntilChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DistinctUntilChanged.swift; path = RxSwift/Observables/DistinctUntilChanged.swift; sourceTree = ""; }; + 1E99782464EB9FC233FAB3AA9EC8DE03 /* BlockingObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BlockingObservable.swift; path = RxBlocking/BlockingObservable.swift; sourceTree = ""; }; + 1EA00BB965E2B2DC494C444FA7504D1E /* PublishSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishSubject.swift; path = RxSwift/Subjects/PublishSubject.swift; sourceTree = ""; }; + 1F11366AB98A25F58850B09966C02A59 /* RLMError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMError.h; path = include/RLMError.h; sourceTree = ""; }; + 1F32CCD1DC9C99196D871961C16BC5C7 /* KeychainSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainSwift.debug.xcconfig; sourceTree = ""; }; + 1FA9A8B5146E7B57A486DD31990F6982 /* RLMSwiftCollectionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSwiftCollectionBase.h; path = include/RLMSwiftCollectionBase.h; sourceTree = ""; }; + 20306C38198D5F978F8CBA68954D3FFB /* RevenueEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RevenueEvent.swift; path = Sources/Amplitude/Events/RevenueEvent.swift; sourceTree = ""; }; + 203D35C6E9C626DEABAD23530C56EB65 /* RLMUpdateResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMUpdateResult.h; path = include/RLMUpdateResult.h; sourceTree = ""; }; + 20BC2C485BEA8772CAF6748A5B5729E8 /* InvocableScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableScheduledItem.swift; path = RxSwift/Schedulers/Internal/InvocableScheduledItem.swift; sourceTree = ""; }; + 20C8D14F2BD8DDB7864757283A4BE00E /* RLMUUID.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUUID.mm; path = Realm/RLMUUID.mm; sourceTree = ""; }; + 21002CFE410DEB8EFCA5CA8DC126F284 /* RLMAsyncTask_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMAsyncTask_Private.h; path = include/RLMAsyncTask_Private.h; sourceTree = ""; }; + 22241EBA35B80D60F2DFA87DD9A9AB91 /* Pods-AVIROTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AVIROTests-dummy.m"; sourceTree = ""; }; 22333CAC86E4AF65A2E095FCAB5CA60C /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - 228B1B220EEF798328F7F07F4748F621 /* RLMConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RLMConstants.m; path = Realm/RLMConstants.m; sourceTree = ""; }; - 22EBA8932E77F8B65697496399410BD3 /* RLMSyncSession.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSyncSession.mm; path = Realm/RLMSyncSession.mm; sourceTree = ""; }; - 22EF2607C1AAA9034F4A42D29369F482 /* RLMArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMArray.h; path = include/RLMArray.h; sourceTree = ""; }; - 246382F6D83203A35759E71B6EF35D51 /* RLMSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RLMSupport.swift; path = Realm/Swift/RLMSupport.swift; sourceTree = ""; }; - 2492C5FA2031D75A5F76423EE814F791 /* GradientFillNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFillNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift; sourceTree = ""; }; - 254EE68875321ACB4D0CAA3BB91B962B /* TextDocument.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextDocument.swift; path = Sources/Private/Model/Text/TextDocument.swift; sourceTree = ""; }; - 2596C6AC2322648B4005A1206F42FBBB /* EpoxyModelArrayBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelArrayBuilder.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelArrayBuilder.swift; sourceTree = ""; }; - 25CF51F01ACD45D5C9CF3FF604B82AEF /* RLMSyncSubscription.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSyncSubscription.mm; path = Realm/RLMSyncSubscription.mm; sourceTree = ""; }; - 2636ABE736F5E76D7B68CEE477CED275 /* Interpolatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Interpolatable.swift; path = Sources/Public/Keyframes/Interpolatable.swift; sourceTree = ""; }; - 2695BE0D783076A29AE9085839E78E5F /* RLMArray_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMArray_Private.h; path = include/RLMArray_Private.h; sourceTree = ""; }; - 269921796C8822381E0DC80C153B370F /* MaskContainerLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MaskContainerLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift; sourceTree = ""; }; - 26BA2E52440B94DE5BDAAB89C020D581 /* EmbeddedObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EmbeddedObject.swift; path = RealmSwift/EmbeddedObject.swift; sourceTree = ""; }; - 2703A5F9C58FDF84EDD08202C38E37EA /* Collection+Diff.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Collection+Diff.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Collection+Diff.swift"; sourceTree = ""; }; - 276E371660D70A6B95D51818627028F8 /* FilepathImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FilepathImageProvider.swift; path = Sources/Public/iOS/FilepathImageProvider.swift; sourceTree = ""; }; - 27AD08B92FC78443B81F00E6E71D42B3 /* ObjectiveCSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectiveCSupport.swift; path = RealmSwift/ObjectiveCSupport.swift; sourceTree = ""; }; - 27B4521CF6F785B405783CF7E5DFBAB8 /* EpoxySwiftUILayoutMargins.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUILayoutMargins.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUILayoutMargins.swift; sourceTree = ""; }; - 27BAFBB1118459F63E05E19B5943537D /* EpoxySwiftUIHostingView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUIHostingView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingView.swift; sourceTree = ""; }; - 27F49DB8396288BCB626455CCA711F71 /* URL+ZIP.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+ZIP.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/URL+ZIP.swift"; sourceTree = ""; }; - 284D6587AF8EC278DC8096038654181D /* RLMProviderClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMProviderClient.h; path = include/RLMProviderClient.h; sourceTree = ""; }; - 2858CE21CAB7EA8460919556A9F409EC /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = RealmSwift/Util.swift; sourceTree = ""; }; - 290FE647FEF822E128AEDE79660ED915 /* RLMScheduler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMScheduler.mm; path = Realm/RLMScheduler.mm; sourceTree = ""; }; - 29328ED03E794306636E55752C6E4D8C /* RLMClassInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMClassInfo.mm; path = Realm/RLMClassInfo.mm; sourceTree = ""; }; - 29DEF47F5EC9B1AD022830B737C6787D /* NMapsMap.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NMapsMap.debug.xcconfig; sourceTree = ""; }; - 2A14331D14A82CA107B492C9464B9FD1 /* PropertyAccessors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertyAccessors.swift; path = RealmSwift/Impl/PropertyAccessors.swift; sourceTree = ""; }; - 2A3FA04443741F9E7A77EFB4062A09E6 /* LottieLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieLogger.swift; path = Sources/Public/Logging/LottieLogger.swift; sourceTree = ""; }; - 2A471E722BBC0987A30D3158A46EB3D7 /* StrokeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift; sourceTree = ""; }; - 2AF0A386C8092B507B15FA8A2127FEAD /* RLMMongoCollection_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMMongoCollection_Private.h; path = include/RLMMongoCollection_Private.h; sourceTree = ""; }; - 2B0E424C5BE718BEBB7331557DD97946 /* DotLottieManifest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieManifest.swift; path = Sources/Private/Model/DotLottie/DotLottieManifest.swift; sourceTree = ""; }; - 2B2AF7B1375772ECAB6FEBFA30547405 /* RepeaterLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RepeaterLayer.swift; path = Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift; sourceTree = ""; }; - 2CB771BF88CE17F14239FE2D5B865F2F /* ShapeCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/ShapeCompositionLayer.swift; sourceTree = ""; }; - 2CDE6ECEB775615D9A1E6E85663EE0CE /* RenderingEngineOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RenderingEngineOption.swift; path = Sources/Public/Configuration/RenderingEngineOption.swift; sourceTree = ""; }; - 2D7BFA522990AF1B40C678DB197CDAEF /* RLMRealm.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMRealm.mm; path = Realm/RLMRealm.mm; sourceTree = ""; }; - 2EEBB37A05CF00336AF27C41233D4FB3 /* Revenue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Revenue.swift; path = Sources/Amplitude/Events/Revenue.swift; sourceTree = ""; }; - 2FE4A54EFB2AFC2BF2FA875380DAEF45 /* RLMSet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSet.mm; path = Realm/RLMSet.mm; sourceTree = ""; }; - 2FE5EAEF33F301D010D51E0F10AE6098 /* RLMManagedDictionary.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMManagedDictionary.mm; path = Realm/RLMManagedDictionary.mm; sourceTree = ""; }; - 30E9D6B98C780E731DC6E5BF1D4C6C56 /* Pods-AVIRO-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AVIRO-frameworks.sh"; sourceTree = ""; }; - 31336E7A0171BB431150C6023D63DA19 /* lottie-ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.release.xcconfig"; sourceTree = ""; }; - 315014AA07D6AA22E49D53CA155ED729 /* Archive+WritingDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+WritingDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+WritingDeprecated.swift"; sourceTree = ""; }; - 31B11605C5202948EEA9D055DD650C76 /* RLMObjectSchema_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectSchema_Private.h; path = include/RLMObjectSchema_Private.h; sourceTree = ""; }; - 31D36292AFF2AC540AC703E5A92D0180 /* RLMUser.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUser.mm; path = Realm/RLMUser.mm; sourceTree = ""; }; - 329F2013C14436462A221BEB5CFF4A40 /* Aliases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Aliases.swift; path = RealmSwift/Aliases.swift; sourceTree = ""; }; + 229488CEEF0EFA1B255E19A10642B294 /* Keyframe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keyframe.swift; path = Sources/Public/Keyframes/Keyframe.swift; sourceTree = ""; }; + 22A6BDFCFE3161709FF418323A4F21DA /* MainThreadAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainThreadAnimationLayer.swift; path = Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift; sourceTree = ""; }; + 22E8179D585169A7C6963C1E38D0BA84 /* WillDisplayProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WillDisplayProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/WillDisplayProviding.swift; sourceTree = ""; }; + 2327E01E1A8F84150921E25FEBC65449 /* CompoundBezierPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompoundBezierPath.swift; path = Sources/Private/Utility/Primitives/CompoundBezierPath.swift; sourceTree = ""; }; + 2351A282715198D892E2C4CA89ABDB81 /* Amplitude.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amplitude.swift; path = Sources/Amplitude/Amplitude.swift; sourceTree = ""; }; + 238409D7878DE58EDD535CB17AE1E1B9 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + 23BE9F7C7EE5248B51A198F37926AE9E /* LottieAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationView.swift; path = Sources/Public/Animation/LottieAnimationView.swift; sourceTree = ""; }; + 25228F6EA4B064717CA2913A3DAF5EA9 /* DiffableSection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiffableSection.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/DiffableSection.swift; sourceTree = ""; }; + 2524B8617B08AB2A656F7418D1DDEE4A /* SynchronizedDisposeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedDisposeType.swift; path = RxSwift/Concurrency/SynchronizedDisposeType.swift; sourceTree = ""; }; + 2555864FD7C6130553E28889C9533125 /* BooleanDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BooleanDisposable.swift; path = RxSwift/Disposables/BooleanDisposable.swift; sourceTree = ""; }; + 25DFF6DE948D39473A1D9F16881771A2 /* LayerModel+makeAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "LayerModel+makeAnimationLayer.swift"; path = "Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift"; sourceTree = ""; }; + 25F63A531105CD4E1E4CCF5B918C5494 /* RxBlocking */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxBlocking; path = libRxBlocking.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 262DDDF7EFAEDB066C6320DD342B2CC8 /* ConsoleLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConsoleLogger.swift; path = Sources/Amplitude/ConsoleLogger.swift; sourceTree = ""; }; + 263AC5F3B02CB153AC663322D192767D /* EllipseAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EllipseAnimation.swift; path = Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift; sourceTree = ""; }; + 269953BDB9609B25439FE87D54A24041 /* CompatibilityTracker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibilityTracker.swift; path = Sources/Private/CoreAnimation/CompatibilityTracker.swift; sourceTree = ""; }; + 26F0B13E686C0BEE2F4A6F9B43B19A2C /* RxTest-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxTest-umbrella.h"; sourceTree = ""; }; + 27156BF2D39ECA5104E73A3AF07E1A4E /* Switch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Switch.swift; path = RxSwift/Observables/Switch.swift; sourceTree = ""; }; + 273FC59E1E9B3996AEC45576F818AB8B /* UITabBarController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBarController+Rx.swift"; path = "RxCocoa/iOS/UITabBarController+Rx.swift"; sourceTree = ""; }; + 27CCD2EA3E9C236DEB35C9D1270D1562 /* UISegmentedControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISegmentedControl+Rx.swift"; path = "RxCocoa/iOS/UISegmentedControl+Rx.swift"; sourceTree = ""; }; + 28545824B1CE006F5ECF89DF63EC67DF /* NotificationCenter+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NotificationCenter+Rx.swift"; path = "RxCocoa/Foundation/NotificationCenter+Rx.swift"; sourceTree = ""; }; + 28925FF6F58A742E5E6DD3F3C07EDFE4 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RxSwift/Observables/Error.swift; sourceTree = ""; }; + 28EAD857D6F665FF1753560A487A0357 /* Infallible+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Concurrency.swift"; path = "RxSwift/Traits/Infallible/Infallible+Concurrency.swift"; sourceTree = ""; }; + 2917678695A28A8EF4CA31CC02EC7E80 /* TextLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextLayerModel.swift; path = Sources/Private/Model/Layers/TextLayerModel.swift; sourceTree = ""; }; + 293E65997890C7C324639D4F0EE6231E /* EffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/EffectValue.swift; sourceTree = ""; }; + 295F880F759883C9544EBB0AC0750265 /* ImageLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageLayerModel.swift; path = Sources/Private/Model/Layers/ImageLayerModel.swift; sourceTree = ""; }; + 29AFCE1F4685C353477EABA4E9E5A140 /* RealmConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RealmConfiguration.swift; path = RealmSwift/RealmConfiguration.swift; sourceTree = ""; }; + 29D6C316F63A13DF4EFF7C7F9FB06821 /* NSTextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextView+Rx.swift"; path = "RxCocoa/macOS/NSTextView+Rx.swift"; sourceTree = ""; }; + 29F186411B51C5CA7F3532645C8F1A1D /* ObserveOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserveOn.swift; path = RxSwift/Observables/ObserveOn.swift; sourceTree = ""; }; + 2A17220BFF737F7746770AE6DC714571 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + 2A1B10972E31354EE3F67D1784964F02 /* RLMMongoDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMMongoDatabase.h; path = include/RLMMongoDatabase.h; sourceTree = ""; }; + 2A70976A63EBF93CA1F595533B5851EF /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + 2AE9D33941589916776DD5574A20D6D8 /* ColorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorExtension.swift; path = Sources/Private/Utility/Primitives/ColorExtension.swift; sourceTree = ""; }; + 2B445F7BDDB003E276EF07A3E46198AB /* Debounce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debounce.swift; path = RxSwift/Observables/Debounce.swift; sourceTree = ""; }; + 2B5A9F2D9A66E044AD38CA953899F38C /* Events.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Events.swift; path = RealmSwift/Events.swift; sourceTree = ""; }; + 2B72D863C491B2B7A846D1FFA1181A1B /* CombinedShapeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedShapeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift; sourceTree = ""; }; + 2B94C2ED02DE7D7EAE9480419D066AA5 /* CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+Collection.swift"; path = "RxSwift/Observables/CombineLatest+Collection.swift"; sourceTree = ""; }; + 2BB43362235B43FFCD80AD7934201996 /* CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+arity.swift"; path = "RxSwift/Observables/CombineLatest+arity.swift"; sourceTree = ""; }; + 2BCAFAB4A057F4D9CA1E7193690F13E5 /* LegacyDatabaseStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LegacyDatabaseStorage.swift; path = Sources/Amplitude/Migration/LegacyDatabaseStorage.swift; sourceTree = ""; }; + 2C0911A46972A0804532B1EB39A36956 /* MacOSLifecycleMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MacOSLifecycleMonitor.swift; path = Sources/Amplitude/Plugins/Mac/MacOSLifecycleMonitor.swift; sourceTree = ""; }; + 2C16C1A32F3A62984CEA6D5DFF181591 /* ShapeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeTransform.swift; path = Sources/Private/Model/ShapeItems/ShapeTransform.swift; sourceTree = ""; }; + 2C1C74D187BB2F0829923F69ED542CF2 /* RLMRealm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMRealm.h; path = include/RLMRealm.h; sourceTree = ""; }; + 2C2B93B794819BE45A0BB0D79DA25705 /* Amb.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amb.swift; path = RxSwift/Observables/Amb.swift; sourceTree = ""; }; + 2C5EDA4F324936CDF8835072EC0E98D3 /* Realm.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Realm.release.xcconfig; sourceTree = ""; }; + 2D220875FDFD3FE9B83C5990F3DEE517 /* Toast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Toast.swift; path = Toast/Toast.swift; sourceTree = ""; }; + 2D45FB0BC8A3B8259BA20596AA273096 /* RLMPushClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMPushClient.h; path = include/RLMPushClient.h; sourceTree = ""; }; + 2D746718A0F8BA45E9DD333D8B02CD12 /* RLMManagedSet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMManagedSet.mm; path = Realm/RLMManagedSet.mm; sourceTree = ""; }; + 2D97A7D7B4F9C7F8BC1B04A172320928 /* AnonymousDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousDisposable.swift; path = RxSwift/Disposables/AnonymousDisposable.swift; sourceTree = ""; }; + 2DB6C0D1CF5318263A2F22511B2FC677 /* RLMRealm.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMRealm.mm; path = Realm/RLMRealm.mm; sourceTree = ""; }; + 2DDC9947324414FDA1DFFCADDAD76D11 /* AnyObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyObserver.swift; path = RxSwift/AnyObserver.swift; sourceTree = ""; }; + 2E8DF07037286B52929BB877BC5E0D93 /* SortDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SortDescriptor.swift; path = RealmSwift/SortDescriptor.swift; sourceTree = ""; }; + 2EB8F30305326AAE5CE8DC030D27341E /* RLMRealm+Sync.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "RLMRealm+Sync.mm"; path = "Realm/RLMRealm+Sync.mm"; sourceTree = ""; }; + 2ED9ED0D16D4ED0F5F3310E87FF43B74 /* AppUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppUtil.swift; path = Sources/Amplitude/Plugins/Vendors/AppUtil.swift; sourceTree = ""; }; + 2EDA72BBD5BDC6708BA5E9B6E4EA4013 /* AmplitudeSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AmplitudeSwift-Info.plist"; sourceTree = ""; }; + 2F3C49CA372585808C7CA06EB5E6C63E /* GradientFillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift; sourceTree = ""; }; + 2FAFE68880171E3CC3FBBB914C86A080 /* InfiniteOpaqueAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteOpaqueAnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/InfiniteOpaqueAnimationLayer.swift; sourceTree = ""; }; + 2FE73C2C38E66F22240730CFAF1526DE /* PersistentStorageResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PersistentStorageResponseHandler.swift; path = Sources/Amplitude/Utilities/PersistentStorageResponseHandler.swift; sourceTree = ""; }; + 30215225AC1EF01A4708E6D421D58706 /* AnimationContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationContext.swift; path = Sources/Private/Utility/Helpers/AnimationContext.swift; sourceTree = ""; }; + 308B61B35364FF69046366D07C715F97 /* App.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = App.swift; path = RealmSwift/App.swift; sourceTree = ""; }; + 30B8CBD290549F0EE27999BDFB361F7E /* NullCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NullCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.swift; sourceTree = ""; }; + 30DA5973E36BC417EC7CB9C30FD18A2C /* RxBlocking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxBlocking-prefix.pch"; sourceTree = ""; }; + 314BAC27A6F2084191E3A21D693F828D /* Atomic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Atomic.swift; path = Sources/Amplitude/Utilities/Atomic.swift; sourceTree = ""; }; + 3196AD8C5667E195254BCAE3E77F078A /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxCocoa/Common/Observable+Bind.swift"; sourceTree = ""; }; + 320A162AE9287D8C452A95752E566595 /* ConcurrentMainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentMainScheduler.swift; path = RxSwift/Schedulers/ConcurrentMainScheduler.swift; sourceTree = ""; }; + 320B18CBFE6A398BFDC86E9426C64B16 /* PreCompLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompLayerModel.swift; path = Sources/Private/Model/Layers/PreCompLayerModel.swift; sourceTree = ""; }; + 322BE6CE68BD1DCB1B8FA921E14D54A5 /* AnimationTextProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationTextProvider.swift; path = Sources/Public/TextProvider/AnimationTextProvider.swift; sourceTree = ""; }; + 326C73B7B41F474637936D3279146259 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RealmSwift/Error.swift; sourceTree = ""; }; + 326EC037910377400A172281549D8836 /* Archive+Writing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Writing.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Writing.swift"; sourceTree = ""; }; + 32714792314C21B215E56AB2FFA394CC /* KeychainSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainSwift-prefix.pch"; sourceTree = ""; }; + 3281B9719A62EF27E3095EBBD9128C75 /* RLMAPIKeyAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMAPIKeyAuth.h; path = include/RLMAPIKeyAuth.h; sourceTree = ""; }; 32C5330ED6F0BAC79B49D4AF0DCEBB56 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; - 32C9D01175A77DFA83A9A97AB05DB591 /* KeyedDecodingContainerExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyedDecodingContainerExtensions.swift; path = Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift; sourceTree = ""; }; - 32F0015A2EDC47766A9C0189023BF39E /* AnimationCacheProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationCacheProvider.swift; path = Sources/Public/AnimationCache/AnimationCacheProvider.swift; sourceTree = ""; }; - 337238BD521563334DDFF8818D6B1060 /* Events.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Events.swift; path = RealmSwift/Events.swift; sourceTree = ""; }; - 345BF57E7A6974E0863A584F44BD485C /* SortDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SortDescriptor.swift; path = RealmSwift/SortDescriptor.swift; sourceTree = ""; }; - 348104567F88E116122B5B31CBFEADF6 /* TransformLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformLayer.swift; path = Sources/Private/CoreAnimation/Layers/TransformLayer.swift; sourceTree = ""; }; - 3537A564CA40319E278C5F26FFFFD0AB /* RLMApp_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMApp_Private.h; path = include/RLMApp_Private.h; sourceTree = ""; }; - 35941369A0A112BA132D94CBE2736100 /* Pods-AVIRO-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AVIRO-acknowledgements.markdown"; sourceTree = ""; }; - 362E791CE9F275451035B7C2B419365B /* RLMApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMApp.h; path = include/RLMApp.h; sourceTree = ""; }; - 37139FBFD634A8DAF09E9F36B9349D0C /* RLMObservation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObservation.mm; path = Realm/RLMObservation.mm; sourceTree = ""; }; - 3728B056ADE22C29EB6C1FEAB7FC0F3B /* Pods-AVIRO-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AVIRO-umbrella.h"; sourceTree = ""; }; - 388035D86AD5210A0D7A636B50F726CA /* CoreTextRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CoreTextRenderLayer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CoreTextRenderLayer.swift; sourceTree = ""; }; - 38E8B63753C1AD73A83768029CBE7644 /* RLMEmailPasswordAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMEmailPasswordAuth.h; path = include/RLMEmailPasswordAuth.h; sourceTree = ""; }; - 3910DD3A5790A41214020770A6E429F3 /* KeychainSwiftAccessOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainSwiftAccessOptions.swift; path = Sources/KeychainSwiftAccessOptions.swift; sourceTree = ""; }; - 3A658241EA986A3969EBFFA0F91D9A95 /* RLMRealmConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMRealmConfiguration.h; path = include/RLMRealmConfiguration.h; sourceTree = ""; }; - 3AF593A8B8F26C667FC2244FF4C8F7EB /* Marker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Marker.swift; path = Sources/Private/Model/Objects/Marker.swift; sourceTree = ""; }; - 3B978AEC658DDE5A75121A241567BFAE /* RLMRealm_Dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMRealm_Dynamic.h; path = include/RLMRealm_Dynamic.h; sourceTree = ""; }; - 3C0AED73A85CDD249A514DEE140ACFD4 /* RoundedCorners.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RoundedCorners.swift; path = Sources/Private/Model/ShapeItems/RoundedCorners.swift; sourceTree = ""; }; - 3C4F8A92A82CAD07C26E4817FDD212EE /* NodeProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NodeProperty.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/NodeProperty.swift; sourceTree = ""; }; - 3C7259EE447CBCE0DD214636A467ECCB /* StrokeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift; sourceTree = ""; }; - 3D7AEA6E86F717A4396DCDB666EC8336 /* Sessions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sessions.swift; path = Sources/Amplitude/Sessions.swift; sourceTree = ""; }; - 3E242B0418B2FCD497FE2C8D5E440EEF /* AnimatorNodeDebugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatorNodeDebugging.swift; path = Sources/Private/Utility/Debugging/AnimatorNodeDebugging.swift; sourceTree = ""; }; - 3FCEB0BDDD8E6FE153E11F17351D4289 /* TrimPathNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrimPathNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift; sourceTree = ""; }; - 407CA2AA3F7E7651EBFC8CD775B9798A /* Realm.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Realm.modulemap; sourceTree = ""; }; - 41276D5A90A8EF06F419DE3CE2F110FC /* RLMCollection_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMCollection_Private.h; path = include/RLMCollection_Private.h; sourceTree = ""; }; - 41DEE2CE448EB23FA009F318D36613A0 /* KeyPathStrings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyPathStrings.swift; path = RealmSwift/Impl/KeyPathStrings.swift; sourceTree = ""; }; - 428492039AC1C11B454EE21650D59FD5 /* ItemsExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemsExtension.swift; path = Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift; sourceTree = ""; }; - 4294607D7E91B4082733685F29557A10 /* DecodingStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DecodingStrategy.swift; path = Sources/Public/Configuration/DecodingStrategy.swift; sourceTree = ""; }; - 433C7553A834AAA75E970DC929F7020C /* Data+Serialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Serialization.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Serialization.swift"; sourceTree = ""; }; + 32F1ED32FBFC99CB7DB27B97EFF6EEEF /* MathKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MathKit.swift; path = Sources/Private/Utility/Extensions/MathKit.swift; sourceTree = ""; }; + 33609720D6A7BBF13859E159B404D843 /* ItemsExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemsExtension.swift; path = Sources/Private/MainThread/NodeRenderSystem/Extensions/ItemsExtension.swift; sourceTree = ""; }; + 33817E0FE756712586BF3DB3B090952D /* Completable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Completable.swift; path = RxSwift/Traits/PrimitiveSequence/Completable.swift; sourceTree = ""; }; + 33A287CDF23907C4B181476DAB8D5B90 /* SchedulerServices+Emulation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerServices+Emulation.swift"; path = "RxSwift/Schedulers/SchedulerServices+Emulation.swift"; sourceTree = ""; }; + 33C190425D6245B4ED6DAA47D9EDA3DD /* RLMSchema.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSchema.mm; path = Realm/RLMSchema.mm; sourceTree = ""; }; + 3406ACB3F57C7E5649323D6C6820198B /* Trim.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Trim.swift; path = Sources/Private/Model/ShapeItems/Trim.swift; sourceTree = ""; }; + 346EE1162E305D6047DFE00357C5CCB4 /* KeychainSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "KeychainSwift-Info.plist"; sourceTree = ""; }; + 34D34AB320CFDD5F985B19170EB91C0B /* LottieAnimationViewInitializers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationViewInitializers.swift; path = Sources/Public/Animation/LottieAnimationViewInitializers.swift; sourceTree = ""; }; + 34D91BB3FD498C243403C1FDB239100F /* Take.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Take.swift; path = RxSwift/Observables/Take.swift; sourceTree = ""; }; + 3511165BD92F716B65DAE699C189522A /* TailRecursiveSink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TailRecursiveSink.swift; path = RxSwift/Observers/TailRecursiveSink.swift; sourceTree = ""; }; + 355FB49BC5DEB30A46F19AC976EC2725 /* NMapsGeometry-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "NMapsGeometry-xcframeworks.sh"; sourceTree = ""; }; + 35BF15271ACD5B34320E33A1BC87103E /* NSObject+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx.swift"; path = "RxCocoa/Foundation/NSObject+Rx.swift"; sourceTree = ""; }; + 35CCC1434540731CDBAF79935A704E67 /* RemnantDataMigration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RemnantDataMigration.swift; path = Sources/Amplitude/Migration/RemnantDataMigration.swift; sourceTree = ""; }; + 36154A9F2642B9524ED319FA520DAE00 /* DotLottieFileHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieFileHelpers.swift; path = Sources/Public/DotLottie/DotLottieFileHelpers.swift; sourceTree = ""; }; + 371D8986F6E71CAF46430C460BA12D98 /* RLMThreadSafeReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMThreadSafeReference.mm; path = Realm/RLMThreadSafeReference.mm; sourceTree = ""; }; + 37D7F860F78D8FFE12F06BF9A91D46C2 /* ObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableType.swift; path = RxSwift/ObservableType.swift; sourceTree = ""; }; + 38158AFF15430C62EB996D4CE79A6019 /* ReplayRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplayRelay.swift; path = RxRelay/ReplayRelay.swift; sourceTree = ""; }; + 385A3507E7FA129668D715BA74A205CF /* RLMSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSchema.h; path = include/RLMSchema.h; sourceTree = ""; }; + 38725AED42C209B7402B8B302DA0123F /* BaseCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseCompositionLayer.swift; path = Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift; sourceTree = ""; }; + 3873FE8C1BAE8EA9F84CECEC532EEF36 /* RLMFindOneAndModifyOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMFindOneAndModifyOptions.mm; path = Realm/RLMFindOneAndModifyOptions.mm; sourceTree = ""; }; + 38B7EF484DB48E9A06F55064F8E99509 /* RxTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTarget.swift; path = RxCocoa/Common/RxTarget.swift; sourceTree = ""; }; + 38C5C40ECEA41C998C1E99B136B049F2 /* UIBarButtonItem+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIBarButtonItem+Rx.swift"; path = "RxCocoa/iOS/UIBarButtonItem+Rx.swift"; sourceTree = ""; }; + 3912D66FAC951F49A0D745DC90439581 /* EventPipeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventPipeline.swift; path = Sources/Amplitude/Utilities/EventPipeline.swift; sourceTree = ""; }; + 392A37C1D291D2FAA87E2EEF77936E62 /* UnitBezier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnitBezier.swift; path = Sources/Private/Utility/Primitives/UnitBezier.swift; sourceTree = ""; }; + 3940187F64AF260966115C1515FEEAB5 /* AmplitudeSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AmplitudeSwift.modulemap; sourceTree = ""; }; + 39668C8491803F9994072389A75EB3E3 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Sources/Amplitude/Timeline.swift; sourceTree = ""; }; + 3A948869F2FFA6AC988559994969074C /* RLMFindOneAndModifyOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMFindOneAndModifyOptions.h; path = include/RLMFindOneAndModifyOptions.h; sourceTree = ""; }; + 3B7990B7F93AA73E7BAAE42B7E241345 /* LottieColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieColor.swift; path = Sources/Public/Primitives/LottieColor.swift; sourceTree = ""; }; + 3B8C09DFCE62F0A68A5C323A25C77A90 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RealmSwift/Map.swift; sourceTree = ""; }; + 3BB5CEA09C8A2640C959FC109BE98804 /* RLMDictionary.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMDictionary.mm; path = Realm/RLMDictionary.mm; sourceTree = ""; }; + 3C9E0DC21A244F8845AC5596F2BFC818 /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = RxRelay/Utils.swift; sourceTree = ""; }; + 3D4669CEE421F882863A7774DCF406C6 /* Toast-Swift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Toast-Swift.release.xcconfig"; sourceTree = ""; }; + 3D5AEF062DBE7CC143EAE6430DCA1A7D /* lottie-ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.debug.xcconfig"; sourceTree = ""; }; + 3DAF5FF02F05131C60201C1763C7E268 /* RLMLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMLogger.h; path = include/RLMLogger.h; sourceTree = ""; }; + 3E270A06306C720EBE6537BB2662B08A /* SectionedResults.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedResults.swift; path = RealmSwift/SectionedResults.swift; sourceTree = ""; }; + 3E2E0D9F3F5F05F3A04B3D8E76DF42C1 /* Pods-AVIROTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AVIROTests-acknowledgements.markdown"; sourceTree = ""; }; + 3E40862F077B18F4CB8BFC34B36E8168 /* RLMSwiftSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RLMSwiftSupport.m; path = Realm/RLMSwiftSupport.m; sourceTree = ""; }; + 3E4D4A037CD52FB099F211D7880A7FA3 /* Schema.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Schema.swift; path = RealmSwift/Schema.swift; sourceTree = ""; }; + 3E5B39142AE68CF13E0372BAEC39D605 /* RealmSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RealmSwift-dummy.m"; sourceTree = ""; }; + 3EA46B1BF24A1454DDAA8A19C2E58971 /* Binder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Binder.swift; path = RxSwift/Binder.swift; sourceTree = ""; }; + 3EC6261E53EEFCF4B54C6C520B216495 /* AnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/AnimationLayer.swift; sourceTree = ""; }; + 3EC936ECD56A74E4B136C873394817BB /* Transform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Transform.swift; path = Sources/Private/Model/Objects/Transform.swift; sourceTree = ""; }; + 3FCD006987B77D590CA980F9E1CF7021 /* UITextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Rx.swift"; path = "RxCocoa/iOS/UITextView+Rx.swift"; sourceTree = ""; }; + 402009B8D4C46DF4C533BB83C2D1E270 /* GroupOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift; sourceTree = ""; }; + 4028F03A7BA0524ACAC7099F21F9D0F3 /* Projection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Projection.swift; path = RealmSwift/Projection.swift; sourceTree = ""; }; + 405E765CFD7E18D6EEC5BCDA06BEFEDD /* LayerTransformNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerTransformNode.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerTransformNode.swift; sourceTree = ""; }; + 41A90A119AE13B18BD986AF741CB6B85 /* UIRefreshControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRefreshControl+Rx.swift"; path = "RxCocoa/iOS/UIRefreshControl+Rx.swift"; sourceTree = ""; }; + 41B615601B0A4DCE7115D7919A38C7A0 /* Entry+Serialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Entry+Serialization.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Entry+Serialization.swift"; sourceTree = ""; }; + 422FA0BF97FB89EE0765BC0784DEB05F /* UIPickerView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIPickerView+Rx.swift"; path = "RxCocoa/iOS/UIPickerView+Rx.swift"; sourceTree = ""; }; + 42C60A8B4B3569B727A6B77C9F695DFA /* RxSwift-library-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RxSwift-library-prefix.pch"; path = "../RxSwift-library/RxSwift-library-prefix.pch"; sourceTree = ""; }; + 433DDAE6C7338D2B12A98583AAA3737D /* AtomicInt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicInt.swift; path = Platform/AtomicInt.swift; sourceTree = ""; }; + 43554CB77F289DCD321EA65CF223F0E2 /* RxCollectionViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift; sourceTree = ""; }; 437919EE08EC6BFCCBAC3BD346309742 /* RealmSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RealmSwift; path = RealmSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 438306A4F2821D2E85E43B3841080B09 /* DotLottieImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieImageProvider.swift; path = Sources/Private/Model/DotLottie/DotLottieImageProvider.swift; sourceTree = ""; }; - 43E179EE9759F2086189DCD2433D8713 /* RLMCredentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMCredentials.h; path = include/RLMCredentials.h; sourceTree = ""; }; - 443DCDC925739FA4A8ED2A3284A05CCA /* RLMEmailPasswordAuth.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMEmailPasswordAuth.mm; path = Realm/RLMEmailPasswordAuth.mm; sourceTree = ""; }; - 4441CEF6A72C374E53D531C0A2829C9E /* NMapsMap-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "NMapsMap-xcframeworks.sh"; sourceTree = ""; }; - 44AEB5BF5E9C3A65ED861FF8D195CD1D /* NMapsGeometry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NMapsGeometry.debug.xcconfig; sourceTree = ""; }; - 451EA1ACAC6C5BA6578EDD0EE4B69B13 /* RLMUser_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMUser_Private.h; path = include/RLMUser_Private.h; sourceTree = ""; }; - 454B353FB31B270BCE4AC1930C9D6B73 /* RLMUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMUser.h; path = include/RLMUser.h; sourceTree = ""; }; - 465BC0FFEEC1DE7299C4A32DF3934D39 /* MainThreadAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainThreadAnimationLayer.swift; path = Sources/Private/MainThread/LayerContainers/MainThreadAnimationLayer.swift; sourceTree = ""; }; - 471A84AC28A10700E9387A4C9AA9EC08 /* LottieAnimationViewInitializers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationViewInitializers.swift; path = Sources/Public/Animation/LottieAnimationViewInitializers.swift; sourceTree = ""; }; - 4720C7A5F21CA529CFBC0616ED3CF152 /* NMapsMap.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NMapsMap.release.xcconfig; sourceTree = ""; }; - 476BA50B533E5DFAF86BCA6F2FDD540E /* RectangleAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RectangleAnimation.swift; path = Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift; sourceTree = ""; }; - 480D4B7900FABAD0FBBD57547E2B02AD /* AnyEquatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyEquatable.swift; path = Sources/Private/Utility/Helpers/AnyEquatable.swift; sourceTree = ""; }; - 483E1BBDFF9D2BADA7A6FA4C82FE66D5 /* EpoxyModelProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelProperty.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelProperty.swift; sourceTree = ""; }; - 48C7EA9C0F5255EB80526C0C7A8E1381 /* RLMObjectSchema.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObjectSchema.mm; path = Realm/RLMObjectSchema.mm; sourceTree = ""; }; - 48DEBFF7A40F5A7D6D5F0A9DC09BBCFE /* ColorEffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorEffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/ColorEffectValue.swift; sourceTree = ""; }; - 4912035A26B3F2F09F3F0A19B1EBA9B0 /* ContextPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContextPlugin.swift; path = Sources/Amplitude/Plugins/ContextPlugin.swift; sourceTree = ""; }; - 4929767F2BCD68231390FDEEF963CA0D /* CompatibleAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibleAnimationView.swift; path = Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift; sourceTree = ""; }; - 4A30157CCFC9C31BC5CB23741A1823EE /* TextAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextAnimator.swift; path = Sources/Private/Model/Text/TextAnimator.swift; sourceTree = ""; }; - 4A7CEF4490D6403E91330872D30B3852 /* Pods-AVIRO.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AVIRO.debug.xcconfig"; sourceTree = ""; }; - 4A8EC6F8C9A2BD56C19829A0E610C4A0 /* RLMObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObject.mm; path = Realm/RLMObject.mm; sourceTree = ""; }; - 4B18429EFDD37CEEAA5BCCB4E9F22ADD /* BaseEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseEvent.swift; path = Sources/Amplitude/Events/BaseEvent.swift; sourceTree = ""; }; - 4BBABF396A9D165E38D2240FBB0E7781 /* AnimationImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationImageProvider.swift; path = Sources/Public/ImageProvider/AnimationImageProvider.swift; sourceTree = ""; }; - 4C52109CE580E088232E9383A81464F8 /* Asset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Asset.swift; path = Sources/Private/Model/Assets/Asset.swift; sourceTree = ""; }; - 4C6F3C466944FBE6898A6A3E11A14E83 /* RLMSwiftSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RLMSwiftSupport.m; path = Realm/RLMSwiftSupport.m; sourceTree = ""; }; - 4CBB6C339DF908B46529C4FC87258F54 /* GradientFill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFill.swift; path = Sources/Private/Model/ShapeItems/GradientFill.swift; sourceTree = ""; }; - 4D6359DB9B2826A4F81147FA5D705A39 /* Property.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Property.swift; path = RealmSwift/Property.swift; sourceTree = ""; }; - 4D7093C1B358D74989723745D0F1080E /* RLMSyncManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSyncManager.mm; path = Realm/RLMSyncManager.mm; sourceTree = ""; }; - 4E89C352EC689DF0A293A254AB4E68E1 /* Archive+Writing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Writing.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Writing.swift"; sourceTree = ""; }; - 4F52E7A09E7974F04943A912544A2500 /* AssetLibrary.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssetLibrary.swift; path = Sources/Private/Model/Assets/AssetLibrary.swift; sourceTree = ""; }; - 4F9D98AD1F5595A9ED6789F536FE0FC1 /* ShapeItemLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeItemLayer.swift; path = Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift; sourceTree = ""; }; - 4FD73B570B89E5FA8BBC496C084BB20F /* Sync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sync.swift; path = RealmSwift/Sync.swift; sourceTree = ""; }; - 4FE038486534B0A3ADD8997E45DF52FC /* LRUAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LRUAnimationCache.swift; path = Sources/Public/AnimationCache/LRUAnimationCache.swift; sourceTree = ""; }; - 5020B6635D944C62EAAFEA829F36DA79 /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Amplitude/Configuration.swift; sourceTree = ""; }; - 506E8F1E71CCF2EE831C4E9269BE39A1 /* RLMMongoDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMMongoDatabase.h; path = include/RLMMongoDatabase.h; sourceTree = ""; }; - 50E5D515FC98234DDC41C559456D9552 /* RLMSyncSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncSubscription.h; path = include/RLMSyncSubscription.h; sourceTree = ""; }; - 51149948E322682EB2A96FDC07500B1A /* DataExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataExtension.swift; path = Sources/Private/Utility/Extensions/DataExtension.swift; sourceTree = ""; }; + 43A19EB314D4432F58888F8FB4A0B9AA /* Data+CompressionDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+CompressionDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+CompressionDeprecated.swift"; sourceTree = ""; }; + 43CE4DB0703CAB85F31532CC6D79025D /* LottieLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieLogger.swift; path = Sources/Public/Logging/LottieLogger.swift; sourceTree = ""; }; + 441C4F83B048DA79D9C417B458354EBD /* CurrentThreadScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentThreadScheduler.swift; path = RxSwift/Schedulers/CurrentThreadScheduler.swift; sourceTree = ""; }; + 444770367DBE67800F4317A123F566B2 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + 45336C59ECE207854F8641563AF3448E /* Toast-Swift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Toast-Swift.debug.xcconfig"; sourceTree = ""; }; + 45526FFF222A2E5969146ABF5A327F10 /* RoundedCornersNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RoundedCornersNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/RoundedCornersNode.swift; sourceTree = ""; }; + 45955CA019BD6182F0AC9DBF5CC2FB83 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + 45E8ECAD0B725D4A4FCA9EC542EFB365 /* ValueProviderStore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueProviderStore.swift; path = Sources/Private/CoreAnimation/ValueProviderStore.swift; sourceTree = ""; }; + 466DC29DA9D9A69983D4A1A0D77D2EC4 /* Materialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Materialize.swift; path = RxSwift/Observables/Materialize.swift; sourceTree = ""; }; + 46C7643CC668329A9F9ADF24B26F3440 /* SynchronizedUnsubscribeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedUnsubscribeType.swift; path = RxSwift/Concurrency/SynchronizedUnsubscribeType.swift; sourceTree = ""; }; + 484A43A40FBAB3DD9B992F32AC2BA16D /* RLMProperty_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMProperty_Private.h; path = include/RLMProperty_Private.h; sourceTree = ""; }; + 484AC444DD3B9E11C01DAF8BC740D472 /* SharedSequence+Operators+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators+arity.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift"; sourceTree = ""; }; + 487DDF16E6A9A9728F022B8741FC497E /* KeychainSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeychainSwift-dummy.m"; sourceTree = ""; }; + 489E13F9C9A49223BA899CB2185DB0E0 /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = ""; }; + 48C2E661C2432DD0A25D8C2D19A167BA /* RLMEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMEvent.h; path = include/RLMEvent.h; sourceTree = ""; }; + 48EC5F752EC122CD818E259A05364E76 /* KeyframeGroup+exactlyOneKeyframe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KeyframeGroup+exactlyOneKeyframe.swift"; path = "Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift"; sourceTree = ""; }; + 493C7BB76D9EAA0BBD811D16101BB914 /* RxSwift-library-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RxSwift-library-umbrella.h"; path = "../RxSwift-library/RxSwift-library-umbrella.h"; sourceTree = ""; }; + 49861EFA1327020DD328940A463AE027 /* EpoxySwiftUIHostingView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUIHostingView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingView.swift; sourceTree = ""; }; + 49A56DFE3B841B57363C435618F204A2 /* Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Infallible.swift; path = RxSwift/Traits/Infallible/Infallible.swift; sourceTree = ""; }; + 4A40B1DA9AD9057086D84EC2F25AAED2 /* DotLottieUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieUtils.swift; path = Sources/Private/Model/DotLottie/DotLottieUtils.swift; sourceTree = ""; }; + 4A9495286335E0BE912B405DB84C287A /* RLMLogger.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMLogger.mm; path = Realm/RLMLogger.mm; sourceTree = ""; }; + 4ADC75C2563E9628D794ED4C62B26746 /* RealmProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RealmProperty.swift; path = RealmSwift/RealmProperty.swift; sourceTree = ""; }; + 4ADE78DCE41527E36CCE32B7618453CA /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + 4C9CCEE533A70708EB5148DE16AD7DA5 /* RLMCollection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMCollection.h; path = include/RLMCollection.h; sourceTree = ""; }; + 4D06B64E7E7CE6D3CD8214AED9480E73 /* BehaviorRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorRelay.swift; path = RxRelay/BehaviorRelay.swift; sourceTree = ""; }; + 4D1B73AA090CE62DEB33A5541738881B /* TestableObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestableObservable.swift; path = RxTest/TestableObservable.swift; sourceTree = ""; }; + 4D7CDF19E8911E5BF9D6B19BECD0188F /* DecodingStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DecodingStrategy.swift; path = Sources/Public/Configuration/DecodingStrategy.swift; sourceTree = ""; }; + 4D92E9AF6F21EACDC4A2CE4AC8DD1779 /* lottie-ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "lottie-ios-Info.plist"; sourceTree = ""; }; + 4ECDF1C9D72FDBF34EB3E857AFC21C54 /* RLMManagedArray.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMManagedArray.mm; path = Realm/RLMManagedArray.mm; sourceTree = ""; }; + 4EE566FDFA1CD12F7BA6F0C71E109B8F /* RLMObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObject.h; path = include/RLMObject.h; sourceTree = ""; }; + 4F7C58947F0CD5F09656A535D5F16ECF /* RxCocoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoa.h; path = RxCocoa/RxCocoa.h; sourceTree = ""; }; + 50164484152A5192763F53D44393AC00 /* MakeViewProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MakeViewProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/MakeViewProviding.swift; sourceTree = ""; }; + 5020D79CB71B74F91AC162889185B769 /* Entry+ZIP64.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Entry+ZIP64.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Entry+ZIP64.swift"; sourceTree = ""; }; + 502C6DE16C0932CEA4401476581EDCB6 /* RLMSwiftCollectionBase.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSwiftCollectionBase.mm; path = Realm/RLMSwiftCollectionBase.mm; sourceTree = ""; }; + 50D8F08FFA0C96FDF547EA1DF290FE4F /* Pods-AVIRO-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AVIRO-umbrella.h"; sourceTree = ""; }; + 515CE46AA8FD9078FFAF6AF7A199B90C /* IOSLifecycleMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IOSLifecycleMonitor.swift; path = Sources/Amplitude/Plugins/iOS/IOSLifecycleMonitor.swift; sourceTree = ""; }; 51BA97E8B5085EFFB47BC9C0B785CEA7 /* lottie-ios */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "lottie-ios"; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 527308F7416A5DC10FDF920E9C8E6682 /* Data+CompressionDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+CompressionDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+CompressionDeprecated.swift"; sourceTree = ""; }; - 52B640C0DBE81DF1C70F4E7DA6933D4A /* RLMError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMError.h; path = include/RLMError.h; sourceTree = ""; }; - 538373E4A512C555B6D2427BFFCEE4A9 /* DotLottieUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieUtils.swift; path = Sources/Private/Model/DotLottie/DotLottieUtils.swift; sourceTree = ""; }; - 53BFF822F1A4950D31B47AEA37CDD862 /* PersistedProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PersistedProperty.swift; path = RealmSwift/PersistedProperty.swift; sourceTree = ""; }; - 54657275653BA5C6C5ED9112C9CAFBF1 /* DiffableSection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiffableSection.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/DiffableSection.swift; sourceTree = ""; }; - 54E140483DF843DB253894534DBAB6CB /* RealmCollectionImpl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RealmCollectionImpl.swift; path = RealmSwift/Impl/RealmCollectionImpl.swift; sourceTree = ""; }; - 55436145186F09929BAA7390E70AD2CD /* RLMNetworkTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMNetworkTransport.h; path = include/RLMNetworkTransport.h; sourceTree = ""; }; - 555473186EC1E6190616CA464F025375 /* EpoxyModelStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelStorage.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelStorage.swift; sourceTree = ""; }; - 563FAEAEC8E0A5F03D2BF452987615DF /* CombinedShapeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombinedShapeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/CombinedShapeAnimation.swift; sourceTree = ""; }; - 569809F436CDA7A0B8A02B4D7F481B6E /* RLMApp.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMApp.mm; path = Realm/RLMApp.mm; sourceTree = ""; }; - 56C8D581AD0FD2B2A1F908C122895CAE /* RLMNetworkTransport.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMNetworkTransport.mm; path = Realm/RLMNetworkTransport.mm; sourceTree = ""; }; - 5738C6F3770C8651EAA8C137D38D8071 /* lottie-ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-prefix.pch"; sourceTree = ""; }; - 57768DCC3F26A89A7E0C5C4E99EF5268 /* lottie-ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "lottie-ios-Info.plist"; sourceTree = ""; }; - 5797180B8E509FAAD9050753CDCDF17C /* PersistentStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PersistentStorage.swift; path = Sources/Amplitude/Storages/PersistentStorage.swift; sourceTree = ""; }; - 57BDD6FC757718EE27E2BCA7D1F03A69 /* GradientRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientRenderLayer.swift; path = Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift; sourceTree = ""; }; - 57C6CAEBE67053322E54B4449D59DDA2 /* RLMRealm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMRealm.h; path = include/RLMRealm.h; sourceTree = ""; }; - 5821D18880FB3447E85F69FB2F270E8D /* InfiniteOpaqueAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteOpaqueAnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/InfiniteOpaqueAnimationLayer.swift; sourceTree = ""; }; - 586CBBCC3BD5BD2D03B0AFAA51A143D4 /* Realm.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Realm.swift; path = RealmSwift/Realm.swift; sourceTree = ""; }; - 588DB90D386D8374A00D9FE2DAAA62EB /* IdentifyInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IdentifyInterceptor.swift; path = Sources/Amplitude/Utilities/IdentifyInterceptor.swift; sourceTree = ""; }; - 5920B7E0E828FEA36AD51B02F3D79BDB /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = Sources/Private/Model/ShapeItems/Merge.swift; sourceTree = ""; }; - 59388D180F9BF67CD8520B33EFD65F80 /* ShapeContainerLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeContainerLayer.swift; path = Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift; sourceTree = ""; }; - 59AED4516C95B175F961BA866E06B83E /* ClassReference.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassReference.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/ClassReference.swift; sourceTree = ""; }; - 5A0105F14BCE5027503594BE0B9A101C /* RLMFindOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMFindOptions.h; path = include/RLMFindOptions.h; sourceTree = ""; }; - 5AB18E854422E2E075CBE851142C891C /* ShapeRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeRenderLayer.swift; path = Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift; sourceTree = ""; }; - 5AB29DA96ABCB8A75A63976F1B58C255 /* RLMValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMValue.h; path = include/RLMValue.h; sourceTree = ""; }; - 5B62F4AF4BE8D8E741862E4B8D730EAF /* RLMObjectId.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObjectId.mm; path = Realm/RLMObjectId.mm; sourceTree = ""; }; - 5D5804F7360B1AFD2297318E038B57FD /* RLMProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMProperty.h; path = include/RLMProperty.h; sourceTree = ""; }; - 5DF733B063BB9D55E2B1C9248C17C4DE /* SectionedResults.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedResults.swift; path = RealmSwift/SectionedResults.swift; sourceTree = ""; }; - 5E28A0B3F7CF6B141C781F3AD5613EBA /* MaskCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MaskCompositionLayer.swift; path = Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift; sourceTree = ""; }; - 5E43B43C5E2369DEE927A8CC82D632CF /* LottieAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimation.swift; path = Sources/Public/Animation/LottieAnimation.swift; sourceTree = ""; }; - 5E687C7973799573895B8918B9705A44 /* Realm-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Realm-xcframeworks.sh"; sourceTree = ""; }; - 5EA714A92D146F9EEA7896A17F49B8FA /* lottie-ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.debug.xcconfig"; sourceTree = ""; }; - 5F3E3D98492D034F23565CF6FC33D388 /* AmplitudeSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AmplitudeSwift-dummy.m"; sourceTree = ""; }; - 5FC84A277AEF7C4BCAC41F2C62EFCC31 /* LayerStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerStyle.swift; path = Sources/Private/Model/LayerStyles/LayerStyle.swift; sourceTree = ""; }; - 6074539526D31DC7E4E828C87974D23B /* LottieAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationCache.swift; path = Sources/Public/AnimationCache/LottieAnimationCache.swift; sourceTree = ""; }; - 609B2E1C5F12442C2E9A62FE275E14CD /* RLMAccessor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMAccessor.mm; path = Realm/RLMAccessor.mm; sourceTree = ""; }; - 6116EE55B2599D953DBBC582CDE79420 /* FloatValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FloatValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift; sourceTree = ""; }; - 613A99E592EDDA1898A8D7439D8AC619 /* AnimationFontProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationFontProvider.swift; path = Sources/Public/FontProvider/AnimationFontProvider.swift; sourceTree = ""; }; - 61497CDAE7B6DEDB4FBDF9E8EFAFBAC1 /* RLMMigration.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMMigration.mm; path = Realm/RLMMigration.mm; sourceTree = ""; }; - 6176455C6D63603B5DDCE76B88D462F4 /* RLMSwiftValueStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSwiftValueStorage.h; path = include/RLMSwiftValueStorage.h; sourceTree = ""; }; - 61DF2D3A5B3C1213724D1A6CEEFBF020 /* RLMLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMLogger.h; path = include/RLMLogger.h; sourceTree = ""; }; - 61EDB2BAE00548F62CE2B66A2BC04AE7 /* RLMThreadSafeReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMThreadSafeReference.h; path = include/RLMThreadSafeReference.h; sourceTree = ""; }; - 62051FAD237ECCFB4C1A2907AF6FE52D /* RLMEmbeddedObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMEmbeddedObject.mm; path = Realm/RLMEmbeddedObject.mm; sourceTree = ""; }; - 62274ABE2673EABF6CC5EEFE8FFDF50C /* CompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/CompositionLayer.swift; sourceTree = ""; }; - 624D755BA3D6EB58ECDCB27AEBD33783 /* Toast-Swift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Toast-Swift.modulemap"; sourceTree = ""; }; - 625C1F128A0E6DA6501B9E7AFC815992 /* KeyframeGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeGroup.swift; path = Sources/Private/Model/Keyframes/KeyframeGroup.swift; sourceTree = ""; }; - 62A91C796BC9A1E0D6A626593649B4E3 /* Keyframes+combined.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Keyframes+combined.swift"; path = "Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift"; sourceTree = ""; }; - 62B866A675ADC596826EF0E2BB4DBC68 /* Archive+Progress.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Progress.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Progress.swift"; sourceTree = ""; }; - 62D7D377A7772C7567216C0DA8969EAB /* RLMRealmConfiguration.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMRealmConfiguration.mm; path = Realm/RLMRealmConfiguration.mm; sourceTree = ""; }; + 51C8E5EEF0C3C9436BC02A9697FA2282 /* WithLatestFrom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithLatestFrom.swift; path = RxSwift/Observables/WithLatestFrom.swift; sourceTree = ""; }; + 522C0862CE62DD0D18F58DC510619CD4 /* Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Subscription.swift; path = RxTest/Subscription.swift; sourceTree = ""; }; + 5235CD207BFA19BA129620A596A79621 /* BaseAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseAnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift; sourceTree = ""; }; + 528778E00AC8AAF2B4D10A4EBFEC7DBF /* SectionedChangeset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedChangeset.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/SectionedChangeset.swift; sourceTree = ""; }; + 52934539A08CE0606DF8D08A6F67634B /* RealmSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RealmSwift-prefix.pch"; sourceTree = ""; }; + 52B57F7E8D39303188F76DF0623D9EC4 /* UISlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISlider+Rx.swift"; path = "RxCocoa/iOS/UISlider+Rx.swift"; sourceTree = ""; }; + 52F1E6AC2BC0E5E4A2030EABF5BCF9AD /* DropShadowStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowStyle.swift; path = Sources/Private/Model/LayerStyles/DropShadowStyle.swift; sourceTree = ""; }; + 533540299068399C3E9BC3DD57AD95B4 /* UIGestureRecognizer+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIGestureRecognizer+Rx.swift"; path = "RxCocoa/iOS/UIGestureRecognizer+Rx.swift"; sourceTree = ""; }; + 5385965C9F067940099DA09CCE9F3DE3 /* ObjcBridgeable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjcBridgeable.swift; path = RealmSwift/Impl/ObjcBridgeable.swift; sourceTree = ""; }; + 53B3DB3C0CAB53E80767317BB31AEAEB /* AnimatorNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatorNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/AnimatorNode.swift; sourceTree = ""; }; + 53D07AFF10B85B63F7A7DC9F61002DA2 /* RLMObjectSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectSchema.h; path = include/RLMObjectSchema.h; sourceTree = ""; }; + 542D4F6DAA524F814249BE56DB9958E8 /* Enumerated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enumerated.swift; path = RxSwift/Observables/Enumerated.swift; sourceTree = ""; }; + 5481F20B58F92702E54D874B50ECA7D7 /* IndexChangeset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IndexChangeset.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/IndexChangeset.swift; sourceTree = ""; }; + 548BB54B6B8AC573C0F1CD8BECFCBA35 /* FileManager+ZIP.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FileManager+ZIP.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/FileManager+ZIP.swift"; sourceTree = ""; }; + 5511F3E60A4AB8F6178D91202EAD9E2E /* DispatchQueueConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchQueueConfiguration.swift; path = RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift; sourceTree = ""; }; + 5531CB8591160547F34269149F671F8F /* Pods-AVIROTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AVIROTests.modulemap"; sourceTree = ""; }; + 5553783E4639E1FCC2373431A361F824 /* NMapsMap.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NMapsMap.release.xcconfig; sourceTree = ""; }; + 557896491F6529811FA722AF4A37D9D4 /* RLMObjectId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectId.h; path = include/RLMObjectId.h; sourceTree = ""; }; + 5591FAE6B23033D83C73813DFDEBD875 /* RLMFindOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMFindOptions.h; path = include/RLMFindOptions.h; sourceTree = ""; }; + 56279550ECBD4268D544292D82AD7AE4 /* RLMObjectBase.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObjectBase.mm; path = Realm/RLMObjectBase.mm; sourceTree = ""; }; + 56D4C900CAF2C4B91296DD66FC5771E8 /* ReplaySubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaySubject.swift; path = RxSwift/Subjects/ReplaySubject.swift; sourceTree = ""; }; + 57C74CE2BC19C73E021D5A554165A059 /* Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Create.swift; path = RxSwift/Observables/Create.swift; sourceTree = ""; }; + 57DFEE9A04F36ECF43C05016E8CFC076 /* RxRelay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.debug.xcconfig; sourceTree = ""; }; + 5802438CF37AE5873F19B98C16D817E8 /* RxPickerViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift; sourceTree = ""; }; + 58352309D98CED7BD720DDFAAC382FDC /* UIActivityIndicatorView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIActivityIndicatorView+Rx.swift"; path = "RxCocoa/iOS/UIActivityIndicatorView+Rx.swift"; sourceTree = ""; }; + 588F32C07F6A1AA4E4726470FAEC0E94 /* RLMObjectSchema_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectSchema_Private.h; path = include/RLMObjectSchema_Private.h; sourceTree = ""; }; + 591BF33129BD6D14D1C023FB958B4811 /* RealmSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RealmSwift.release.xcconfig; sourceTree = ""; }; + 59422AC4EACCBAC57E3F8C9C6275975C /* RealmSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RealmSwift-umbrella.h"; sourceTree = ""; }; + 59832376EA6C94389397CB9936A9D322 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + 59A2C21ADF6B167139B50CEA91357750 /* RxSwift-framework.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RxSwift-framework.debug.xcconfig"; sourceTree = ""; }; + 59ACD231A627BC30A00D00CF143706E4 /* KeychainSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainSwift-umbrella.h"; sourceTree = ""; }; + 59C345AC9D43ED895D604E99F4D7185A /* RLMUser_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMUser_Private.h; path = include/RLMUser_Private.h; sourceTree = ""; }; + 59EC02FF635518C647F9F6457A193E23 /* LockOwnerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LockOwnerType.swift; path = RxSwift/Concurrency/LockOwnerType.swift; sourceTree = ""; }; + 5ACF47909685F76B57F5768AE82B6D2D /* Vector1DEffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Vector1DEffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/Vector1DEffectValue.swift; sourceTree = ""; }; + 5C1B20618216B31C9FE4F1F095733450 /* Data+Serialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Serialization.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Serialization.swift"; sourceTree = ""; }; + 5CA5BEF3A0C95E43C0DD2D282872D5C6 /* PublishRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishRelay.swift; path = RxRelay/PublishRelay.swift; sourceTree = ""; }; + 5D53F80369C5BA66F1F4C330EC9B7D5C /* Toast-Swift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Toast-Swift-Info.plist"; sourceTree = ""; }; + 5DC159E9ED344CCD9C690E1CB4EC8CC9 /* RxCocoaObjCRuntimeError+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "RxCocoaObjCRuntimeError+Extensions.swift"; path = "RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift"; sourceTree = ""; }; + 5DC2BCF25907169BF5A4EEF6860481C4 /* EventOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventOptions.swift; path = Sources/Amplitude/Events/EventOptions.swift; sourceTree = ""; }; + 5EB8DABA55B1D42457A110A27BA4668D /* LottieAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimation.swift; path = Sources/Public/Animation/LottieAnimation.swift; sourceTree = ""; }; + 5EFBB99E7EC9818EF7A1D513BA386222 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + 5F335876373BF5F36C9356B7860E51AF /* VirtualTimeConverterType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeConverterType.swift; path = RxSwift/Schedulers/VirtualTimeConverterType.swift; sourceTree = ""; }; + 60446A48826CB6592871310646E31F54 /* StartWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StartWith.swift; path = RxSwift/Observables/StartWith.swift; sourceTree = ""; }; + 605284BA9A07713F37ABE3CD02643C2A /* Bag+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bag+Rx.swift"; path = "RxSwift/Extensions/Bag+Rx.swift"; sourceTree = ""; }; + 609D5A3A0BD0C67C146E51BF3CA93EAB /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = RxSwift/Observables/Range.swift; sourceTree = ""; }; + 60B0841F1070189EF98D354B4E40A910 /* Asset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Asset.swift; path = Sources/Private/Model/Assets/Asset.swift; sourceTree = ""; }; + 60E647C4165513364E29C07EA7A6872F /* RLMAccessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMAccessor.h; path = include/RLMAccessor.h; sourceTree = ""; }; + 60FEA4AC2EA1588C3E8AABDEDAE496DF /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = Sources/Private/Model/ShapeItems/Merge.swift; sourceTree = ""; }; + 617DEA92672783051240E1FFE806F044 /* AnonymousObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousObserver.swift; path = RxSwift/Observers/AnonymousObserver.swift; sourceTree = ""; }; + 632967D471BAB6EC4B3E6B6AE2A90596 /* NSError+RLMSync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+RLMSync.h"; path = "include/NSError+RLMSync.h"; sourceTree = ""; }; + 6376127B8BD776307A65452133EF4079 /* RxSwift-library.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "RxSwift-library.release.xcconfig"; path = "../RxSwift-library/RxSwift-library.release.xcconfig"; sourceTree = ""; }; 6380A1AAF342824F8A1765DC31F04E52 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 63C78F8404D6FE70C19FF1939EF8CAC3 /* RLMEvent.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMEvent.mm; path = Realm/RLMEvent.mm; sourceTree = ""; }; - 63D399C9CE2DC691792ECF9A4FC59A15 /* RLMFindOneAndModifyOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMFindOneAndModifyOptions.h; path = include/RLMFindOneAndModifyOptions.h; sourceTree = ""; }; - 63EBA32DB11EF7F034BAF85CAE6122C4 /* RLMLogger_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMLogger_Private.h; path = include/RLMLogger_Private.h; sourceTree = ""; }; - 642042E8E7920FCA1C7D48DA20237611 /* RLMObjectStore.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObjectStore.mm; path = Realm/RLMObjectStore.mm; sourceTree = ""; }; - 642BCEEBC24CEDE1A2A9CA998857D042 /* RLMResults_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMResults_Private.h; path = include/RLMResults_Private.h; sourceTree = ""; }; - 64A3D15DA65211306A33C85657A5C695 /* UrlExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UrlExtension.swift; path = Sources/Amplitude/Utilities/UrlExtension.swift; sourceTree = ""; }; - 6510416D95CE35D1CF66968816548A05 /* Bundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bundle.swift; path = Sources/Private/Model/Extensions/Bundle.swift; sourceTree = ""; }; - 6658549B2116D0E9747F436C56FC1CDC /* Repeater.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeater.swift; path = Sources/Private/Model/ShapeItems/Repeater.swift; sourceTree = ""; }; - 68A1A0D5A3770E7F63EF7E51B69F9AFD /* RealmKeyedCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RealmKeyedCollection.swift; path = RealmSwift/RealmKeyedCollection.swift; sourceTree = ""; }; - 68C50323447603857ADFE3E3B33A26D2 /* LottieAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationLayer.swift; path = Sources/Public/Animation/LottieAnimationLayer.swift; sourceTree = ""; }; - 68F9788ABEDF3EE8324D788A9FFCD93A /* Toast-Swift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Toast-Swift-dummy.m"; sourceTree = ""; }; - 694A0826CE39C4E8042EE53DBFDA4CFB /* RLMAccessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMAccessor.h; path = include/RLMAccessor.h; sourceTree = ""; }; - 6968A26C99C961457E447826C46E3D8F /* CGColor+RGB.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGColor+RGB.swift"; path = "Sources/Private/Utility/Extensions/CGColor+RGB.swift"; sourceTree = ""; }; - 696EE1A544273E991740CB2FA0820EB5 /* Keyframe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keyframe.swift; path = Sources/Public/Keyframes/Keyframe.swift; sourceTree = ""; }; - 6997DB662B9D29F70ED81E000B79367E /* RLMDictionary.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMDictionary.mm; path = Realm/RLMDictionary.mm; sourceTree = ""; }; - 69C691940718E7F64F536E5729556683 /* Shape.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Shape.swift; path = Sources/Private/Model/ShapeItems/Shape.swift; sourceTree = ""; }; - 6A2CEE5949485C5FAE0C0F8ABA81B4BC /* CompatibleAnimationKeypath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibleAnimationKeypath.swift; path = Sources/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift; sourceTree = ""; }; - 6A7A81E3707D6F3EAAB46CDD2AEFDA0A /* AmplitudeSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AmplitudeSwift.modulemap; sourceTree = ""; }; - 6A9319A800B87685589E57A6D6B11E8F /* RLMSet_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSet_Private.h; path = include/RLMSet_Private.h; sourceTree = ""; }; - 6B89E955E9BF8B05EFCEEC1F626182E0 /* ComplexTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ComplexTypes.swift; path = RealmSwift/Impl/ComplexTypes.swift; sourceTree = ""; }; - 6C039FB0790C0521696AECE09A87591B /* RealmSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RealmSwift-prefix.pch"; sourceTree = ""; }; - 6C3AA9F758B0C38E87CECC8783F91B37 /* InterpolatableExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InterpolatableExtensions.swift; path = Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift; sourceTree = ""; }; - 6C6067A5582236B8B77411699779E2A3 /* EpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModeled.swift; sourceTree = ""; }; - 6DAA7669FDAD14ADB6F35212085FA0B6 /* QueueTimer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QueueTimer.swift; path = Sources/Amplitude/Utilities/QueueTimer.swift; sourceTree = ""; }; - 6E3D77B0DC4188788BD4D6DB1C74D87A /* RLMUpdateResult.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUpdateResult.mm; path = Realm/RLMUpdateResult.mm; sourceTree = ""; }; - 6E4211F97D893B0BF1B95850B33C1E90 /* RLMDecimal128.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMDecimal128.mm; path = Realm/RLMDecimal128.mm; sourceTree = ""; }; - 6E45824F06596F9F9686E5817F46D71D /* RLMMongoCollection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMMongoCollection.h; path = include/RLMMongoCollection.h; sourceTree = ""; }; - 6E8553BD96653C39A80C043A56F6D428 /* RLMSwiftCollectionBase.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSwiftCollectionBase.mm; path = Realm/RLMSwiftCollectionBase.mm; sourceTree = ""; }; - 6E8F658AB5126E76DD2ED03889CA80CB /* View+ValueChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "View+ValueChanged.swift"; path = "Sources/Private/Utility/Helpers/View+ValueChanged.swift"; sourceTree = ""; }; - 6EED41F01591762D9E082DD9B03E37D8 /* CompoundBezierPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompoundBezierPath.swift; path = Sources/Private/Utility/Primitives/CompoundBezierPath.swift; sourceTree = ""; }; - 705621F775458F15705136D761DA6603 /* AppUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppUtil.swift; path = Sources/Amplitude/Plugins/Vendors/AppUtil.swift; sourceTree = ""; }; - 706A373605DA6DE514EB4DDF7E346D38 /* AnimatorNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatorNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/AnimatorNode.swift; sourceTree = ""; }; - 7205424248BD4FF2BD02B22973FF7133 /* Data+Compression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Compression.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Compression.swift"; sourceTree = ""; }; - 720CC4DA7103B1758B86E260455C8A8B /* IndexChangeset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IndexChangeset.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/IndexChangeset.swift; sourceTree = ""; }; - 720EE191715F567136A04AB1F45C297C /* LottieButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieButton.swift; path = Sources/Public/Controls/LottieButton.swift; sourceTree = ""; }; - 726B7172C27F38E023D565B92EE60381 /* SectionedChangeset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedChangeset.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/SectionedChangeset.swift; sourceTree = ""; }; - 72997C358FDD664879892D5B0A089E39 /* ConsoleLogger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConsoleLogger.swift; path = Sources/Amplitude/ConsoleLogger.swift; sourceTree = ""; }; - 746852E6901A421E923336147ECFDD22 /* DictionaryInitializable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DictionaryInitializable.swift; path = Sources/Private/Model/DictionaryInitializable.swift; sourceTree = ""; }; - 7522B74D083E25C50A1EE4AD0C6823E5 /* StyleIDProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyleIDProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/StyleIDProviding.swift; sourceTree = ""; }; - 756A2FDE480EB12B7E88E843020E1933 /* ContentConfigurableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContentConfigurableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ContentConfigurableView.swift; sourceTree = ""; }; - 759E249799FCB60AD71A05CE47221735 /* Pods-AVIRO.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AVIRO.release.xcconfig"; sourceTree = ""; }; - 75CA372D3D8B2D199B1E2FB95F550063 /* AnimatedSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedSwitch.swift; path = Sources/Public/Controls/AnimatedSwitch.swift; sourceTree = ""; }; - 764F9E9317D41813F03840290ED7ADCF /* Toast-Swift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Toast-Swift-Info.plist"; sourceTree = ""; }; - 766B97BBD21B8F9636D9EF08ACA2434D /* RLMUpdateResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMUpdateResult.h; path = include/RLMUpdateResult.h; sourceTree = ""; }; - 76760289CE276015628335EE998E177C /* GroupInterpolator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupInterpolator.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift; sourceTree = ""; }; - 76D7DB6BF680CDE11B5F62D63051CB48 /* Fill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Fill.swift; path = Sources/Private/Model/ShapeItems/Fill.swift; sourceTree = ""; }; - 77B5B0EF9598ECCB3901F7128032B4A0 /* StringExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringExtensions.swift; path = Sources/Private/Utility/Extensions/StringExtensions.swift; sourceTree = ""; }; - 789C70D2EC86868D1AECBBCF94043A79 /* RLMAsyncTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMAsyncTask.h; path = include/RLMAsyncTask.h; sourceTree = ""; }; - 79410E0577F006E1BB489A031688BD84 /* VectorsExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VectorsExtensions.swift; path = Sources/Private/Utility/Primitives/VectorsExtensions.swift; sourceTree = ""; }; - 7A08251A571DAA6739976FB5EA966B41 /* ImageLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageLayerModel.swift; path = Sources/Private/Model/Layers/ImageLayerModel.swift; sourceTree = ""; }; - 7A6B24461AEEE028EFBE40BD9A7DE1C8 /* ObjectId.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectId.swift; path = RealmSwift/ObjectId.swift; sourceTree = ""; }; - 7AEACCDFBE16D974FBECC3D8409E2E09 /* CurveVertex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurveVertex.swift; path = Sources/Private/Utility/Primitives/CurveVertex.swift; sourceTree = ""; }; - 7B7E4CF4A046A74618C0FFF8BE50143C /* RLMObject_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObject_Private.h; path = include/RLMObject_Private.h; sourceTree = ""; }; - 7BFB0EC9D5EA409146311005CDDBF3F9 /* Archive+ZIP64.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+ZIP64.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+ZIP64.swift"; sourceTree = ""; }; - 7C115278709DA827A8B29064522A37AB /* ColorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorExtension.swift; path = Sources/Private/Utility/Primitives/ColorExtension.swift; sourceTree = ""; }; - 7C35815C49F31DBE7D3A47A22E4255FD /* KeychainSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeychainSwift-dummy.m"; sourceTree = ""; }; - 7C6792F58D0831D4996C24DA0D8D4868 /* DotLottieCacheProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieCacheProvider.swift; path = Sources/Public/DotLottie/Cache/DotLottieCacheProvider.swift; sourceTree = ""; }; - 7C8226AF0B799590D452B148F40108EF /* RLMSectionedResults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSectionedResults.h; path = include/RLMSectionedResults.h; sourceTree = ""; }; - 7CD3344303C51846CB5D3B5A347E2AC4 /* RLMDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMDictionary.h; path = include/RLMDictionary.h; sourceTree = ""; }; - 7D054DA143745DBA135D0398693CFEEF /* RLMResults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMResults.h; path = include/RLMResults.h; sourceTree = ""; }; - 7D1CED719FAB8BB8AF182430A81A5536 /* DashPattern.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DashPattern.swift; path = Sources/Private/Model/Objects/DashPattern.swift; sourceTree = ""; }; - 7D2A92B88B472CFE91649E197B18A0FB /* StarNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StarNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/StarNode.swift; sourceTree = ""; }; - 7D5D246000AD309756B690D244F6964F /* Vectors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Vectors.swift; path = Sources/Public/Primitives/Vectors.swift; sourceTree = ""; }; - 7F93D92F4837BDC6264A9E61832B517E /* RLMObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObject.h; path = include/RLMObject.h; sourceTree = ""; }; - 805237E7AC265D9A395D62B5BC8FA63F /* GradientStrokeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStrokeRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift; sourceTree = ""; }; - 8066249011DD57CF1AB93F9862FD1926 /* RLMThreadSafeReference.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMThreadSafeReference.mm; path = Realm/RLMThreadSafeReference.mm; sourceTree = ""; }; - 81037120FA84062A4F85FDD304978928 /* RLMBSON.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMBSON.h; path = include/RLMBSON.h; sourceTree = ""; }; - 816235A9392C4AF655D03CEF94B79CEC /* RealmCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RealmCollection.swift; path = RealmSwift/RealmCollection.swift; sourceTree = ""; }; - 8269DA906E07ADE08B35580B4F592F6C /* LayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerModel.swift; path = Sources/Private/Model/Layers/LayerModel.swift; sourceTree = ""; }; - 833154B62985F67515C31B2AA2330AB9 /* RLMAsyncTask_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMAsyncTask_Private.h; path = include/RLMAsyncTask_Private.h; sourceTree = ""; }; - 840146EC32AEFFDD3418042128F63393 /* KeychainSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "KeychainSwift-Info.plist"; sourceTree = ""; }; - 848F505EED1CFC305DBE35BE3D82A327 /* NullCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NullCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/NullCompositionLayer.swift; sourceTree = ""; }; - 84BE1D4F230DED4DD965CC2849D4E32B /* LottieSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieSwitch.swift; path = Sources/Public/Controls/LottieSwitch.swift; sourceTree = ""; }; - 851EBBEA2B593917FE225EEE2AF45B25 /* RealmSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RealmSwift-Info.plist"; sourceTree = ""; }; - 85556BFFE11145E9E85E101B2B676FC5 /* KeyframeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeExtensions.swift; path = Sources/Private/Utility/Interpolatable/KeyframeExtensions.swift; sourceTree = ""; }; - 858865DBB3F03A4A1F7673E7322570EE /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RealmSwift/Optional.swift; sourceTree = ""; }; - 870C6E1D0C92CC05F84F1D5CD95CB27A /* Results.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Results.swift; path = RealmSwift/Results.swift; sourceTree = ""; }; - 874CF215F44323A34846CA3BB9A470DC /* RLMObjectBase.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObjectBase.mm; path = Realm/RLMObjectBase.mm; sourceTree = ""; }; - 877D491714C0976C918EF1138976B2D3 /* Realm.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Realm.release.xcconfig; sourceTree = ""; }; - 87A8BAE94D8110F652FDCBB667DEC960 /* MongoClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MongoClient.swift; path = RealmSwift/MongoClient.swift; sourceTree = ""; }; - 88042D1C2C2095E60B104647AD92863B /* RLMProviderClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMProviderClient.mm; path = Realm/RLMProviderClient.mm; sourceTree = ""; }; - 882A13497CE1E9C9F115E4931C99BC16 /* Entry+Serialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Entry+Serialization.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Entry+Serialization.swift"; sourceTree = ""; }; - 88A0E125A35A660E4D8D52041BC15AD1 /* LottieViewType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieViewType.swift; path = Sources/Public/Controls/LottieViewType.swift; sourceTree = ""; }; - 88EB86CBC697B67142CB037AE2F45B18 /* RLMSwiftValueStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSwiftValueStorage.mm; path = Realm/RLMSwiftValueStorage.mm; sourceTree = ""; }; - 88F83019CAD3AC1A24126FB28227624A /* Glyph.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Glyph.swift; path = Sources/Private/Model/Text/Glyph.swift; sourceTree = ""; }; - 894A77E2508DE9A8C919B370F75AF40E /* AmplitudeSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AmplitudeSwift-prefix.pch"; sourceTree = ""; }; - 8A336D31EF81FED2F159C6D2D14A3036 /* CompatibilityTracker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibilityTracker.swift; path = Sources/Private/CoreAnimation/CompatibilityTracker.swift; sourceTree = ""; }; - 8A63B2BC433DE300A3D656029A75292F /* Query.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Query.swift; path = RealmSwift/Query.swift; sourceTree = ""; }; - 8A6FA385E65199988DD38045CE8A2451 /* AmplitudeSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AmplitudeSwift-umbrella.h"; sourceTree = ""; }; - 8B5EAB9AA44398E55C8FF8479F89679A /* ShapeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift; sourceTree = ""; }; - 8BD0F3B8EA063FB536BBD9E42549235C /* NMapsGeometry.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = NMapsGeometry.xcframework; path = framework/NMapsGeometry.xcframework; sourceTree = ""; }; - 8BED51D5D23F9964558118F9E6D24BB8 /* EventPipeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventPipeline.swift; path = Sources/Amplitude/Utilities/EventPipeline.swift; sourceTree = ""; }; - 8D5082C2C835E8CC24FD81B39A653E77 /* SyncSubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SyncSubscription.swift; path = RealmSwift/SyncSubscription.swift; sourceTree = ""; }; - 8D7399E1BF7C287B095EC1E8B6E35CB9 /* Star.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Star.swift; path = Sources/Private/Model/ShapeItems/Star.swift; sourceTree = ""; }; - 8EED4CEC8AE255627390E14EDE98E742 /* RLMSchema_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSchema_Private.h; path = include/RLMSchema_Private.h; sourceTree = ""; }; - 8F229391BED5F2EC5EC5BA7A7D3D921D /* OutputFileStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OutputFileStream.swift; path = Sources/Amplitude/Utilities/OutputFileStream.swift; sourceTree = ""; }; - 8F5877349B0D6B278CF84BAFEA3F5C58 /* Identify.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Identify.swift; path = Sources/Amplitude/Events/Identify.swift; sourceTree = ""; }; - 8FEDFE08B9841D968C29D13F97778666 /* LegacyGradientFillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LegacyGradientFillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift; sourceTree = ""; }; - 9016D9557092B11EC9342D7CE8D4C01C /* EventBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventBridge.swift; path = Sources/Amplitude/EventBridge.swift; sourceTree = ""; }; - 90B4BBC0D6CB41BF138510B9A01A4D09 /* RLMRealmConfiguration_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMRealmConfiguration_Private.h; path = include/RLMRealmConfiguration_Private.h; sourceTree = ""; }; - 912399F9777F184810D6D93338493CBC /* TraitCollectionProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TraitCollectionProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/TraitCollectionProviding.swift; sourceTree = ""; }; - 9131012EF65A0DEEAE313FC022A770D7 /* KeychainSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = KeychainSwift.modulemap; sourceTree = ""; }; - 913171AF8444D6DF145ED4A480433907 /* ErasedContentProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErasedContentProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ErasedContentProviding.swift; sourceTree = ""; }; - 9158E2D888C99B5045412C1315BF8621 /* DidEndDisplayingProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidEndDisplayingProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidEndDisplayingProviding.swift; sourceTree = ""; }; - 9159839E3183A24A5FD16B6DD443BB30 /* KeychainSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeychainSwift-prefix.pch"; sourceTree = ""; }; - 9186BDB9F012821F631AB275C99BA576 /* BSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BSON.swift; path = RealmSwift/BSON.swift; sourceTree = ""; }; - 91FF4CA967F12F0F9BF00500A2BD96F5 /* TransformAnimations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformAnimations.swift; path = Sources/Private/CoreAnimation/Animations/TransformAnimations.swift; sourceTree = ""; }; - 9209693DEE6A229AF5D78ADE056990AA /* Amplitude.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amplitude.swift; path = Sources/Amplitude/Amplitude.swift; sourceTree = ""; }; + 63F4AC580AAA1CB01A72D26CF50CA2DC /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RxSwift/Observables/Map.swift; sourceTree = ""; }; + 63FDDF5D802A2B6F8B0E8464A89F7727 /* NMapsGeometry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NMapsGeometry.debug.xcconfig; sourceTree = ""; }; + 643E1FDECB100AAA6E8EE39747105E62 /* RxPickerViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift; sourceTree = ""; }; + 64822AE780FD6956D86D6A1DD348815F /* Concat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concat.swift; path = RxSwift/Observables/Concat.swift; sourceTree = ""; }; + 650030FB46C8158AE9D6776E55362552 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + 6558C12582C6008A6A366AB05C1D541A /* RLMRealm_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMRealm_Private.h; path = include/RLMRealm_Private.h; sourceTree = ""; }; + 6562B6625171D02335B52219E9B448ED /* Stroke.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stroke.swift; path = Sources/Private/Model/ShapeItems/Stroke.swift; sourceTree = ""; }; + 65883CBD3C82960B442D363DD2A1BAAF /* RLMUserAPIKey.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUserAPIKey.mm; path = Realm/RLMUserAPIKey.mm; sourceTree = ""; }; + 658847CBA4BD2A4A00A095E26C7AB063 /* Pods-AVIRO-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AVIRO-dummy.m"; sourceTree = ""; }; + 658D33CBEE3802F725B0B71ADA30B5F2 /* Infallible+CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+CombineLatest+Collection.swift"; path = "RxSwift/Traits/Infallible/Infallible+CombineLatest+Collection.swift"; sourceTree = ""; }; + 65B0B44D347A9C40C57F4A8609AD3F1D /* ObservableConvertibleType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift"; sourceTree = ""; }; + 65DFC140F9074BFD31A9F9BA83927693 /* Pods-AVIRO.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AVIRO.debug.xcconfig"; sourceTree = ""; }; + 65EC27BF58C197E12ACB7146CA3E25AA /* VectorsExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VectorsExtensions.swift; path = Sources/Private/Utility/Primitives/VectorsExtensions.swift; sourceTree = ""; }; + 6614E2C4346C0A68F3F62F8C81547F7D /* Reactive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reactive.swift; path = RxSwift/Reactive.swift; sourceTree = ""; }; + 6677385814EBFD162488CF1CDA8F6027 /* RLMRealmConfiguration.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMRealmConfiguration.mm; path = Realm/RLMRealmConfiguration.mm; sourceTree = ""; }; + 6677861AC3C48E73D6620269C0DECC06 /* BlockingObservable+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BlockingObservable+Operators.swift"; path = "RxBlocking/BlockingObservable+Operators.swift"; sourceTree = ""; }; + 6691A97D7DCD31673D9D9E5CDFA8AFE2 /* Infallible+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Driver.swift"; path = "RxCocoa/Traits/Driver/Infallible+Driver.swift"; sourceTree = ""; }; + 66A4D4CE48F5708FD3F46BCFFBDCCF64 /* Using.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Using.swift; path = RxSwift/Observables/Using.swift; sourceTree = ""; }; + 66CC02664AFD4B717578DA92C8D259AF /* AmplitudeSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AmplitudeSwift-dummy.m"; sourceTree = ""; }; + 66CCDA6A7125A9D0D3D2D243B972174A /* PathOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift; sourceTree = ""; }; + 66F3A446DBD8ECE560066DD3C867F6D3 /* ColdObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColdObservable.swift; path = RxTest/ColdObservable.swift; sourceTree = ""; }; + 670B83EC6863FED7C0D719D57AA8AE8B /* RLMError.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMError.mm; path = Realm/RLMError.mm; sourceTree = ""; }; + 67853E99CB67B73ED00B0D0D8FB8358B /* CurveVertex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurveVertex.swift; path = Sources/Private/Utility/Primitives/CurveVertex.swift; sourceTree = ""; }; + 67955A2781FE17A1195CE65CBB3D23D2 /* Toast-Swift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Toast-Swift-umbrella.h"; sourceTree = ""; }; + 67AC59C43B73EA388CAFDEE51F9A86DE /* RLMObservation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObservation.mm; path = Realm/RLMObservation.mm; sourceTree = ""; }; + 682A1828DE2821641CC464271BB2CAD9 /* TrackingOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrackingOptions.swift; path = Sources/Amplitude/TrackingOptions.swift; sourceTree = ""; }; + 684E3D82C7CD617041F8FCFA162CF26C /* AtomicInt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicInt.swift; path = Platform/AtomicInt.swift; sourceTree = ""; }; + 68739916950FC1D5429BE6BD8D7AB6C6 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = RxSwift/SwiftSupport/SwiftSupport.swift; sourceTree = ""; }; + 68BB49DFAEEEBB0F49C61AB7EB81D052 /* DidSelectProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidSelectProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidSelectProviding.swift; sourceTree = ""; }; + 68E915F2943F7E8226C7FFBEDC54D5E7 /* DropShadowEffect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowEffect.swift; path = Sources/Private/Model/LayerEffects/DropShadowEffect.swift; sourceTree = ""; }; + 68FF112D57A44E9831B8BFB0A2818E70 /* ContentConfigurableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContentConfigurableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ContentConfigurableView.swift; sourceTree = ""; }; + 690C3BF8D2E4A505ADA508CCF3B5AC70 /* PolygonNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PolygonNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift; sourceTree = ""; }; + 698BFA42B204199D37CB5E53E909E9A0 /* RLMObjectStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectStore.h; path = include/RLMObjectStore.h; sourceTree = ""; }; + 6994A069C1A574A33EC6DD55D0A4BC70 /* RxSwift-library.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "RxSwift-library.debug.xcconfig"; path = "../RxSwift-library/RxSwift-library.debug.xcconfig"; sourceTree = ""; }; + 6A309F3DB9563378927C7C2DDDE09C00 /* RLMObjectBase_Dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectBase_Dynamic.h; path = include/RLMObjectBase_Dynamic.h; sourceTree = ""; }; + 6A339C91569DC7EE930C0196E7AEAC5B /* RecursiveScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveScheduler.swift; path = RxSwift/Schedulers/RecursiveScheduler.swift; sourceTree = ""; }; + 6A59B196A8F956B5A945C19461A30B06 /* ControlProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlProperty.swift; path = RxCocoa/Traits/ControlProperty.swift; sourceTree = ""; }; + 6A7AE97462D0F7B50D7360C0D9A9FA17 /* OperationQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OperationQueueScheduler.swift; path = RxSwift/Schedulers/OperationQueueScheduler.swift; sourceTree = ""; }; + 6AAA398DAAF9E7859B2987B07495F7C6 /* CompatibleAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibleAnimationView.swift; path = Sources/Public/iOS/Compatibility/CompatibleAnimationView.swift; sourceTree = ""; }; + 6AE7FC255DC9625AAF88290DE0418E8A /* RxBlocking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxBlocking-umbrella.h"; sourceTree = ""; }; + 6B60955EA27FE213C89E46EBE2F1B48E /* ClassReference.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassReference.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/ClassReference.swift; sourceTree = ""; }; + 6B79BD29E9030E0FB3162FB72930CD24 /* Archive+Reading.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Reading.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Reading.swift"; sourceTree = ""; }; + 6BD13147A4561A0256D8EF59BC2B1FBB /* LayerStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerStyle.swift; path = Sources/Private/Model/LayerStyles/LayerStyle.swift; sourceTree = ""; }; + 6BDB6BD7DC15A72425F2D3BAA0B3D001 /* RLMArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMArray.h; path = include/RLMArray.h; sourceTree = ""; }; + 6BF6A9A3156B18B18D3C97D7DE51E4D6 /* Resources.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resources.swift; path = RxBlocking/Resources.swift; sourceTree = ""; }; + 6C3846393F8E723E42C1597F915A52AE /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = RxSwift/Errors.swift; sourceTree = ""; }; + 6CD234CE741775E1E8B7C4A20B289E01 /* RxCocoa.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxCocoa.modulemap; sourceTree = ""; }; + 6D263D21573903B618C8E9CAFD0621AF /* RxRelay-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxRelay-Info.plist"; sourceTree = ""; }; + 6D4A43E1D3EA8B23E30C2BC88C7235BD /* AsymmetricObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsymmetricObject.swift; path = RealmSwift/AsymmetricObject.swift; sourceTree = ""; }; + 6D5F0D7C90A145FC63E62989E7A2AE4C /* RepeaterLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RepeaterLayer.swift; path = Sources/Private/CoreAnimation/Layers/RepeaterLayer.swift; sourceTree = ""; }; + 6DF7C8E8147B964514B7F993F508AB0D /* Realm-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Realm-prefix.pch"; sourceTree = ""; }; + 6E1F3682C9B09184EE5416EB2DF703C9 /* AnimationKeypathExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationKeypathExtension.swift; path = Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift; sourceTree = ""; }; + 6E7861E6E7E3AD9536B15E3763CED578 /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = RealmSwift/Combine.swift; sourceTree = ""; }; + 6F14F0442AA48C96C40E738A4B7D5038 /* Glyph.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Glyph.swift; path = Sources/Private/Model/Text/Glyph.swift; sourceTree = ""; }; + 6F40E631E74920F5AFEA3B82D5163C67 /* RLMObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObject.mm; path = Realm/RLMObject.mm; sourceTree = ""; }; + 6F646CC570EB612EAC356A27C416BF7C /* NSSlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSSlider+Rx.swift"; path = "RxCocoa/macOS/NSSlider+Rx.swift"; sourceTree = ""; }; + 6FE2F455BB0B3BB511814A6969E19707 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + 701A32585B61A5766D5C4525902FFACB /* Data+Compression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Data+Compression.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Data+Compression.swift"; sourceTree = ""; }; + 7031BBA1EE40AE5DE251922D41E89891 /* Timer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timer.swift; path = RxSwift/Observables/Timer.swift; sourceTree = ""; }; + 70633AE6ED6BF0C393657353D12AB6E7 /* Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+arity.swift"; path = "RxSwift/Observables/Zip+arity.swift"; sourceTree = ""; }; + 7088CE337B066330ACAAAA2C75935327 /* PrecompAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrecompAsset.swift; path = Sources/Private/Model/Assets/PrecompAsset.swift; sourceTree = ""; }; + 70A12B1DCEC0485BC21FFD9E8D7A920A /* RealmSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RealmSwift.debug.xcconfig; sourceTree = ""; }; + 70D2E65022B76ACFD0A44CF366600877 /* UITableView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+Rx.swift"; path = "RxCocoa/iOS/UITableView+Rx.swift"; sourceTree = ""; }; + 70E903356FEAF3CE7F96AA1E83054836 /* RxTest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTest.swift; path = RxTest/RxTest.swift; sourceTree = ""; }; + 70F71936E7F17AE44470E0AB831F67E0 /* PreCompLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompLayer.swift; path = Sources/Private/CoreAnimation/Layers/PreCompLayer.swift; sourceTree = ""; }; + 71089096F8C350C9C983A82FCFDE864C /* Zip+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+Collection.swift"; path = "RxSwift/Observables/Zip+Collection.swift"; sourceTree = ""; }; + 71225498F5D2D3B14D1F855AE5E14470 /* Archive+ReadingDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+ReadingDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+ReadingDeprecated.swift"; sourceTree = ""; }; + 713AD94862F38B25DD88B6FEBE5C9BF5 /* RxRelay.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.release.xcconfig; sourceTree = ""; }; + 7147F4509C1329B8BA7FBDAD6E5FC194 /* BasePlugins.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BasePlugins.swift; path = Sources/Amplitude/Plugins/BasePlugins.swift; sourceTree = ""; }; + 7217FA6A0946DD0FF2D1F894B552E719 /* ObjectiveCSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectiveCSupport.swift; path = RealmSwift/ObjectiveCSupport.swift; sourceTree = ""; }; + 724500373D9A5B9F20C77DF0140A7928 /* CombineLatest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombineLatest.swift; path = RxSwift/Observables/CombineLatest.swift; sourceTree = ""; }; + 72A8FF17081019B8D99A324B18F4DF82 /* _RXDelegateProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXDelegateProxy.h; path = RxCocoa/Runtime/include/_RXDelegateProxy.h; sourceTree = ""; }; + 72CE5AD0E0BA54D03804278D0412469D /* StyleIDProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyleIDProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/StyleIDProviding.swift; sourceTree = ""; }; + 737F86D1E6EF92051A6C142E02989157 /* GradientRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientRenderLayer.swift; path = Sources/Private/CoreAnimation/Layers/GradientRenderLayer.swift; sourceTree = ""; }; + 740BE94EC18CA6A5382C86DC1B46FA4E /* HotObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HotObservable.swift; path = RxTest/HotObservable.swift; sourceTree = ""; }; + 7482EAE4BC117EC7CA5C70238CACDE1B /* RxSwift-library-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RxSwift-library-dummy.m"; path = "../RxSwift-library/RxSwift-library-dummy.m"; sourceTree = ""; }; + 74A2B6B4A9863EF6FBF08AB25CA5DA90 /* RxTest.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxTest.modulemap; sourceTree = ""; }; + 74B67F7D91636A2DDB439C486D5E6B19 /* KeychainSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainSwift.release.xcconfig; sourceTree = ""; }; + 74DEE313102957F7397DD61362D546F9 /* RxCollectionViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift; sourceTree = ""; }; + 74FF95C7111EE8CDA3A0F173F6B601CD /* Vectors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Vectors.swift; path = Sources/Public/Primitives/Vectors.swift; sourceTree = ""; }; + 750EFC516ED57CCCC41684B7365EDACA /* lottie-ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "lottie-ios.modulemap"; sourceTree = ""; }; + 75465EBB6C0D11C0CAC1B5E1331AEF00 /* Archive+ZIP64.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+ZIP64.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+ZIP64.swift"; sourceTree = ""; }; + 75CE12C3E385F99080B0426B0AB86BD1 /* PropertyAccessors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertyAccessors.swift; path = RealmSwift/Impl/PropertyAccessors.swift; sourceTree = ""; }; + 75EC9B1622135B6D0F384BE647D09B4B /* CompatibleAnimationKeypath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibleAnimationKeypath.swift; path = Sources/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift; sourceTree = ""; }; + 75F34552B06DFAAE785C3233021FB661 /* Results.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Results.swift; path = RealmSwift/Results.swift; sourceTree = ""; }; + 765F577CFD28C69D33E3A072DD996D79 /* ViewType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewType.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ViewType.swift; sourceTree = ""; }; + 766CA7DDECB0DA0A29110034D044CA15 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + 76826A06FB116FCD4D9991A1F10DE38B /* SerialDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDispatchQueueScheduler.swift; path = RxSwift/Schedulers/SerialDispatchQueueScheduler.swift; sourceTree = ""; }; + 774F21DA8AC1A1A85775095EB84226DF /* LottieAnimationViewBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationViewBase.swift; path = Sources/Public/iOS/LottieAnimationViewBase.swift; sourceTree = ""; }; + 77C3EE03899AD9A3B2823A7992507F63 /* RxTableViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift; sourceTree = ""; }; + 77F2EA54168F7A6AA57065E4D051BAFD /* RLMSet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSet.mm; path = Realm/RLMSet.mm; sourceTree = ""; }; + 7881EA4E72AE99FD100838C658A993F5 /* TextLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextLayer.swift; path = Sources/Private/CoreAnimation/Layers/TextLayer.swift; sourceTree = ""; }; + 78B4E82CF62895788A7B3D5992375750 /* Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delay.swift; path = RxSwift/Observables/Delay.swift; sourceTree = ""; }; + 792F9C290DDAE29DFD49560EDACDF1DC /* DelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxy.swift; path = RxCocoa/Common/DelegateProxy.swift; sourceTree = ""; }; + 79356AC2AE44944FBFE298350F70B580 /* Mediator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mediator.swift; path = Sources/Amplitude/Mediator.swift; sourceTree = ""; }; + 79564758F1811E6E67A015D4C8D83074 /* RetryWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryWhen.swift; path = RxSwift/Observables/RetryWhen.swift; sourceTree = ""; }; + 79C163B97646D6ADFD9595182C426457 /* RLMSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RLMSupport.swift; path = Realm/Swift/RLMSupport.swift; sourceTree = ""; }; + 79D7323A191A7BB4DBD877679DAF9E34 /* ElementAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementAt.swift; path = RxSwift/Observables/ElementAt.swift; sourceTree = ""; }; + 7B557FD9BBE6CB69CBFF39A67240205A /* RLMMongoClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMMongoClient.mm; path = Realm/RLMMongoClient.mm; sourceTree = ""; }; + 7B9A175EFA6655B6B26236CFF7067527 /* RLMDictionary_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMDictionary_Private.h; path = include/RLMDictionary_Private.h; sourceTree = ""; }; + 7BE3F25208E99A10C0F37F0679798973 /* UIButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Rx.swift"; path = "RxCocoa/iOS/UIButton+Rx.swift"; sourceTree = ""; }; + 7C181A786B86040AF164424444B92E04 /* Archive+BackingConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+BackingConfiguration.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+BackingConfiguration.swift"; sourceTree = ""; }; + 7C6DA66845AEE25E3F585B77166AA3D8 /* RxTest.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxTest.debug.xcconfig; sourceTree = ""; }; + 7C9947240567F2CBA0E16E5BFB48C3CA /* SchedulerType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift"; sourceTree = ""; }; + 7CC8F45E2526370D34D8CB0560E1F70F /* ScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItem.swift; path = RxSwift/Schedulers/Internal/ScheduledItem.swift; sourceTree = ""; }; + 7D3B28F645FAB86D2BBADF61D1D6FD74 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + 7D5DF8097AA1B13165298BB6A9A9489E /* RxSearchControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift; sourceTree = ""; }; + 7D73FE08A858EB34A9242BD4768E5864 /* AnimationSubview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationSubview.swift; path = Sources/Public/iOS/AnimationSubview.swift; sourceTree = ""; }; + 7DBB0B75D89351C997DB15F7EDCA3749 /* AnimationFontProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationFontProvider.swift; path = Sources/Public/FontProvider/AnimationFontProvider.swift; sourceTree = ""; }; + 7E09C7E726CEEB5A690031DEBB49EBFF /* Ellipse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Ellipse.swift; path = Sources/Private/Model/ShapeItems/Ellipse.swift; sourceTree = ""; }; + 7E3FE0D532E85D150FE057DCCF553B6D /* ImageLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageLayer.swift; path = Sources/Private/CoreAnimation/Layers/ImageLayer.swift; sourceTree = ""; }; + 7E58FCC68A87E1FF9D17CE6E6A91A6E1 /* NMapsGeometry.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = NMapsGeometry.xcframework; path = framework/NMapsGeometry.xcframework; sourceTree = ""; }; + 7EB6C1E306DDA6BD2C56DC6C2D7B1FAC /* RLMSwiftProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSwiftProperty.h; path = include/RLMSwiftProperty.h; sourceTree = ""; }; + 7EFFC69F9BC5A4764130DA628B2E190A /* ConnectableObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectableObservableType.swift; path = RxSwift/ConnectableObservableType.swift; sourceTree = ""; }; + 7F206A861B70225C71B2FC97D66D6A87 /* RLMProperty.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMProperty.mm; path = Realm/RLMProperty.mm; sourceTree = ""; }; + 7F232C444DA93CE6B55AA821524DAD71 /* RLMSyncSubscription.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSyncSubscription.mm; path = Realm/RLMSyncSubscription.mm; sourceTree = ""; }; + 7F9D4D1472F8B8771747127A4DA448A5 /* GroupBy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupBy.swift; path = RxSwift/Observables/GroupBy.swift; sourceTree = ""; }; + 8027070DF25C8ED54AE15E7E06F68397 /* ShapeLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeLayer.swift; path = Sources/Private/CoreAnimation/Layers/ShapeLayer.swift; sourceTree = ""; }; + 803B9C011E2CFBCFC74B4290139E3E2B /* RxTextStorageDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextStorageDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift; sourceTree = ""; }; + 8067B38C5F0B08F34EB1AFFA11A5C63B /* Skip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Skip.swift; path = RxSwift/Observables/Skip.swift; sourceTree = ""; }; + 8095D139F8AFA9621F73F9604E0C4D0E /* SwiftUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftUI.swift; path = RealmSwift/SwiftUI.swift; sourceTree = ""; }; + 80BA24566DEFE3198BD5211AB9842848 /* ShapeContainerLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeContainerLayer.swift; path = Sources/Private/MainThread/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift; sourceTree = ""; }; + 815DA6A516F57D2BEBC576BAF3ED85DA /* ShapeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift; sourceTree = ""; }; + 82762A94A16EECCCB0BE41A33B378F05 /* LottieAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationLayer.swift; path = Sources/Public/Animation/LottieAnimationLayer.swift; sourceTree = ""; }; + 82DE3091E5BE0D921D4F3EF97C9A65D7 /* Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catch.swift; path = RxSwift/Observables/Catch.swift; sourceTree = ""; }; + 83E8A2D134401852E4A6C869C09FDCAD /* Keyframes+combined.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Keyframes+combined.swift"; path = "Sources/Private/CoreAnimation/Extensions/Keyframes+combined.swift"; sourceTree = ""; }; + 83FA5D47E78BA6815209F77C96DEDA56 /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + 83FB166805E59B887D6FEB1E492F11AC /* RLMResults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMResults.h; path = include/RLMResults.h; sourceTree = ""; }; + 8464668B248FFC557AEB720AF3B03887 /* ObservableConvertibleType+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Signal.swift"; path = "RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift"; sourceTree = ""; }; + 84862197285CF8DA0D9017B238DDA71C /* TextAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextAnimator.swift; path = Sources/Private/Model/Text/TextAnimator.swift; sourceTree = ""; }; + 84EE95E307B608809881C842DFD1F5FA /* ValueContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueContainer.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueContainer.swift; sourceTree = ""; }; + 8558816C571B744717FE046A4A354C8C /* EpoxySwiftUIHostingController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUIHostingController.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingController.swift; sourceTree = ""; }; + 85A3507B1D27127A4BE6D5F9BCF14676 /* RxWKNavigationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxWKNavigationDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift; sourceTree = ""; }; + 861DA6411995BAEA58FE752D9DE0D313 /* NSControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSControl+Rx.swift"; path = "RxCocoa/macOS/NSControl+Rx.swift"; sourceTree = ""; }; + 86A335AC4403CA55CFE4E6E4A2C791E7 /* ControlEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlEvent.swift; path = RxCocoa/Traits/ControlEvent.swift; sourceTree = ""; }; + 8711FFAF3BE62ABD350952C307B32FD9 /* RLMMongoClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMMongoClient.h; path = include/RLMMongoClient.h; sourceTree = ""; }; + 8733D6AB817B510652F108E55E42CF33 /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = RealmSwift/Util.swift; sourceTree = ""; }; + 875ADA8C436E3A76647880FF1D8749CE /* SwitchIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchIfEmpty.swift; path = RxSwift/Observables/SwitchIfEmpty.swift; sourceTree = ""; }; + 8789E4DE7A86BE9DD829E4DBC202758A /* ScheduledDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledDisposable.swift; path = RxSwift/Disposables/ScheduledDisposable.swift; sourceTree = ""; }; + 87B1022825589D834006BEFEB11E8531 /* XCTest+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "XCTest+Rx.swift"; path = "RxTest/XCTest+Rx.swift"; sourceTree = ""; }; + 8822D938FEC4E4C6A3921F1E0F1AAA77 /* ToArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToArray.swift; path = RxSwift/Observables/ToArray.swift; sourceTree = ""; }; + 886B4D73AE46A1BBBE9A4A6534810DE6 /* VirtualTimeScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeScheduler.swift; path = RxSwift/Schedulers/VirtualTimeScheduler.swift; sourceTree = ""; }; + 888BE7E8B3D305A2ED17DD24E4DE746B /* LayerTextProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerTextProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift; sourceTree = ""; }; + 88B8CACC0AE7196A1D83838215CCA1C6 /* NSObject+Rx+RawRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+RawRepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift"; sourceTree = ""; }; + 88E953D5F320AA06E4A055560B8D6323 /* RLMApp.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMApp.mm; path = Realm/RLMApp.mm; sourceTree = ""; }; + 89558EC67BEEB1D8C7046735B6ABB4E7 /* DataIDProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataIDProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DataIDProviding.swift; sourceTree = ""; }; + 89F87B946885B4215A06E1358A42D819 /* Pods-AVIROTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AVIROTests.release.xcconfig"; sourceTree = ""; }; + 8A6BD5DD7881558307B6D2677423235F /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + 8B35284DCDF41CC60756FCC3B0D63EF6 /* PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrimitiveSequence.swift; path = RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift; sourceTree = ""; }; + 8B8CF477355B8AC63404B81103306278 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + 8C1F3EEF57325228E9B5EDEF351D71F0 /* Infallible+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Zip+arity.swift"; path = "RxSwift/Traits/Infallible/Infallible+Zip+arity.swift"; sourceTree = ""; }; + 8C21B4F02575F203F9DBAFA4EAC38EC2 /* ObservableConvertibleType+Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Infallible.swift"; path = "RxSwift/Traits/Infallible/ObservableConvertibleType+Infallible.swift"; sourceTree = ""; }; + 8C2264F01AC688B577A19EB71FFDA42D /* NSTextStorage+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextStorage+Rx.swift"; path = "RxCocoa/iOS/NSTextStorage+Rx.swift"; sourceTree = ""; }; + 8C2C6FAE1869566CC7A39B7A0F3E7A2D /* VendorSystem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VendorSystem.swift; path = Sources/Amplitude/Plugins/Vendors/VendorSystem.swift; sourceTree = ""; }; + 8C8EEA342550F39A48E1EBE4E01F0DEF /* OutputFileStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OutputFileStream.swift; path = Sources/Amplitude/Utilities/OutputFileStream.swift; sourceTree = ""; }; + 8CBAC3AC1A8D892308E4E5E063FAEFAF /* ConcurrentDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentDispatchQueueScheduler.swift; path = RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift; sourceTree = ""; }; + 8CBF84E09C34CC32B2EFB7C3FF51C3B5 /* PointValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PointValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/PointValueProvider.swift; sourceTree = ""; }; + 8D1228B5B1566720D12D44921D520BEF /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + 8D3080B76325FCF138D63CC517D48B6E /* ObjectiveCSupport+Sync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObjectiveCSupport+Sync.swift"; path = "RealmSwift/ObjectiveCSupport+Sync.swift"; sourceTree = ""; }; + 8D345072F5BBCB6B06D5CF38D8A09E1E /* Cancelable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancelable.swift; path = RxSwift/Cancelable.swift; sourceTree = ""; }; + 8DDE0B23CEE99EAD7DCBA6215EF6E0FE /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = RxSwift/Observables/Merge.swift; sourceTree = ""; }; + 8E13C10737BBF5AA3DD7ED4809A4E484 /* Decode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Decode.swift; path = RxSwift/Observables/Decode.swift; sourceTree = ""; }; + 8E371B578A71BE9B1B1189D0FE07DCE4 /* SolidLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidLayerModel.swift; path = Sources/Private/Model/Layers/SolidLayerModel.swift; sourceTree = ""; }; + 8EE90F15DF6820A8877AD5E5E9F3925A /* RLMUser.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUser.mm; path = Realm/RLMUser.mm; sourceTree = ""; }; + 8F1377AE2A018374F7E38102DAB38EC1 /* SingleAssignmentDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAssignmentDisposable.swift; path = RxSwift/Disposables/SingleAssignmentDisposable.swift; sourceTree = ""; }; + 8F25F2957384D6E247B4261ABA2D1331 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + 8F5BC10F3CE8140266D32374A7710B3B /* QueueTimer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QueueTimer.swift; path = Sources/Amplitude/Utilities/QueueTimer.swift; sourceTree = ""; }; + 8F86865B156E6F3D0F5A7F8323A6ED75 /* RLMEmbeddedObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMEmbeddedObject.mm; path = Realm/RLMEmbeddedObject.mm; sourceTree = ""; }; + 905176FECE64A18B0CBFBCD249924E68 /* RefCountDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RefCountDisposable.swift; path = RxSwift/Disposables/RefCountDisposable.swift; sourceTree = ""; }; + 9079429D32DB5A1423EA3EBD14E7D9C4 /* RxSwift-library */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "RxSwift-library"; path = "libRxSwift-library.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 90A0F1F0BD2017F9E91E63366C603905 /* VisibilityAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VisibilityAnimation.swift; path = Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift; sourceTree = ""; }; + 90A853C515B74BCA67FB2403E017F713 /* Infallible+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Bind.swift"; path = "RxCocoa/Common/Infallible+Bind.swift"; sourceTree = ""; }; + 90E003B8130B772344CEB822FCFF122B /* RxBlocking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxBlocking.modulemap; sourceTree = ""; }; + 90F9DF80FCE7DB32A74091D6F9121186 /* RLMClassInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMClassInfo.mm; path = Realm/RLMClassInfo.mm; sourceTree = ""; }; + 9105F35CB71741D830F74527B6521528 /* DashPattern.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DashPattern.swift; path = Sources/Private/Model/Objects/DashPattern.swift; sourceTree = ""; }; + 916C9E4C2AC4E15026EAF4E7D44E600F /* ObserverBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverBase.swift; path = RxSwift/Observers/ObserverBase.swift; sourceTree = ""; }; + 919234D1DFD1157CADC0FE5CD11067A1 /* RLMSyncSubscription_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncSubscription_Private.h; path = include/RLMSyncSubscription_Private.h; sourceTree = ""; }; + 91DD90BA645F6C04BE83EE943B29883B /* BinaryDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BinaryDisposable.swift; path = RxSwift/Disposables/BinaryDisposable.swift; sourceTree = ""; }; + 91F50E9DB4F119C11C2A8B28D86CB8A6 /* ObjectiveCSupport+BSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObjectiveCSupport+BSON.swift"; path = "RealmSwift/ObjectiveCSupport+BSON.swift"; sourceTree = ""; }; 921BE4A82C4A7A5C72A0C6F8B8FEF200 /* Realm */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Realm; path = Realm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 924836D47B15E6303A7A2EAD04E55592 /* Stroke.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stroke.swift; path = Sources/Private/Model/ShapeItems/Stroke.swift; sourceTree = ""; }; - 929F6451FC43125A4FA045A6B2B7262E /* RLMSyncUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSyncUtil.mm; path = Realm/RLMSyncUtil.mm; sourceTree = ""; }; - 92C459189B52647D938D1B09D25B6A6B /* AnimationKeypath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationKeypath.swift; path = Sources/Public/DynamicProperties/AnimationKeypath.swift; sourceTree = ""; }; - 92FD3E0F2EE69809E3B0C0B856061904 /* DotLottieFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieFile.swift; path = Sources/Public/DotLottie/DotLottieFile.swift; sourceTree = ""; }; - 9368ADABE8B43E7297FCFA01BE7CC28B /* Decimal128.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Decimal128.swift; path = RealmSwift/Decimal128.swift; sourceTree = ""; }; - 938FC1BD2495AB94035AE46CDA14171F /* App.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = App.swift; path = RealmSwift/App.swift; sourceTree = ""; }; - 95121F1A519266FC9DE2328ED668863E /* RLMArray.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMArray.mm; path = Realm/RLMArray.mm; sourceTree = ""; }; - 95A5C354AF98AE1FF16AE854820DD928 /* EpoxySwiftUIHostingController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUIHostingController.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIHostingController.swift; sourceTree = ""; }; - 961C4701D744B9A66D7CA570CA4160EE /* AmplitudeSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AmplitudeSwift-Info.plist"; sourceTree = ""; }; - 968FA21951F3330BDA191766485673D4 /* Toast-Swift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Toast-Swift.release.xcconfig"; sourceTree = ""; }; - 974A6CD926D99083E9EFF66C0DD242AE /* RLMSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSchema.h; path = include/RLMSchema.h; sourceTree = ""; }; - 9768A22FD3C8757341AC9BD834D71AFE /* WillDisplayProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WillDisplayProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/WillDisplayProviding.swift; sourceTree = ""; }; + 923426BB675BAF0C894C421323EAC11E /* IdentifyEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IdentifyEvent.swift; path = Sources/Amplitude/Events/IdentifyEvent.swift; sourceTree = ""; }; + 92531B1E99B6D11E11F5F8D1386F1D66 /* RxRelay-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-prefix.pch"; sourceTree = ""; }; + 927F2ED0D8C691378E9D7EF3CB5C739D /* KVORepresentable+CoreGraphics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+CoreGraphics.swift"; path = "RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift"; sourceTree = ""; }; + 92CB2D56C6BA535714F9D897545B13FC /* NSTextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextField+Rx.swift"; path = "RxCocoa/macOS/NSTextField+Rx.swift"; sourceTree = ""; }; + 92EE6742B29AE7E07816BDC2518B53CD /* RxRelay.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxRelay.modulemap; sourceTree = ""; }; + 9322B6B94A528E6F0A23C16D946153B8 /* PathNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/PathNode.swift; sourceTree = ""; }; + 9326B8E9A62BDAAB3D2CADB522F34A2A /* Sink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sink.swift; path = RxSwift/Observables/Sink.swift; sourceTree = ""; }; + 932BD8F9B3FA154815FA11FA5F5FB230 /* AnimationImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationImageProvider.swift; path = Sources/Public/ImageProvider/AnimationImageProvider.swift; sourceTree = ""; }; + 941C08827A4EF199BD939D98DDAF9D1A /* DotLottieCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieCache.swift; path = Sources/Public/DotLottie/Cache/DotLottieCache.swift; sourceTree = ""; }; + 94CA12994CD96AEC4DA15C0301640F9E /* Archive+Helpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Helpers.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Helpers.swift"; sourceTree = ""; }; + 94FEFEC4411FE2958F5F97BCEA384EF5 /* ObjectSchema.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectSchema.swift; path = RealmSwift/ObjectSchema.swift; sourceTree = ""; }; + 954464FBB1089BD83C2BA29BAFB74798 /* Realm.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Realm.debug.xcconfig; sourceTree = ""; }; + 955BCBB1495E5D0C1A66959FB9176C80 /* Diffable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Diffable.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Diffable.swift; sourceTree = ""; }; + 955EED4F1C437C25AAB5E0BE222A543A /* UIView+SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+SwiftUIView.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIView+SwiftUIView.swift"; sourceTree = ""; }; + 956DF3F3F157F21868C4E003021802DB /* Pods-AVIRO.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AVIRO.release.xcconfig"; sourceTree = ""; }; + 959AB0233C8A9F1E98F205B8CB27A7B5 /* MeasuringViewRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MeasuringViewRepresentable.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/MeasuringViewRepresentable.swift; sourceTree = ""; }; + 95D033F6AAE6E51AEDC31DDD80BA2E4A /* EventBridge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventBridge.swift; path = Sources/Amplitude/EventBridge.swift; sourceTree = ""; }; + 9615FC6B90324F508CAE7ADF1E4367EB /* RLMCredentials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMCredentials.h; path = include/RLMCredentials.h; sourceTree = ""; }; + 9685C119CF0A3A66F30614AEDA513A2C /* NopDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NopDisposable.swift; path = RxSwift/Disposables/NopDisposable.swift; sourceTree = ""; }; + 976AD7DA50FAEB394DC3F9AD5AEC70EF /* Entry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Entry.swift; path = Sources/Private/EmbeddedLibraries/ZipFoundation/Entry.swift; sourceTree = ""; }; + 978E1DF510A74CBC691BBF6747026B95 /* RLMRealm_Dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMRealm_Dynamic.h; path = include/RLMRealm_Dynamic.h; sourceTree = ""; }; + 97BFD798A8EF7502104578399758D099 /* NMapsMap-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "NMapsMap-xcframeworks.sh"; sourceTree = ""; }; + 98455DA568314130C33A99119A9337E6 /* Persistable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Persistable.swift; path = RealmSwift/Impl/Persistable.swift; sourceTree = ""; }; + 98467D6D0ECFEE9CCA71250DA2D4B6DD /* RLMAsyncTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMAsyncTask.mm; path = Realm/RLMAsyncTask.mm; sourceTree = ""; }; 988EA11A5ADBC68DD7711FE8238A781A /* AmplitudeSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AmplitudeSwift; path = AmplitudeSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 98BBDB661B80D66EDE4E693BB8928C50 /* UIView+SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+SwiftUIView.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIView+SwiftUIView.swift"; sourceTree = ""; }; - 9910EFAF94F42AF20C949A69509B8DDC /* Toast-Swift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Toast-Swift-prefix.pch"; sourceTree = ""; }; - 99B987C5520C9C4268CE5D4D93BA2940 /* AnimatedControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedControl.swift; path = Sources/Public/Controls/AnimatedControl.swift; sourceTree = ""; }; - 9A24F937AE57FCA84BFC18AEF54AC8AE /* realm-monorepo.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = "realm-monorepo.xcframework"; path = "core/realm-monorepo.xcframework"; sourceTree = ""; }; - 9A321CB5D3E0DE838C9DA04B993A8757 /* AnyValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyValueProvider.swift; path = Sources/Public/DynamicProperties/AnyValueProvider.swift; sourceTree = ""; }; - 9A78D4DD411D95BBCD453AE8D1C3AFF9 /* RLMUpdateChecker.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUpdateChecker.mm; path = Realm/RLMUpdateChecker.mm; sourceTree = ""; }; - 9ACFE69119899B7D3459E843FDAE6895 /* RootAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RootAnimationLayer.swift; path = Sources/Private/RootAnimationLayer.swift; sourceTree = ""; }; - 9B68B58BA0ED37137D546F521F78795C /* TextLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextLayerModel.swift; path = Sources/Private/Model/Layers/TextLayerModel.swift; sourceTree = ""; }; - 9B7E59F21AC5E73CF480980022BF1B01 /* Vector1DEffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Vector1DEffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/Vector1DEffectValue.swift; sourceTree = ""; }; - 9C4352D40FA10E001A7118FE41F226C7 /* RLMProperty.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMProperty.mm; path = Realm/RLMProperty.mm; sourceTree = ""; }; - 9C4C84C0A05071A9B44745CD753281C3 /* BaseCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseCompositionLayer.swift; path = Sources/Private/CoreAnimation/Layers/BaseCompositionLayer.swift; sourceTree = ""; }; - 9D2BDEE55EDF9AC97B851B210A6878CF /* WatchOSLifecycleMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WatchOSLifecycleMonitor.swift; path = Sources/Amplitude/Plugins/watchOS/WatchOSLifecycleMonitor.swift; sourceTree = ""; }; - 9D2DC25EE3FE9F24ABFBA0B17D37180B /* RLMObjectStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectStore.h; path = include/RLMObjectStore.h; sourceTree = ""; }; - 9D8FE0EF22E6701FAA918A9947AC7EC4 /* Migration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migration.swift; path = RealmSwift/Migration.swift; sourceTree = ""; }; + 98E9E623CD959BE173AD84B684638857 /* RLMSwiftValueStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSwiftValueStorage.h; path = include/RLMSwiftValueStorage.h; sourceTree = ""; }; + 99241E73967093ADAA624636DEA8A03F /* GradientAnimations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientAnimations.swift; path = Sources/Private/CoreAnimation/Animations/GradientAnimations.swift; sourceTree = ""; }; + 993D18DBE661C6C05EB3E998C473C1C1 /* RxTextViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift; sourceTree = ""; }; + 997D2F04ADAADEFE4C690333E29FADB1 /* DotLottieConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieConfiguration.swift; path = Sources/Public/DotLottie/DotLottieConfiguration.swift; sourceTree = ""; }; + 998A5E8D056AA39966D6804D9162AABF /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + 99AC1F472B3AC4DCB7E4B9FE6B803854 /* Pods-AVIROTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AVIROTests-acknowledgements.plist"; sourceTree = ""; }; + 99BCDA54649359F69C8628B2DA7C3028 /* RLMProviderClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMProviderClient.mm; path = Realm/RLMProviderClient.mm; sourceTree = ""; }; + 9A2FB707E8364F846466B5ED973980B4 /* Decimal128.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Decimal128.swift; path = RealmSwift/Decimal128.swift; sourceTree = ""; }; + 9A3FE610C78F7724BDFCD7948A357C1E /* Infallible+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Create.swift"; path = "RxSwift/Traits/Infallible/Infallible+Create.swift"; sourceTree = ""; }; + 9A7B33A398BF141FBAD3310E1FE7940B /* UIControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIControl+Rx.swift"; path = "RxCocoa/iOS/UIControl+Rx.swift"; sourceTree = ""; }; + 9AA0919B195E457DC4090EC47A3D8985 /* Disposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposable.swift; path = RxSwift/Disposable.swift; sourceTree = ""; }; + 9B14939B23A6E2AC30DAC583A0FA22E1 /* StoragePrefixMigration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StoragePrefixMigration.swift; path = Sources/Amplitude/Migration/StoragePrefixMigration.swift; sourceTree = ""; }; + 9B39E3456E1D6F5DDFBBC5285B092BDF /* KeychainSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainSwift.swift; path = Sources/KeychainSwift.swift; sourceTree = ""; }; + 9BE4962026DEFB8F3FA5EFE53F4B57F8 /* ShapeItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeItem.swift; path = Sources/Private/Model/ShapeItems/ShapeItem.swift; sourceTree = ""; }; + 9BE8882CB649842E7CD6C0FC821D8229 /* BezierPathRoundExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BezierPathRoundExtension.swift; path = Sources/Private/Utility/Primitives/BezierPathRoundExtension.swift; sourceTree = ""; }; + 9CE1DF85E20C2660FF42D5487734D93B /* ObjectiveCSupport+AnyRealmValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObjectiveCSupport+AnyRealmValue.swift"; path = "RealmSwift/ObjectiveCSupport+AnyRealmValue.swift"; sourceTree = ""; }; + 9D4A00CD5102F35E8E47A58F1FE16D7A /* RLMSet_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSet_Private.h; path = include/RLMSet_Private.h; sourceTree = ""; }; + 9D54ECF1779A15F4508AC0BF2A4EFD4A /* AsyncSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSubject.swift; path = RxSwift/Subjects/AsyncSubject.swift; sourceTree = ""; }; + 9D575611734C069989AAA5B1D17291C8 /* RxCocoa.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.debug.xcconfig; sourceTree = ""; }; + 9D5B9E5A5B47086C7938DFBD1709BE24 /* Pods-AVIRO-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AVIRO-frameworks.sh"; sourceTree = ""; }; + 9D92337490A4759085C8C939DF06CAA8 /* RxPickerViewAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewAdapter.swift; path = RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9DB0096BAAA1D77112C8FCFD87F1D313 /* KeychainSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainSwift.release.xcconfig; sourceTree = ""; }; 9E0FD012ADC3C7179C684035672383E5 /* KeychainSwift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = KeychainSwift; path = KeychainSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 9EA4752B73E63203CB356EBDD437099C /* SizeValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift; sourceTree = ""; }; - 9F628152A7FB37640E0C30BEA6AEAF48 /* HttpClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HttpClient.swift; path = Sources/Amplitude/Utilities/HttpClient.swift; sourceTree = ""; }; - 9F6E3793D92144D4B1F4BA1A7BA67116 /* RLMMongoClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMMongoClient.mm; path = Realm/RLMMongoClient.mm; sourceTree = ""; }; - 9F6E806F55D4C45538F526EBE5400F6C /* VisibilityAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VisibilityAnimation.swift; path = Sources/Private/CoreAnimation/Animations/VisibilityAnimation.swift; sourceTree = ""; }; - 9FEF35BBB113AEFCC273B2A94003B1D9 /* KeychainSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeychainSwift.debug.xcconfig; sourceTree = ""; }; - A00353F8525EA3B62442B223AADD72B7 /* RLMObjectSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectSchema.h; path = include/RLMObjectSchema.h; sourceTree = ""; }; - A0605737166C5354E972F2A6608202B3 /* ViewEpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewEpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/ViewEpoxyModeled.swift; sourceTree = ""; }; - A0AFC5C0CDD6172838A697D8BF2D2127 /* ImageAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageAsset.swift; path = Sources/Private/Model/Assets/ImageAsset.swift; sourceTree = ""; }; - A0BA3041CF29FCD67DE6D4D74C6C63FD /* GroupNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift; sourceTree = ""; }; - A1038534C00CEDF862C8EF417F1B8907 /* ShapeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift; sourceTree = ""; }; - A20FDDF81A6BCAC95D2832A932698D5C /* ShapeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeTransform.swift; path = Sources/Private/Model/ShapeItems/ShapeTransform.swift; sourceTree = ""; }; - A280CA75865CFFBBF8E0D13D75004035 /* SingleValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleValueProvider.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift; sourceTree = ""; }; - A3476C0A1F926CCE2B98EF022022E81D /* TextLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextLayer.swift; path = Sources/Private/CoreAnimation/Layers/TextLayer.swift; sourceTree = ""; }; - A48287ED8D9BE2766B6B2E9854F74AE0 /* UnitBezier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnitBezier.swift; path = Sources/Private/Utility/Primitives/UnitBezier.swift; sourceTree = ""; }; - A62BA6BA0B225FFBB4D55598BA000365 /* BezierPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BezierPath.swift; path = Sources/Private/Utility/Primitives/BezierPath.swift; sourceTree = ""; }; - A6AC66256EC7E6F0C0557B2A91F069F6 /* RLMEmbeddedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMEmbeddedObject.h; path = include/RLMEmbeddedObject.h; sourceTree = ""; }; - A72A73ADB60C2075A36EF84CBE1D2968 /* TestHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestHelpers.swift; path = Sources/Private/Utility/Debugging/TestHelpers.swift; sourceTree = ""; }; - A7EDF137A3B4E062DFB039FF3705C0C8 /* SolidLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidLayerModel.swift; path = Sources/Private/Model/Layers/SolidLayerModel.swift; sourceTree = ""; }; - A86D8EBE976B3BEA2EA51DE29AD13000 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RealmSwift/Map.swift; sourceTree = ""; }; - A9AD6FF187C186C57AAB2DDFCADD98EB /* KeyframeData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeData.swift; path = Sources/Private/Model/Keyframes/KeyframeData.swift; sourceTree = ""; }; - AA9B79AE324CFFE8605F0097EC5CE597 /* NMapsGeometry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NMapsGeometry.release.xcconfig; sourceTree = ""; }; - AB7189C4155E7E5DC03B848FC51A3280 /* AmplitudeSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AmplitudeSwift.debug.xcconfig; sourceTree = ""; }; - AB7C77B515A4E808E050D10702040954 /* Persistable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Persistable.swift; path = RealmSwift/Impl/Persistable.swift; sourceTree = ""; }; - ACFCB6E4B51ED20DBA2FB05728EBBAAA /* ObjectiveCSupport+AnyRealmValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObjectiveCSupport+AnyRealmValue.swift"; path = "RealmSwift/ObjectiveCSupport+AnyRealmValue.swift"; sourceTree = ""; }; - ADEB9DB1CF9CCD00F8E3651CF8CD604E /* RLMSectionedResults.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSectionedResults.mm; path = Realm/RLMSectionedResults.mm; sourceTree = ""; }; - AE099A2B9C406127D5246FFAF359376C /* RealmConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RealmConfiguration.swift; path = RealmSwift/RealmConfiguration.swift; sourceTree = ""; }; - AE608F7BD3F4149C14478C007723CFA6 /* RLMUUID.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUUID.mm; path = Realm/RLMUUID.mm; sourceTree = ""; }; - AEBB74F68756AD34AC2A250E4E1C1B92 /* KeypathSearchable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeypathSearchable.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift; sourceTree = ""; }; - AED604359ACAFD7A0E5DC640273219CD /* Diffable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Diffable.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Diffing/Diffable.swift; sourceTree = ""; }; - AFAEE40FDF2777614CF6A400F08FB774 /* MeasuringViewRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MeasuringViewRepresentable.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/MeasuringViewRepresentable.swift; sourceTree = ""; }; - B0D1B40C4EF2E478BA1CC798CC816769 /* GroupOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift; sourceTree = ""; }; - B130981C1333EAD8EB807AD8C0E6363D /* RLMFindOneAndModifyOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMFindOneAndModifyOptions.mm; path = Realm/RLMFindOneAndModifyOptions.mm; sourceTree = ""; }; - B1B5F4282E471ECDF371D05BCABBC968 /* EllipseNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EllipseNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift; sourceTree = ""; }; - B1FA2E92E78BA64A7D8D1BBD283797C6 /* LayerEffect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerEffect.swift; path = Sources/Private/Model/LayerEffects/LayerEffect.swift; sourceTree = ""; }; - B24C80FE57C70B4FB2208269EB5FF682 /* CGFloatExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CGFloatExtensions.swift; path = Sources/Private/Utility/Extensions/CGFloatExtensions.swift; sourceTree = ""; }; - B2BB9B51803CCBE4888FF21C55A56D50 /* GradientValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift; sourceTree = ""; }; - B2E4097D6B3F296ABA449836684B7FDB /* Entry+ZIP64.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Entry+ZIP64.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Entry+ZIP64.swift"; sourceTree = ""; }; - B3E2ABC8366E63A838F37E767067F0D3 /* BundleImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BundleImageProvider.swift; path = Sources/Public/iOS/BundleImageProvider.swift; sourceTree = ""; }; - B4C1295FCFBE7DF40A7A625F75B876FE /* Ellipse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Ellipse.swift; path = Sources/Private/Model/ShapeItems/Ellipse.swift; sourceTree = ""; }; - B501CE6BCA6B0524C8FEF6B6385B9595 /* Mask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mask.swift; path = Sources/Private/Model/Objects/Mask.swift; sourceTree = ""; }; - B503E304F4475CE4D0C2E37FACE1DF3F /* DropShadowEffect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowEffect.swift; path = Sources/Private/Model/LayerEffects/DropShadowEffect.swift; sourceTree = ""; }; - B56B086CF8E7AED19CF31B55325C7292 /* RLMDictionary_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMDictionary_Private.h; path = include/RLMDictionary_Private.h; sourceTree = ""; }; - B7E6C9C783750BCEFC26A7500938B1AB /* Realm-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Realm-prefix.pch"; sourceTree = ""; }; - B8697693CFECA89158EA240E2B0519DF /* ViewType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewType.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/ViewType.swift; sourceTree = ""; }; - B871C9F09F74396AA67FB14A90BF44AF /* RLMManagedSet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMManagedSet.mm; path = Realm/RLMManagedSet.mm; sourceTree = ""; }; - B89D28320E2954638D28597AECCFA1E7 /* LayerProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerProperty.swift; path = Sources/Private/CoreAnimation/Animations/LayerProperty.swift; sourceTree = ""; }; - B963E928E25D4C72D97389CF1E885824 /* PathNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/PathNode.swift; sourceTree = ""; }; - BA25DE0E2643B1EC0E980EB93C57D3DA /* RLMAsymmetricObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMAsymmetricObject.mm; path = Realm/RLMAsymmetricObject.mm; sourceTree = ""; }; - BAC043563295EAE19EEAB5AB5B9390BB /* AnyNodeProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyNodeProperty.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift; sourceTree = ""; }; - BBAF6B7D410DC5844C3A19B0FC0C7466 /* RLMSwiftObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSwiftObject.h; path = include/RLMSwiftObject.h; sourceTree = ""; }; - BC0532B226588F43CB3BC4399E364E75 /* InMemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InMemoryStorage.swift; path = Sources/Amplitude/Storages/InMemoryStorage.swift; sourceTree = ""; }; - BC0D0F573510ABE90AF72ED1660F7849 /* PersistentStorageResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PersistentStorageResponseHandler.swift; path = Sources/Amplitude/Utilities/PersistentStorageResponseHandler.swift; sourceTree = ""; }; - BCE9D5401D6AAC4ED13934A85B32875E /* Rectangle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rectangle.swift; path = Sources/Private/Model/ShapeItems/Rectangle.swift; sourceTree = ""; }; - BD30311DB665E8AB415DC4AE4C6EB95F /* RealmSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RealmSwift-dummy.m"; sourceTree = ""; }; - BDC52D95A44EEA06BFFC6AAD76558623 /* RLMRealm_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMRealm_Private.h; path = include/RLMRealm_Private.h; sourceTree = ""; }; - BDCDD7EA8E95A46845B25ED4E573BE29 /* DidSelectProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidSelectProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidSelectProviding.swift; sourceTree = ""; }; - BEF3A41916953240EA7FDA40F9D80E04 /* GradientStroke.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStroke.swift; path = Sources/Private/Model/ShapeItems/GradientStroke.swift; sourceTree = ""; }; - BF14EEE6E52252AC0AEB54C461201B98 /* RevenueEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RevenueEvent.swift; path = Sources/Amplitude/Events/RevenueEvent.swift; sourceTree = ""; }; - BFAAC639751A73F3DE727FE6E3818828 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Sources/Amplitude/Timeline.swift; sourceTree = ""; }; - BFBE09A5275D677D3FCFB5EE0BF27291 /* CustomPersistable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomPersistable.swift; path = RealmSwift/CustomPersistable.swift; sourceTree = ""; }; - C0FED741228AC6F1082122545FE41E8B /* RLMAsymmetricObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMAsymmetricObject.h; path = include/RLMAsymmetricObject.h; sourceTree = ""; }; - C157B395E0985161CFE1DD61FF9EB2E5 /* CALayer+setupLayerHierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+setupLayerHierarchy.swift"; path = "Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift"; sourceTree = ""; }; - C187FD27B373CF6DF98FE027B4ADEF85 /* Atomic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Atomic.swift; path = Sources/Amplitude/Utilities/Atomic.swift; sourceTree = ""; }; - C22A2E2350913BC70DCA91FC461BC8F3 /* ImageCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift; sourceTree = ""; }; - C26ABF8BF80EBDB10379FAA77F1A0B8A /* OpacityAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OpacityAnimation.swift; path = Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift; sourceTree = ""; }; - C27A0F8199AA68CC4F45DFFE5F419B67 /* DotLottieFileHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieFileHelpers.swift; path = Sources/Public/DotLottie/DotLottieFileHelpers.swift; sourceTree = ""; }; - C28F582BED545F0985BB50AC9F4C422D /* List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = List.swift; path = RealmSwift/List.swift; sourceTree = ""; }; - C29D41A0880A28EA8764059BCCA64CDE /* RLMFindOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMFindOptions.mm; path = Realm/RLMFindOptions.mm; sourceTree = ""; }; - C309B1A1E3B1A9F944AEA68C5F182E79 /* IOSLifecycleMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IOSLifecycleMonitor.swift; path = Sources/Amplitude/Plugins/iOS/IOSLifecycleMonitor.swift; sourceTree = ""; }; - C3991C2A53BDA42624A61BB3BDF09F4B /* DataIDProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataIDProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DataIDProviding.swift; sourceTree = ""; }; - C40DBBFC02FF6821538FD7D82C54452E /* SwiftUIMeasurementContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftUIMeasurementContainer.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift; sourceTree = ""; }; - C41ABCD51562CEBF5C24327A3F14EF54 /* RoundedCornersNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RoundedCornersNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/RoundedCornersNode.swift; sourceTree = ""; }; - C48C60378A4A92D8447A891BF80F038E /* RealmSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RealmSwift.modulemap; sourceTree = ""; }; - C49CB281974AEFEEAE2C1D34E7003C8C /* RLMRealm+Sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RLMRealm+Sync.h"; path = "include/RLMRealm+Sync.h"; sourceTree = ""; }; - C567314B30885448B44581E563ADBDEF /* FillNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift; sourceTree = ""; }; - C5A9D773601E9074CC040D94757C72C5 /* RenderNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RenderNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/RenderNode.swift; sourceTree = ""; }; - C61026F8E1C6DF54CDB5A69F15C2200B /* AnimationTextProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationTextProvider.swift; path = Sources/Public/TextProvider/AnimationTextProvider.swift; sourceTree = ""; }; - C65D241DAD5AA3B62B7F67390E36426F /* SetBehaviorsProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SetBehaviorsProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetBehaviorsProviding.swift; sourceTree = ""; }; - C68BAE4C01BC69BC15DC14EE64DD2B43 /* GroupIdentifyEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupIdentifyEvent.swift; path = Sources/Amplitude/Events/GroupIdentifyEvent.swift; sourceTree = ""; }; - C6F038FDFBF871C3E7A0A5F8E7A2F3DA /* SolidLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidLayer.swift; path = Sources/Private/CoreAnimation/Layers/SolidLayer.swift; sourceTree = ""; }; - C766F1471E082B68A6AA50DD28B457CE /* RLMSyncConfiguration.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSyncConfiguration.mm; path = Realm/RLMSyncConfiguration.mm; sourceTree = ""; }; - C79288B8A24B75EF43275EEC98B7C31B /* PreCompLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompLayerModel.swift; path = Sources/Private/Model/Layers/PreCompLayerModel.swift; sourceTree = ""; }; - C7C478519C78E16790810749945F1847 /* AnimatedProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/AnimatedProviding.swift; sourceTree = ""; }; - C825A1A8613F553854B1DB58419CE650 /* StarAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StarAnimation.swift; path = Sources/Private/CoreAnimation/Animations/StarAnimation.swift; sourceTree = ""; }; - C8EBAA2C4C5F0B80A3072ED2050AE3E7 /* ThreadSafeReference.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThreadSafeReference.swift; path = RealmSwift/ThreadSafeReference.swift; sourceTree = ""; }; - C982156A14473EA5ED7DA2A098DDFFC0 /* EpoxyableView+SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EpoxyableView+SwiftUIView.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxyableView+SwiftUIView.swift"; sourceTree = ""; }; - C9A962B0C7C28A4C8E9E365C990238B2 /* DropShadowAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowAnimation.swift; path = Sources/Private/CoreAnimation/Animations/DropShadowAnimation.swift; sourceTree = ""; }; - C9B26D7A37150A621803CC4ECD6148C5 /* Archive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Archive.swift; path = Sources/Private/EmbeddedLibraries/ZipFoundation/Archive.swift; sourceTree = ""; }; - C9CEF9CB5ED60F706AB7408B92A72BB4 /* TextCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/TextCompositionLayer.swift; sourceTree = ""; }; - CA9BF8B5B65608A7DD6EA15D179386D8 /* KeychainSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeychainSwift.swift; path = Sources/KeychainSwift.swift; sourceTree = ""; }; - CABC07BA1A43EE7F6934D48615650384 /* UIViewConfiguringSwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIViewConfiguringSwiftUIView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIViewConfiguringSwiftUIView.swift; sourceTree = ""; }; - CB0542AFE9A466D579F55FE4E8FB9ABC /* Realm.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Realm.debug.xcconfig; sourceTree = ""; }; - CB64743F0ED8819269665E76B55705A6 /* ViewProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewProviding.swift; sourceTree = ""; }; - CB6962B59CCCA1E21D688D8EF72BFD4E /* ObjcBridgeable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjcBridgeable.swift; path = RealmSwift/Impl/ObjcBridgeable.swift; sourceTree = ""; }; - CC3886B84F13BD14660AFAED7074B6DB /* NMapsMap.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = NMapsMap.xcframework; path = framework/NMapsMap.xcframework; sourceTree = ""; }; - CC540BF747B9674F153E3A644E98032F /* lottie-ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "lottie-ios.modulemap"; sourceTree = ""; }; - CC679C13ABAE50D99342E3563D490868 /* BasePlugins.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BasePlugins.swift; path = Sources/Amplitude/Plugins/BasePlugins.swift; sourceTree = ""; }; - CC69C5056A692C9A17E5D38E959E8545 /* InvertedMatteLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvertedMatteLayer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift; sourceTree = ""; }; - CCD810A0A60C72F849CAE57ADC216614 /* RLMSyncConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncConfiguration.h; path = include/RLMSyncConfiguration.h; sourceTree = ""; }; - CD0FC473387B7ABF63B20A1E5880882E /* TrackingOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrackingOptions.swift; path = Sources/Amplitude/TrackingOptions.swift; sourceTree = ""; }; - CD2F95E31E77D7917248F01EA71194F6 /* Projection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Projection.swift; path = RealmSwift/Projection.swift; sourceTree = ""; }; - CE2BA6FE4CA01E4F4EA7EB1F1B0F19CA /* lottie-ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-umbrella.h"; sourceTree = ""; }; - CE8AD825CF18C83D98D49AE1F1651725 /* DotLottieCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieCache.swift; path = Sources/Public/DotLottie/Cache/DotLottieCache.swift; sourceTree = ""; }; - CEA5975020FEB83E6ADF91D0486A152D /* LottieAnimationViewBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationViewBase.swift; path = Sources/Public/iOS/LottieAnimationViewBase.swift; sourceTree = ""; }; - CEBFF303E29038D81B844D31BFE7AC83 /* FileManager+ZIP.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "FileManager+ZIP.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/FileManager+ZIP.swift"; sourceTree = ""; }; - CED23268033B0BBB22087F3A42F3FE45 /* lottie-ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "lottie-ios-dummy.m"; sourceTree = ""; }; - CEE6461FFF487FE2242AC0B6D253B094 /* CALayer+addAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+addAnimation.swift"; path = "Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"; sourceTree = ""; }; - CF07D5E5F602D78DD0FFC5D8FFDE3B8C /* ObjectSchema.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectSchema.swift; path = RealmSwift/ObjectSchema.swift; sourceTree = ""; }; - CF1B0D1EA447A777447695F899DB891D /* DefaultAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultAnimationCache.swift; path = Sources/Public/AnimationCache/DefaultAnimationCache.swift; sourceTree = ""; }; - CF3D03841FC8919E8A2EB97BEF97E9B6 /* LayerDebugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerDebugging.swift; path = Sources/Private/Utility/Debugging/LayerDebugging.swift; sourceTree = ""; }; - CF4E2FACFB6FD0FA3D6FA246A6E6461A /* LottieAnimationSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationSource.swift; path = Sources/Private/Utility/LottieAnimationSource.swift; sourceTree = ""; }; - CF8D54BCC02776B75CC58DC48EECF24F /* RLMSyncSubscription_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncSubscription_Private.h; path = include/RLMSyncSubscription_Private.h; sourceTree = ""; }; - D01740C96A09F50C2535EE2C6A04EC5C /* Archive+Reading.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Reading.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Reading.swift"; sourceTree = ""; }; - D0202F99C45762261415BCF9AEA26147 /* AmplitudeDestinationPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AmplitudeDestinationPlugin.swift; path = Sources/Amplitude/Plugins/AmplitudeDestinationPlugin.swift; sourceTree = ""; }; - D04BAB9F6A9BC7BFF141B7620856B60A /* RLMScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMScheduler.h; path = include/RLMScheduler.h; sourceTree = ""; }; - D07E39D477AFAF2BC2CE650B5F518A14 /* RLMSchema.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSchema.mm; path = Realm/RLMSchema.mm; sourceTree = ""; }; - D09D3291F7D159A84CDE0B3EFD4E6413 /* CodableExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CodableExtension.swift; path = Sources/Amplitude/Utilities/CodableExtension.swift; sourceTree = ""; }; - D1111FFD5BA6CA1DA7E82D21FB7ADADD /* TextAnimatorNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextAnimatorNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift; sourceTree = ""; }; - D18F56833C06C6B1614FF524C37B3444 /* RLMSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSet.h; path = include/RLMSet.h; sourceTree = ""; }; - D1933AFF7C95EC064EA8F43114C413B4 /* StoragePrefixMigration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StoragePrefixMigration.swift; path = Sources/Amplitude/Migration/StoragePrefixMigration.swift; sourceTree = ""; }; - D28383CD7EAE5E302C08CA24B14A0547 /* ValueContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueContainer.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/ValueContainer.swift; sourceTree = ""; }; - D2AA35701CF2D42781630F324963D837 /* RLMMongoClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMMongoClient.h; path = include/RLMMongoClient.h; sourceTree = ""; }; - D3643B180A19B837FD1DE977D09BCA95 /* RLMCollection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMCollection.h; path = include/RLMCollection.h; sourceTree = ""; }; - D37B1F0911D2E4414FA92FD4C2BF1288 /* KeyframeGroup+exactlyOneKeyframe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KeyframeGroup+exactlyOneKeyframe.swift"; path = "Sources/Private/CoreAnimation/Extensions/KeyframeGroup+exactlyOneKeyframe.swift"; sourceTree = ""; }; - D40668DDD0D4964BCDAEA10C35BFBB63 /* LayerImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerImageProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerImageProvider.swift; sourceTree = ""; }; - D5009CBC0719F1C6822BD50856E2B517 /* RLMQueryUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMQueryUtil.mm; path = Realm/RLMQueryUtil.mm; sourceTree = ""; }; - D546DFEF778883664723A59336AEC8FF /* RLMCollection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMCollection.mm; path = Realm/RLMCollection.mm; sourceTree = ""; }; - D5527DAF155D91AD97C4367ED9A79FE3 /* RealmSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RealmSwift.debug.xcconfig; sourceTree = ""; }; - D56B27B284EC71520BD337E1712463E3 /* ObjectiveCSupport+Sync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObjectiveCSupport+Sync.swift"; path = "RealmSwift/ObjectiveCSupport+Sync.swift"; sourceTree = ""; }; - D580785B0CC5F34F60C230871B103456 /* State.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = State.swift; path = Sources/Amplitude/State.swift; sourceTree = ""; }; + 9E139263F8BBDB3A95487DCB5BB9B0CD /* FillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift; sourceTree = ""; }; + 9EC9ACD79AA84D3B862A84FB531ACD61 /* CGColor+RGB.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGColor+RGB.swift"; path = "Sources/Private/Utility/Extensions/CGColor+RGB.swift"; sourceTree = ""; }; + 9F3BCCC335B0614633E9047FCF36D081 /* RxCocoa-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxCocoa-Info.plist"; sourceTree = ""; }; + 9F515F69DB7CD5DA8104A142D8B6FB71 /* EpoxyModelStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelStorage.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelStorage.swift; sourceTree = ""; }; + 9FECE0F7B0D92257807A9E201621D6E3 /* Pods-AVIRO-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AVIRO-acknowledgements.plist"; sourceTree = ""; }; + A001F1AAA998BFE3CA1A83801E12AF34 /* Object.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Object.swift; path = RealmSwift/Object.swift; sourceTree = ""; }; + A03687A3412C638DE09B487BEEC8A1D6 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + A092D05FB9D43C48043A0DB333DDA3EA /* RxSearchBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift; sourceTree = ""; }; + A0B118E1805BE674C532297DB58584A2 /* AnyValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyValueProvider.swift; path = Sources/Public/DynamicProperties/AnyValueProvider.swift; sourceTree = ""; }; + A155549DBA438C9F4BB0C3C992A6A0D7 /* RLMUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMUser.h; path = include/RLMUser.h; sourceTree = ""; }; + A1AA613B48EA607AFB1E793045AB7CE4 /* BaseEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseEvent.swift; path = Sources/Amplitude/Events/BaseEvent.swift; sourceTree = ""; }; + A229AB5E01E5AB641A41927742EA91F4 /* RLMEvent.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMEvent.mm; path = Realm/RLMEvent.mm; sourceTree = ""; }; + A28170F968C7E7018F117EE6DB96285D /* LottieAnimationSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationSource.swift; path = Sources/Private/Utility/LottieAnimationSource.swift; sourceTree = ""; }; + A2C5299FDABEC54BFAC6069EE13E6E9D /* RLMAccessor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMAccessor.mm; path = Realm/RLMAccessor.mm; sourceTree = ""; }; + A2D3E56A937B1C0DA4B7415A0BD137E4 /* ComplexTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ComplexTypes.swift; path = RealmSwift/Impl/ComplexTypes.swift; sourceTree = ""; }; + A2FBB38EE5A39812BFD4E917BDA2FA6E /* KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KVORepresentable.swift; path = RxCocoa/Foundation/KVORepresentable.swift; sourceTree = ""; }; + A383BADF66500A3FC94AD12F4EEFB980 /* Marker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Marker.swift; path = Sources/Private/Model/Objects/Marker.swift; sourceTree = ""; }; + A3966491D8320CAAE6A81CCF410B99F3 /* PrimitiveSequence+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Zip+arity.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Zip+arity.swift"; sourceTree = ""; }; + A3A80D814438187DF312D8739946F79B /* _RXKVOObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXKVOObserver.m; path = RxCocoa/Runtime/_RXKVOObserver.m; sourceTree = ""; }; + A3AA42800640EE6AC430C93A15D83902 /* AsyncLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncLock.swift; path = RxSwift/Concurrency/AsyncLock.swift; sourceTree = ""; }; + A3FF87AEA82E94DC3871DF193989E93B /* GroupIdentifyEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupIdentifyEvent.swift; path = Sources/Amplitude/Events/GroupIdentifyEvent.swift; sourceTree = ""; }; + A41784785CF120C1EC83A5270B852E4A /* LayerProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerProperty.swift; path = Sources/Private/CoreAnimation/Animations/LayerProperty.swift; sourceTree = ""; }; + A426201EB5A91F9751220645B6AC149E /* Shape.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Shape.swift; path = Sources/Private/Model/ShapeItems/Shape.swift; sourceTree = ""; }; + A45B0B58FCA1E2DDE29C1A6302CB69F0 /* Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debug.swift; path = RxSwift/Observables/Debug.swift; sourceTree = ""; }; + A46B2B011E92DACF7756C7250B0A0A1B /* ControlProperty+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlProperty+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlProperty+Driver.swift"; sourceTree = ""; }; + A46E7B2BE1CD0443BEDE5F437E569352 /* NodePropertyMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NodePropertyMap.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift; sourceTree = ""; }; + A47C7BEC960C9F369BA067586920B5C8 /* ImageCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/ImageCompositionLayer.swift; sourceTree = ""; }; + A4E862AD72E5AEAE6B4F56E46CE69B38 /* IdentifyInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IdentifyInterceptor.swift; path = Sources/Amplitude/Utilities/IdentifyInterceptor.swift; sourceTree = ""; }; + A5057D37AC049BAA45DCA73EBA5C7123 /* EpoxyModelProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelProperty.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelProperty.swift; sourceTree = ""; }; + A554A32E418FC10C23AD8F080689E9C0 /* LottieView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieView.swift; path = Sources/Public/Animation/LottieView.swift; sourceTree = ""; }; + A56EECF3BB38E43277CC5974C33BDCAB /* Lock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lock.swift; path = RxSwift/Concurrency/Lock.swift; sourceTree = ""; }; + A5C2F1DD778C46F1124AC3948590307B /* BehaviorRelay+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BehaviorRelay+Driver.swift"; path = "RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift"; sourceTree = ""; }; + A62482D960C7C93EC005182D1C872B83 /* StrokeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/StrokeAnimation.swift; sourceTree = ""; }; + A64C834AAC6C0727CCC123AF14C84B71 /* ObservableConvertibleType+Blocking.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Blocking.swift"; path = "RxBlocking/ObservableConvertibleType+Blocking.swift"; sourceTree = ""; }; + A64F36E5169979F2F7E2A0E0AE65FE51 /* RLMValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMValue.h; path = include/RLMValue.h; sourceTree = ""; }; + A66C09F0ED8AE5BE3546CD10F6FEA5BF /* Bundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bundle.swift; path = Sources/Private/Model/Extensions/Bundle.swift; sourceTree = ""; }; + A68BA96F8A08615BC9BC9EBBDFA0CD1E /* CompositionLayersInitializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositionLayersInitializer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CompositionLayersInitializer.swift; sourceTree = ""; }; + A74C81B22B3AC313A6F125A6BAD0F154 /* RLMSectionedResults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSectionedResults.h; path = include/RLMSectionedResults.h; sourceTree = ""; }; + A79BBFAA30E15FE04639C6B2F774ACB7 /* RLMSyncSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncSession.h; path = include/RLMSyncSession.h; sourceTree = ""; }; + A81D3744793BF8FD4670B1FC3A43562E /* RxSwift-framework.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "RxSwift-framework.release.xcconfig"; sourceTree = ""; }; + A874C206149B39BF14C57F5F87076353 /* _RX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RX.h; path = RxCocoa/Runtime/include/_RX.h; sourceTree = ""; }; + A8E1A2EA300F45CF1236EF693429A7CD /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + A981DA45CA15D31A9DB132F606CFA21D /* RLMThreadSafeReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMThreadSafeReference.h; path = include/RLMThreadSafeReference.h; sourceTree = ""; }; + A9896FD6754C887DF1416D0367996E44 /* DotLottieAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieAnimation.swift; path = Sources/Private/Model/DotLottie/DotLottieAnimation.swift; sourceTree = ""; }; + A9EF4A0903A0413A50DF2E666CFA2E3D /* RLMApp_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMApp_Private.h; path = include/RLMApp_Private.h; sourceTree = ""; }; + AA4FDDDD08F6C66026E26D425804CF72 /* AmplitudeSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AmplitudeSwift-umbrella.h"; sourceTree = ""; }; + AA68685CC8D3587939F4D12D01B1E021 /* Never.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Never.swift; path = RxSwift/Observables/Never.swift; sourceTree = ""; }; + AB5E956CBBE153FC976EF0DB993F3285 /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RxSwift/Observables/Optional.swift; sourceTree = ""; }; + AB7EC37C4BE56170B8B4CD52173041F7 /* DelaySubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelaySubscription.swift; path = RxSwift/Observables/DelaySubscription.swift; sourceTree = ""; }; + AB84DD00EB59156015A4179BC82E9964 /* RoundedCorners.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RoundedCorners.swift; path = Sources/Private/Model/ShapeItems/RoundedCorners.swift; sourceTree = ""; }; + AC69BDD57BB554660EEA3B767EBCD245 /* Sessions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sessions.swift; path = Sources/Amplitude/Sessions.swift; sourceTree = ""; }; + ACE1C6A805A7577CC7C850DB0CF158FE /* ShapeAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeAnimation.swift; path = Sources/Private/CoreAnimation/Animations/ShapeAnimation.swift; sourceTree = ""; }; + ACECED34D6B40952183779B7C57D4DB0 /* RxTest-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxTest-prefix.pch"; sourceTree = ""; }; + AD9CF0B65206D9CE1CA15EC1B85EB65E /* FloatValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FloatValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift; sourceTree = ""; }; + ADA5E23A86C014249ACC5020E06B071D /* PreCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/PreCompositionLayer.swift; sourceTree = ""; }; + AE232DDBFF02C7108B42BE2A13D58D63 /* ShapeLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeLayerModel.swift; path = Sources/Private/Model/Layers/ShapeLayerModel.swift; sourceTree = ""; }; + AE96A4360FAF43A8CF2472AB3E45BA37 /* ViewDifferentiatorProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewDifferentiatorProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewDifferentiatorProviding.swift; sourceTree = ""; }; + AE9A5FE5ED0657DF9A39A210CB6E8DD4 /* Event+Equatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Event+Equatable.swift"; path = "RxTest/Event+Equatable.swift"; sourceTree = ""; }; + AEC59383042CE47F8D0CEB5A19B090FA /* KeyframeData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeData.swift; path = Sources/Private/Model/Keyframes/KeyframeData.swift; sourceTree = ""; }; + AECA3A35E70228E8F00008F47C956E54 /* AsSingle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsSingle.swift; path = RxSwift/Observables/AsSingle.swift; sourceTree = ""; }; + AEE59FF42B66071F63EFD3C9F87A0F7D /* Toast-Swift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Toast-Swift.modulemap"; sourceTree = ""; }; + AF09F05A710C5513E4403D2F9D62C7D8 /* NSObject+Rx+KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+KVORepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift"; sourceTree = ""; }; + AF934D724485749650D00F02F906D63F /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUIIntrinsicContentSizeInvalidator.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUIIntrinsicContentSizeInvalidator.swift; sourceTree = ""; }; + AFBE2A95737DD33C2575D424E8E7889D /* RxNavigationControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxNavigationControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift; sourceTree = ""; }; + AFC6E7C05BFC3BA550C17D6FCBC38569 /* EpoxySwiftUILayoutMargins.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxySwiftUILayoutMargins.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxySwiftUILayoutMargins.swift; sourceTree = ""; }; + AFDBE9AA99AE07260CFC19D2359A2771 /* UISearchBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchBar+Rx.swift"; path = "RxCocoa/iOS/UISearchBar+Rx.swift"; sourceTree = ""; }; + B0273365CF273519C454BF191B7A6B33 /* SingleAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAsync.swift; path = RxSwift/Observables/SingleAsync.swift; sourceTree = ""; }; + B1DA9A75EB8759EEB62FE205EE92F95F /* RLMRealmConfiguration_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMRealmConfiguration_Private.h; path = include/RLMRealmConfiguration_Private.h; sourceTree = ""; }; + B1EB55E74FF4247AABDDAC2CAB7110BA /* LinkingObjects.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LinkingObjects.swift; path = RealmSwift/LinkingObjects.swift; sourceTree = ""; }; + B2B2653B0D9C91ECDA2BAABB08D84D79 /* RLMMongoCollection_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMMongoCollection_Private.h; path = include/RLMMongoCollection_Private.h; sourceTree = ""; }; + B2B596FAC8657BE8F78E515807B15C70 /* CompactMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompactMap.swift; path = RxSwift/Observables/CompactMap.swift; sourceTree = ""; }; + B2C7D5793E449BCB90D5DE11A39615EA /* RxRelay-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-umbrella.h"; sourceTree = ""; }; + B2EED5CFAAFD9B94B115C200FB447B44 /* RxTableViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift; sourceTree = ""; }; + B3018B7253A24BA757BFF1080DEB6815 /* RxTest.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxTest.release.xcconfig; sourceTree = ""; }; + B3309E5D7855CD6A606ECAFBA2980425 /* Sample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sample.swift; path = RxSwift/Observables/Sample.swift; sourceTree = ""; }; + B4168666E95A8679EE3B962AB55F462A /* SubscribeOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscribeOn.swift; path = RxSwift/Observables/SubscribeOn.swift; sourceTree = ""; }; + B48BF66F4403EF23343A0DDD9B215326 /* PrimitiveSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Concurrency.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift"; sourceTree = ""; }; + B4B4EF58AEF0E9288D603D0C8E2CB8A4 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + B4E6C46462DF43DF9325E5908D9CE9AD /* Infallible+CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+CombineLatest+arity.swift"; path = "RxSwift/Traits/Infallible/Infallible+CombineLatest+arity.swift"; sourceTree = ""; }; + B4EC8EB26DB969079C3A2BCD2EB9EC5E /* RLMResults.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMResults.mm; path = Realm/RLMResults.mm; sourceTree = ""; }; + B515B49D804654DEAA945AE1F9D3001A /* RLMMongoCollection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMMongoCollection.h; path = include/RLMMongoCollection.h; sourceTree = ""; }; + B51EAA2DA9030EB070BD234B5A032111 /* RLMUpdateResult.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMUpdateResult.mm; path = Realm/RLMUpdateResult.mm; sourceTree = ""; }; + B57DB4ADB381420D15042B715A56F9A7 /* ObservableType+PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+PrimitiveSequence.swift"; path = "RxSwift/Traits/PrimitiveSequence/ObservableType+PrimitiveSequence.swift"; sourceTree = ""; }; + B59B9F30EE2EB8D7A82D55447A667482 /* Realm-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Realm-Info.plist"; sourceTree = ""; }; + B60D16093C99FEA28E748FA19096EBF9 /* AmplitudeSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AmplitudeSwift.debug.xcconfig; sourceTree = ""; }; + B6546BC0E8DAEC6CB6861EFA203EE78D /* Fill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Fill.swift; path = Sources/Private/Model/ShapeItems/Fill.swift; sourceTree = ""; }; + B65935F8197830FA8CC3B6D19B1B68FA /* PathElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathElement.swift; path = Sources/Private/Utility/Primitives/PathElement.swift; sourceTree = ""; }; + B67B8CEC03DE32A39DCC001C2E7458B4 /* RLMSyncSession.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSyncSession.mm; path = Realm/RLMSyncSession.mm; sourceTree = ""; }; + B71AD9AC552F496F0D3E67491CED2F71 /* UIColorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColorExtension.swift; path = Sources/Public/iOS/UIColorExtension.swift; sourceTree = ""; }; + B72522F91A46C5FA393805937FA93528 /* RealmSwift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RealmSwift-Info.plist"; sourceTree = ""; }; + B73EF561D06A291CA388F3E279D1BE39 /* Group.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Group.swift; path = Sources/Private/Model/ShapeItems/Group.swift; sourceTree = ""; }; + B74BF391C4433D9CB80E6BFDEADEC0B0 /* ViewEpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewEpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/ViewEpoxyModeled.swift; sourceTree = ""; }; + B7536E6E9B07BEB522685CA429E6B663 /* Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zip.swift; path = RxSwift/Observables/Zip.swift; sourceTree = ""; }; + B7D0C08E5F29DC6B1C176F160CBD7B9F /* RLMNetworkTransport.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMNetworkTransport.mm; path = Realm/RLMNetworkTransport.mm; sourceTree = ""; }; + B7D7FD6DAD231E96E295B86CCC13ADC1 /* ColorValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift; sourceTree = ""; }; + B7ED364F15E6DE9A42AFCA6595BFF965 /* SwiftUIMeasurementContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftUIMeasurementContainer.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/LayoutUtilities/SwiftUIMeasurementContainer.swift; sourceTree = ""; }; + B8D8C4793F08A8437A613286DA1393CC /* RxMutableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxMutableBox.swift; path = RxSwift/RxMutableBox.swift; sourceTree = ""; }; + B91361BE65E8D40884D4F5C6F70B87C4 /* SkipUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipUntil.swift; path = RxSwift/Observables/SkipUntil.swift; sourceTree = ""; }; + B91F78FF51C848D66D6C96A05622FF65 /* LottiePlaybackMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottiePlaybackMode.swift; path = Sources/Public/Animation/LottiePlaybackMode.swift; sourceTree = ""; }; + B925C5E67B5CFE8177522713DEE7186A /* WKWebView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Rx.swift"; path = "RxCocoa/iOS/WKWebView+Rx.swift"; sourceTree = ""; }; + BAFB10B90F6B08FA5A16B72351755C60 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + BAFB3FC60B564C8861272AFA4855EBD4 /* DropShadowAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowAnimation.swift; path = Sources/Private/CoreAnimation/Animations/DropShadowAnimation.swift; sourceTree = ""; }; + BBE0E6F9C0E022F45E876CD983BC2F54 /* lottie-ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-umbrella.h"; sourceTree = ""; }; + BC432FD48A5932251F1CAFBC4BF74894 /* RxCocoa */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RxCocoa; path = RxCocoa.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + BC601B7E96506022547679EBA61EDB08 /* ItemEvents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemEvents.swift; path = RxCocoa/iOS/Events/ItemEvents.swift; sourceTree = ""; }; + BC916E5E2006F4D20F74CF425C9B4159 /* SharedSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Concurrency.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift"; sourceTree = ""; }; + BC91FDFBA01EAF6E81823766C48F913D /* Recorded.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Recorded.swift; path = RxTest/Recorded.swift; sourceTree = ""; }; + BCE84E01FFA9166B5439D056918A4FF4 /* RxSwift-framework-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-framework-umbrella.h"; sourceTree = ""; }; + BD3008DB1FC827037E3658F425B418BB /* RLMObjectBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectBase.h; path = include/RLMObjectBase.h; sourceTree = ""; }; + BD7DFE11DACA5B8910EFD5063B96FF24 /* EpoxyableView+SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EpoxyableView+SwiftUIView.swift"; path = "Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/EpoxyableView+SwiftUIView.swift"; sourceTree = ""; }; + BD8AC584904870CA21904B1FFE4637AC /* Scan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Scan.swift; path = RxSwift/Observables/Scan.swift; sourceTree = ""; }; + BE0308DEE2FFCA6CA9007B06C6BE17F4 /* LottieAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationCache.swift; path = Sources/Public/AnimationCache/LottieAnimationCache.swift; sourceTree = ""; }; + BE89C48F7272D699A1D021E68C587AAD /* EmbeddedObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EmbeddedObject.swift; path = RealmSwift/EmbeddedObject.swift; sourceTree = ""; }; + BE9D1C1FE157B18C01449B4FA8EE520D /* RLMScheduler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMScheduler.mm; path = Realm/RLMScheduler.mm; sourceTree = ""; }; + BED2FF6A3A71BAB9CAF96AFB3DB21744 /* ShapeItemLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeItemLayer.swift; path = Sources/Private/CoreAnimation/Layers/ShapeItemLayer.swift; sourceTree = ""; }; + BEE497A61506A2E1B8E85F338456C36A /* Star.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Star.swift; path = Sources/Private/Model/ShapeItems/Star.swift; sourceTree = ""; }; + BEFC6DC50ADA21288DCAAADD7C89F0D7 /* UIScrollView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+Rx.swift"; path = "RxCocoa/iOS/UIScrollView+Rx.swift"; sourceTree = ""; }; + BF2E33CD13D1441E9361D4036C3D749A /* RLMSyncConfiguration_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncConfiguration_Private.h; path = include/RLMSyncConfiguration_Private.h; sourceTree = ""; }; + BF59B2B462112361DED182498D11F186 /* CollectionAccess.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CollectionAccess.swift; path = RealmSwift/Impl/CollectionAccess.swift; sourceTree = ""; }; + BF72053E2EFB7108CE50D5C32ED657EC /* Pods-AVIROTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AVIROTests-umbrella.h"; sourceTree = ""; }; + BFE9890902C01B64B93AE7C884EAABD8 /* Font.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Font.swift; path = Sources/Private/Model/Text/Font.swift; sourceTree = ""; }; + C048D2127BA139AA1741D47D10CA0015 /* RxDelegateProxyCrashFix.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxDelegateProxyCrashFix.swift; path = RxCocoa/iOS/Proxies/RxDelegateProxyCrashFix.swift; sourceTree = ""; }; + C0560B045D900514A39899E1A7A993B9 /* DidEndDisplayingProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidEndDisplayingProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidEndDisplayingProviding.swift; sourceTree = ""; }; + C09D185350515595E57516FBAEAE0896 /* RxTest-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxTest-dummy.m"; sourceTree = ""; }; + C0C51F960E2286A775D3AC5DC73CE50C /* _RXObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXObjCRuntime.h; path = RxCocoa/Runtime/include/_RXObjCRuntime.h; sourceTree = ""; }; + C0DC6BB37E772C838D211B4E469406B8 /* Driver+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Driver+Subscription.swift"; path = "RxCocoa/Traits/Driver/Driver+Subscription.swift"; sourceTree = ""; }; + C0FF6F2916AD33FD5BC09AABA5529615 /* RxScrollViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxScrollViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift; sourceTree = ""; }; + C13E6157035ECC8DAEFB457CBB6FBD73 /* _RXKVOObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXKVOObserver.h; path = RxCocoa/Runtime/include/_RXKVOObserver.h; sourceTree = ""; }; + C1A276A29DEAB9DDC4BA2367671C577A /* SynchronizedOnType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedOnType.swift; path = RxSwift/Concurrency/SynchronizedOnType.swift; sourceTree = ""; }; + C23383D690CCBB1C3C427F376EA4AE65 /* RLMSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSet.h; path = include/RLMSet.h; sourceTree = ""; }; + C2466D6161E3C60E02DB20EC7907CFF5 /* BehaviorSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorSubject.swift; path = RxSwift/Subjects/BehaviorSubject.swift; sourceTree = ""; }; + C24DCE192033AC4D6E1C2AC287E6D20F /* TextDocument.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextDocument.swift; path = Sources/Private/Model/Text/TextDocument.swift; sourceTree = ""; }; + C2765B8FAD8525B7C1225F8E77C57C28 /* CodableExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CodableExtension.swift; path = Sources/Amplitude/Utilities/CodableExtension.swift; sourceTree = ""; }; + C287F1876B08CAAC58E7970C05AB48CB /* Pods-AVIRO-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AVIRO-Info.plist"; sourceTree = ""; }; + C2892D88E72EF8D62CDFBFEE3592E295 /* RLMCollection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMCollection.mm; path = Realm/RLMCollection.mm; sourceTree = ""; }; + C291189F16072FF3DEC3490950649B7E /* SchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchedulerType.swift; path = RxSwift/SchedulerType.swift; sourceTree = ""; }; + C2CD587C58414AD8C075D947CF7F0DB9 /* RxTableViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift; sourceTree = ""; }; + C2E35B001D8E6B24570A6E45880B6FD3 /* TakeLast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeLast.swift; path = RxSwift/Observables/TakeLast.swift; sourceTree = ""; }; + C35562723E0E2056F449067DB6C2DAB4 /* CGFloatExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CGFloatExtensions.swift; path = Sources/Private/Utility/Extensions/CGFloatExtensions.swift; sourceTree = ""; }; + C42CCE88D17761CA95CF0424D6008467 /* RLMConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMConstants.h; path = include/RLMConstants.h; sourceTree = ""; }; + C4D4463CD5366F140F164933693B88C8 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + C4E8AAAD16D89326E5851E8A698EE952 /* FillNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift; sourceTree = ""; }; + C4EA252794E988A4C9FCD3B34822A7FD /* NodeProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NodeProperty.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/NodeProperty.swift; sourceTree = ""; }; + C4F2928C490A62492DFB099057923ED8 /* RxTableViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; + C5B061C54FA4000CC108780CE9C31CC6 /* ThreadSafeReference.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ThreadSafeReference.swift; path = RealmSwift/ThreadSafeReference.swift; sourceTree = ""; }; + C624B4503218077DCDBB1E00A24C075A /* RLMObject_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObject_Private.h; path = include/RLMObject_Private.h; sourceTree = ""; }; + C66CB6EEDD5E3A17017C51C6A7D4D57F /* RxTabBarControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift; sourceTree = ""; }; + C6D799EFC1A650B013C287F07B4247B6 /* Toast-Swift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Toast-Swift-prefix.pch"; sourceTree = ""; }; + C7E83A4A27FA925BE4FEB9ADA5F728E3 /* RLMProviderClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMProviderClient.h; path = include/RLMProviderClient.h; sourceTree = ""; }; + C7F6194A61742982DFA9D8E481E8C894 /* RenderingEngineOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RenderingEngineOption.swift; path = Sources/Public/Configuration/RenderingEngineOption.swift; sourceTree = ""; }; + C895E6BEA31C395D916D30A07A5A202A /* UIStepper+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIStepper+Rx.swift"; path = "RxCocoa/iOS/UIStepper+Rx.swift"; sourceTree = ""; }; + C8BFBBCCD8493E16893C8E1F9C897329 /* RLMArray.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMArray.mm; path = Realm/RLMArray.mm; sourceTree = ""; }; + C9AD481FD59F64451799D78FEA007C1D /* Window.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Window.swift; path = RxSwift/Observables/Window.swift; sourceTree = ""; }; + C9F47C1C33F294EE17EFAC13BED14A1F /* ControlTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlTarget.swift; path = RxCocoa/Common/ControlTarget.swift; sourceTree = ""; }; + CAEEEFD7B3ECBA5B3DDA384862CF16F1 /* RunLoopLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RunLoopLock.swift; path = RxBlocking/RunLoopLock.swift; sourceTree = ""; }; + CB06DA9745B40F2A9A45F6491A5DC709 /* TegKeychainConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TegKeychainConstants.swift; path = Sources/TegKeychainConstants.swift; sourceTree = ""; }; + CB0F12EC861F2C69260A8A2FE2E5387E /* RxBlocking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxBlocking-dummy.m"; sourceTree = ""; }; + CB230B5BD51AA84A1CE8F0ECD1FFF01A /* Rectangle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rectangle.swift; path = Sources/Private/Model/ShapeItems/Rectangle.swift; sourceTree = ""; }; + CC07A26885E4F972E3F4518D5362728F /* AmplitudeSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AmplitudeSwift-prefix.pch"; sourceTree = ""; }; + CC964A1BAE8C5C7C580B32520DE4D03C /* AnimatedSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedSwitch.swift; path = Sources/Public/Controls/AnimatedSwitch.swift; sourceTree = ""; }; + CCA1B9B561DEB0B4AC2651E1F3AC0256 /* RLMArray_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMArray_Private.h; path = include/RLMArray_Private.h; sourceTree = ""; }; + CCB6DF8D2FA430DCAB065BB9FA4C9E07 /* lottie-ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "lottie-ios-dummy.m"; sourceTree = ""; }; + CCB7652C1673BFCE771CDA331530C443 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + CD8AC86F7DD86F0560FFE25C489979E7 /* RxSwift-library.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "RxSwift-library.modulemap"; path = "../RxSwift-library/RxSwift-library.modulemap"; sourceTree = ""; }; + CD8C48A6452494281645A53D71B7C002 /* Disposables.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposables.swift; path = RxSwift/Disposables/Disposables.swift; sourceTree = ""; }; + CD96BE3C4A3E2D943FDEDE4DD7FF7237 /* RectNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RectNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/RectNode.swift; sourceTree = ""; }; + CD9B2C9F91D4879F2811269EEA915C55 /* RLMObjectStore.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObjectStore.mm; path = Realm/RLMObjectStore.mm; sourceTree = ""; }; + CE26F9C17973A4C7D9ED740468E1F2AD /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Event.swift; path = RxSwift/Event.swift; sourceTree = ""; }; + CE38D94C0175DEDF31BF19A69C04BE9C /* StrokeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift; sourceTree = ""; }; + CE524C69273834832E915AED7DCB5BA2 /* RLMSyncConfiguration.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSyncConfiguration.mm; path = Realm/RLMSyncConfiguration.mm; sourceTree = ""; }; + CE931BBBAFE00A93818E68E4FAEBB3BF /* RLMFindOptions.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMFindOptions.mm; path = Realm/RLMFindOptions.mm; sourceTree = ""; }; + CEA841B00F96A839941230D6A8078F14 /* RxRelay-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxRelay-dummy.m"; sourceTree = ""; }; + CEB29FA481044DA557396E1997FB445C /* DictionaryInitializable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DictionaryInitializable.swift; path = Sources/Private/Model/DictionaryInitializable.swift; sourceTree = ""; }; + CEE5B0D847F8A029FE07573A5BAE5211 /* MaskCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MaskCompositionLayer.swift; path = Sources/Private/CoreAnimation/Layers/MaskCompositionLayer.swift; sourceTree = ""; }; + CF5D53950FFC8FB763A00E431D75FFC7 /* GradientStroke.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStroke.swift; path = Sources/Private/Model/ShapeItems/GradientStroke.swift; sourceTree = ""; }; + CF7C9475407D2F53A3559CA405771782 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + D0BB637647ACA09B72211510776DFA0D /* Realm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Realm.h; path = include/Realm.h; sourceTree = ""; }; + D111A50B81A294CB5D6ED0717641EDA6 /* WithUnretained.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithUnretained.swift; path = RxSwift/Observables/WithUnretained.swift; sourceTree = ""; }; + D113E27D4F7314EE7CBA58DDCB51E935 /* RealmCollection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RealmCollection.swift; path = RealmSwift/RealmCollection.swift; sourceTree = ""; }; + D19B6A9B96810333E9927C72EF7DDEF4 /* _RXDelegateProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXDelegateProxy.m; path = RxCocoa/Runtime/_RXDelegateProxy.m; sourceTree = ""; }; + D1AF27D2FA3AC62D2D047162A9ECD34D /* SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftUIView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/SwiftUIView.swift; sourceTree = ""; }; + D1D2F4329B500575FBE1F0B90CCA7E16 /* RxBlocking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxBlocking.debug.xcconfig; sourceTree = ""; }; + D21FF42CAEEFE4A7556D18008FB5E1D8 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + D26C0CB0261E18D1D767B6A99E51CD20 /* Date+Dispatch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Dispatch.swift"; path = "RxSwift/Date+Dispatch.swift"; sourceTree = ""; }; + D298C0F3678058548E35C34CCE930406 /* AnimatorNodeDebugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatorNodeDebugging.swift; path = Sources/Private/Utility/Debugging/AnimatorNodeDebugging.swift; sourceTree = ""; }; + D2B01BCB1BD1DA06FA52F9CAFF699B64 /* LayerDebugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerDebugging.swift; path = Sources/Private/Utility/Debugging/LayerDebugging.swift; sourceTree = ""; }; + D2FFCC25BF650C7CD53549F145D54F05 /* lottie-ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-prefix.pch"; sourceTree = ""; }; + D35E966B8CF31BAFEA570EEA1FA6BA43 /* RLMMigration.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMMigration.mm; path = Realm/RLMMigration.mm; sourceTree = ""; }; + D3661B79D569F9E786A4AE80DACBA8EC /* SubjectType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubjectType.swift; path = RxSwift/Subjects/SubjectType.swift; sourceTree = ""; }; + D3B71670C83A3976A8AC85305BDECB50 /* Interpolatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Interpolatable.swift; path = Sources/Public/Keyframes/Interpolatable.swift; sourceTree = ""; }; + D3CA3D525AB28D70F09461825EF902E7 /* MainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainScheduler.swift; path = RxSwift/Schedulers/MainScheduler.swift; sourceTree = ""; }; + D41FAFE7F791CF593E37AC386C1A3085 /* LottieAnimationHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationHelpers.swift; path = Sources/Public/Animation/LottieAnimationHelpers.swift; sourceTree = ""; }; + D42BA9D4C8532090169F8C308C6B0467 /* MongoClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MongoClient.swift; path = RealmSwift/MongoClient.swift; sourceTree = ""; }; + D430EFCC50B835D2C330752A86526CEA /* NSButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Rx.swift"; path = "RxCocoa/macOS/NSButton+Rx.swift"; sourceTree = ""; }; + D4A37C9B25E2889CD6D986512ABA3C9F /* RLMPushClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMPushClient.mm; path = Realm/RLMPushClient.mm; sourceTree = ""; }; + D530E2D317C4204BCDB0676F3B1D78F9 /* KeyframeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeExtensions.swift; path = Sources/Private/Utility/Interpolatable/KeyframeExtensions.swift; sourceTree = ""; }; + D533223AEB3902F28FBFC83D15DBA1F9 /* NMapsMap.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = NMapsMap.xcframework; path = framework/NMapsMap.xcframework; sourceTree = ""; }; + D575A7F18C29FCCFF8B1545856DA2F6C /* RLMDecimal128.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMDecimal128.mm; path = Realm/RLMDecimal128.mm; sourceTree = ""; }; + D57F05776A63A08AE8E165126084ADA3 /* CALayer+addAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+addAnimation.swift"; path = "Sources/Private/CoreAnimation/Animations/CALayer+addAnimation.swift"; sourceTree = ""; }; D6043471C96F93DC41F7DD1E0D7D8B35 /* Toast-Swift */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Toast-Swift"; path = Toast_Swift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D616E6829F99955CEAEADA9FF9D23953 /* StyledView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyledView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/StyledView.swift; sourceTree = ""; }; - D7C53B0237EB3D348DD7C41E2D76172E /* AnyRealmValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyRealmValue.swift; path = RealmSwift/AnyRealmValue.swift; sourceTree = ""; }; - D816A3855236519E1A0E0A46ECD7D0CC /* AnyEpoxyModelProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyEpoxyModelProperty.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/AnyEpoxyModelProperty.swift; sourceTree = ""; }; - D896D2CE745628D60142BD18648F651E /* SwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftUIView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/SwiftUIView.swift; sourceTree = ""; }; - D8A1D4FBA04502437BE21EFDA6BC2F38 /* Binding+Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Binding+Map.swift"; path = "Sources/Private/Utility/Helpers/Binding+Map.swift"; sourceTree = ""; }; - DA3342EBCFFFC9D3E0DF0B8F3238DFDB /* RLMRealm+Sync.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "RLMRealm+Sync.mm"; path = "Realm/RLMRealm+Sync.mm"; sourceTree = ""; }; - DBA8D0FFDC4BF60A1648C05FAB6EC6E1 /* AnimationSubview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationSubview.swift; path = Sources/Public/iOS/AnimationSubview.swift; sourceTree = ""; }; - DD01264970D500B5BB3B5DE49CDBC7CA /* AnimationContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationContext.swift; path = Sources/Private/Utility/Helpers/AnimationContext.swift; sourceTree = ""; }; - DD247B0AF9FCEFE9DE9A6473C527A5CA /* RLMObjectId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectId.h; path = include/RLMObjectId.h; sourceTree = ""; }; - DD8506EF9825DFAAE461A106A7ACCF84 /* EllipseAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EllipseAnimation.swift; path = Sources/Private/CoreAnimation/Animations/EllipseAnimation.swift; sourceTree = ""; }; - DF0A593603472D30687719424074C401 /* CachedImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedImageProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/CachedImageProvider.swift; sourceTree = ""; }; - DFE44398FF4BCDAEEA464DD296C215AA /* ValueProviderStore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueProviderStore.swift; path = Sources/Private/CoreAnimation/ValueProviderStore.swift; sourceTree = ""; }; - E036FA26579924535B3E76245E0EA74F /* DestinationPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DestinationPlugin.swift; path = Sources/Amplitude/Plugins/DestinationPlugin.swift; sourceTree = ""; }; - E03AB0573EE818531725CE054B577797 /* DropShadowStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropShadowStyle.swift; path = Sources/Private/Model/LayerStyles/DropShadowStyle.swift; sourceTree = ""; }; - E04729D9EB2D946A313FD97A39FB82AA /* AnimationKeypathExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationKeypathExtension.swift; path = Sources/Private/Utility/Extensions/AnimationKeypathExtension.swift; sourceTree = ""; }; - E0994D26E39D807AA28A8F4C0076D71F /* Mediator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mediator.swift; path = Sources/Amplitude/Mediator.swift; sourceTree = ""; }; - E0C912DB3EB64AC1A6B4FD6EE816EE09 /* Entry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Entry.swift; path = Sources/Private/EmbeddedLibraries/ZipFoundation/Entry.swift; sourceTree = ""; }; - E122BBE903BD003FBF3BD32C235526DF /* Pods-AVIRO-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AVIRO-dummy.m"; sourceTree = ""; }; - E163F5AF1DFFCC33998215C1619AE6D4 /* Pods-AVIRO-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AVIRO-Info.plist"; sourceTree = ""; }; - E2336F748C14CBF0B7FBC4C42FB9480E /* LayerFontProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerFontProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerFontProvider.swift; sourceTree = ""; }; - E2BF29C67B645E6880A7948E00FE1050 /* SetContentProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SetContentProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetContentProviding.swift; sourceTree = ""; }; - E3252B31DC4150DB57E315FD6D3436BD /* Types.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Types.swift; path = Sources/Amplitude/Types.swift; sourceTree = ""; }; - E37B3F30705226952570964D5F3FD597 /* Toast-Swift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Toast-Swift-umbrella.h"; sourceTree = ""; }; - E3DA3AB990D26181CBE5FFE6F2A0533A /* RLMValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMValue.mm; path = Realm/RLMValue.mm; sourceTree = ""; }; - E41B018DE155AD4BC6FF7FC9A1994F21 /* RealmProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RealmProperty.swift; path = RealmSwift/RealmProperty.swift; sourceTree = ""; }; - E4407ED31EBC346427D3CF1E4CB07943 /* PathElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathElement.swift; path = Sources/Private/Utility/Primitives/PathElement.swift; sourceTree = ""; }; - E4A2CA5DBF9C38E207D2BD40C4BD7ABD /* KeyframeInterpolator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeInterpolator.swift; path = Sources/Private/Utility/Interpolatable/KeyframeInterpolator.swift; sourceTree = ""; }; - E51121375D767D7F4148034AB440A41C /* IdentifyEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IdentifyEvent.swift; path = Sources/Amplitude/Events/IdentifyEvent.swift; sourceTree = ""; }; - E52746CC2034FC2CB160339E62F2945F /* ShapeLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeLayerModel.swift; path = Sources/Private/Model/Layers/ShapeLayerModel.swift; sourceTree = ""; }; - E55E357BB672D63E90EC8898484AC67C /* RLMCredentials.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMCredentials.mm; path = Realm/RLMCredentials.mm; sourceTree = ""; }; - E5E2555A00D1BD031DCBBF6BB99A152A /* NodePropertyMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NodePropertyMap.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift; sourceTree = ""; }; - E6C496C6423E065D1B0DAFBD8B0DBA84 /* EpoxyableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/EpoxyableView.swift; sourceTree = ""; }; - E719FAC32B6439554A3F98ED655FDBFB /* RLMAsyncTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMAsyncTask.mm; path = Realm/RLMAsyncTask.mm; sourceTree = ""; }; - E7278D42063B266927C137B897B91E7C /* RLMError.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMError.mm; path = Realm/RLMError.mm; sourceTree = ""; }; - E7A6D8665EB789F31C2510EC9ECF8796 /* RemnantDataMigration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RemnantDataMigration.swift; path = Sources/Amplitude/Migration/RemnantDataMigration.swift; sourceTree = ""; }; - E80D7500FF17E9EA1043FE3CBA20EA62 /* BlendMode+Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BlendMode+Filter.swift"; path = "Sources/Private/Utility/Extensions/BlendMode+Filter.swift"; sourceTree = ""; }; - E9B5CBDDCD883F275CE4AF17B372EEF0 /* RLMRealmUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMRealmUtil.mm; path = Realm/RLMRealmUtil.mm; sourceTree = ""; }; - EA185170409DFB8C039D9C071DDA36ED /* ShapeItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeItem.swift; path = Sources/Private/Model/ShapeItems/ShapeItem.swift; sourceTree = ""; }; - EA971B2E54A6178765A35DE29D09F9A2 /* RLMPushClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMPushClient.h; path = include/RLMPushClient.h; sourceTree = ""; }; - EB07F9F5511EC432901E9244416C45C3 /* PassThroughOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PassThroughOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift; sourceTree = ""; }; - EB09169E5772F46927E07289594C0206 /* MathKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MathKit.swift; path = Sources/Private/Utility/Extensions/MathKit.swift; sourceTree = ""; }; - EB4186E564203C9C11072D5DC39E0F26 /* RLMResults.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMResults.mm; path = Realm/RLMResults.mm; sourceTree = ""; }; - EBA1D7604C213456DBF0E6F8C38BF068 /* RLMMigration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMMigration.h; path = include/RLMMigration.h; sourceTree = ""; }; - ED940207DB28AA7483B3D31A5E1CB84C /* EventOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventOptions.swift; path = Sources/Amplitude/Events/EventOptions.swift; sourceTree = ""; }; - EDC373898DAF7FFB6F27DB4BAE49E648 /* Group.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Group.swift; path = Sources/Private/Model/ShapeItems/Group.swift; sourceTree = ""; }; - EE276FBCF3332109045CC95F9FA881DF /* RLMEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMEvent.h; path = include/RLMEvent.h; sourceTree = ""; }; - EE6D616EBB84C9DC6B6C1E3C832301F9 /* BezierPathRoundExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BezierPathRoundExtension.swift; path = Sources/Private/Utility/Primitives/BezierPathRoundExtension.swift; sourceTree = ""; }; - EE9805BE277706C04C79D1293FFBAE8F /* LayerModel+makeAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "LayerModel+makeAnimationLayer.swift"; path = "Sources/Private/CoreAnimation/Layers/LayerModel+makeAnimationLayer.swift"; sourceTree = ""; }; - EEABD10E1A7FF1E5C6FFE8ABC9101796 /* PreCompLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompLayer.swift; path = Sources/Private/CoreAnimation/Layers/PreCompLayer.swift; sourceTree = ""; }; - EF80F5192A52DB28BBDFD5ED930232B3 /* GradientFillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift; sourceTree = ""; }; - F089FD081FD8AED0737340E3ACCC220E /* AmplitudeSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AmplitudeSwift.release.xcconfig; sourceTree = ""; }; - F3293DD6F2F74BD69F152AAACC0D9D31 /* DidDisplayProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DidDisplayProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/DidDisplayProviding.swift; sourceTree = ""; }; - F3CC133D57D32A1D3A52EF21C9E1081B /* AnyValueContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyValueContainer.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift; sourceTree = ""; }; - F3F17FC60596226EC31A4D2F8DFC2D01 /* EffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/EffectValue.swift; sourceTree = ""; }; - F419AB987C9FB1F50D9261CC2D4BE8B3 /* MutableSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MutableSet.swift; path = RealmSwift/MutableSet.swift; sourceTree = ""; }; - F455AAC966493F2EC7E8FF0F6851AEBC /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = RealmSwift/Combine.swift; sourceTree = ""; }; - F550180DDC544B8FA18FCF3ACE5EC3F9 /* CallbackContextEpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackContextEpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/CallbackContextEpoxyModeled.swift; sourceTree = ""; }; - F561B2FC8A4D401A83E9874A09B3ED00 /* CALayer+fillBounds.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+fillBounds.swift"; path = "Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift"; sourceTree = ""; }; - F802AF2917E9AA77899AB8FAFAD7BC7B /* CGPointExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CGPointExtension.swift; path = Sources/Private/Utility/Primitives/CGPointExtension.swift; sourceTree = ""; }; - F86EFE37E4E5F84050E765D3822AFD27 /* UIColorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColorExtension.swift; path = Sources/Public/iOS/UIColorExtension.swift; sourceTree = ""; }; - F96B93C565C1050B7E7DCB83B93B07A2 /* Realm-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Realm-dummy.m"; sourceTree = ""; }; - F96C9DDBCF215AF301733D358E2CE465 /* NSError+RLMSync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+RLMSync.h"; path = "include/NSError+RLMSync.h"; sourceTree = ""; }; - F98B0EA7611FD0E8C7A18091E3636D60 /* LegacyDatabaseStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LegacyDatabaseStorage.swift; path = Sources/Amplitude/Migration/LegacyDatabaseStorage.swift; sourceTree = ""; }; - FA703F82DA6E9DA67358F00BB1E07934 /* Schema.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Schema.swift; path = RealmSwift/Schema.swift; sourceTree = ""; }; - FA881E27EE7EE0C5451AF5348C2CE77A /* VendorSystem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VendorSystem.swift; path = Sources/Amplitude/Plugins/Vendors/VendorSystem.swift; sourceTree = ""; }; - FAA262080A3BDCF01B24AFFCCC65D45D /* RLMObjectBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectBase.h; path = include/RLMObjectBase.h; sourceTree = ""; }; - FB271E0B57884464C02F1575DB0846E1 /* BaseAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BaseAnimationLayer.swift; path = Sources/Private/CoreAnimation/Layers/BaseAnimationLayer.swift; sourceTree = ""; }; - FB50DB2073C61895245BE1ECEA3AF1C1 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RealmSwift/Error.swift; sourceTree = ""; }; - FB543F2A515EE8F7B49F875E6678D31F /* Archive+MemoryFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+MemoryFile.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+MemoryFile.swift"; sourceTree = ""; }; - FB94B48EC9D489EFEE199FF3A179173C /* Toast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Toast.swift; path = Toast/Toast.swift; sourceTree = ""; }; - FB964C982DD9A455386AEEAC17CE0EE7 /* PathOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift; sourceTree = ""; }; - FB9DF0E023DBC2C70D66912158736B06 /* SwiftUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftUI.swift; path = RealmSwift/SwiftUI.swift; sourceTree = ""; }; - FBF988A3DF82940B3C0192114590B5B7 /* LottieView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieView.swift; path = Sources/Public/Animation/LottieView.swift; sourceTree = ""; }; - FC2917C357635BB6EEEAB437708E9D8F /* Realm-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Realm-Info.plist"; sourceTree = ""; }; + D62AC1C83B72512C076016BA92DC3350 /* KeypathSearchable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeypathSearchable.swift; path = Sources/Private/MainThread/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift; sourceTree = ""; }; + D68FD9228D0FDB3EC91620C34D6F18EA /* UITabBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBar+Rx.swift"; path = "RxCocoa/iOS/UITabBar+Rx.swift"; sourceTree = ""; }; + D6A9E2EEB4981BE4B5CD3A9F16905AD8 /* Deferred.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deferred.swift; path = RxSwift/Observables/Deferred.swift; sourceTree = ""; }; + D6B4D134F48128AA95E47E6A0F6639BF /* RLMAsymmetricObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMAsymmetricObject.h; path = include/RLMAsymmetricObject.h; sourceTree = ""; }; + D6F873B3B4CEFB5E2364CA12CF18208E /* ErasedContentProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ErasedContentProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ErasedContentProviding.swift; sourceTree = ""; }; + D7264331C9E4073714A8CB32782E158F /* DotLottieCacheProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DotLottieCacheProvider.swift; path = Sources/Public/DotLottie/Cache/DotLottieCacheProvider.swift; sourceTree = ""; }; + D8AE4B78534F1C228BAB9B3F1D70A0B6 /* CALayer+setupLayerHierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+setupLayerHierarchy.swift"; path = "Sources/Private/CoreAnimation/Layers/CALayer+setupLayerHierarchy.swift"; sourceTree = ""; }; + D8AF0097E65B9B2347C526BF3C611D86 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + D8B496F3656EACCE6BB9DAEDBD8BF095 /* SharedSequence+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift"; sourceTree = ""; }; + D911F1F22D4B0DC5B1B5952B5CE49190 /* TrimPathNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrimPathNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift; sourceTree = ""; }; + D99D4B7D9EEA877DFC136342FED19365 /* Just.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Just.swift; path = RxSwift/Observables/Just.swift; sourceTree = ""; }; + D9E5F45A99E1ED80DC6DFE8FFDD344B4 /* ImageAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageAsset.swift; path = Sources/Private/Model/Assets/ImageAsset.swift; sourceTree = ""; }; + DA15E36C3D2C47D605C23438DE603F99 /* NSError+RLMSync.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+RLMSync.m"; path = "Realm/NSError+RLMSync.m"; sourceTree = ""; }; + DA221B22E38A914664FA415A3768ED16 /* LRUAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LRUAnimationCache.swift; path = Sources/Public/AnimationCache/LRUAnimationCache.swift; sourceTree = ""; }; + DA2A0C135790DFE7166F3CB4645A9A32 /* GradientFillNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFillNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift; sourceTree = ""; }; + DA9056B65C1EF8B5A8D110B44181AD35 /* TransformLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TransformLayer.swift; path = Sources/Private/CoreAnimation/Layers/TransformLayer.swift; sourceTree = ""; }; + DB5E6C376F7E550AB056639C5F383CA0 /* _RXObjCRuntime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXObjCRuntime.m; path = RxCocoa/Runtime/_RXObjCRuntime.m; sourceTree = ""; }; + DB6412A09081951A5C46F4026A700AA4 /* BundleImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BundleImageProvider.swift; path = Sources/Public/iOS/BundleImageProvider.swift; sourceTree = ""; }; + DC151FA6EAFD79A22D7FF0FD706471CD /* Completable+AndThen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Completable+AndThen.swift"; path = "RxSwift/Traits/PrimitiveSequence/Completable+AndThen.swift"; sourceTree = ""; }; + DC236BFC9A2DB42649A285C0019D2A4C /* RLMBSON.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMBSON.mm; path = Realm/RLMBSON.mm; sourceTree = ""; }; + DC5F3C28EE206CF618619666A7EA09A4 /* AssetLibrary.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssetLibrary.swift; path = Sources/Private/Model/Assets/AssetLibrary.swift; sourceTree = ""; }; + DCC3C15E10A3AC0B7184E35FC48695B9 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + DD2052E50E103A95B8D3C61BDE85AB60 /* LayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerModel.swift; path = Sources/Private/Model/Layers/LayerModel.swift; sourceTree = ""; }; + DD4BE5D6468F1DCD9C5B79EEE935F8F8 /* AmplitudeDestinationPlugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AmplitudeDestinationPlugin.swift; path = Sources/Amplitude/Plugins/AmplitudeDestinationPlugin.swift; sourceTree = ""; }; + DD9A460DF422E34A9D13E0FE004A0E9A /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + DDE8252767700D860BEDA5F5A0CADA05 /* Any+Equatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Any+Equatable.swift"; path = "RxTest/Any+Equatable.swift"; sourceTree = ""; }; + DDED7A44A21A5623DB60C14C6D83D8B0 /* RLMAnalytics.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMAnalytics.mm; path = Realm/RLMAnalytics.mm; sourceTree = ""; }; + DDF8028CAA9CBF861B737A60512267C4 /* UIDatePicker+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDatePicker+Rx.swift"; path = "RxCocoa/iOS/UIDatePicker+Rx.swift"; sourceTree = ""; }; + DE10937CD839AEA9524A2518C0777C86 /* RLMRealm+Sync.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RLMRealm+Sync.h"; path = "include/RLMRealm+Sync.h"; sourceTree = ""; }; + DE646227FA81878914174D0021B4AC93 /* RootAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RootAnimationLayer.swift; path = Sources/Private/RootAnimationLayer.swift; sourceTree = ""; }; + DE9BA063794CE533B2B7560A89AFC667 /* UIApplication+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+Rx.swift"; path = "RxCocoa/iOS/UIApplication+Rx.swift"; sourceTree = ""; }; + DF3165382A66DA196C34ACCB96F6AFA1 /* TextInput.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextInput.swift; path = RxCocoa/Common/TextInput.swift; sourceTree = ""; }; + DF7B5C304E1B36D8D2BE47858CC3B76B /* ObserverType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverType.swift; path = RxSwift/ObserverType.swift; sourceTree = ""; }; + DF8665C4070E689D47FA28B1461794F9 /* RealmSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RealmSwift.modulemap; sourceTree = ""; }; + DFE228D3E249E011CEF879ED6BF7F160 /* RxCollectionViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; + DFE33CD99B23141B8AFCBAA91F096F79 /* PersistedProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PersistedProperty.swift; path = RealmSwift/PersistedProperty.swift; sourceTree = ""; }; + E03B48B1F9A46AA29113939A8047B938 /* RLMObjectBase_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMObjectBase_Private.h; path = include/RLMObjectBase_Private.h; sourceTree = ""; }; + E057B584725E8568504D18EBB3888B5A /* ShapeCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/ShapeCompositionLayer.swift; sourceTree = ""; }; + E0C1B88DB2AEB2FEFBBE71D6FFDFFE9D /* Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reduce.swift; path = RxSwift/Observables/Reduce.swift; sourceTree = ""; }; + E10DC33ED82F903929824DEC996C732A /* StringExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringExtensions.swift; path = Sources/Private/Utility/Extensions/StringExtensions.swift; sourceTree = ""; }; + E12E6376F912E76BF73F1D84D4F17515 /* RLMLogger_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMLogger_Private.h; path = include/RLMLogger_Private.h; sourceTree = ""; }; + E12F326CB79AB386EFBE87BF3ABD80B7 /* AnimationTime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationTime.swift; path = Sources/Public/Primitives/AnimationTime.swift; sourceTree = ""; }; + E176483703262CDC89222DE31103618A /* AnimationCacheProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationCacheProvider.swift; path = Sources/Public/AnimationCache/AnimationCacheProvider.swift; sourceTree = ""; }; + E18B947D96079060FD81A44AA56758C0 /* RLMRealmConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMRealmConfiguration.h; path = include/RLMRealmConfiguration.h; sourceTree = ""; }; + E1E52076AB010B535872F3E2290C5113 /* EpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModeled.swift; sourceTree = ""; }; + E1FD67C6CD86BD3064EAE2D549771CBD /* CoreAnimationLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CoreAnimationLayer.swift; path = Sources/Private/CoreAnimation/CoreAnimationLayer.swift; sourceTree = ""; }; + E21EC97CCAF4505B503D36BB7A62F2E6 /* RLMSwiftObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSwiftObject.h; path = include/RLMSwiftObject.h; sourceTree = ""; }; + E244D34D5D8A1516ECE297F206C69A9E /* lottie-ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.release.xcconfig"; sourceTree = ""; }; + E2BF8BDDF829D0E05B050CC2AC3DA3E7 /* RxTabBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift; sourceTree = ""; }; + E31D1AD29B3D6B53F32577884DC59C2F /* OpacityAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OpacityAnimation.swift; path = Sources/Private/CoreAnimation/Animations/OpacityAnimation.swift; sourceTree = ""; }; + E372A7FE022080FC8C96158C85665B48 /* RLMSyncSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncSubscription.h; path = include/RLMSyncSubscription.h; sourceTree = ""; }; + E41CB4A1DE8211F0FA0150F575578427 /* RLMManagedDictionary.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMManagedDictionary.mm; path = Realm/RLMManagedDictionary.mm; sourceTree = ""; }; + E44074341936E86C93E247952811FF54 /* Pods-AVIROTests */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-AVIROTests"; path = "libPods-AVIROTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E4D8BC5AF7180E5118BD40FFA4ADF4B9 /* UIViewConfiguringSwiftUIView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIViewConfiguringSwiftUIView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/SwiftUI/UIViewConfiguringSwiftUIView.swift; sourceTree = ""; }; + E57A6187C5E85AE877C63DDDFF75F46F /* HistoricalSchedulerTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalSchedulerTimeConverter.swift; path = RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift; sourceTree = ""; }; + E63619745896A934AE278E17F58DA3B2 /* RLMPredicateUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMPredicateUtil.mm; path = Realm/RLMPredicateUtil.mm; sourceTree = ""; }; + E68139A80D76B00EDA968764F3B3449A /* Realm.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Realm.swift; path = RealmSwift/Realm.swift; sourceTree = ""; }; + E697144E2F836628D0EF1F988E48798C /* UISwitch+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISwitch+Rx.swift"; path = "RxCocoa/iOS/UISwitch+Rx.swift"; sourceTree = ""; }; + E6FE2E02F190FC9B4A0435649E8C9A63 /* Archive+WritingDeprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+WritingDeprecated.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+WritingDeprecated.swift"; sourceTree = ""; }; + E6FF510C123E469BD34A5CE298355E53 /* Infallible+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Operators.swift"; path = "RxSwift/Traits/Infallible/Infallible+Operators.swift"; sourceTree = ""; }; + E711D9BE08F6411E387B1DD6E3C4B0CC /* SerialDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDisposable.swift; path = RxSwift/Disposables/SerialDisposable.swift; sourceTree = ""; }; + E72CCAF8F4D7F43385D6CE14A0699C93 /* RealmCollectionImpl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RealmCollectionImpl.swift; path = RealmSwift/Impl/RealmCollectionImpl.swift; sourceTree = ""; }; + E73D980ABDFE1AFA38A348986FB05061 /* MaskContainerLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MaskContainerLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/MaskContainerLayer.swift; sourceTree = ""; }; + E78739A2741CBF2B86358EAF57193D02 /* Revenue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Revenue.swift; path = Sources/Amplitude/Events/Revenue.swift; sourceTree = ""; }; + E78883F5A05E743DA35DBAE01EEB8522 /* RectangleAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RectangleAnimation.swift; path = Sources/Private/CoreAnimation/Animations/RectangleAnimation.swift; sourceTree = ""; }; + E7D1BDB455434610F24CF94AEEFFF63E /* RLMSyncConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMSyncConfiguration.h; path = include/RLMSyncConfiguration.h; sourceTree = ""; }; + E7FEA2A54651E065B2372F5E8AC8300E /* Maybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Maybe.swift; path = RxSwift/Traits/PrimitiveSequence/Maybe.swift; sourceTree = ""; }; + E802536029710822E45FFFAC1F47FFDB /* RLMSwiftValueStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSwiftValueStorage.mm; path = Realm/RLMSwiftValueStorage.mm; sourceTree = ""; }; + E80DBBC2ECBBE61D6781FDDF6CD9A92E /* Aliases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Aliases.swift; path = RealmSwift/Aliases.swift; sourceTree = ""; }; + E81382070E2871E3D5635C3947818820 /* SizeValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift; sourceTree = ""; }; + E858102593AE2F926B312B1CF24A1F5D /* SyncSubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SyncSubscription.swift; path = RealmSwift/SyncSubscription.swift; sourceTree = ""; }; + E8602EBA3E0AE78AA4FA16BCE00D0B09 /* AnyEpoxyModelProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyEpoxyModelProperty.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Internal/AnyEpoxyModelProperty.swift; sourceTree = ""; }; + E861D91ED730AAE5A74DCBFCFD6BB361 /* CallbackContextEpoxyModeled.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackContextEpoxyModeled.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/CallbackContextEpoxyModeled.swift; sourceTree = ""; }; + E867D8AAE484D20063E19781169F0E87 /* Single.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Single.swift; path = RxSwift/Traits/PrimitiveSequence/Single.swift; sourceTree = ""; }; + E87A4DD1639C457A4A2D92A34EE8F890 /* RLMApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMApp.h; path = include/RLMApp.h; sourceTree = ""; }; + E8A63D15D3511F102342E5C6615BE104 /* Archive+MemoryFile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+MemoryFile.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+MemoryFile.swift"; sourceTree = ""; }; + E8EB1E152D79133E40F042E410819375 /* BlendMode+Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BlendMode+Filter.swift"; path = "Sources/Private/Utility/Extensions/BlendMode+Filter.swift"; sourceTree = ""; }; + E910CFC74C7DFF1D534FC1C7A59E32F8 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + E945876CA8660424C8409B251E6884C4 /* RxSwift-framework-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "RxSwift-framework-Info.plist"; sourceTree = ""; }; + E973C0AD313FA185D7883A70B3DB644E /* LottieViewType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieViewType.swift; path = Sources/Public/Controls/LottieViewType.swift; sourceTree = ""; }; + E9757F3F59B16B4D82E1F1DDBBA3BED8 /* GroupedObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupedObservable.swift; path = RxSwift/GroupedObservable.swift; sourceTree = ""; }; + E9A4BC02E4DC98E9CB9E27523ACC4AE6 /* GradientStrokeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStrokeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift; sourceTree = ""; }; + EA11571C4BABF534A56CE14A1EF12F31 /* Repeater.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeater.swift; path = Sources/Private/Model/ShapeItems/Repeater.swift; sourceTree = ""; }; + EA147900BE16AF6C402F21095E70956D /* KeyPathStrings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyPathStrings.swift; path = RealmSwift/Impl/KeyPathStrings.swift; sourceTree = ""; }; + EA3445FFF1C35F96331D1FC35F9F414F /* RLMObjectId.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObjectId.mm; path = Realm/RLMObjectId.mm; sourceTree = ""; }; + EA62B21A257098E5120BE54B840D34D3 /* RxCocoa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxCocoa-dummy.m"; sourceTree = ""; }; + EAD09C3AC43773E0D9A661DA671C6CDF /* RLMSectionedResults.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSectionedResults.mm; path = Realm/RLMSectionedResults.mm; sourceTree = ""; }; + EAD1ECFE4ADB4A2C9F6CAFF6B543DE3A /* Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signal.swift; path = RxCocoa/Traits/Signal/Signal.swift; sourceTree = ""; }; + EB010A7CC60229C280D8DEB4197F53D0 /* NMapsMap.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NMapsMap.debug.xcconfig; sourceTree = ""; }; + EB6E082117EAA5550B3E9DEDBCDABBF9 /* StyledView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyledView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/StyledView.swift; sourceTree = ""; }; + EB825B25516F0A88B6ABB051A0A124C6 /* ImmediateSchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmediateSchedulerType.swift; path = RxSwift/ImmediateSchedulerType.swift; sourceTree = ""; }; + EBAB1CB1D7370132460AF15D8F9856BD /* Generate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Generate.swift; path = RxSwift/Observables/Generate.swift; sourceTree = ""; }; + EBB0D18520BF27C53AEBD3965BC1FE23 /* InvertedMatteLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvertedMatteLayer.swift; path = Sources/Private/MainThread/LayerContainers/Utility/InvertedMatteLayer.swift; sourceTree = ""; }; + EC009036D9AAF3452B9437DA829D09A2 /* RxCocoa-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-umbrella.h"; sourceTree = ""; }; + EC7B217C9D4C24899033F25CE430B075 /* Archive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Archive.swift; path = Sources/Private/EmbeddedLibraries/ZipFoundation/Archive.swift; sourceTree = ""; }; + EC8D2F0562C5AD4AAA419046AC189284 /* BehaviorsConfigurableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorsConfigurableView.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Views/BehaviorsConfigurableView.swift; sourceTree = ""; }; + EC8D69334EEAEA2ED82B23299D31F5D5 /* Sync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sync.swift; path = RealmSwift/Sync.swift; sourceTree = ""; }; + ECC0D2257CF566B6350F3B2D1AE69AB7 /* TakeWithPredicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeWithPredicate.swift; path = RxSwift/Observables/TakeWithPredicate.swift; sourceTree = ""; }; + ED1C9A4979104E0884B5ACF57A3F3DC9 /* StrokeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift; sourceTree = ""; }; + ED20397C703C8C2D2ED3BC2D12EBD19C /* EpoxyModelArrayBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EpoxyModelArrayBuilder.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/EpoxyModelArrayBuilder.swift; sourceTree = ""; }; + ED31C1AE4B6B478BC1C5335307471591 /* Binding+Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Binding+Map.swift"; path = "Sources/Private/Utility/Helpers/Binding+Map.swift"; sourceTree = ""; }; + ED5622CFFD5E05DAAF8EEA1C8AD56EDA /* LayerEffect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerEffect.swift; path = Sources/Private/Model/LayerEffects/LayerEffect.swift; sourceTree = ""; }; + ED7C4E0654D6EC2A2FBE08C20B3A4978 /* RLMCredentials.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMCredentials.mm; path = Realm/RLMCredentials.mm; sourceTree = ""; }; + ED81A592D8ACE6FE251C739B6D970581 /* BezierPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BezierPath.swift; path = Sources/Private/Utility/Primitives/BezierPath.swift; sourceTree = ""; }; + EDB433E24090A614B8F0B6A25EB5F955 /* TestHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestHelpers.swift; path = Sources/Private/Utility/Debugging/TestHelpers.swift; sourceTree = ""; }; + EDC26AAE1A6DB7239A66B105AD495872 /* RLMAPIKeyAuth.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMAPIKeyAuth.mm; path = Realm/RLMAPIKeyAuth.mm; sourceTree = ""; }; + EDD4BB34E5589781E376828F325CDD52 /* RLMValue.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMValue.mm; path = Realm/RLMValue.mm; sourceTree = ""; }; + EE03CB20521FB460928545771A728B89 /* RLMSyncManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSyncManager.mm; path = Realm/RLMSyncManager.mm; sourceTree = ""; }; + EE0F67671B890B3CA6A7ED1BA5E34512 /* ObservableConvertibleType+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Driver.swift"; path = "RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift"; sourceTree = ""; }; + EE1310F2915BBD3692B996F4F25C27D1 /* Toast-Swift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Toast-Swift-dummy.m"; sourceTree = ""; }; + EE2E86D6CDE8AE727E28013651EB4638 /* ViewProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/ViewProviding.swift; sourceTree = ""; }; + EE31A23837332C96DF9A51A44C6AFBCA /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + EE701527182A0A865BEA3E87B73BEE4C /* HistoricalScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalScheduler.swift; path = RxSwift/Schedulers/HistoricalScheduler.swift; sourceTree = ""; }; + EE88B14F80923C07009DBC98E1454066 /* RxCocoaRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoaRuntime.h; path = RxCocoa/Runtime/include/RxCocoaRuntime.h; sourceTree = ""; }; + EF4D5F9BC7534DDF5A9E15AAE7A9A4AE /* SetContentProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SetContentProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetContentProviding.swift; sourceTree = ""; }; + EF50B1B410F5AA049299ECBD7F6CAEAC /* EllipseNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EllipseNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift; sourceTree = ""; }; + EF58C55710814E316DACF05BBD80E384 /* RxCollectionViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift; sourceTree = ""; }; + EF63BC0AD430C351E771F71A57E674B8 /* CompositeDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositeDisposable.swift; path = RxSwift/Disposables/CompositeDisposable.swift; sourceTree = ""; }; + EF926AE70A68337A9C7C741B88EF6D07 /* TestScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestScheduler.swift; path = RxTest/Schedulers/TestScheduler.swift; sourceTree = ""; }; + EFA3F2ABB67D05296195FBC5098DB9DD /* RLMEmbeddedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMEmbeddedObject.h; path = include/RLMEmbeddedObject.h; sourceTree = ""; }; + EFD465D2767EB8DABB8B8494FC7D9277 /* InMemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InMemoryStorage.swift; path = Sources/Amplitude/Storages/InMemoryStorage.swift; sourceTree = ""; }; + F031ECF4F27C68D363C9BFCB739F1E21 /* UrlExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UrlExtension.swift; path = Sources/Amplitude/Utilities/UrlExtension.swift; sourceTree = ""; }; + F055B08EC70088A43D3C0C6A2EEDDA9E /* SolidLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidLayer.swift; path = Sources/Private/CoreAnimation/Layers/SolidLayer.swift; sourceTree = ""; }; + F0FAD295B22F6744E34A60F580D7B540 /* RxBlocking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxBlocking.release.xcconfig; sourceTree = ""; }; + F108155AC694055D24110B36BD0ED2E8 /* RLMMigration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMMigration.h; path = include/RLMMigration.h; sourceTree = ""; }; + F12A5A8FEEA8CA0E5A9DA11F15BA80B5 /* Observable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Observable.swift; path = RxSwift/Observable.swift; sourceTree = ""; }; + F1B43608C474DDBFEDFD8A7770AE6C9A /* PassThroughOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PassThroughOutputNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift; sourceTree = ""; }; + F1BC9BC404D031AD4024077495C2D358 /* AtomicInt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicInt.swift; path = Platform/AtomicInt.swift; sourceTree = ""; }; + F1E6D783574575CFAE5293E230B05B7A /* CustomPersistable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomPersistable.swift; path = RealmSwift/CustomPersistable.swift; sourceTree = ""; }; + F205826CF53F221C55766668B310CD4A /* RenderNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RenderNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Protocols/RenderNode.swift; sourceTree = ""; }; + F222CE05707FE466417BDE2C4E09FE88 /* CALayer+fillBounds.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CALayer+fillBounds.swift"; path = "Sources/Private/CoreAnimation/Extensions/CALayer+fillBounds.swift"; sourceTree = ""; }; + F22F893F7B8E356A9DD7A79AEDDA25CE /* ReducedMotionOption.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReducedMotionOption.swift; path = Sources/Public/Configuration/ReducedMotionOption.swift; sourceTree = ""; }; + F24EF2C380DBF740D379E27400A4BD98 /* Migration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Migration.swift; path = RealmSwift/Migration.swift; sourceTree = ""; }; + F26C5A9EFD42C2FBD808172944C45B6F /* RLMScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMScheduler.h; path = include/RLMScheduler.h; sourceTree = ""; }; + F277B566777F38A7BC6D7D74B6174567 /* RxCocoa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-prefix.pch"; sourceTree = ""; }; + F2A3FDA53B7E94FCB3AC69C9A60091C1 /* SolidCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidCompositionLayer.swift; path = Sources/Private/MainThread/LayerContainers/CompLayers/SolidCompositionLayer.swift; sourceTree = ""; }; + F2ECAD6367127B7436A19BEF9ADD73DA /* AnyEquatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyEquatable.swift; path = Sources/Private/Utility/Helpers/AnyEquatable.swift; sourceTree = ""; }; + F306D24C58AA4738DBA94EE688D5F7A4 /* AnimatedButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedButton.swift; path = Sources/Public/Controls/AnimatedButton.swift; sourceTree = ""; }; + F3128FBBACBC135964B73663F79EEB39 /* Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Driver.swift; path = RxCocoa/Traits/Driver/Driver.swift; sourceTree = ""; }; + F3552A1395238920B84C2D2BD9220392 /* Query.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Query.swift; path = RealmSwift/Query.swift; sourceTree = ""; }; + F3586744DE24EEB74E72D22609E4D588 /* ObjectId.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectId.swift; path = RealmSwift/ObjectId.swift; sourceTree = ""; }; + F3B044360A919095E16B9048E9481604 /* RxSwift-framework-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-framework-prefix.pch"; sourceTree = ""; }; + F3FBF547E580E4FC8AB88FC2CDD9A1DE /* AddRef.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AddRef.swift; path = RxSwift/Observables/AddRef.swift; sourceTree = ""; }; + F424ADC6E5EF30A7D44EC381592B5437 /* BasicTypes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BasicTypes.swift; path = RealmSwift/Impl/BasicTypes.swift; sourceTree = ""; }; + F466807AFB0D67AB2617BF836B3A4FA4 /* RLMConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RLMConstants.m; path = Realm/RLMConstants.m; sourceTree = ""; }; + F4C1AA464B02383FB990C642B5F53D00 /* SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SharedSequence.swift; path = RxCocoa/Traits/SharedSequence/SharedSequence.swift; sourceTree = ""; }; + F52EF652738EA87B2BE89981D156DC02 /* CustomPathAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CustomPathAnimation.swift; path = Sources/Private/CoreAnimation/Animations/CustomPathAnimation.swift; sourceTree = ""; }; + F594C59F98F8FB78B84D28682A26C838 /* AnimationKeypath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationKeypath.swift; path = Sources/Public/DynamicProperties/AnimationKeypath.swift; sourceTree = ""; }; + F642CC2AB45B83C3E7E7D2909A156AF0 /* Pods-AVIROTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AVIROTests.debug.xcconfig"; sourceTree = ""; }; + F66421D316977E885E1366885D9FEA16 /* State.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = State.swift; path = Sources/Amplitude/State.swift; sourceTree = ""; }; + F682BA1971024A5C3E4250D013E7435D /* PublishRelay+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PublishRelay+Signal.swift"; path = "RxCocoa/Traits/Signal/PublishRelay+Signal.swift"; sourceTree = ""; }; + F74942741CDEE0CBD5033ACF8A764AD4 /* Throttle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Throttle.swift; path = RxSwift/Observables/Throttle.swift; sourceTree = ""; }; + F778C756E167543C9A90FD3FA712A350 /* MutableSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MutableSet.swift; path = RealmSwift/MutableSet.swift; sourceTree = ""; }; + F7935061DFC786FD7D4D79C03D01F489 /* Signal+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Signal+Subscription.swift"; path = "RxCocoa/Traits/Signal/Signal+Subscription.swift"; sourceTree = ""; }; + F8381A9139BE63FA2FB1DC1A067F519C /* URLSession+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSession+Rx.swift"; path = "RxCocoa/Foundation/URLSession+Rx.swift"; sourceTree = ""; }; + F86C6BD69088682E7DAEC4758D18E02E /* SkipWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipWhile.swift; path = RxSwift/Observables/SkipWhile.swift; sourceTree = ""; }; + F93414B33AE0190AE2A34CF706072B37 /* AnimatedProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/AnimatedProviding.swift; sourceTree = ""; }; + F9522CCF57C949F7E499FF5DD03AD5F7 /* RLMQueryUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMQueryUtil.mm; path = Realm/RLMQueryUtil.mm; sourceTree = ""; }; + F9CE946D1EC38DA41A1A646078485929 /* UICollectionView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+Rx.swift"; path = "RxCocoa/iOS/UICollectionView+Rx.swift"; sourceTree = ""; }; + F9ED9968E6FD4781C1E15D25E1E9E15A /* SetBehaviorsProviding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SetBehaviorsProviding.swift; path = Sources/Private/EmbeddedLibraries/EpoxyCore/Model/Providers/SetBehaviorsProviding.swift; sourceTree = ""; }; + FA504942A57612F81E1002D93F388D9C /* ColorEffectValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorEffectValue.swift; path = Sources/Private/Model/LayerEffects/EffectValues/ColorEffectValue.swift; sourceTree = ""; }; + FAFDA64774D329E70B5BF77B89899B67 /* RxSwift-framework.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "RxSwift-framework.modulemap"; sourceTree = ""; }; + FB22CA870029FC140B876EFE6D0F9BB0 /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Sources/Amplitude/Configuration.swift; sourceTree = ""; }; + FB7C7803757167E5C73E20C7585E68EF /* InvocableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableType.swift; path = RxSwift/Schedulers/Internal/InvocableType.swift; sourceTree = ""; }; + FB85F6F3191526F64F447E31EEFD4244 /* RxSwift-framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "RxSwift-framework"; path = RxSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; FC44524D343C3B738F0361E1E8AE2679 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; - FC4711E286E0ACB6160C1FD31670557A /* RLMDecimal128.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMDecimal128.h; path = include/RLMDecimal128.h; sourceTree = ""; }; - FC723E6C64B20EC24D5BBCF818D8ADFB /* NSError+RLMSync.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+RLMSync.m"; path = "Realm/NSError+RLMSync.m"; sourceTree = ""; }; - FCA618AFFBEC22D0B0868016477DCB50 /* Font.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Font.swift; path = Sources/Private/Model/Text/Font.swift; sourceTree = ""; }; - FCC2F218AAFF8A5E4DE851A4AF6DDD9E /* LayerTextProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerTextProvider.swift; path = Sources/Private/MainThread/LayerContainers/Utility/LayerTextProvider.swift; sourceTree = ""; }; - FD84B6CC54B055661967F44DB159C58D /* PolygonNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PolygonNode.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift; sourceTree = ""; }; - FD9005902C75823CFD67A7E8BCC645F8 /* Archive+Helpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Archive+Helpers.swift"; path = "Sources/Private/EmbeddedLibraries/ZipFoundation/Archive+Helpers.swift"; sourceTree = ""; }; - FE58487E2CB34093105100D75B14AD42 /* RLMManagedArray.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMManagedArray.mm; path = Realm/RLMManagedArray.mm; sourceTree = ""; }; - FF5ADE96BACD561E99A03905EC4663AC /* LottieAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieAnimationView.swift; path = Sources/Public/Animation/LottieAnimationView.swift; sourceTree = ""; }; + FC73C73F8937B7141C246B6A71F8F916 /* RLMAsyncTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMAsyncTask.h; path = include/RLMAsyncTask.h; sourceTree = ""; }; + FC8ACBC2D80497CECFC57098E8B118D3 /* Pods-AVIRO.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AVIRO.modulemap"; sourceTree = ""; }; + FC9375186A2DEEF41444D81D40CE5E9B /* HttpClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HttpClient.swift; path = Sources/Amplitude/Utilities/HttpClient.swift; sourceTree = ""; }; + FC96A54EB814FD7965A1D7A5AE74CAF8 /* List.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = List.swift; path = RealmSwift/List.swift; sourceTree = ""; }; + FCAF46AA5FAB0728FB3BDD9C07F9BC44 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + FCC4C21678DC6B14D8B8958BC10D2A65 /* GradientValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientValueProvider.swift; path = Sources/Public/DynamicProperties/ValueProviders/GradientValueProvider.swift; sourceTree = ""; }; + FCD68BD04D693964A5E9F1867AC711B6 /* RLMObjectSchema.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMObjectSchema.mm; path = Realm/RLMObjectSchema.mm; sourceTree = ""; }; + FD23EF836688F14BC6DA3BFE431F7331 /* LegacyGradientFillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LegacyGradientFillRenderer.swift; path = Sources/Private/MainThread/NodeRenderSystem/Nodes/OutputNodes/Renderables/LegacyGradientFillRenderer.swift; sourceTree = ""; }; + FD38BEBDC7FC0EDD36F43573A3311449 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = RxSwift/Observables/Filter.swift; sourceTree = ""; }; + FD52D29D79E4F075B1F9E8C43822CCDB /* SchemaDiscovery.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchemaDiscovery.swift; path = RealmSwift/Impl/SchemaDiscovery.swift; sourceTree = ""; }; + FD5B0AFEB338B84613EC0F9108253236 /* RLMDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMDictionary.h; path = include/RLMDictionary.h; sourceTree = ""; }; + FDD4510330F3844965318013977AC5E5 /* KeyedDecodingContainerExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyedDecodingContainerExtensions.swift; path = Sources/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift; sourceTree = ""; }; + FDE09FFAC51CB12052320F2237E99EC9 /* Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rx.swift; path = RxSwift/Rx.swift; sourceTree = ""; }; + FDF5991BD010773334EBAB041F268DE1 /* Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeout.swift; path = RxSwift/Observables/Timeout.swift; sourceTree = ""; }; + FDF6605FE8C5C1DA836346D4A71D26C8 /* Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Do.swift; path = RxSwift/Observables/Do.swift; sourceTree = ""; }; + FE336D7F7560C735A67A074571EFEBAB /* RLMNetworkTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMNetworkTransport.h; path = include/RLMNetworkTransport.h; sourceTree = ""; }; + FE5365F2191B179405C44F9603022DE9 /* RLMUserAPIKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMUserAPIKey.h; path = include/RLMUserAPIKey.h; sourceTree = ""; }; + FEE0B8B8E821374435C065BA3DEF65AC /* Dematerialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dematerialize.swift; path = RxSwift/Observables/Dematerialize.swift; sourceTree = ""; }; + FEF65C0B1B62EEF12B279F9110555D13 /* FilepathImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FilepathImageProvider.swift; path = Sources/Public/iOS/FilepathImageProvider.swift; sourceTree = ""; }; + FF004AB2087E2C8D9D2ECFDA3917162B /* RLMSyncUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RLMSyncUtil.mm; path = Realm/RLMSyncUtil.mm; sourceTree = ""; }; + FF8B264DFE802855D5D67E7CDDABFC3C /* RxRelay */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RxRelay; path = RxRelay.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FF8E9C62B7F963B81C0963D5F617C15B /* InterpolatableExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InterpolatableExtensions.swift; path = Sources/Private/Utility/Interpolatable/InterpolatableExtensions.swift; sourceTree = ""; }; + FFC11EFEA7C1989F0F6977016929C221 /* RLMResults_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RLMResults_Private.h; path = include/RLMResults_Private.h; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -1440,11 +2379,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 69370C78A7A718CA966AA65C00CF7A92 /* Frameworks */ = { + 7423C3C256154C4E2C02652F47F69065 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 785AAB8D341C2E92AA837AD70D3DC9B3 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1456,6 +2394,44 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9EF85C94E7BAB4A14B2DB3232DB5A3AC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A9A85E640850CF31B51F0B1B64EE4678 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 7A7BB9BA0E4E854BA3D032E6C8F29419 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BD238331BC659B1005A5A11976205AD8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C2988204023F3A7E378FF972A80A3061 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8FAA12E0B74CC9E9095E4552610EEC28 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DA49154C1A9324F99E7F657B4B8DA600 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B58D12279898463AB061C35F192FD02D /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; DFB867F47C98FD09EF7F464FAB18623A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1476,351 +2452,495 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F9835ED9EACFE2FFBEF44FA264FE3181 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + A1EA0761AF94CF6B3B31205DB504004C /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE6A7D0E5CECCAE59C18546609F144B4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 0539F69CCA15969E16AAFB15D98A30DB /* Support Files */ = { + 078EEE3419808E92E23D5C132259B498 /* Support Files */ = { isa = PBXGroup; children = ( - 407CA2AA3F7E7651EBFC8CD775B9798A /* Realm.modulemap */, - F96B93C565C1050B7E7DCB83B93B07A2 /* Realm-dummy.m */, - FC2917C357635BB6EEEAB437708E9D8F /* Realm-Info.plist */, - B7E6C9C783750BCEFC26A7500938B1AB /* Realm-prefix.pch */, - 5E687C7973799573895B8918B9705A44 /* Realm-xcframeworks.sh */, - CB0542AFE9A466D579F55FE4E8FB9ABC /* Realm.debug.xcconfig */, - 877D491714C0976C918EF1138976B2D3 /* Realm.release.xcconfig */, + 74A2B6B4A9863EF6FBF08AB25CA5DA90 /* RxTest.modulemap */, + C09D185350515595E57516FBAEAE0896 /* RxTest-dummy.m */, + ACECED34D6B40952183779B7C57D4DB0 /* RxTest-prefix.pch */, + 26F0B13E686C0BEE2F4A6F9B43B19A2C /* RxTest-umbrella.h */, + 7C6DA66845AEE25E3F585B77166AA3D8 /* RxTest.debug.xcconfig */, + B3018B7253A24BA757BFF1080DEB6815 /* RxTest.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/Realm"; + path = "../Target Support Files/RxTest"; sourceTree = ""; }; - 0C5266E712F2B12CC65624B87D0A0474 /* Realm */ = { + 08D4577E37D632BE46C89AB124CD8EF8 /* RxCocoa */ = { isa = PBXGroup; children = ( - FC723E6C64B20EC24D5BBCF818D8ADFB /* NSError+RLMSync.m */, - 694A0826CE39C4E8042EE53DBFDA4CFB /* RLMAccessor.h */, - 609B2E1C5F12442C2E9A62FE275E14CD /* RLMAccessor.mm */, - 14463C884EED193CBF7610CAD2C21163 /* RLMAnalytics.mm */, - 0DEA9DE3C318B502D0DBD8879AAF5521 /* RLMAPIKeyAuth.mm */, - 569809F436CDA7A0B8A02B4D7F481B6E /* RLMApp.mm */, - 3537A564CA40319E278C5F26FFFFD0AB /* RLMApp_Private.h */, - 95121F1A519266FC9DE2328ED668863E /* RLMArray.mm */, - 2695BE0D783076A29AE9085839E78E5F /* RLMArray_Private.h */, - BA25DE0E2643B1EC0E980EB93C57D3DA /* RLMAsymmetricObject.mm */, - E719FAC32B6439554A3F98ED655FDBFB /* RLMAsyncTask.mm */, - 833154B62985F67515C31B2AA2330AB9 /* RLMAsyncTask_Private.h */, - 13CDF3A61238598CB8B872669B10AA06 /* RLMBSON.mm */, - 29328ED03E794306636E55752C6E4D8C /* RLMClassInfo.mm */, - D546DFEF778883664723A59336AEC8FF /* RLMCollection.mm */, - 41276D5A90A8EF06F419DE3CE2F110FC /* RLMCollection_Private.h */, - 228B1B220EEF798328F7F07F4748F621 /* RLMConstants.m */, - E55E357BB672D63E90EC8898484AC67C /* RLMCredentials.mm */, - 6E4211F97D893B0BF1B95850B33C1E90 /* RLMDecimal128.mm */, - 6997DB662B9D29F70ED81E000B79367E /* RLMDictionary.mm */, - B56B086CF8E7AED19CF31B55325C7292 /* RLMDictionary_Private.h */, - 443DCDC925739FA4A8ED2A3284A05CCA /* RLMEmailPasswordAuth.mm */, - 62051FAD237ECCFB4C1A2907AF6FE52D /* RLMEmbeddedObject.mm */, - E7278D42063B266927C137B897B91E7C /* RLMError.mm */, - EE276FBCF3332109045CC95F9FA881DF /* RLMEvent.h */, - 63C78F8404D6FE70C19FF1939EF8CAC3 /* RLMEvent.mm */, - B130981C1333EAD8EB807AD8C0E6363D /* RLMFindOneAndModifyOptions.mm */, - C29D41A0880A28EA8764059BCCA64CDE /* RLMFindOptions.mm */, - 16AB1B1DC60ECF0E6F7CD6C75AE3DFD7 /* RLMLogger.mm */, - 63EBA32DB11EF7F034BAF85CAE6122C4 /* RLMLogger_Private.h */, - FE58487E2CB34093105100D75B14AD42 /* RLMManagedArray.mm */, - 2FE5EAEF33F301D010D51E0F10AE6098 /* RLMManagedDictionary.mm */, - B871C9F09F74396AA67FB14A90BF44AF /* RLMManagedSet.mm */, - 61497CDAE7B6DEDB4FBDF9E8EFAFBAC1 /* RLMMigration.mm */, - 9F6E3793D92144D4B1F4BA1A7BA67116 /* RLMMongoClient.mm */, - 009142C8EEB227A4C4661864A387B645 /* RLMMongoCollection.mm */, - 2AF0A386C8092B507B15FA8A2127FEAD /* RLMMongoCollection_Private.h */, - 56C8D581AD0FD2B2A1F908C122895CAE /* RLMNetworkTransport.mm */, - 4A8EC6F8C9A2BD56C19829A0E610C4A0 /* RLMObject.mm */, - 7B7E4CF4A046A74618C0FFF8BE50143C /* RLMObject_Private.h */, - 874CF215F44323A34846CA3BB9A470DC /* RLMObjectBase.mm */, - 01C4F04FDDF605F4DDEE9132BA38F570 /* RLMObjectBase_Private.h */, - 5B62F4AF4BE8D8E741862E4B8D730EAF /* RLMObjectId.mm */, - 48C7EA9C0F5255EB80526C0C7A8E1381 /* RLMObjectSchema.mm */, - 31B11605C5202948EEA9D055DD650C76 /* RLMObjectSchema_Private.h */, - 9D2DC25EE3FE9F24ABFBA0B17D37180B /* RLMObjectStore.h */, - 642042E8E7920FCA1C7D48DA20237611 /* RLMObjectStore.mm */, - 37139FBFD634A8DAF09E9F36B9349D0C /* RLMObservation.mm */, - 0E4137D5675F38F9F883BFB7DA4A744D /* RLMPredicateUtil.mm */, - 9C4352D40FA10E001A7118FE41F226C7 /* RLMProperty.mm */, - 052FA441B3AC4CA70E99A90B0D3B946D /* RLMProperty_Private.h */, - 88042D1C2C2095E60B104647AD92863B /* RLMProviderClient.mm */, - 1FAFF516AF705128DDB08F71F98C01A0 /* RLMPushClient.mm */, - D5009CBC0719F1C6822BD50856E2B517 /* RLMQueryUtil.mm */, - 2D7BFA522990AF1B40C678DB197CDAEF /* RLMRealm.mm */, - DA3342EBCFFFC9D3E0DF0B8F3238DFDB /* RLMRealm+Sync.mm */, - BDC52D95A44EEA06BFFC6AAD76558623 /* RLMRealm_Private.h */, - 62D7D377A7772C7567216C0DA8969EAB /* RLMRealmConfiguration.mm */, - 90B4BBC0D6CB41BF138510B9A01A4D09 /* RLMRealmConfiguration_Private.h */, - E9B5CBDDCD883F275CE4AF17B372EEF0 /* RLMRealmUtil.mm */, - EB4186E564203C9C11072D5DC39E0F26 /* RLMResults.mm */, - 642BCEEBC24CEDE1A2A9CA998857D042 /* RLMResults_Private.h */, - D04BAB9F6A9BC7BFF141B7620856B60A /* RLMScheduler.h */, - 290FE647FEF822E128AEDE79660ED915 /* RLMScheduler.mm */, - D07E39D477AFAF2BC2CE650B5F518A14 /* RLMSchema.mm */, - 8EED4CEC8AE255627390E14EDE98E742 /* RLMSchema_Private.h */, - ADEB9DB1CF9CCD00F8E3651CF8CD604E /* RLMSectionedResults.mm */, - 2FE4A54EFB2AFC2BF2FA875380DAEF45 /* RLMSet.mm */, - 6A9319A800B87685589E57A6D6B11E8F /* RLMSet_Private.h */, - 6E8553BD96653C39A80C043A56F6D428 /* RLMSwiftCollectionBase.mm */, - 070563A556DAB724FCE32890BA09BB10 /* RLMSwiftProperty.h */, - 4C6F3C466944FBE6898A6A3E11A14E83 /* RLMSwiftSupport.m */, - 88EB86CBC697B67142CB037AE2F45B18 /* RLMSwiftValueStorage.mm */, - C766F1471E082B68A6AA50DD28B457CE /* RLMSyncConfiguration.mm */, - 156F0C27C261646D25016E1D22B5EFD4 /* RLMSyncConfiguration_Private.h */, - 4D7093C1B358D74989723745D0F1080E /* RLMSyncManager.mm */, - 22EBA8932E77F8B65697496399410BD3 /* RLMSyncSession.mm */, - 25CF51F01ACD45D5C9CF3FF604B82AEF /* RLMSyncSubscription.mm */, - CF8D54BCC02776B75CC58DC48EECF24F /* RLMSyncSubscription_Private.h */, - 929F6451FC43125A4FA045A6B2B7262E /* RLMSyncUtil.mm */, - 8066249011DD57CF1AB93F9862FD1926 /* RLMThreadSafeReference.mm */, - 9A78D4DD411D95BBCD453AE8D1C3AFF9 /* RLMUpdateChecker.mm */, - 6E3D77B0DC4188788BD4D6DB1C74D87A /* RLMUpdateResult.mm */, - 31D36292AFF2AC540AC703E5A92D0180 /* RLMUser.mm */, - 451EA1ACAC6C5BA6578EDD0EE4B69B13 /* RLMUser_Private.h */, - 1772FB2F3838C04E340923DD2196714A /* RLMUserAPIKey.mm */, - 1B8669F6FFD864F38DE570A0B7CF62CD /* RLMUtil.mm */, - AE608F7BD3F4149C14478C007723CFA6 /* RLMUUID.mm */, - E3DA3AB990D26181CBE5FFE6F2A0533A /* RLMValue.mm */, - 8BCE73E5C8E910E41FFDB6371FEEBC7F /* Frameworks */, - 54C704EBF1EC3AACC6363D758D5C6546 /* Headers */, - 0539F69CCA15969E16AAFB15D98A30DB /* Support Files */, + A874C206149B39BF14C57F5F87076353 /* _RX.h */, + 136DDABE6C86973B252803E7A37A6F48 /* _RX.m */, + 72A8FF17081019B8D99A324B18F4DF82 /* _RXDelegateProxy.h */, + D19B6A9B96810333E9927C72EF7DDEF4 /* _RXDelegateProxy.m */, + C13E6157035ECC8DAEFB457CBB6FBD73 /* _RXKVOObserver.h */, + A3A80D814438187DF312D8739946F79B /* _RXKVOObserver.m */, + C0C51F960E2286A775D3AC5DC73CE50C /* _RXObjCRuntime.h */, + DB5E6C376F7E550AB056639C5F383CA0 /* _RXObjCRuntime.m */, + 59832376EA6C94389397CB9936A9D322 /* Bag.swift */, + A5C2F1DD778C46F1124AC3948590307B /* BehaviorRelay+Driver.swift */, + 86A335AC4403CA55CFE4E6E4A2C791E7 /* ControlEvent.swift */, + 0D7023DEF4EB06C93B00406D184AE651 /* ControlEvent+Driver.swift */, + 0D5EC1B46AE7D571B0DD04C392D8312D /* ControlEvent+Signal.swift */, + 6A59B196A8F956B5A945C19461A30B06 /* ControlProperty.swift */, + A46B2B011E92DACF7756C7250B0A0A1B /* ControlProperty+Driver.swift */, + C9F47C1C33F294EE17EFAC13BED14A1F /* ControlTarget.swift */, + 792F9C290DDAE29DFD49560EDACDF1DC /* DelegateProxy.swift */, + 03819EAC9CC0EB430937A823B89898FB /* DelegateProxyType.swift */, + 2A17220BFF737F7746770AE6DC714571 /* DispatchQueue+Extensions.swift */, + F3128FBBACBC135964B73663F79EEB39 /* Driver.swift */, + C0DC6BB37E772C838D211B4E469406B8 /* Driver+Subscription.swift */, + 90A853C515B74BCA67FB2403E017F713 /* Infallible+Bind.swift */, + 6691A97D7DCD31673D9D9E5CDFA8AFE2 /* Infallible+Driver.swift */, + 444770367DBE67800F4317A123F566B2 /* InfiniteSequence.swift */, + BC601B7E96506022547679EBA61EDB08 /* ItemEvents.swift */, + A2FBB38EE5A39812BFD4E917BDA2FA6E /* KVORepresentable.swift */, + 927F2ED0D8C691378E9D7EF3CB5C739D /* KVORepresentable+CoreGraphics.swift */, + 11DB5F058182415F6B3F073561A0FD77 /* KVORepresentable+Swift.swift */, + 28545824B1CE006F5ECF89DF63EC67DF /* NotificationCenter+Rx.swift */, + D430EFCC50B835D2C330752A86526CEA /* NSButton+Rx.swift */, + 861DA6411995BAEA58FE752D9DE0D313 /* NSControl+Rx.swift */, + 35BF15271ACD5B34320E33A1BC87103E /* NSObject+Rx.swift */, + AF09F05A710C5513E4403D2F9D62C7D8 /* NSObject+Rx+KVORepresentable.swift */, + 88B8CACC0AE7196A1D83838215CCA1C6 /* NSObject+Rx+RawRepresentable.swift */, + 6F646CC570EB612EAC356A27C416BF7C /* NSSlider+Rx.swift */, + 92CB2D56C6BA535714F9D897545B13FC /* NSTextField+Rx.swift */, + 8C2264F01AC688B577A19EB71FFDA42D /* NSTextStorage+Rx.swift */, + 29D6C316F63A13DF4EFF7C7F9FB06821 /* NSTextView+Rx.swift */, + 00E3EE9A4E0C4F472F569827D168A28D /* NSView+Rx.swift */, + 3196AD8C5667E195254BCAE3E77F078A /* Observable+Bind.swift */, + EE0F67671B890B3CA6A7ED1BA5E34512 /* ObservableConvertibleType+Driver.swift */, + 65B0B44D347A9C40C57F4A8609AD3F1D /* ObservableConvertibleType+SharedSequence.swift */, + 8464668B248FFC557AEB720AF3B03887 /* ObservableConvertibleType+Signal.swift */, + 998A5E8D056AA39966D6804D9162AABF /* Platform.Darwin.swift */, + C4D4463CD5366F140F164933693B88C8 /* Platform.Linux.swift */, + 83FA5D47E78BA6815209F77C96DEDA56 /* PriorityQueue.swift */, + F682BA1971024A5C3E4250D013E7435D /* PublishRelay+Signal.swift */, + 766CA7DDECB0DA0A29110034D044CA15 /* Queue.swift */, + 8B8CF477355B8AC63404B81103306278 /* RecursiveLock.swift */, + 4F7C58947F0CD5F09656A535D5F16ECF /* RxCocoa.h */, + 109CBA34D6C8C174705203729BE9B5AF /* RxCocoa.swift */, + 5DC159E9ED344CCD9C690E1CB4EC8CC9 /* RxCocoaObjCRuntimeError+Extensions.swift */, + EE88B14F80923C07009DBC98E1454066 /* RxCocoaRuntime.h */, + DFE228D3E249E011CEF879ED6BF7F160 /* RxCollectionViewDataSourcePrefetchingProxy.swift */, + 0507E765871BB0F57888BFBB4B633C36 /* RxCollectionViewDataSourceProxy.swift */, + EF58C55710814E316DACF05BBD80E384 /* RxCollectionViewDataSourceType.swift */, + 43554CB77F289DCD321EA65CF223F0E2 /* RxCollectionViewDelegateProxy.swift */, + 74DEE313102957F7397DD61362D546F9 /* RxCollectionViewReactiveArrayDataSource.swift */, + C048D2127BA139AA1741D47D10CA0015 /* RxDelegateProxyCrashFix.swift */, + AFBE2A95737DD33C2575D424E8E7889D /* RxNavigationControllerDelegateProxy.swift */, + 9D92337490A4759085C8C939DF06CAA8 /* RxPickerViewAdapter.swift */, + 643E1FDECB100AAA6E8EE39747105E62 /* RxPickerViewDataSourceProxy.swift */, + 5802438CF37AE5873F19B98C16D817E8 /* RxPickerViewDataSourceType.swift */, + 0470DA85079EBAEF51E9AEEED872593E /* RxPickerViewDelegateProxy.swift */, + C0FF6F2916AD33FD5BC09AABA5529615 /* RxScrollViewDelegateProxy.swift */, + A092D05FB9D43C48043A0DB333DDA3EA /* RxSearchBarDelegateProxy.swift */, + 7D5DF8097AA1B13165298BB6A9A9489E /* RxSearchControllerDelegateProxy.swift */, + C66CB6EEDD5E3A17017C51C6A7D4D57F /* RxTabBarControllerDelegateProxy.swift */, + E2BF8BDDF829D0E05B050CC2AC3DA3E7 /* RxTabBarDelegateProxy.swift */, + C4F2928C490A62492DFB099057923ED8 /* RxTableViewDataSourcePrefetchingProxy.swift */, + C2CD587C58414AD8C075D947CF7F0DB9 /* RxTableViewDataSourceProxy.swift */, + 77C3EE03899AD9A3B2823A7992507F63 /* RxTableViewDataSourceType.swift */, + 19770F4E5BFA92A85C2A02BA862AA5D9 /* RxTableViewDelegateProxy.swift */, + B2EED5CFAAFD9B94B115C200FB447B44 /* RxTableViewReactiveArrayDataSource.swift */, + 38B7EF484DB48E9A06F55064F8E99509 /* RxTarget.swift */, + 803B9C011E2CFBCFC74B4290139E3E2B /* RxTextStorageDelegateProxy.swift */, + 993D18DBE661C6C05EB3E998C473C1C1 /* RxTextViewDelegateProxy.swift */, + 85A3507B1D27127A4BE6D5F9BCF14676 /* RxWKNavigationDelegateProxy.swift */, + 7C9947240567F2CBA0E16E5BFB48C3CA /* SchedulerType+SharedSequence.swift */, + 0121C39190868703D96C9EE3F8D423F9 /* SectionedViewDataSourceType.swift */, + F4C1AA464B02383FB990C642B5F53D00 /* SharedSequence.swift */, + BC916E5E2006F4D20F74CF425C9B4159 /* SharedSequence+Concurrency.swift */, + D8B496F3656EACCE6BB9DAEDBD8BF095 /* SharedSequence+Operators.swift */, + 484AC444DD3B9E11C01DAF8BC740D472 /* SharedSequence+Operators+arity.swift */, + EAD1ECFE4ADB4A2C9F6CAFF6B543DE3A /* Signal.swift */, + F7935061DFC786FD7D4D79C03D01F489 /* Signal+Subscription.swift */, + DF3165382A66DA196C34ACCB96F6AFA1 /* TextInput.swift */, + 58352309D98CED7BD720DDFAAC382FDC /* UIActivityIndicatorView+Rx.swift */, + DE9BA063794CE533B2B7560A89AFC667 /* UIApplication+Rx.swift */, + 38C5C40ECEA41C998C1E99B136B049F2 /* UIBarButtonItem+Rx.swift */, + 7BE3F25208E99A10C0F37F0679798973 /* UIButton+Rx.swift */, + F9CE946D1EC38DA41A1A646078485929 /* UICollectionView+Rx.swift */, + 9A7B33A398BF141FBAD3310E1FE7940B /* UIControl+Rx.swift */, + DDF8028CAA9CBF861B737A60512267C4 /* UIDatePicker+Rx.swift */, + 533540299068399C3E9BC3DD57AD95B4 /* UIGestureRecognizer+Rx.swift */, + 0C722734DEE24D06DD61B676728E5CB6 /* UINavigationController+Rx.swift */, + 422FA0BF97FB89EE0765BC0784DEB05F /* UIPickerView+Rx.swift */, + 41A90A119AE13B18BD986AF741CB6B85 /* UIRefreshControl+Rx.swift */, + BEFC6DC50ADA21288DCAAADD7C89F0D7 /* UIScrollView+Rx.swift */, + AFDBE9AA99AE07260CFC19D2359A2771 /* UISearchBar+Rx.swift */, + 07BA7B8A1C04EF88163A36A74D32D1FE /* UISearchController+Rx.swift */, + 27CCD2EA3E9C236DEB35C9D1270D1562 /* UISegmentedControl+Rx.swift */, + 52B57F7E8D39303188F76DF0623D9EC4 /* UISlider+Rx.swift */, + C895E6BEA31C395D916D30A07A5A202A /* UIStepper+Rx.swift */, + E697144E2F836628D0EF1F988E48798C /* UISwitch+Rx.swift */, + D68FD9228D0FDB3EC91620C34D6F18EA /* UITabBar+Rx.swift */, + 273FC59E1E9B3996AEC45576F818AB8B /* UITabBarController+Rx.swift */, + 70D2E65022B76ACFD0A44CF366600877 /* UITableView+Rx.swift */, + 1E69CE0F927E980F7FD7333244A097BE /* UITextField+Rx.swift */, + 3FCD006987B77D590CA980F9E1CF7021 /* UITextView+Rx.swift */, + F8381A9139BE63FA2FB1DC1A067F519C /* URLSession+Rx.swift */, + B925C5E67B5CFE8177522713DEE7186A /* WKWebView+Rx.swift */, + BB252CB0CA387210040ABD39D3D0A00C /* Support Files */, ); - name = Realm; - path = Realm; + name = RxCocoa; + path = RxCocoa; sourceTree = ""; }; - 199B7AAC225C728056597FDB39D95E78 /* RealmSwift */ = { + 1497726051594DACE595A7E93A43F49D /* NMapsGeometry */ = { isa = PBXGroup; children = ( - 329F2013C14436462A221BEB5CFF4A40 /* Aliases.swift */, - D7C53B0237EB3D348DD7C41E2D76172E /* AnyRealmValue.swift */, - 938FC1BD2495AB94035AE46CDA14171F /* App.swift */, - 0FB831597BC82BA527157AFB2AD3AF26 /* AsymmetricObject.swift */, - 1BB38A194B3C4C33650775D4AB01231F /* BasicTypes.swift */, - 9186BDB9F012821F631AB275C99BA576 /* BSON.swift */, - 157B71F8DEE686A730A1E8C426500FED /* CollectionAccess.swift */, - F455AAC966493F2EC7E8FF0F6851AEBC /* Combine.swift */, - 6B89E955E9BF8B05EFCEEC1F626182E0 /* ComplexTypes.swift */, - BFBE09A5275D677D3FCFB5EE0BF27291 /* CustomPersistable.swift */, - 9368ADABE8B43E7297FCFA01BE7CC28B /* Decimal128.swift */, - 26BA2E52440B94DE5BDAAB89C020D581 /* EmbeddedObject.swift */, - FB50DB2073C61895245BE1ECEA3AF1C1 /* Error.swift */, - 337238BD521563334DDFF8818D6B1060 /* Events.swift */, - 41DEE2CE448EB23FA009F318D36613A0 /* KeyPathStrings.swift */, - 0EB9B24C47B95FAB2ADE50E14360ECFC /* LinkingObjects.swift */, - C28F582BED545F0985BB50AC9F4C422D /* List.swift */, - A86D8EBE976B3BEA2EA51DE29AD13000 /* Map.swift */, - 9D8FE0EF22E6701FAA918A9947AC7EC4 /* Migration.swift */, - 87A8BAE94D8110F652FDCBB667DEC960 /* MongoClient.swift */, - F419AB987C9FB1F50D9261CC2D4BE8B3 /* MutableSet.swift */, - CB6962B59CCCA1E21D688D8EF72BFD4E /* ObjcBridgeable.swift */, - 124C1A35214BC98075DC7FFA33134812 /* Object.swift */, - 7A6B24461AEEE028EFBE40BD9A7DE1C8 /* ObjectId.swift */, - 27AD08B92FC78443B81F00E6E71D42B3 /* ObjectiveCSupport.swift */, - ACFCB6E4B51ED20DBA2FB05728EBBAAA /* ObjectiveCSupport+AnyRealmValue.swift */, - 0AED2DDC10D3CF0C4312A1DC76D1CE84 /* ObjectiveCSupport+BSON.swift */, - D56B27B284EC71520BD337E1712463E3 /* ObjectiveCSupport+Sync.swift */, - CF07D5E5F602D78DD0FFC5D8FFDE3B8C /* ObjectSchema.swift */, - 858865DBB3F03A4A1F7673E7322570EE /* Optional.swift */, - AB7C77B515A4E808E050D10702040954 /* Persistable.swift */, - 53BFF822F1A4950D31B47AEA37CDD862 /* PersistedProperty.swift */, - CD2F95E31E77D7917248F01EA71194F6 /* Projection.swift */, - 4D6359DB9B2826A4F81147FA5D705A39 /* Property.swift */, - 2A14331D14A82CA107B492C9464B9FD1 /* PropertyAccessors.swift */, - 8A63B2BC433DE300A3D656029A75292F /* Query.swift */, - 586CBBCC3BD5BD2D03B0AFAA51A143D4 /* Realm.swift */, - 816235A9392C4AF655D03CEF94B79CEC /* RealmCollection.swift */, - 54E140483DF843DB253894534DBAB6CB /* RealmCollectionImpl.swift */, - AE099A2B9C406127D5246FFAF359376C /* RealmConfiguration.swift */, - 68A1A0D5A3770E7F63EF7E51B69F9AFD /* RealmKeyedCollection.swift */, - E41B018DE155AD4BC6FF7FC9A1994F21 /* RealmProperty.swift */, - 870C6E1D0C92CC05F84F1D5CD95CB27A /* Results.swift */, - 246382F6D83203A35759E71B6EF35D51 /* RLMSupport.swift */, - FA703F82DA6E9DA67358F00BB1E07934 /* Schema.swift */, - 045B9BAAD188C122A8DBBEF655C86517 /* SchemaDiscovery.swift */, - 5DF733B063BB9D55E2B1C9248C17C4DE /* SectionedResults.swift */, - 345BF57E7A6974E0863A584F44BD485C /* SortDescriptor.swift */, - FB9DF0E023DBC2C70D66912158736B06 /* SwiftUI.swift */, - 4FD73B570B89E5FA8BBC496C084BB20F /* Sync.swift */, - 8D5082C2C835E8CC24FD81B39A653E77 /* SyncSubscription.swift */, - C8EBAA2C4C5F0B80A3072ED2050AE3E7 /* ThreadSafeReference.swift */, - 2858CE21CAB7EA8460919556A9F409EC /* Util.swift */, - F04C0290B17A3E9B5B148410947813A5 /* Support Files */, + 8B75CD5429B465C7EA877CF8C08614D1 /* Frameworks */, + E9FC2908F4080C5980108583F3E8468B /* Support Files */, ); - name = RealmSwift; - path = RealmSwift; + name = NMapsGeometry; + path = NMapsGeometry; sourceTree = ""; }; - 25ACA2BC5B982032736ABF0E57E43007 /* Support Files */ = { + 15BC632232F6511C39BCB6E2C8DE98D8 /* RxRelay */ = { isa = PBXGroup; children = ( - 4441CEF6A72C374E53D531C0A2829C9E /* NMapsMap-xcframeworks.sh */, - 29DEF47F5EC9B1AD022830B737C6787D /* NMapsMap.debug.xcconfig */, - 4720C7A5F21CA529CFBC0616ED3CF152 /* NMapsMap.release.xcconfig */, + 4D06B64E7E7CE6D3CD8214AED9480E73 /* BehaviorRelay.swift */, + 19DD700DA89FE382231EDA75A28C42C3 /* Observable+Bind.swift */, + 5CA5BEF3A0C95E43C0DD2D282872D5C6 /* PublishRelay.swift */, + 38158AFF15430C62EB996D4CE79A6019 /* ReplayRelay.swift */, + 3C9E0DC21A244F8845AC5596F2BFC818 /* Utils.swift */, + D7AF8B1D875ED5E8D5AB150105DFFB3A /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/NMapsMap"; + name = RxRelay; + path = RxRelay; + sourceTree = ""; + }; + 1E6F3C610ABE97E794ADCB82A30B40AE /* AmplitudeSwift */ = { + isa = PBXGroup; + children = ( + 2351A282715198D892E2C4CA89ABDB81 /* Amplitude.swift */, + DD4BE5D6468F1DCD9C5B79EEE935F8F8 /* AmplitudeDestinationPlugin.swift */, + 2ED9ED0D16D4ED0F5F3310E87FF43B74 /* AppUtil.swift */, + 314BAC27A6F2084191E3A21D693F828D /* Atomic.swift */, + A1AA613B48EA607AFB1E793045AB7CE4 /* BaseEvent.swift */, + 7147F4509C1329B8BA7FBDAD6E5FC194 /* BasePlugins.swift */, + C2765B8FAD8525B7C1225F8E77C57C28 /* CodableExtension.swift */, + FB22CA870029FC140B876EFE6D0F9BB0 /* Configuration.swift */, + 262DDDF7EFAEDB066C6320DD342B2CC8 /* ConsoleLogger.swift */, + 06D92C17858E9E389FC709AD83574483 /* Constants.swift */, + 0DDD4821ADAADE6D16B854CCCC9D705D /* ContextPlugin.swift */, + 0292652FC044413CF63CD1B1DD2F5A83 /* DestinationPlugin.swift */, + 95D033F6AAE6E51AEDC31DDD80BA2E4A /* EventBridge.swift */, + 5DC2BCF25907169BF5A4EEF6860481C4 /* EventOptions.swift */, + 3912D66FAC951F49A0D745DC90439581 /* EventPipeline.swift */, + A3FF87AEA82E94DC3871DF193989E93B /* GroupIdentifyEvent.swift */, + FC9375186A2DEEF41444D81D40CE5E9B /* HttpClient.swift */, + 0CC909D5A630273365944F71FB217D88 /* Identify.swift */, + 923426BB675BAF0C894C421323EAC11E /* IdentifyEvent.swift */, + A4E862AD72E5AEAE6B4F56E46CE69B38 /* IdentifyInterceptor.swift */, + 1B69CE84ED843C3AE736866E7AAA3A40 /* IdentityEventSender.swift */, + EFD465D2767EB8DABB8B8494FC7D9277 /* InMemoryStorage.swift */, + 515CE46AA8FD9078FFAF6AF7A199B90C /* IOSLifecycleMonitor.swift */, + 2BCAFAB4A057F4D9CA1E7193690F13E5 /* LegacyDatabaseStorage.swift */, + 2C0911A46972A0804532B1EB39A36956 /* MacOSLifecycleMonitor.swift */, + 79356AC2AE44944FBFE298350F70B580 /* Mediator.swift */, + 8C8EEA342550F39A48E1EBE4E01F0DEF /* OutputFileStream.swift */, + 01FF0371669F47A7DAF37D0483420BB8 /* PersistentStorage.swift */, + 2FE73C2C38E66F22240730CFAF1526DE /* PersistentStorageResponseHandler.swift */, + 8F5BC10F3CE8140266D32374A7710B3B /* QueueTimer.swift */, + 35CCC1434540731CDBAF79935A704E67 /* RemnantDataMigration.swift */, + E78739A2741CBF2B86358EAF57193D02 /* Revenue.swift */, + 20306C38198D5F978F8CBA68954D3FFB /* RevenueEvent.swift */, + AC69BDD57BB554660EEA3B767EBCD245 /* Sessions.swift */, + F66421D316977E885E1366885D9FEA16 /* State.swift */, + 9B14939B23A6E2AC30DAC583A0FA22E1 /* StoragePrefixMigration.swift */, + 39668C8491803F9994072389A75EB3E3 /* Timeline.swift */, + 682A1828DE2821641CC464271BB2CAD9 /* TrackingOptions.swift */, + 0D281CDAA1CE4B6D5B54A3A93C39D702 /* Types.swift */, + F031ECF4F27C68D363C9BFCB739F1E21 /* UrlExtension.swift */, + 8C2C6FAE1869566CC7A39B7A0F3E7A2D /* VendorSystem.swift */, + 155E465F9A60DDD805A831F26C2792E0 /* WatchOSLifecycleMonitor.swift */, + 3E4C798D33BB8760A83A6EAE6362C0F2 /* Support Files */, + ); + name = AmplitudeSwift; + path = AmplitudeSwift; sourceTree = ""; }; - 2B16D70ED1FA2E99B9AC6E5AA465DBF8 /* Support Files */ = { + 3E4C798D33BB8760A83A6EAE6362C0F2 /* Support Files */ = { isa = PBXGroup; children = ( - 9131012EF65A0DEEAE313FC022A770D7 /* KeychainSwift.modulemap */, - 7C35815C49F31DBE7D3A47A22E4255FD /* KeychainSwift-dummy.m */, - 840146EC32AEFFDD3418042128F63393 /* KeychainSwift-Info.plist */, - 9159839E3183A24A5FD16B6DD443BB30 /* KeychainSwift-prefix.pch */, - 066D2D776758CFE74C85E3D772FA7E77 /* KeychainSwift-umbrella.h */, - 9FEF35BBB113AEFCC273B2A94003B1D9 /* KeychainSwift.debug.xcconfig */, - 9DB0096BAAA1D77112C8FCFD87F1D313 /* KeychainSwift.release.xcconfig */, + 3940187F64AF260966115C1515FEEAB5 /* AmplitudeSwift.modulemap */, + 66CC02664AFD4B717578DA92C8D259AF /* AmplitudeSwift-dummy.m */, + 2EDA72BBD5BDC6708BA5E9B6E4EA4013 /* AmplitudeSwift-Info.plist */, + CC07A26885E4F972E3F4518D5362728F /* AmplitudeSwift-prefix.pch */, + AA4FDDDD08F6C66026E26D425804CF72 /* AmplitudeSwift-umbrella.h */, + B60D16093C99FEA28E748FA19096EBF9 /* AmplitudeSwift.debug.xcconfig */, + 009117157D5C75381BDA8661FB9131F4 /* AmplitudeSwift.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/KeychainSwift"; + path = "../Target Support Files/AmplitudeSwift"; sourceTree = ""; }; - 302782BBCD47F29F1FAC42DE51144683 /* KeychainSwift */ = { + 4CD2670B043A29DA925C76A4F7299768 /* Pods-AVIRO */ = { isa = PBXGroup; children = ( - CA9BF8B5B65608A7DD6EA15D179386D8 /* KeychainSwift.swift */, - 3910DD3A5790A41214020770A6E429F3 /* KeychainSwiftAccessOptions.swift */, - 1732A242CAFE23B8D1F21BC603F5E66B /* TegKeychainConstants.swift */, - 2B16D70ED1FA2E99B9AC6E5AA465DBF8 /* Support Files */, + FC8ACBC2D80497CECFC57098E8B118D3 /* Pods-AVIRO.modulemap */, + 07FA727774ACFCAED7CE50DBF9B205E2 /* Pods-AVIRO-acknowledgements.markdown */, + 9FECE0F7B0D92257807A9E201621D6E3 /* Pods-AVIRO-acknowledgements.plist */, + 658847CBA4BD2A4A00A095E26C7AB063 /* Pods-AVIRO-dummy.m */, + 9D5B9E5A5B47086C7938DFBD1709BE24 /* Pods-AVIRO-frameworks.sh */, + C287F1876B08CAAC58E7970C05AB48CB /* Pods-AVIRO-Info.plist */, + 50D8F08FFA0C96FDF547EA1DF290FE4F /* Pods-AVIRO-umbrella.h */, + 65DFC140F9074BFD31A9F9BA83927693 /* Pods-AVIRO.debug.xcconfig */, + 956DF3F3F157F21868C4E003021802DB /* Pods-AVIRO.release.xcconfig */, ); - name = KeychainSwift; - path = KeychainSwift; + name = "Pods-AVIRO"; + path = "Target Support Files/Pods-AVIRO"; + sourceTree = ""; + }; + 61FD796141683A849B20518C4A442F7F /* Pods */ = { + isa = PBXGroup; + children = ( + 1E6F3C610ABE97E794ADCB82A30B40AE /* AmplitudeSwift */, + 73D1A1120B635C8226AFCD19B3326908 /* KeychainSwift */, + F029BB56C7D0B949C66D0BE22A8A42F7 /* lottie-ios */, + 1497726051594DACE595A7E93A43F49D /* NMapsGeometry */, + C9B587AEFCCB90D6BEA04EC8D41027A3 /* NMapsMap */, + 831A052298FAE5B6558D2473A1361B5C /* Realm */, + 8E861B0C6AEDD335C46CE13F98ADB041 /* RealmSwift */, + 7B1BA688DD3F24712E845D340B6FD3CB /* RxBlocking */, + 08D4577E37D632BE46C89AB124CD8EF8 /* RxCocoa */, + 15BC632232F6511C39BCB6E2C8DE98D8 /* RxRelay */, + CCD60A24AA80628C7431E3E975CADDD4 /* RxSwift */, + E9C2FFBCC261577B90981060C7A3C2B2 /* RxTest */, + EF30EEC84658731B4EC7C3660F171EBF /* Toast-Swift */, + ); + name = Pods; sourceTree = ""; }; - 316E82DCCFF3A6EB62FB3815B89E2208 /* Support Files */ = { + 63C6762FD558499614051225FC5298F1 /* Support Files */ = { isa = PBXGroup; children = ( - 00D1F416ACF803BA08199504291F3087 /* NMapsGeometry-xcframeworks.sh */, - 44AEB5BF5E9C3A65ED861FF8D195CD1D /* NMapsGeometry.debug.xcconfig */, - AA9B79AE324CFFE8605F0097EC5CE597 /* NMapsGeometry.release.xcconfig */, + DF8665C4070E689D47FA28B1461794F9 /* RealmSwift.modulemap */, + 3E5B39142AE68CF13E0372BAEC39D605 /* RealmSwift-dummy.m */, + B72522F91A46C5FA393805937FA93528 /* RealmSwift-Info.plist */, + 52934539A08CE0606DF8D08A6F67634B /* RealmSwift-prefix.pch */, + 59422AC4EACCBAC57E3F8C9C6275975C /* RealmSwift-umbrella.h */, + 70A12B1DCEC0485BC21FFD9E8D7A920A /* RealmSwift.debug.xcconfig */, + 591BF33129BD6D14D1C023FB958B4811 /* RealmSwift.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/NMapsGeometry"; + path = "../Target Support Files/RealmSwift"; sourceTree = ""; }; - 3B8CBE2E8EF1515101C432698EAE63AD /* Support Files */ = { + 651B7DA780BF044AAA5CBFE4BE0A2B89 /* Support Files */ = { isa = PBXGroup; children = ( - CC540BF747B9674F153E3A644E98032F /* lottie-ios.modulemap */, - CED23268033B0BBB22087F3A42F3FE45 /* lottie-ios-dummy.m */, - 57768DCC3F26A89A7E0C5C4E99EF5268 /* lottie-ios-Info.plist */, - 5738C6F3770C8651EAA8C137D38D8071 /* lottie-ios-prefix.pch */, - CE2BA6FE4CA01E4F4EA7EB1F1B0F19CA /* lottie-ios-umbrella.h */, - 5EA714A92D146F9EEA7896A17F49B8FA /* lottie-ios.debug.xcconfig */, - 31336E7A0171BB431150C6023D63DA19 /* lottie-ios.release.xcconfig */, + FAFDA64774D329E70B5BF77B89899B67 /* RxSwift-framework.modulemap */, + 133032016CFC717B68DB23DA68B655AD /* RxSwift-framework-dummy.m */, + E945876CA8660424C8409B251E6884C4 /* RxSwift-framework-Info.plist */, + F3B044360A919095E16B9048E9481604 /* RxSwift-framework-prefix.pch */, + BCE84E01FFA9166B5439D056918A4FF4 /* RxSwift-framework-umbrella.h */, + 59A2C21ADF6B167139B50CEA91357750 /* RxSwift-framework.debug.xcconfig */, + A81D3744793BF8FD4670B1FC3A43562E /* RxSwift-framework.release.xcconfig */, + CD8AC86F7DD86F0560FFE25C489979E7 /* RxSwift-library.modulemap */, + 7482EAE4BC117EC7CA5C70238CACDE1B /* RxSwift-library-dummy.m */, + 42C60A8B4B3569B727A6B77C9F695DFA /* RxSwift-library-prefix.pch */, + 493C7BB76D9EAA0BBD811D16101BB914 /* RxSwift-library-umbrella.h */, + 6994A069C1A574A33EC6DD55D0A4BC70 /* RxSwift-library.debug.xcconfig */, + 6376127B8BD776307A65452133EF4079 /* RxSwift-library.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/lottie-ios"; + path = "../Target Support Files/RxSwift-framework"; sourceTree = ""; }; - 54C704EBF1EC3AACC6363D758D5C6546 /* Headers */ = { + 6EECC6A4902FF1AD42E7BCA416A8B5DB /* Support Files */ = { isa = PBXGroup; children = ( - F96C9DDBCF215AF301733D358E2CE465 /* NSError+RLMSync.h */, - 17C1EF69F6A0916C0B2F718EB507DE03 /* Realm.h */, - 06A95C8471697952026D3F24815801DC /* RLMAPIKeyAuth.h */, - 362E791CE9F275451035B7C2B419365B /* RLMApp.h */, - 22EF2607C1AAA9034F4A42D29369F482 /* RLMArray.h */, - C0FED741228AC6F1082122545FE41E8B /* RLMAsymmetricObject.h */, - 789C70D2EC86868D1AECBBCF94043A79 /* RLMAsyncTask.h */, - 81037120FA84062A4F85FDD304978928 /* RLMBSON.h */, - D3643B180A19B837FD1DE977D09BCA95 /* RLMCollection.h */, - 1578D0385D2365407A56E41EB0ECA1E5 /* RLMConstants.h */, - 43E179EE9759F2086189DCD2433D8713 /* RLMCredentials.h */, - FC4711E286E0ACB6160C1FD31670557A /* RLMDecimal128.h */, - 7CD3344303C51846CB5D3B5A347E2AC4 /* RLMDictionary.h */, - 38E8B63753C1AD73A83768029CBE7644 /* RLMEmailPasswordAuth.h */, - A6AC66256EC7E6F0C0557B2A91F069F6 /* RLMEmbeddedObject.h */, - 52B640C0DBE81DF1C70F4E7DA6933D4A /* RLMError.h */, - 63D399C9CE2DC691792ECF9A4FC59A15 /* RLMFindOneAndModifyOptions.h */, - 5A0105F14BCE5027503594BE0B9A101C /* RLMFindOptions.h */, - 61DF2D3A5B3C1213724D1A6CEEFBF020 /* RLMLogger.h */, - EBA1D7604C213456DBF0E6F8C38BF068 /* RLMMigration.h */, - D2AA35701CF2D42781630F324963D837 /* RLMMongoClient.h */, - 6E45824F06596F9F9686E5817F46D71D /* RLMMongoCollection.h */, - 506E8F1E71CCF2EE831C4E9269BE39A1 /* RLMMongoDatabase.h */, - 55436145186F09929BAA7390E70AD2CD /* RLMNetworkTransport.h */, - 7F93D92F4837BDC6264A9E61832B517E /* RLMObject.h */, - FAA262080A3BDCF01B24AFFCCC65D45D /* RLMObjectBase.h */, - 09D71E69DD8EEC68A303DEC5A62F8CA3 /* RLMObjectBase_Dynamic.h */, - DD247B0AF9FCEFE9DE9A6473C527A5CA /* RLMObjectId.h */, - A00353F8525EA3B62442B223AADD72B7 /* RLMObjectSchema.h */, - 5D5804F7360B1AFD2297318E038B57FD /* RLMProperty.h */, - 284D6587AF8EC278DC8096038654181D /* RLMProviderClient.h */, - EA971B2E54A6178765A35DE29D09F9A2 /* RLMPushClient.h */, - 57C6CAEBE67053322E54B4449D59DDA2 /* RLMRealm.h */, - C49CB281974AEFEEAE2C1D34E7003C8C /* RLMRealm+Sync.h */, - 3B978AEC658DDE5A75121A241567BFAE /* RLMRealm_Dynamic.h */, - 3A658241EA986A3969EBFFA0F91D9A95 /* RLMRealmConfiguration.h */, - 7D054DA143745DBA135D0398693CFEEF /* RLMResults.h */, - 974A6CD926D99083E9EFF66C0DD242AE /* RLMSchema.h */, - 7C8226AF0B799590D452B148F40108EF /* RLMSectionedResults.h */, - D18F56833C06C6B1614FF524C37B3444 /* RLMSet.h */, - 1A2D2114E31871657FE302286DD016BC /* RLMSwiftCollectionBase.h */, - BBAF6B7D410DC5844C3A19B0FC0C7466 /* RLMSwiftObject.h */, - 6176455C6D63603B5DDCE76B88D462F4 /* RLMSwiftValueStorage.h */, - CCD810A0A60C72F849CAE57ADC216614 /* RLMSyncConfiguration.h */, - 0DAA3A902B9505851FBB229E534EC06A /* RLMSyncManager.h */, - 06A0ABB3771F1F27FFBB2ACAB9F2B245 /* RLMSyncSession.h */, - 50E5D515FC98234DDC41C559456D9552 /* RLMSyncSubscription.h */, - 61EDB2BAE00548F62CE2B66A2BC04AE7 /* RLMThreadSafeReference.h */, - 766B97BBD21B8F9636D9EF08ACA2434D /* RLMUpdateResult.h */, - 454B353FB31B270BCE4AC1930C9D6B73 /* RLMUser.h */, - 1EB4F153A939AAEC82F139AC2B9072B0 /* RLMUserAPIKey.h */, - 5AB29DA96ABCB8A75A63976F1B58C255 /* RLMValue.h */, + 97BFD798A8EF7502104578399758D099 /* NMapsMap-xcframeworks.sh */, + EB010A7CC60229C280D8DEB4197F53D0 /* NMapsMap.debug.xcconfig */, + 5553783E4639E1FCC2373431A361F824 /* NMapsMap.release.xcconfig */, ); - name = Headers; + name = "Support Files"; + path = "../Target Support Files/NMapsMap"; sourceTree = ""; }; - 7AECECE2600600EDD2C088AC6467845B /* Frameworks */ = { + 73D1A1120B635C8226AFCD19B3326908 /* KeychainSwift */ = { isa = PBXGroup; children = ( - 8BD0F3B8EA063FB536BBD9E42549235C /* NMapsGeometry.xcframework */, + 9B39E3456E1D6F5DDFBBC5285B092BDF /* KeychainSwift.swift */, + 075D2F7030634529B5843BED1A6E1404 /* KeychainSwiftAccessOptions.swift */, + CB06DA9745B40F2A9A45F6491A5DC709 /* TegKeychainConstants.swift */, + C2A8E05CDADF4F7FB0DE4BB6EBA0620A /* Support Files */, + ); + name = KeychainSwift; + path = KeychainSwift; + sourceTree = ""; + }; + 73F74DF57B0683B0AE51E72C38DEFB7C /* Support Files */ = { + isa = PBXGroup; + children = ( + 0F1B14683F1F4F16054BC54DAC64BC05 /* Realm.modulemap */, + 02AD247EA75F5E2DA57E76E9B9DBD188 /* Realm-dummy.m */, + B59B9F30EE2EB8D7A82D55447A667482 /* Realm-Info.plist */, + 6DF7C8E8147B964514B7F993F508AB0D /* Realm-prefix.pch */, + 0B15851DBBC621C967C073A5EA1192A1 /* Realm-xcframeworks.sh */, + 954464FBB1089BD83C2BA29BAFB74798 /* Realm.debug.xcconfig */, + 2C5EDA4F324936CDF8835072EC0E98D3 /* Realm.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Realm"; + sourceTree = ""; + }; + 7AF7F8C948A189E27F2BEBF57686399E /* Frameworks */ = { + isa = PBXGroup; + children = ( + D533223AEB3902F28FBFC83D15DBA1F9 /* NMapsMap.xcframework */, ); name = Frameworks; sourceTree = ""; }; - 8109237FC3E4D831627FB765A0EB26E1 /* Pods */ = { + 7B1BA688DD3F24712E845D340B6FD3CB /* RxBlocking */ = { isa = PBXGroup; children = ( - F54E2146157793B6559F42BF5D997330 /* AmplitudeSwift */, - 302782BBCD47F29F1FAC42DE51144683 /* KeychainSwift */, - DEF898E28DA2A4B42D5A3BCE23BD04EA /* lottie-ios */, - E530FCA917047B09E706A75AED73D912 /* NMapsGeometry */, - F9C1B93DDF5F0592728E7DAFC35B1785 /* NMapsMap */, - 0C5266E712F2B12CC65624B87D0A0474 /* Realm */, - 199B7AAC225C728056597FDB39D95E78 /* RealmSwift */, - BE8E13E1284AB276E34A043C43453474 /* Toast-Swift */, + 433DDAE6C7338D2B12A98583AAA3737D /* AtomicInt.swift */, + 8F25F2957384D6E247B4261ABA2D1331 /* Bag.swift */, + 1E99782464EB9FC233FAB3AA9EC8DE03 /* BlockingObservable.swift */, + 6677861AC3C48E73D6620269C0DECC06 /* BlockingObservable+Operators.swift */, + D8AF0097E65B9B2347C526BF3C611D86 /* DispatchQueue+Extensions.swift */, + DD9A460DF422E34A9D13E0FE004A0E9A /* InfiniteSequence.swift */, + A64C834AAC6C0727CCC123AF14C84B71 /* ObservableConvertibleType+Blocking.swift */, + A03687A3412C638DE09B487BEEC8A1D6 /* Platform.Darwin.swift */, + BAFB10B90F6B08FA5A16B72351755C60 /* Platform.Linux.swift */, + 8D1228B5B1566720D12D44921D520BEF /* PriorityQueue.swift */, + 2A70976A63EBF93CA1F595533B5851EF /* Queue.swift */, + 5EFBB99E7EC9818EF7A1D513BA386222 /* RecursiveLock.swift */, + 6BF6A9A3156B18B18D3C97D7DE51E4D6 /* Resources.swift */, + CAEEEFD7B3ECBA5B3DDA384862CF16F1 /* RunLoopLock.swift */, + ACC2D58DC326ACD708383308928D0B94 /* Support Files */, ); - name = Pods; + name = RxBlocking; + path = RxBlocking; sourceTree = ""; }; - 88FBA0CACD1C877AE1890A0EAE073BE4 /* Support Files */ = { + 831A052298FAE5B6558D2473A1361B5C /* Realm */ = { isa = PBXGroup; children = ( - 6A7A81E3707D6F3EAAB46CDD2AEFDA0A /* AmplitudeSwift.modulemap */, - 5F3E3D98492D034F23565CF6FC33D388 /* AmplitudeSwift-dummy.m */, - 961C4701D744B9A66D7CA570CA4160EE /* AmplitudeSwift-Info.plist */, - 894A77E2508DE9A8C919B370F75AF40E /* AmplitudeSwift-prefix.pch */, - 8A6FA385E65199988DD38045CE8A2451 /* AmplitudeSwift-umbrella.h */, - AB7189C4155E7E5DC03B848FC51A3280 /* AmplitudeSwift.debug.xcconfig */, - F089FD081FD8AED0737340E3ACCC220E /* AmplitudeSwift.release.xcconfig */, + DA15E36C3D2C47D605C23438DE603F99 /* NSError+RLMSync.m */, + 60E647C4165513364E29C07EA7A6872F /* RLMAccessor.h */, + A2C5299FDABEC54BFAC6069EE13E6E9D /* RLMAccessor.mm */, + DDED7A44A21A5623DB60C14C6D83D8B0 /* RLMAnalytics.mm */, + EDC26AAE1A6DB7239A66B105AD495872 /* RLMAPIKeyAuth.mm */, + 88E953D5F320AA06E4A055560B8D6323 /* RLMApp.mm */, + A9EF4A0903A0413A50DF2E666CFA2E3D /* RLMApp_Private.h */, + C8BFBBCCD8493E16893C8E1F9C897329 /* RLMArray.mm */, + CCA1B9B561DEB0B4AC2651E1F3AC0256 /* RLMArray_Private.h */, + 077A7244017E7A9FB3B3929A11D3EFF8 /* RLMAsymmetricObject.mm */, + 98467D6D0ECFEE9CCA71250DA2D4B6DD /* RLMAsyncTask.mm */, + 21002CFE410DEB8EFCA5CA8DC126F284 /* RLMAsyncTask_Private.h */, + DC236BFC9A2DB42649A285C0019D2A4C /* RLMBSON.mm */, + 90F9DF80FCE7DB32A74091D6F9121186 /* RLMClassInfo.mm */, + C2892D88E72EF8D62CDFBFEE3592E295 /* RLMCollection.mm */, + 0115229EC3822492F61080555ED0EA6A /* RLMCollection_Private.h */, + F466807AFB0D67AB2617BF836B3A4FA4 /* RLMConstants.m */, + ED7C4E0654D6EC2A2FBE08C20B3A4978 /* RLMCredentials.mm */, + D575A7F18C29FCCFF8B1545856DA2F6C /* RLMDecimal128.mm */, + 3BB5CEA09C8A2640C959FC109BE98804 /* RLMDictionary.mm */, + 7B9A175EFA6655B6B26236CFF7067527 /* RLMDictionary_Private.h */, + 07DFCB2023DB9C2425076165D8015634 /* RLMEmailPasswordAuth.mm */, + 8F86865B156E6F3D0F5A7F8323A6ED75 /* RLMEmbeddedObject.mm */, + 670B83EC6863FED7C0D719D57AA8AE8B /* RLMError.mm */, + 48C2E661C2432DD0A25D8C2D19A167BA /* RLMEvent.h */, + A229AB5E01E5AB641A41927742EA91F4 /* RLMEvent.mm */, + 3873FE8C1BAE8EA9F84CECEC532EEF36 /* RLMFindOneAndModifyOptions.mm */, + CE931BBBAFE00A93818E68E4FAEBB3BF /* RLMFindOptions.mm */, + 4A9495286335E0BE912B405DB84C287A /* RLMLogger.mm */, + E12E6376F912E76BF73F1D84D4F17515 /* RLMLogger_Private.h */, + 4ECDF1C9D72FDBF34EB3E857AFC21C54 /* RLMManagedArray.mm */, + E41CB4A1DE8211F0FA0150F575578427 /* RLMManagedDictionary.mm */, + 2D746718A0F8BA45E9DD333D8B02CD12 /* RLMManagedSet.mm */, + D35E966B8CF31BAFEA570EEA1FA6BA43 /* RLMMigration.mm */, + 7B557FD9BBE6CB69CBFF39A67240205A /* RLMMongoClient.mm */, + 05939B4EB37BB3CE4584124070DF1E60 /* RLMMongoCollection.mm */, + B2B2653B0D9C91ECDA2BAABB08D84D79 /* RLMMongoCollection_Private.h */, + B7D0C08E5F29DC6B1C176F160CBD7B9F /* RLMNetworkTransport.mm */, + 6F40E631E74920F5AFEA3B82D5163C67 /* RLMObject.mm */, + C624B4503218077DCDBB1E00A24C075A /* RLMObject_Private.h */, + 56279550ECBD4268D544292D82AD7AE4 /* RLMObjectBase.mm */, + E03B48B1F9A46AA29113939A8047B938 /* RLMObjectBase_Private.h */, + EA3445FFF1C35F96331D1FC35F9F414F /* RLMObjectId.mm */, + FCD68BD04D693964A5E9F1867AC711B6 /* RLMObjectSchema.mm */, + 588F32C07F6A1AA4E4726470FAEC0E94 /* RLMObjectSchema_Private.h */, + 698BFA42B204199D37CB5E53E909E9A0 /* RLMObjectStore.h */, + CD9B2C9F91D4879F2811269EEA915C55 /* RLMObjectStore.mm */, + 67AC59C43B73EA388CAFDEE51F9A86DE /* RLMObservation.mm */, + E63619745896A934AE278E17F58DA3B2 /* RLMPredicateUtil.mm */, + 7F206A861B70225C71B2FC97D66D6A87 /* RLMProperty.mm */, + 484A43A40FBAB3DD9B992F32AC2BA16D /* RLMProperty_Private.h */, + 99BCDA54649359F69C8628B2DA7C3028 /* RLMProviderClient.mm */, + D4A37C9B25E2889CD6D986512ABA3C9F /* RLMPushClient.mm */, + F9522CCF57C949F7E499FF5DD03AD5F7 /* RLMQueryUtil.mm */, + 2DB6C0D1CF5318263A2F22511B2FC677 /* RLMRealm.mm */, + 2EB8F30305326AAE5CE8DC030D27341E /* RLMRealm+Sync.mm */, + 6558C12582C6008A6A366AB05C1D541A /* RLMRealm_Private.h */, + 6677385814EBFD162488CF1CDA8F6027 /* RLMRealmConfiguration.mm */, + B1DA9A75EB8759EEB62FE205EE92F95F /* RLMRealmConfiguration_Private.h */, + 0384A5E816EF230B477D6D01ADBAFD7D /* RLMRealmUtil.mm */, + B4EC8EB26DB969079C3A2BCD2EB9EC5E /* RLMResults.mm */, + FFC11EFEA7C1989F0F6977016929C221 /* RLMResults_Private.h */, + F26C5A9EFD42C2FBD808172944C45B6F /* RLMScheduler.h */, + BE9D1C1FE157B18C01449B4FA8EE520D /* RLMScheduler.mm */, + 33C190425D6245B4ED6DAA47D9EDA3DD /* RLMSchema.mm */, + 0DDC54E1B28948A12329D32270057885 /* RLMSchema_Private.h */, + EAD09C3AC43773E0D9A661DA671C6CDF /* RLMSectionedResults.mm */, + 77F2EA54168F7A6AA57065E4D051BAFD /* RLMSet.mm */, + 9D4A00CD5102F35E8E47A58F1FE16D7A /* RLMSet_Private.h */, + 502C6DE16C0932CEA4401476581EDCB6 /* RLMSwiftCollectionBase.mm */, + 7EB6C1E306DDA6BD2C56DC6C2D7B1FAC /* RLMSwiftProperty.h */, + 3E40862F077B18F4CB8BFC34B36E8168 /* RLMSwiftSupport.m */, + E802536029710822E45FFFAC1F47FFDB /* RLMSwiftValueStorage.mm */, + CE524C69273834832E915AED7DCB5BA2 /* RLMSyncConfiguration.mm */, + BF2E33CD13D1441E9361D4036C3D749A /* RLMSyncConfiguration_Private.h */, + EE03CB20521FB460928545771A728B89 /* RLMSyncManager.mm */, + B67B8CEC03DE32A39DCC001C2E7458B4 /* RLMSyncSession.mm */, + 7F232C444DA93CE6B55AA821524DAD71 /* RLMSyncSubscription.mm */, + 919234D1DFD1157CADC0FE5CD11067A1 /* RLMSyncSubscription_Private.h */, + FF004AB2087E2C8D9D2ECFDA3917162B /* RLMSyncUtil.mm */, + 371D8986F6E71CAF46430C460BA12D98 /* RLMThreadSafeReference.mm */, + 131C20BEB34257CDC703ED2E73EBD9C3 /* RLMUpdateChecker.mm */, + B51EAA2DA9030EB070BD234B5A032111 /* RLMUpdateResult.mm */, + 8EE90F15DF6820A8877AD5E5E9F3925A /* RLMUser.mm */, + 59C345AC9D43ED895D604E99F4D7185A /* RLMUser_Private.h */, + 65883CBD3C82960B442D363DD2A1BAAF /* RLMUserAPIKey.mm */, + 1249C968C1A5CFE6137D99BD0326B0D2 /* RLMUtil.mm */, + 20C8D14F2BD8DDB7864757283A4BE00E /* RLMUUID.mm */, + EDD4BB34E5589781E376828F325CDD52 /* RLMValue.mm */, + BE99FB920D58E9111FBBFD423B94C003 /* Frameworks */, + F7DFB7F9194BE103CEAA24C4765E1349 /* Headers */, + 73F74DF57B0683B0AE51E72C38DEFB7C /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/AmplitudeSwift"; + name = Realm; + path = Realm; sourceTree = ""; }; - 8BCE73E5C8E910E41FFDB6371FEEBC7F /* Frameworks */ = { + 8B75CD5429B465C7EA877CF8C08614D1 /* Frameworks */ = { isa = PBXGroup; children = ( - 9A24F937AE57FCA84BFC18AEF54AC8AE /* realm-monorepo.xcframework */, + 7E58FCC68A87E1FF9D17CE6E6A91A6E1 /* NMapsGeometry.xcframework */, ); name = Frameworks; sourceTree = ""; @@ -1837,21 +2957,101 @@ name = iOS; sourceTree = ""; }; - A3B296F20465CE3A873EFF43497A1C5B /* Pods-AVIRO */ = { + 8E861B0C6AEDD335C46CE13F98ADB041 /* RealmSwift */ = { isa = PBXGroup; children = ( - 0569B39A57B17AA9FDED51C37A82A8C9 /* Pods-AVIRO.modulemap */, - 35941369A0A112BA132D94CBE2736100 /* Pods-AVIRO-acknowledgements.markdown */, - 1DFA2BDADDCF8952D2926167CAF8F22E /* Pods-AVIRO-acknowledgements.plist */, - E122BBE903BD003FBF3BD32C235526DF /* Pods-AVIRO-dummy.m */, - 30E9D6B98C780E731DC6E5BF1D4C6C56 /* Pods-AVIRO-frameworks.sh */, - E163F5AF1DFFCC33998215C1619AE6D4 /* Pods-AVIRO-Info.plist */, - 3728B056ADE22C29EB6C1FEAB7FC0F3B /* Pods-AVIRO-umbrella.h */, - 4A7CEF4490D6403E91330872D30B3852 /* Pods-AVIRO.debug.xcconfig */, - 759E249799FCB60AD71A05CE47221735 /* Pods-AVIRO.release.xcconfig */, + E80DBBC2ECBBE61D6781FDDF6CD9A92E /* Aliases.swift */, + 1839A7C9E05304AC8ADC0CDC54D26DFF /* AnyRealmValue.swift */, + 308B61B35364FF69046366D07C715F97 /* App.swift */, + 6D4A43E1D3EA8B23E30C2BC88C7235BD /* AsymmetricObject.swift */, + F424ADC6E5EF30A7D44EC381592B5437 /* BasicTypes.swift */, + 051C9B6F953C1914927944B62A91AD62 /* BSON.swift */, + BF59B2B462112361DED182498D11F186 /* CollectionAccess.swift */, + 6E7861E6E7E3AD9536B15E3763CED578 /* Combine.swift */, + A2D3E56A937B1C0DA4B7415A0BD137E4 /* ComplexTypes.swift */, + F1E6D783574575CFAE5293E230B05B7A /* CustomPersistable.swift */, + 9A2FB707E8364F846466B5ED973980B4 /* Decimal128.swift */, + BE89C48F7272D699A1D021E68C587AAD /* EmbeddedObject.swift */, + 326C73B7B41F474637936D3279146259 /* Error.swift */, + 2B5A9F2D9A66E044AD38CA953899F38C /* Events.swift */, + EA147900BE16AF6C402F21095E70956D /* KeyPathStrings.swift */, + B1EB55E74FF4247AABDDAC2CAB7110BA /* LinkingObjects.swift */, + FC96A54EB814FD7965A1D7A5AE74CAF8 /* List.swift */, + 3B8C09DFCE62F0A68A5C323A25C77A90 /* Map.swift */, + F24EF2C380DBF740D379E27400A4BD98 /* Migration.swift */, + D42BA9D4C8532090169F8C308C6B0467 /* MongoClient.swift */, + F778C756E167543C9A90FD3FA712A350 /* MutableSet.swift */, + 5385965C9F067940099DA09CCE9F3DE3 /* ObjcBridgeable.swift */, + A001F1AAA998BFE3CA1A83801E12AF34 /* Object.swift */, + F3586744DE24EEB74E72D22609E4D588 /* ObjectId.swift */, + 7217FA6A0946DD0FF2D1F894B552E719 /* ObjectiveCSupport.swift */, + 9CE1DF85E20C2660FF42D5487734D93B /* ObjectiveCSupport+AnyRealmValue.swift */, + 91F50E9DB4F119C11C2A8B28D86CB8A6 /* ObjectiveCSupport+BSON.swift */, + 8D3080B76325FCF138D63CC517D48B6E /* ObjectiveCSupport+Sync.swift */, + 94FEFEC4411FE2958F5F97BCEA384EF5 /* ObjectSchema.swift */, + 11B4945B0068C35EA1D812C086E5706D /* Optional.swift */, + 98455DA568314130C33A99119A9337E6 /* Persistable.swift */, + DFE33CD99B23141B8AFCBAA91F096F79 /* PersistedProperty.swift */, + 4028F03A7BA0524ACAC7099F21F9D0F3 /* Projection.swift */, + 004F0BAB7881E7C98A1772F64D66B4CF /* Property.swift */, + 75CE12C3E385F99080B0426B0AB86BD1 /* PropertyAccessors.swift */, + F3552A1395238920B84C2D2BD9220392 /* Query.swift */, + E68139A80D76B00EDA968764F3B3449A /* Realm.swift */, + D113E27D4F7314EE7CBA58DDCB51E935 /* RealmCollection.swift */, + E72CCAF8F4D7F43385D6CE14A0699C93 /* RealmCollectionImpl.swift */, + 29AFCE1F4685C353477EABA4E9E5A140 /* RealmConfiguration.swift */, + 1DDE66220D7D63CC646B4B1EAAE3B259 /* RealmKeyedCollection.swift */, + 4ADC75C2563E9628D794ED4C62B26746 /* RealmProperty.swift */, + 75F34552B06DFAAE785C3233021FB661 /* Results.swift */, + 79C163B97646D6ADFD9595182C426457 /* RLMSupport.swift */, + 3E4D4A037CD52FB099F211D7880A7FA3 /* Schema.swift */, + FD52D29D79E4F075B1F9E8C43822CCDB /* SchemaDiscovery.swift */, + 3E270A06306C720EBE6537BB2662B08A /* SectionedResults.swift */, + 2E8DF07037286B52929BB877BC5E0D93 /* SortDescriptor.swift */, + 8095D139F8AFA9621F73F9604E0C4D0E /* SwiftUI.swift */, + EC8D69334EEAEA2ED82B23299D31F5D5 /* Sync.swift */, + E858102593AE2F926B312B1CF24A1F5D /* SyncSubscription.swift */, + C5B061C54FA4000CC108780CE9C31CC6 /* ThreadSafeReference.swift */, + 8733D6AB817B510652F108E55E42CF33 /* Util.swift */, + 63C6762FD558499614051225FC5298F1 /* Support Files */, ); - name = "Pods-AVIRO"; - path = "Target Support Files/Pods-AVIRO"; + name = RealmSwift; + path = RealmSwift; + sourceTree = ""; + }; + A67590B45AFA83AE7358D48904F2F949 /* Products */ = { + isa = PBXGroup; + children = ( + 988EA11A5ADBC68DD7711FE8238A781A /* AmplitudeSwift */, + 9E0FD012ADC3C7179C684035672383E5 /* KeychainSwift */, + 51BA97E8B5085EFFB47BC9C0B785CEA7 /* lottie-ios */, + 0C4CBD9773E7794962E30DD82A779441 /* Pods-AVIRO */, + E44074341936E86C93E247952811FF54 /* Pods-AVIROTests */, + 921BE4A82C4A7A5C72A0C6F8B8FEF200 /* Realm */, + 437919EE08EC6BFCCBAC3BD346309742 /* RealmSwift */, + 25F63A531105CD4E1E4CCF5B918C5494 /* RxBlocking */, + BC432FD48A5932251F1CAFBC4BF74894 /* RxCocoa */, + FF8B264DFE802855D5D67E7CDDABFC3C /* RxRelay */, + FB85F6F3191526F64F447E31EEFD4244 /* RxSwift-framework */, + 9079429D32DB5A1423EA3EBD14E7D9C4 /* RxSwift-library */, + 031893FD3D882E436EC541DF783B1276 /* RxTest */, + D6043471C96F93DC41F7DD1E0D7D8B35 /* Toast-Swift */, + ); + name = Products; + sourceTree = ""; + }; + ACC2D58DC326ACD708383308928D0B94 /* Support Files */ = { + isa = PBXGroup; + children = ( + 90E003B8130B772344CEB822FCFF122B /* RxBlocking.modulemap */, + CB0F12EC861F2C69260A8A2FE2E5387E /* RxBlocking-dummy.m */, + 30DA5973E36BC417EC7CB9C30FD18A2C /* RxBlocking-prefix.pch */, + 6AE7FC255DC9625AAF88290DE0418E8A /* RxBlocking-umbrella.h */, + D1D2F4329B500575FBE1F0B90CCA7E16 /* RxBlocking.debug.xcconfig */, + F0FAD295B22F6744E34A60F580D7B540 /* RxBlocking.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RxBlocking"; sourceTree = ""; }; B94D7768568A9992200DB461E8CF687F /* Frameworks */ = { @@ -1862,29 +3062,223 @@ name = Frameworks; sourceTree = ""; }; - BE8E13E1284AB276E34A043C43453474 /* Toast-Swift */ = { + BB252CB0CA387210040ABD39D3D0A00C /* Support Files */ = { isa = PBXGroup; children = ( - FB94B48EC9D489EFEE199FF3A179173C /* Toast.swift */, - CC54CBA42D05CABBCA166762F8690EDF /* Support Files */, + 6CD234CE741775E1E8B7C4A20B289E01 /* RxCocoa.modulemap */, + EA62B21A257098E5120BE54B840D34D3 /* RxCocoa-dummy.m */, + 9F3BCCC335B0614633E9047FCF36D081 /* RxCocoa-Info.plist */, + F277B566777F38A7BC6D7D74B6174567 /* RxCocoa-prefix.pch */, + EC009036D9AAF3452B9437DA829D09A2 /* RxCocoa-umbrella.h */, + 9D575611734C069989AAA5B1D17291C8 /* RxCocoa.debug.xcconfig */, + 07186156FD4E71266897A834CB5CEABE /* RxCocoa.release.xcconfig */, ); - name = "Toast-Swift"; - path = "Toast-Swift"; + name = "Support Files"; + path = "../Target Support Files/RxCocoa"; + sourceTree = ""; + }; + BE99FB920D58E9111FBBFD423B94C003 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 11403D067C0ECD67ACAED1223B7F10E0 /* realm-monorepo.xcframework */, + ); + name = Frameworks; sourceTree = ""; }; - CC54CBA42D05CABBCA166762F8690EDF /* Support Files */ = { + C2A8E05CDADF4F7FB0DE4BB6EBA0620A /* Support Files */ = { isa = PBXGroup; children = ( - 624D755BA3D6EB58ECDCB27AEBD33783 /* Toast-Swift.modulemap */, - 68F9788ABEDF3EE8324D788A9FFCD93A /* Toast-Swift-dummy.m */, - 764F9E9317D41813F03840290ED7ADCF /* Toast-Swift-Info.plist */, - 9910EFAF94F42AF20C949A69509B8DDC /* Toast-Swift-prefix.pch */, - E37B3F30705226952570964D5F3FD597 /* Toast-Swift-umbrella.h */, - 0AC8DCA2015581D80D86B5166B10FB03 /* Toast-Swift.debug.xcconfig */, - 968FA21951F3330BDA191766485673D4 /* Toast-Swift.release.xcconfig */, + 1649234E1B6874F074D894215436FE73 /* KeychainSwift.modulemap */, + 487DDF16E6A9A9728F022B8741FC497E /* KeychainSwift-dummy.m */, + 346EE1162E305D6047DFE00357C5CCB4 /* KeychainSwift-Info.plist */, + 32714792314C21B215E56AB2FFA394CC /* KeychainSwift-prefix.pch */, + 59ACD231A627BC30A00D00CF143706E4 /* KeychainSwift-umbrella.h */, + 1F32CCD1DC9C99196D871961C16BC5C7 /* KeychainSwift.debug.xcconfig */, + 74B67F7D91636A2DDB439C486D5E6B19 /* KeychainSwift.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/Toast-Swift"; + path = "../Target Support Files/KeychainSwift"; + sourceTree = ""; + }; + C9B587AEFCCB90D6BEA04EC8D41027A3 /* NMapsMap */ = { + isa = PBXGroup; + children = ( + 7AF7F8C948A189E27F2BEBF57686399E /* Frameworks */, + 6EECC6A4902FF1AD42E7BCA416A8B5DB /* Support Files */, + ); + name = NMapsMap; + path = NMapsMap; + sourceTree = ""; + }; + CCD60A24AA80628C7431E3E975CADDD4 /* RxSwift */ = { + isa = PBXGroup; + children = ( + F3FBF547E580E4FC8AB88FC2CDD9A1DE /* AddRef.swift */, + 2C2B93B794819BE45A0BB0D79DA25705 /* Amb.swift */, + 2D97A7D7B4F9C7F8BC1B04A172320928 /* AnonymousDisposable.swift */, + 617DEA92672783051240E1FFE806F044 /* AnonymousObserver.swift */, + 2DDC9947324414FDA1DFFCADDAD76D11 /* AnyObserver.swift */, + 00DEAEEC4AFDAE05C3346AB6E0DAF888 /* AsMaybe.swift */, + AECA3A35E70228E8F00008F47C956E54 /* AsSingle.swift */, + A3AA42800640EE6AC430C93A15D83902 /* AsyncLock.swift */, + 9D54ECF1779A15F4508AC0BF2A4EFD4A /* AsyncSubject.swift */, + F1BC9BC404D031AD4024077495C2D358 /* AtomicInt.swift */, + 8A6BD5DD7881558307B6D2677423235F /* Bag.swift */, + 605284BA9A07713F37ABE3CD02643C2A /* Bag+Rx.swift */, + C2466D6161E3C60E02DB20EC7907CFF5 /* BehaviorSubject.swift */, + 91DD90BA645F6C04BE83EE943B29883B /* BinaryDisposable.swift */, + 3EA46B1BF24A1454DDAA8A19C2E58971 /* Binder.swift */, + 2555864FD7C6130553E28889C9533125 /* BooleanDisposable.swift */, + 001C89D783603103D2E7A4C3CFA41F70 /* Buffer.swift */, + 8D345072F5BBCB6B06D5CF38D8A09E1E /* Cancelable.swift */, + 82DE3091E5BE0D921D4F3EF97C9A65D7 /* Catch.swift */, + 724500373D9A5B9F20C77DF0140A7928 /* CombineLatest.swift */, + 2BB43362235B43FFCD80AD7934201996 /* CombineLatest+arity.swift */, + 2B94C2ED02DE7D7EAE9480419D066AA5 /* CombineLatest+Collection.swift */, + B2B596FAC8657BE8F78E515807B15C70 /* CompactMap.swift */, + 33817E0FE756712586BF3DB3B090952D /* Completable.swift */, + DC151FA6EAFD79A22D7FF0FD706471CD /* Completable+AndThen.swift */, + EF63BC0AD430C351E771F71A57E674B8 /* CompositeDisposable.swift */, + 64822AE780FD6956D86D6A1DD348815F /* Concat.swift */, + 8CBAC3AC1A8D892308E4E5E063FAEFAF /* ConcurrentDispatchQueueScheduler.swift */, + 320A162AE9287D8C452A95752E566595 /* ConcurrentMainScheduler.swift */, + 7EFFC69F9BC5A4764130DA628B2E190A /* ConnectableObservableType.swift */, + 57C74CE2BC19C73E021D5A554165A059 /* Create.swift */, + 441C4F83B048DA79D9C417B458354EBD /* CurrentThreadScheduler.swift */, + D26C0CB0261E18D1D767B6A99E51CD20 /* Date+Dispatch.swift */, + 2B445F7BDDB003E276EF07A3E46198AB /* Debounce.swift */, + A45B0B58FCA1E2DDE29C1A6302CB69F0 /* Debug.swift */, + 8E13C10737BBF5AA3DD7ED4809A4E484 /* Decode.swift */, + 1C77C700850BC1A31EE7CE81FE49C10A /* DefaultIfEmpty.swift */, + D6A9E2EEB4981BE4B5CD3A9F16905AD8 /* Deferred.swift */, + 78B4E82CF62895788A7B3D5992375750 /* Delay.swift */, + AB7EC37C4BE56170B8B4CD52173041F7 /* DelaySubscription.swift */, + FEE0B8B8E821374435C065BA3DEF65AC /* Dematerialize.swift */, + 650030FB46C8158AE9D6776E55362552 /* DispatchQueue+Extensions.swift */, + 5511F3E60A4AB8F6178D91202EAD9E2E /* DispatchQueueConfiguration.swift */, + 9AA0919B195E457DC4090EC47A3D8985 /* Disposable.swift */, + CD8C48A6452494281645A53D71B7C002 /* Disposables.swift */, + 038ADDE00333895272A23634193D969C /* DisposeBag.swift */, + 15091179A2A3B9FE9E545F7B16FB0AD4 /* DisposeBase.swift */, + 1E980EBFB951A592001CC3959EE5FAA8 /* DistinctUntilChanged.swift */, + FDF6605FE8C5C1DA836346D4A71D26C8 /* Do.swift */, + 79D7323A191A7BB4DBD877679DAF9E34 /* ElementAt.swift */, + 05D7A2BC80FFCCC95BE8D97A208EF0E6 /* Empty.swift */, + 542D4F6DAA524F814249BE56DB9958E8 /* Enumerated.swift */, + 28925FF6F58A742E5E6DD3F3C07EDFE4 /* Error.swift */, + 6C3846393F8E723E42C1597F915A52AE /* Errors.swift */, + CE26F9C17973A4C7D9ED740468E1F2AD /* Event.swift */, + FD38BEBDC7FC0EDD36F43573A3311449 /* Filter.swift */, + 0530EB68CD3A5FFF1445CF240CD7AC9C /* First.swift */, + EBAB1CB1D7370132460AF15D8F9856BD /* Generate.swift */, + 7F9D4D1472F8B8771747127A4DA448A5 /* GroupBy.swift */, + E9757F3F59B16B4D82E1F1DDBBA3BED8 /* GroupedObservable.swift */, + EE701527182A0A865BEA3E87B73BEE4C /* HistoricalScheduler.swift */, + E57A6187C5E85AE877C63DDDFF75F46F /* HistoricalSchedulerTimeConverter.swift */, + EB825B25516F0A88B6ABB051A0A124C6 /* ImmediateSchedulerType.swift */, + 49A56DFE3B841B57363C435618F204A2 /* Infallible.swift */, + B4E6C46462DF43DF9325E5908D9CE9AD /* Infallible+CombineLatest+arity.swift */, + 658D33CBEE3802F725B0B71ADA30B5F2 /* Infallible+CombineLatest+Collection.swift */, + 28EAD857D6F665FF1753560A487A0357 /* Infallible+Concurrency.swift */, + 9A3FE610C78F7724BDFCD7948A357C1E /* Infallible+Create.swift */, + 12DE36707CD21D8DA6286392C1043A9D /* Infallible+Debug.swift */, + E6FF510C123E469BD34A5CE298355E53 /* Infallible+Operators.swift */, + 8C1F3EEF57325228E9B5EDEF351D71F0 /* Infallible+Zip+arity.swift */, + DCC3C15E10A3AC0B7184E35FC48695B9 /* InfiniteSequence.swift */, + 20BC2C485BEA8772CAF6748A5B5729E8 /* InvocableScheduledItem.swift */, + FB7C7803757167E5C73E20C7585E68EF /* InvocableType.swift */, + D99D4B7D9EEA877DFC136342FED19365 /* Just.swift */, + A56EECF3BB38E43277CC5974C33BDCAB /* Lock.swift */, + 59EC02FF635518C647F9F6457A193E23 /* LockOwnerType.swift */, + D3CA3D525AB28D70F09461825EF902E7 /* MainScheduler.swift */, + 63F4AC580AAA1CB01A72D26CF50CA2DC /* Map.swift */, + 466DC29DA9D9A69983D4A1A0D77D2EC4 /* Materialize.swift */, + E7FEA2A54651E065B2372F5E8AC8300E /* Maybe.swift */, + 8DDE0B23CEE99EAD7DCBA6215EF6E0FE /* Merge.swift */, + 088EF3AE010B5FEC4D59BEF60958A54C /* Multicast.swift */, + AA68685CC8D3587939F4D12D01B1E021 /* Never.swift */, + 9685C119CF0A3A66F30614AEDA513A2C /* NopDisposable.swift */, + F12A5A8FEEA8CA0E5A9DA11F15BA80B5 /* Observable.swift */, + 0A66AAED0F94CCD8F3A84F7DB3E85793 /* Observable+Concurrency.swift */, + 103ADFAA6FAC14D13768C65F699B62EC /* ObservableConvertibleType.swift */, + 8C21B4F02575F203F9DBAFA4EAC38EC2 /* ObservableConvertibleType+Infallible.swift */, + 37D7F860F78D8FFE12F06BF9A91D46C2 /* ObservableType.swift */, + 0C14977A1807ACBB8AAAD395373C7543 /* ObservableType+Extensions.swift */, + B57DB4ADB381420D15042B715A56F9A7 /* ObservableType+PrimitiveSequence.swift */, + 29F186411B51C5CA7F3532645C8F1A1D /* ObserveOn.swift */, + 916C9E4C2AC4E15026EAF4E7D44E600F /* ObserverBase.swift */, + DF7B5C304E1B36D8D2BE47858CC3B76B /* ObserverType.swift */, + 6A7AE97462D0F7B50D7360C0D9A9FA17 /* OperationQueueScheduler.swift */, + AB5E956CBBE153FC976EF0DB993F3285 /* Optional.swift */, + 45955CA019BD6182F0AC9DBF5CC2FB83 /* Platform.Darwin.swift */, + CCB7652C1673BFCE771CDA331530C443 /* Platform.Linux.swift */, + 8B35284DCDF41CC60756FCC3B0D63EF6 /* PrimitiveSequence.swift */, + B48BF66F4403EF23343A0DDD9B215326 /* PrimitiveSequence+Concurrency.swift */, + A3966491D8320CAAE6A81CCF410B99F3 /* PrimitiveSequence+Zip+arity.swift */, + 4ADE78DCE41527E36CCE32B7618453CA /* PriorityQueue.swift */, + 00F13883E034FF5F6469AC7881E0E8DA /* Producer.swift */, + 1EA00BB965E2B2DC494C444FA7504D1E /* PublishSubject.swift */, + FCAF46AA5FAB0728FB3BDD9C07F9BC44 /* Queue.swift */, + 609D5A3A0BD0C67C146E51BF3CA93EAB /* Range.swift */, + 6614E2C4346C0A68F3F62F8C81547F7D /* Reactive.swift */, + CF7C9475407D2F53A3559CA405771782 /* RecursiveLock.swift */, + 6A339C91569DC7EE930C0196E7AEAC5B /* RecursiveScheduler.swift */, + E0C1B88DB2AEB2FEFBBE71D6FFDFFE9D /* Reduce.swift */, + 905176FECE64A18B0CBFBCD249924E68 /* RefCountDisposable.swift */, + 0AD94CC8262D710BD25455B1814E3BAC /* Repeat.swift */, + 56D4C900CAF2C4B91296DD66FC5771E8 /* ReplaySubject.swift */, + 79564758F1811E6E67A015D4C8D83074 /* RetryWhen.swift */, + FDE09FFAC51CB12052320F2237E99EC9 /* Rx.swift */, + B8D8C4793F08A8437A613286DA1393CC /* RxMutableBox.swift */, + B3309E5D7855CD6A606ECAFBA2980425 /* Sample.swift */, + BD8AC584904870CA21904B1FFE4637AC /* Scan.swift */, + 8789E4DE7A86BE9DD829E4DBC202758A /* ScheduledDisposable.swift */, + 7CC8F45E2526370D34D8CB0560E1F70F /* ScheduledItem.swift */, + 489E13F9C9A49223BA899CB2185DB0E0 /* ScheduledItemType.swift */, + 33A287CDF23907C4B181476DAB8D5B90 /* SchedulerServices+Emulation.swift */, + C291189F16072FF3DEC3490950649B7E /* SchedulerType.swift */, + 12A3F1C0D910933BE53CFAFDE661348A /* Sequence.swift */, + 76826A06FB116FCD4D9991A1F10DE38B /* SerialDispatchQueueScheduler.swift */, + E711D9BE08F6411E387B1DD6E3C4B0CC /* SerialDisposable.swift */, + 0D076844A55EF9863B458AAD9D1F96EA /* ShareReplayScope.swift */, + E867D8AAE484D20063E19781169F0E87 /* Single.swift */, + 8F1377AE2A018374F7E38102DAB38EC1 /* SingleAssignmentDisposable.swift */, + B0273365CF273519C454BF191B7A6B33 /* SingleAsync.swift */, + 9326B8E9A62BDAAB3D2CADB522F34A2A /* Sink.swift */, + 8067B38C5F0B08F34EB1AFFA11A5C63B /* Skip.swift */, + B91361BE65E8D40884D4F5C6F70B87C4 /* SkipUntil.swift */, + F86C6BD69088682E7DAEC4758D18E02E /* SkipWhile.swift */, + 60446A48826CB6592871310646E31F54 /* StartWith.swift */, + D3661B79D569F9E786A4AE80DACBA8EC /* SubjectType.swift */, + B4168666E95A8679EE3B962AB55F462A /* SubscribeOn.swift */, + 1261E7A051D207A52D87F0770405803C /* SubscriptionDisposable.swift */, + 68739916950FC1D5429BE6BD8D7AB6C6 /* SwiftSupport.swift */, + 27156BF2D39ECA5104E73A3AF07E1A4E /* Switch.swift */, + 875ADA8C436E3A76647880FF1D8749CE /* SwitchIfEmpty.swift */, + 2524B8617B08AB2A656F7418D1DDEE4A /* SynchronizedDisposeType.swift */, + C1A276A29DEAB9DDC4BA2367671C577A /* SynchronizedOnType.swift */, + 46C7643CC668329A9F9ADF24B26F3440 /* SynchronizedUnsubscribeType.swift */, + 3511165BD92F716B65DAE699C189522A /* TailRecursiveSink.swift */, + 34D91BB3FD498C243403C1FDB239100F /* Take.swift */, + C2E35B001D8E6B24570A6E45880B6FD3 /* TakeLast.swift */, + ECC0D2257CF566B6350F3B2D1AE69AB7 /* TakeWithPredicate.swift */, + F74942741CDEE0CBD5033ACF8A764AD4 /* Throttle.swift */, + FDF5991BD010773334EBAB041F268DE1 /* Timeout.swift */, + 7031BBA1EE40AE5DE251922D41E89891 /* Timer.swift */, + 8822D938FEC4E4C6A3921F1E0F1AAA77 /* ToArray.swift */, + 66A4D4CE48F5708FD3F46BCFFBDCCF64 /* Using.swift */, + 5F335876373BF5F36C9356B7860E51AF /* VirtualTimeConverterType.swift */, + 886B4D73AE46A1BBBE9A4A6534810DE6 /* VirtualTimeScheduler.swift */, + C9AD481FD59F64451799D78FEA007C1D /* Window.swift */, + 51C8E5EEF0C3C9436BC02A9697FA2282 /* WithLatestFrom.swift */, + D111A50B81A294CB5D6ED0717641EDA6 /* WithUnretained.swift */, + B7536E6E9B07BEB522685CA429E6B663 /* Zip.swift */, + 70633AE6ED6BF0C393657353D12AB6E7 /* Zip+arity.swift */, + 71089096F8C350C9C983A82FCFDE864C /* Zip+Collection.swift */, + 651B7DA780BF044AAA5CBFE4BE0A2B89 /* Support Files */, + ); + name = RxSwift; + path = RxSwift; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -1892,411 +3286,475 @@ children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, B94D7768568A9992200DB461E8CF687F /* Frameworks */, - 8109237FC3E4D831627FB765A0EB26E1 /* Pods */, - DFCFD7A5F837CB0E70C3CBB7AE28B0F4 /* Products */, - E5BDC121CF915B138F68EA2C71442330 /* Targets Support Files */, + 61FD796141683A849B20518C4A442F7F /* Pods */, + A67590B45AFA83AE7358D48904F2F949 /* Products */, + DA33F9B66BDD998AFFD1E67FE140268C /* Targets Support Files */, ); sourceTree = ""; }; - DEF898E28DA2A4B42D5A3BCE23BD04EA /* lottie-ios */ = { + D7AF8B1D875ED5E8D5AB150105DFFB3A /* Support Files */ = { isa = PBXGroup; children = ( - 16F9243AECE5E40A0319EFA6521FA74B /* AnimatedButton.swift */, - 99B987C5520C9C4268CE5D4D93BA2940 /* AnimatedControl.swift */, - C7C478519C78E16790810749945F1847 /* AnimatedProviding.swift */, - 75CA372D3D8B2D199B1E2FB95F550063 /* AnimatedSwitch.swift */, - 32F0015A2EDC47766A9C0189023BF39E /* AnimationCacheProvider.swift */, - DD01264970D500B5BB3B5DE49CDBC7CA /* AnimationContext.swift */, - 613A99E592EDDA1898A8D7439D8AC619 /* AnimationFontProvider.swift */, - 4BBABF396A9D165E38D2240FBB0E7781 /* AnimationImageProvider.swift */, - 92C459189B52647D938D1B09D25B6A6B /* AnimationKeypath.swift */, - E04729D9EB2D946A313FD97A39FB82AA /* AnimationKeypathExtension.swift */, - 20D10781D96BD4560FFF812607286625 /* AnimationLayer.swift */, - DBA8D0FFDC4BF60A1648C05FAB6EC6E1 /* AnimationSubview.swift */, - C61026F8E1C6DF54CDB5A69F15C2200B /* AnimationTextProvider.swift */, - 1BD2F73DE053B358B886C9C26BBAB25E /* AnimationTime.swift */, - 706A373605DA6DE514EB4DDF7E346D38 /* AnimatorNode.swift */, - 3E242B0418B2FCD497FE2C8D5E440EEF /* AnimatorNodeDebugging.swift */, - D816A3855236519E1A0E0A46ECD7D0CC /* AnyEpoxyModelProperty.swift */, - 480D4B7900FABAD0FBBD57547E2B02AD /* AnyEquatable.swift */, - BAC043563295EAE19EEAB5AB5B9390BB /* AnyNodeProperty.swift */, - F3CC133D57D32A1D3A52EF21C9E1081B /* AnyValueContainer.swift */, - 9A321CB5D3E0DE838C9DA04B993A8757 /* AnyValueProvider.swift */, - C9B26D7A37150A621803CC4ECD6148C5 /* Archive.swift */, - 2153295D7D55786DB39F2D530A3524B8 /* Archive+BackingConfiguration.swift */, - FD9005902C75823CFD67A7E8BCC645F8 /* Archive+Helpers.swift */, - FB543F2A515EE8F7B49F875E6678D31F /* Archive+MemoryFile.swift */, - 62B866A675ADC596826EF0E2BB4DBC68 /* Archive+Progress.swift */, - D01740C96A09F50C2535EE2C6A04EC5C /* Archive+Reading.swift */, - 0B9EAFB29D1AEDEC2476EF9BCEF10219 /* Archive+ReadingDeprecated.swift */, - 4E89C352EC689DF0A293A254AB4E68E1 /* Archive+Writing.swift */, - 315014AA07D6AA22E49D53CA155ED729 /* Archive+WritingDeprecated.swift */, - 7BFB0EC9D5EA409146311005CDDBF3F9 /* Archive+ZIP64.swift */, - 4C52109CE580E088232E9383A81464F8 /* Asset.swift */, - 4F52E7A09E7974F04943A912544A2500 /* AssetLibrary.swift */, - FB271E0B57884464C02F1575DB0846E1 /* BaseAnimationLayer.swift */, - 9C4C84C0A05071A9B44745CD753281C3 /* BaseCompositionLayer.swift */, - 0B3438E5D5086413F257ED7AEA59A2A2 /* BehaviorsConfigurableView.swift */, - A62BA6BA0B225FFBB4D55598BA000365 /* BezierPath.swift */, - EE6D616EBB84C9DC6B6C1E3C832301F9 /* BezierPathRoundExtension.swift */, - D8A1D4FBA04502437BE21EFDA6BC2F38 /* Binding+Map.swift */, - E80D7500FF17E9EA1043FE3CBA20EA62 /* BlendMode+Filter.swift */, - 6510416D95CE35D1CF66968816548A05 /* Bundle.swift */, - B3E2ABC8366E63A838F37E767067F0D3 /* BundleImageProvider.swift */, - 08AB171B9CEBE1ECC55F8BB91865720C /* CAAnimation+TimingConfiguration.swift */, - DF0A593603472D30687719424074C401 /* CachedImageProvider.swift */, - CEE6461FFF487FE2242AC0B6D253B094 /* CALayer+addAnimation.swift */, - F561B2FC8A4D401A83E9874A09B3ED00 /* CALayer+fillBounds.swift */, - C157B395E0985161CFE1DD61FF9EB2E5 /* CALayer+setupLayerHierarchy.swift */, - F550180DDC544B8FA18FCF3ACE5EC3F9 /* CallbackContextEpoxyModeled.swift */, - 6968A26C99C961457E447826C46E3D8F /* CGColor+RGB.swift */, - B24C80FE57C70B4FB2208269EB5FF682 /* CGFloatExtensions.swift */, - F802AF2917E9AA77899AB8FAFAD7BC7B /* CGPointExtension.swift */, - 59AED4516C95B175F961BA866E06B83E /* ClassReference.swift */, - 2703A5F9C58FDF84EDD08202C38E37EA /* Collection+Diff.swift */, - 48DEBFF7A40F5A7D6D5F0A9DC09BBCFE /* ColorEffectValue.swift */, - 7C115278709DA827A8B29064522A37AB /* ColorExtension.swift */, - 1CD0EAEE6306F94D0A694861F8595826 /* ColorValueProvider.swift */, - 563FAEAEC8E0A5F03D2BF452987615DF /* CombinedShapeAnimation.swift */, - 8A336D31EF81FED2F159C6D2D14A3036 /* CompatibilityTracker.swift */, - 6A2CEE5949485C5FAE0C0F8ABA81B4BC /* CompatibleAnimationKeypath.swift */, - 4929767F2BCD68231390FDEEF963CA0D /* CompatibleAnimationView.swift */, - 62274ABE2673EABF6CC5EEFE8FFDF50C /* CompositionLayer.swift */, - 02D5AB701C5DF45DB35F7115F8D080E4 /* CompositionLayersInitializer.swift */, - 6EED41F01591762D9E082DD9B03E37D8 /* CompoundBezierPath.swift */, - 756A2FDE480EB12B7E88E843020E1933 /* ContentConfigurableView.swift */, - 20DB8386DD36489F0F24FCD1546A3EDC /* CoreAnimationLayer.swift */, - 388035D86AD5210A0D7A636B50F726CA /* CoreTextRenderLayer.swift */, - 7AEACCDFBE16D974FBECC3D8409E2E09 /* CurveVertex.swift */, - 1F95A14EF92AAC7F16BCD2AD31B64927 /* CustomPathAnimation.swift */, - 7D1CED719FAB8BB8AF182430A81A5536 /* DashPattern.swift */, - 7205424248BD4FF2BD02B22973FF7133 /* Data+Compression.swift */, - 527308F7416A5DC10FDF920E9C8E6682 /* Data+CompressionDeprecated.swift */, - 433C7553A834AAA75E970DC929F7020C /* Data+Serialization.swift */, - 51149948E322682EB2A96FDC07500B1A /* DataExtension.swift */, - C3991C2A53BDA42624A61BB3BDF09F4B /* DataIDProviding.swift */, - 4294607D7E91B4082733685F29557A10 /* DecodingStrategy.swift */, - CF1B0D1EA447A777447695F899DB891D /* DefaultAnimationCache.swift */, - 746852E6901A421E923336147ECFDD22 /* DictionaryInitializable.swift */, - F3293DD6F2F74BD69F152AAACC0D9D31 /* DidDisplayProviding.swift */, - 9158E2D888C99B5045412C1315BF8621 /* DidEndDisplayingProviding.swift */, - BDCDD7EA8E95A46845B25ED4E573BE29 /* DidSelectProviding.swift */, - AED604359ACAFD7A0E5DC640273219CD /* Diffable.swift */, - 54657275653BA5C6C5ED9112C9CAFBF1 /* DiffableSection.swift */, - 039DAAB79C5113238A91638E2283E622 /* DotLottieAnimation.swift */, - CE8AD825CF18C83D98D49AE1F1651725 /* DotLottieCache.swift */, - 7C6792F58D0831D4996C24DA0D8D4868 /* DotLottieCacheProvider.swift */, - 17CA758EA8D0D83B9C856FC345540ACF /* DotLottieConfiguration.swift */, - 92FD3E0F2EE69809E3B0C0B856061904 /* DotLottieFile.swift */, - C27A0F8199AA68CC4F45DFFE5F419B67 /* DotLottieFileHelpers.swift */, - 438306A4F2821D2E85E43B3841080B09 /* DotLottieImageProvider.swift */, - 2B0E424C5BE718BEBB7331557DD97946 /* DotLottieManifest.swift */, - 538373E4A512C555B6D2427BFFCEE4A9 /* DotLottieUtils.swift */, - C9A962B0C7C28A4C8E9E365C990238B2 /* DropShadowAnimation.swift */, - B503E304F4475CE4D0C2E37FACE1DF3F /* DropShadowEffect.swift */, - E03AB0573EE818531725CE054B577797 /* DropShadowStyle.swift */, - F3F17FC60596226EC31A4D2F8DFC2D01 /* EffectValue.swift */, - B4C1295FCFBE7DF40A7A625F75B876FE /* Ellipse.swift */, - DD8506EF9825DFAAE461A106A7ACCF84 /* EllipseAnimation.swift */, - B1B5F4282E471ECDF371D05BCABBC968 /* EllipseNode.swift */, - E0C912DB3EB64AC1A6B4FD6EE816EE09 /* Entry.swift */, - 882A13497CE1E9C9F115E4931C99BC16 /* Entry+Serialization.swift */, - B2E4097D6B3F296ABA449836684B7FDB /* Entry+ZIP64.swift */, - E6C496C6423E065D1B0DAFBD8B0DBA84 /* EpoxyableView.swift */, - C982156A14473EA5ED7DA2A098DDFFC0 /* EpoxyableView+SwiftUIView.swift */, - 1EB104F7D54AC23CE0C0FD5787A80315 /* EpoxyLogger.swift */, - 2596C6AC2322648B4005A1206F42FBBB /* EpoxyModelArrayBuilder.swift */, - 6C6067A5582236B8B77411699779E2A3 /* EpoxyModeled.swift */, - 483E1BBDFF9D2BADA7A6FA4C82FE66D5 /* EpoxyModelProperty.swift */, - 555473186EC1E6190616CA464F025375 /* EpoxyModelStorage.swift */, - 95A5C354AF98AE1FF16AE854820DD928 /* EpoxySwiftUIHostingController.swift */, - 27BAFBB1118459F63E05E19B5943537D /* EpoxySwiftUIHostingView.swift */, - 06F36FB26DD99048ECA47351580BC655 /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */, - 27B4521CF6F785B405783CF7E5DFBAB8 /* EpoxySwiftUILayoutMargins.swift */, - 913171AF8444D6DF145ED4A480433907 /* ErasedContentProviding.swift */, - CEBFF303E29038D81B844D31BFE7AC83 /* FileManager+ZIP.swift */, - 276E371660D70A6B95D51818627028F8 /* FilepathImageProvider.swift */, - 76D7DB6BF680CDE11B5F62D63051CB48 /* Fill.swift */, - C567314B30885448B44581E563ADBDEF /* FillNode.swift */, - 13D087D6CAB65EC7172F8CEBAA2550A1 /* FillRenderer.swift */, - 6116EE55B2599D953DBBC582CDE79420 /* FloatValueProvider.swift */, - FCA618AFFBEC22D0B0868016477DCB50 /* Font.swift */, - 88F83019CAD3AC1A24126FB28227624A /* Glyph.swift */, - 117EBE15DB80CE617303A8652D9BF2AF /* GradientAnimations.swift */, - 4CBB6C339DF908B46529C4FC87258F54 /* GradientFill.swift */, - 2492C5FA2031D75A5F76423EE814F791 /* GradientFillNode.swift */, - EF80F5192A52DB28BBDFD5ED930232B3 /* GradientFillRenderer.swift */, - 57BDD6FC757718EE27E2BCA7D1F03A69 /* GradientRenderLayer.swift */, - BEF3A41916953240EA7FDA40F9D80E04 /* GradientStroke.swift */, - 06FC87E7D608AB294FA13C6023B7738B /* GradientStrokeNode.swift */, - 805237E7AC265D9A395D62B5BC8FA63F /* GradientStrokeRenderer.swift */, - B2BB9B51803CCBE4888FF21C55A56D50 /* GradientValueProvider.swift */, - EDC373898DAF7FFB6F27DB4BAE49E648 /* Group.swift */, - 76760289CE276015628335EE998E177C /* GroupInterpolator.swift */, - A0BA3041CF29FCD67DE6D4D74C6C63FD /* GroupNode.swift */, - B0D1B40C4EF2E478BA1CC798CC816769 /* GroupOutputNode.swift */, - A0AFC5C0CDD6172838A697D8BF2D2127 /* ImageAsset.swift */, - C22A2E2350913BC70DCA91FC461BC8F3 /* ImageCompositionLayer.swift */, - 09E4764F51F7F9A5405C97C6EC40E92C /* ImageLayer.swift */, - 7A08251A571DAA6739976FB5EA966B41 /* ImageLayerModel.swift */, - 720CC4DA7103B1758B86E260455C8A8B /* IndexChangeset.swift */, - 5821D18880FB3447E85F69FB2F270E8D /* InfiniteOpaqueAnimationLayer.swift */, - 2636ABE736F5E76D7B68CEE477CED275 /* Interpolatable.swift */, - 6C3AA9F758B0C38E87CECC8783F91B37 /* InterpolatableExtensions.swift */, - CC69C5056A692C9A17E5D38E959E8545 /* InvertedMatteLayer.swift */, - 428492039AC1C11B454EE21650D59FD5 /* ItemsExtension.swift */, - 32C9D01175A77DFA83A9A97AB05DB591 /* KeyedDecodingContainerExtensions.swift */, - 696EE1A544273E991740CB2FA0820EB5 /* Keyframe.swift */, - A9AD6FF187C186C57AAB2DDFCADD98EB /* KeyframeData.swift */, - 85556BFFE11145E9E85E101B2B676FC5 /* KeyframeExtensions.swift */, - 625C1F128A0E6DA6501B9E7AFC815992 /* KeyframeGroup.swift */, - D37B1F0911D2E4414FA92FD4C2BF1288 /* KeyframeGroup+exactlyOneKeyframe.swift */, - E4A2CA5DBF9C38E207D2BD40C4BD7ABD /* KeyframeInterpolator.swift */, - 62A91C796BC9A1E0D6A626593649B4E3 /* Keyframes+combined.swift */, - AEBB74F68756AD34AC2A250E4E1C1B92 /* KeypathSearchable.swift */, - CF3D03841FC8919E8A2EB97BEF97E9B6 /* LayerDebugging.swift */, - B1FA2E92E78BA64A7D8D1BBD283797C6 /* LayerEffect.swift */, - E2336F748C14CBF0B7FBC4C42FB9480E /* LayerFontProvider.swift */, - D40668DDD0D4964BCDAEA10C35BFBB63 /* LayerImageProvider.swift */, - 8269DA906E07ADE08B35580B4F592F6C /* LayerModel.swift */, - EE9805BE277706C04C79D1293FFBAE8F /* LayerModel+makeAnimationLayer.swift */, - B89D28320E2954638D28597AECCFA1E7 /* LayerProperty.swift */, - 5FC84A277AEF7C4BCAC41F2C62EFCC31 /* LayerStyle.swift */, - FCC2F218AAFF8A5E4DE851A4AF6DDD9E /* LayerTextProvider.swift */, - 0562F4E415C5D503D1C44E8D147EE294 /* LayerTransformNode.swift */, - 8FEDFE08B9841D968C29D13F97778666 /* LegacyGradientFillRenderer.swift */, - 5E43B43C5E2369DEE927A8CC82D632CF /* LottieAnimation.swift */, - 6074539526D31DC7E4E828C87974D23B /* LottieAnimationCache.swift */, - 1B3AB7A356AE4D8E716B9E59428730E2 /* LottieAnimationHelpers.swift */, - 68C50323447603857ADFE3E3B33A26D2 /* LottieAnimationLayer.swift */, - CF4E2FACFB6FD0FA3D6FA246A6E6461A /* LottieAnimationSource.swift */, - FF5ADE96BACD561E99A03905EC4663AC /* LottieAnimationView.swift */, - CEA5975020FEB83E6ADF91D0486A152D /* LottieAnimationViewBase.swift */, - 471A84AC28A10700E9387A4C9AA9EC08 /* LottieAnimationViewInitializers.swift */, - 720EE191715F567136A04AB1F45C297C /* LottieButton.swift */, - 199C39F898ADC27A4F5C404AE3DF1D4B /* LottieColor.swift */, - 1F5DFCA36E9F4E0FFDF24E42E13515EB /* LottieConfiguration.swift */, - 2A3FA04443741F9E7A77EFB4062A09E6 /* LottieLogger.swift */, - 06D31339F4481B367CC16FB147042246 /* LottiePlaybackMode.swift */, - 84BE1D4F230DED4DD965CC2849D4E32B /* LottieSwitch.swift */, - FBF988A3DF82940B3C0192114590B5B7 /* LottieView.swift */, - 88A0E125A35A660E4D8D52041BC15AD1 /* LottieViewType.swift */, - 4FE038486534B0A3ADD8997E45DF52FC /* LRUAnimationCache.swift */, - 465BC0FFEEC1DE7299C4A32DF3934D39 /* MainThreadAnimationLayer.swift */, - 1BA73136655B28344903D9D85A4DDE7A /* MakeViewProviding.swift */, - 3AF593A8B8F26C667FC2244FF4C8F7EB /* Marker.swift */, - B501CE6BCA6B0524C8FEF6B6385B9595 /* Mask.swift */, - 5E28A0B3F7CF6B141C781F3AD5613EBA /* MaskCompositionLayer.swift */, - 269921796C8822381E0DC80C153B370F /* MaskContainerLayer.swift */, - EB09169E5772F46927E07289594C0206 /* MathKit.swift */, - AFAEE40FDF2777614CF6A400F08FB774 /* MeasuringViewRepresentable.swift */, - 5920B7E0E828FEA36AD51B02F3D79BDB /* Merge.swift */, - 3C4F8A92A82CAD07C26E4817FDD212EE /* NodeProperty.swift */, - E5E2555A00D1BD031DCBBF6BB99A152A /* NodePropertyMap.swift */, - 848F505EED1CFC305DBE35BE3D82A327 /* NullCompositionLayer.swift */, - C26ABF8BF80EBDB10379FAA77F1A0B8A /* OpacityAnimation.swift */, - EB07F9F5511EC432901E9244416C45C3 /* PassThroughOutputNode.swift */, - E4407ED31EBC346427D3CF1E4CB07943 /* PathElement.swift */, - B963E928E25D4C72D97389CF1E885824 /* PathNode.swift */, - FB964C982DD9A455386AEEAC17CE0EE7 /* PathOutputNode.swift */, - 1180F50B9248F823941EC40B6FFAD464 /* PointValueProvider.swift */, - FD84B6CC54B055661967F44DB159C58D /* PolygonNode.swift */, - 116DE14272D9E1324CC0565D37E8419B /* PrecompAsset.swift */, - EEABD10E1A7FF1E5C6FFE8ABC9101796 /* PreCompLayer.swift */, - C79288B8A24B75EF43275EEC98B7C31B /* PreCompLayerModel.swift */, - 0E0CD38F030AE5C1113F0320D9D2D50B /* PreCompositionLayer.swift */, - BCE9D5401D6AAC4ED13934A85B32875E /* Rectangle.swift */, - 476BA50B533E5DFAF86BCA6F2FDD540E /* RectangleAnimation.swift */, - 0F715F5321D6AEBA8C52D015FE64AE46 /* RectNode.swift */, - 0F0FC6BA73B1D4A55184295473DBA164 /* ReducedMotionOption.swift */, - 2CDE6ECEB775615D9A1E6E85663EE0CE /* RenderingEngineOption.swift */, - C5A9D773601E9074CC040D94757C72C5 /* RenderNode.swift */, - 6658549B2116D0E9747F436C56FC1CDC /* Repeater.swift */, - 2B2AF7B1375772ECAB6FEBFA30547405 /* RepeaterLayer.swift */, - 9ACFE69119899B7D3459E843FDAE6895 /* RootAnimationLayer.swift */, - 3C0AED73A85CDD249A514DEE140ACFD4 /* RoundedCorners.swift */, - C41ABCD51562CEBF5C24327A3F14EF54 /* RoundedCornersNode.swift */, - 726B7172C27F38E023D565B92EE60381 /* SectionedChangeset.swift */, - C65D241DAD5AA3B62B7F67390E36426F /* SetBehaviorsProviding.swift */, - E2BF29C67B645E6880A7948E00FE1050 /* SetContentProviding.swift */, - 69C691940718E7F64F536E5729556683 /* Shape.swift */, - A1038534C00CEDF862C8EF417F1B8907 /* ShapeAnimation.swift */, - 2CB771BF88CE17F14239FE2D5B865F2F /* ShapeCompositionLayer.swift */, - 59388D180F9BF67CD8520B33EFD65F80 /* ShapeContainerLayer.swift */, - EA185170409DFB8C039D9C071DDA36ED /* ShapeItem.swift */, - 4F9D98AD1F5595A9ED6789F536FE0FC1 /* ShapeItemLayer.swift */, - 1403F3C09A6E005D9AB0441AEFB3A5B2 /* ShapeLayer.swift */, - E52746CC2034FC2CB160339E62F2945F /* ShapeLayerModel.swift */, - 8B5EAB9AA44398E55C8FF8479F89679A /* ShapeNode.swift */, - 5AB18E854422E2E075CBE851142C891C /* ShapeRenderLayer.swift */, - A20FDDF81A6BCAC95D2832A932698D5C /* ShapeTransform.swift */, - A280CA75865CFFBBF8E0D13D75004035 /* SingleValueProvider.swift */, - 9EA4752B73E63203CB356EBDD437099C /* SizeValueProvider.swift */, - 1F664B0A33E0AB7A1E8ED859324BC2B5 /* SolidCompositionLayer.swift */, - C6F038FDFBF871C3E7A0A5F8E7A2F3DA /* SolidLayer.swift */, - A7EDF137A3B4E062DFB039FF3705C0C8 /* SolidLayerModel.swift */, - 8D7399E1BF7C287B095EC1E8B6E35CB9 /* Star.swift */, - C825A1A8613F553854B1DB58419CE650 /* StarAnimation.swift */, - 7D2A92B88B472CFE91649E197B18A0FB /* StarNode.swift */, - 77B5B0EF9598ECCB3901F7128032B4A0 /* StringExtensions.swift */, - 924836D47B15E6303A7A2EAD04E55592 /* Stroke.swift */, - 2A471E722BBC0987A30D3158A46EB3D7 /* StrokeAnimation.swift */, - 3C7259EE447CBCE0DD214636A467ECCB /* StrokeNode.swift */, - 175265C05A57BEE55D8B272FCF489A77 /* StrokeRenderer.swift */, - D616E6829F99955CEAEADA9FF9D23953 /* StyledView.swift */, - 7522B74D083E25C50A1EE4AD0C6823E5 /* StyleIDProviding.swift */, - C40DBBFC02FF6821538FD7D82C54452E /* SwiftUIMeasurementContainer.swift */, - D896D2CE745628D60142BD18648F651E /* SwiftUIView.swift */, - A72A73ADB60C2075A36EF84CBE1D2968 /* TestHelpers.swift */, - 4A30157CCFC9C31BC5CB23741A1823EE /* TextAnimator.swift */, - D1111FFD5BA6CA1DA7E82D21FB7ADADD /* TextAnimatorNode.swift */, - C9CEF9CB5ED60F706AB7408B92A72BB4 /* TextCompositionLayer.swift */, - 254EE68875321ACB4D0CAA3BB91B962B /* TextDocument.swift */, - A3476C0A1F926CCE2B98EF022022E81D /* TextLayer.swift */, - 9B68B58BA0ED37137D546F521F78795C /* TextLayerModel.swift */, - 912399F9777F184810D6D93338493CBC /* TraitCollectionProviding.swift */, - 16D3C2768C8E277D01D36754F641B087 /* Transform.swift */, - 91FF4CA967F12F0F9BF00500A2BD96F5 /* TransformAnimations.swift */, - 348104567F88E116122B5B31CBFEADF6 /* TransformLayer.swift */, - 124B2E4AC262422515FBB166C49D35A7 /* Trim.swift */, - 3FCEB0BDDD8E6FE153E11F17351D4289 /* TrimPathNode.swift */, - F86EFE37E4E5F84050E765D3822AFD27 /* UIColorExtension.swift */, - 98BBDB661B80D66EDE4E693BB8928C50 /* UIView+SwiftUIView.swift */, - CABC07BA1A43EE7F6934D48615650384 /* UIViewConfiguringSwiftUIView.swift */, - A48287ED8D9BE2766B6B2E9854F74AE0 /* UnitBezier.swift */, - 27F49DB8396288BCB626455CCA711F71 /* URL+ZIP.swift */, - D28383CD7EAE5E302C08CA24B14A0547 /* ValueContainer.swift */, - DFE44398FF4BCDAEEA464DD296C215AA /* ValueProviderStore.swift */, - 9B7E59F21AC5E73CF480980022BF1B01 /* Vector1DEffectValue.swift */, - 7D5D246000AD309756B690D244F6964F /* Vectors.swift */, - 79410E0577F006E1BB489A031688BD84 /* VectorsExtensions.swift */, - 6E8F658AB5126E76DD2ED03889CA80CB /* View+ValueChanged.swift */, - 057EC2EEA5E7C976C06767E28176CD8D /* ViewDifferentiatorProviding.swift */, - A0605737166C5354E972F2A6608202B3 /* ViewEpoxyModeled.swift */, - CB64743F0ED8819269665E76B55705A6 /* ViewProviding.swift */, - B8697693CFECA89158EA240E2B0519DF /* ViewType.swift */, - 9F6E806F55D4C45538F526EBE5400F6C /* VisibilityAnimation.swift */, - 9768A22FD3C8757341AC9BD834D71AFE /* WillDisplayProviding.swift */, - 3B8CBE2E8EF1515101C432698EAE63AD /* Support Files */, + 92EE6742B29AE7E07816BDC2518B53CD /* RxRelay.modulemap */, + CEA841B00F96A839941230D6A8078F14 /* RxRelay-dummy.m */, + 6D263D21573903B618C8E9CAFD0621AF /* RxRelay-Info.plist */, + 92531B1E99B6D11E11F5F8D1386F1D66 /* RxRelay-prefix.pch */, + B2C7D5793E449BCB90D5DE11A39615EA /* RxRelay-umbrella.h */, + 57DFEE9A04F36ECF43C05016E8CFC076 /* RxRelay.debug.xcconfig */, + 713AD94862F38B25DD88B6FEBE5C9BF5 /* RxRelay.release.xcconfig */, ); - name = "lottie-ios"; - path = "lottie-ios"; + name = "Support Files"; + path = "../Target Support Files/RxRelay"; sourceTree = ""; }; - DFCFD7A5F837CB0E70C3CBB7AE28B0F4 /* Products */ = { + DA33F9B66BDD998AFFD1E67FE140268C /* Targets Support Files */ = { isa = PBXGroup; children = ( - 988EA11A5ADBC68DD7711FE8238A781A /* AmplitudeSwift */, - 9E0FD012ADC3C7179C684035672383E5 /* KeychainSwift */, - 51BA97E8B5085EFFB47BC9C0B785CEA7 /* lottie-ios */, - 0C4CBD9773E7794962E30DD82A779441 /* Pods-AVIRO */, - 921BE4A82C4A7A5C72A0C6F8B8FEF200 /* Realm */, - 437919EE08EC6BFCCBAC3BD346309742 /* RealmSwift */, - D6043471C96F93DC41F7DD1E0D7D8B35 /* Toast-Swift */, + 4CD2670B043A29DA925C76A4F7299768 /* Pods-AVIRO */, + ED406AF06B815D078D455AE483E358C5 /* Pods-AVIROTests */, ); - name = Products; + name = "Targets Support Files"; sourceTree = ""; }; - E530FCA917047B09E706A75AED73D912 /* NMapsGeometry */ = { + E9C2FFBCC261577B90981060C7A3C2B2 /* RxTest */ = { isa = PBXGroup; children = ( - 7AECECE2600600EDD2C088AC6467845B /* Frameworks */, - 316E82DCCFF3A6EB62FB3815B89E2208 /* Support Files */, + DDE8252767700D860BEDA5F5A0CADA05 /* Any+Equatable.swift */, + 684E3D82C7CD617041F8FCFA162CF26C /* AtomicInt.swift */, + 238409D7878DE58EDD535CB17AE1E1B9 /* Bag.swift */, + 66F3A446DBD8ECE560066DD3C867F6D3 /* ColdObservable.swift */, + 6FE2F455BB0B3BB511814A6969E19707 /* DispatchQueue+Extensions.swift */, + AE9A5FE5ED0657DF9A39A210CB6E8DD4 /* Event+Equatable.swift */, + 740BE94EC18CA6A5382C86DC1B46FA4E /* HotObservable.swift */, + E910CFC74C7DFF1D534FC1C7A59E32F8 /* InfiniteSequence.swift */, + D21FF42CAEEFE4A7556D18008FB5E1D8 /* Platform.Darwin.swift */, + 7D3B28F645FAB86D2BBADF61D1D6FD74 /* Platform.Linux.swift */, + A8E1A2EA300F45CF1236EF693429A7CD /* PriorityQueue.swift */, + EE31A23837332C96DF9A51A44C6AFBCA /* Queue.swift */, + BC91FDFBA01EAF6E81823766C48F913D /* Recorded.swift */, + 0A41F9DF86C366E661917D5FB5A75AC2 /* Recorded+Event.swift */, + B4B4EF58AEF0E9288D603D0C8E2CB8A4 /* RecursiveLock.swift */, + 70E903356FEAF3CE7F96AA1E83054836 /* RxTest.swift */, + 522C0862CE62DD0D18F58DC510619CD4 /* Subscription.swift */, + 4D1B73AA090CE62DEB33A5541738881B /* TestableObservable.swift */, + 093D1D2DDAC4C8513E1C43D727F9AFF7 /* TestableObserver.swift */, + EF926AE70A68337A9C7C741B88EF6D07 /* TestScheduler.swift */, + 0D6614F4A98E277548DB9784CB5D191D /* TestSchedulerVirtualTimeConverter.swift */, + 87B1022825589D834006BEFEB11E8531 /* XCTest+Rx.swift */, + 078EEE3419808E92E23D5C132259B498 /* Support Files */, ); - name = NMapsGeometry; - path = NMapsGeometry; + name = RxTest; + path = RxTest; sourceTree = ""; }; - E5BDC121CF915B138F68EA2C71442330 /* Targets Support Files */ = { + E9FC2908F4080C5980108583F3E8468B /* Support Files */ = { isa = PBXGroup; children = ( - A3B296F20465CE3A873EFF43497A1C5B /* Pods-AVIRO */, + 355FB49BC5DEB30A46F19AC976EC2725 /* NMapsGeometry-xcframeworks.sh */, + 63FDDF5D802A2B6F8B0E8464A89F7727 /* NMapsGeometry.debug.xcconfig */, + 14854AC285BFDA1B92AAC2DA6553DEBE /* NMapsGeometry.release.xcconfig */, ); - name = "Targets Support Files"; + name = "Support Files"; + path = "../Target Support Files/NMapsGeometry"; sourceTree = ""; }; - EF0767565A52D0EF19380E6F7B3758BC /* Frameworks */ = { + ED406AF06B815D078D455AE483E358C5 /* Pods-AVIROTests */ = { isa = PBXGroup; children = ( - CC3886B84F13BD14660AFAED7074B6DB /* NMapsMap.xcframework */, + 5531CB8591160547F34269149F671F8F /* Pods-AVIROTests.modulemap */, + 3E2E0D9F3F5F05F3A04B3D8E76DF42C1 /* Pods-AVIROTests-acknowledgements.markdown */, + 99AC1F472B3AC4DCB7E4B9FE6B803854 /* Pods-AVIROTests-acknowledgements.plist */, + 22241EBA35B80D60F2DFA87DD9A9AB91 /* Pods-AVIROTests-dummy.m */, + BF72053E2EFB7108CE50D5C32ED657EC /* Pods-AVIROTests-umbrella.h */, + F642CC2AB45B83C3E7E7D2909A156AF0 /* Pods-AVIROTests.debug.xcconfig */, + 89F87B946885B4215A06E1358A42D819 /* Pods-AVIROTests.release.xcconfig */, ); - name = Frameworks; + name = "Pods-AVIROTests"; + path = "Target Support Files/Pods-AVIROTests"; sourceTree = ""; }; - F04C0290B17A3E9B5B148410947813A5 /* Support Files */ = { + ED691A95F7E2F079C00041E2042F3447 /* Support Files */ = { isa = PBXGroup; children = ( - C48C60378A4A92D8447A891BF80F038E /* RealmSwift.modulemap */, - BD30311DB665E8AB415DC4AE4C6EB95F /* RealmSwift-dummy.m */, - 851EBBEA2B593917FE225EEE2AF45B25 /* RealmSwift-Info.plist */, - 6C039FB0790C0521696AECE09A87591B /* RealmSwift-prefix.pch */, - 21541F1B08BA35ACDBF2E8B50E16D144 /* RealmSwift-umbrella.h */, - D5527DAF155D91AD97C4367ED9A79FE3 /* RealmSwift.debug.xcconfig */, - 2081C24D0F068D64A219AFC680E00575 /* RealmSwift.release.xcconfig */, + 750EFC516ED57CCCC41684B7365EDACA /* lottie-ios.modulemap */, + CCB6DF8D2FA430DCAB065BB9FA4C9E07 /* lottie-ios-dummy.m */, + 4D92E9AF6F21EACDC4A2CE4AC8DD1779 /* lottie-ios-Info.plist */, + D2FFCC25BF650C7CD53549F145D54F05 /* lottie-ios-prefix.pch */, + BBE0E6F9C0E022F45E876CD983BC2F54 /* lottie-ios-umbrella.h */, + 3D5AEF062DBE7CC143EAE6430DCA1A7D /* lottie-ios.debug.xcconfig */, + E244D34D5D8A1516ECE297F206C69A9E /* lottie-ios.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/RealmSwift"; + path = "../Target Support Files/lottie-ios"; sourceTree = ""; }; - F54E2146157793B6559F42BF5D997330 /* AmplitudeSwift */ = { + EF14B56CAF5AF38A7A0553ADA8297364 /* Support Files */ = { isa = PBXGroup; children = ( - 9209693DEE6A229AF5D78ADE056990AA /* Amplitude.swift */, - D0202F99C45762261415BCF9AEA26147 /* AmplitudeDestinationPlugin.swift */, - 705621F775458F15705136D761DA6603 /* AppUtil.swift */, - C187FD27B373CF6DF98FE027B4ADEF85 /* Atomic.swift */, - 4B18429EFDD37CEEAA5BCCB4E9F22ADD /* BaseEvent.swift */, - CC679C13ABAE50D99342E3563D490868 /* BasePlugins.swift */, - D09D3291F7D159A84CDE0B3EFD4E6413 /* CodableExtension.swift */, - 5020B6635D944C62EAAFEA829F36DA79 /* Configuration.swift */, - 72997C358FDD664879892D5B0A089E39 /* ConsoleLogger.swift */, - 04D2BABA9DAA1291124D6779F6FB8EF8 /* Constants.swift */, - 4912035A26B3F2F09F3F0A19B1EBA9B0 /* ContextPlugin.swift */, - E036FA26579924535B3E76245E0EA74F /* DestinationPlugin.swift */, - 9016D9557092B11EC9342D7CE8D4C01C /* EventBridge.swift */, - ED940207DB28AA7483B3D31A5E1CB84C /* EventOptions.swift */, - 8BED51D5D23F9964558118F9E6D24BB8 /* EventPipeline.swift */, - C68BAE4C01BC69BC15DC14EE64DD2B43 /* GroupIdentifyEvent.swift */, - 9F628152A7FB37640E0C30BEA6AEAF48 /* HttpClient.swift */, - 8F5877349B0D6B278CF84BAFEA3F5C58 /* Identify.swift */, - E51121375D767D7F4148034AB440A41C /* IdentifyEvent.swift */, - 588DB90D386D8374A00D9FE2DAAA62EB /* IdentifyInterceptor.swift */, - 16877C6EBDAF2AB2AE77E571B31D70DB /* IdentityEventSender.swift */, - BC0532B226588F43CB3BC4399E364E75 /* InMemoryStorage.swift */, - C309B1A1E3B1A9F944AEA68C5F182E79 /* IOSLifecycleMonitor.swift */, - F98B0EA7611FD0E8C7A18091E3636D60 /* LegacyDatabaseStorage.swift */, - 1B77C9EAFB14E78BFC7C0880D19FF3BE /* MacOSLifecycleMonitor.swift */, - E0994D26E39D807AA28A8F4C0076D71F /* Mediator.swift */, - 8F229391BED5F2EC5EC5BA7A7D3D921D /* OutputFileStream.swift */, - 5797180B8E509FAAD9050753CDCDF17C /* PersistentStorage.swift */, - BC0D0F573510ABE90AF72ED1660F7849 /* PersistentStorageResponseHandler.swift */, - 6DAA7669FDAD14ADB6F35212085FA0B6 /* QueueTimer.swift */, - E7A6D8665EB789F31C2510EC9ECF8796 /* RemnantDataMigration.swift */, - 2EEBB37A05CF00336AF27C41233D4FB3 /* Revenue.swift */, - BF14EEE6E52252AC0AEB54C461201B98 /* RevenueEvent.swift */, - 3D7AEA6E86F717A4396DCDB666EC8336 /* Sessions.swift */, - D580785B0CC5F34F60C230871B103456 /* State.swift */, - D1933AFF7C95EC064EA8F43114C413B4 /* StoragePrefixMigration.swift */, - BFAAC639751A73F3DE727FE6E3818828 /* Timeline.swift */, - CD0FC473387B7ABF63B20A1E5880882E /* TrackingOptions.swift */, - E3252B31DC4150DB57E315FD6D3436BD /* Types.swift */, - 64A3D15DA65211306A33C85657A5C695 /* UrlExtension.swift */, - FA881E27EE7EE0C5451AF5348C2CE77A /* VendorSystem.swift */, - 9D2BDEE55EDF9AC97B851B210A6878CF /* WatchOSLifecycleMonitor.swift */, - 88FBA0CACD1C877AE1890A0EAE073BE4 /* Support Files */, + AEE59FF42B66071F63EFD3C9F87A0F7D /* Toast-Swift.modulemap */, + EE1310F2915BBD3692B996F4F25C27D1 /* Toast-Swift-dummy.m */, + 5D53F80369C5BA66F1F4C330EC9B7D5C /* Toast-Swift-Info.plist */, + C6D799EFC1A650B013C287F07B4247B6 /* Toast-Swift-prefix.pch */, + 67955A2781FE17A1195CE65CBB3D23D2 /* Toast-Swift-umbrella.h */, + 45336C59ECE207854F8641563AF3448E /* Toast-Swift.debug.xcconfig */, + 3D4669CEE421F882863A7774DCF406C6 /* Toast-Swift.release.xcconfig */, ); - name = AmplitudeSwift; - path = AmplitudeSwift; + name = "Support Files"; + path = "../Target Support Files/Toast-Swift"; sourceTree = ""; }; - F9C1B93DDF5F0592728E7DAFC35B1785 /* NMapsMap */ = { + EF30EEC84658731B4EC7C3660F171EBF /* Toast-Swift */ = { isa = PBXGroup; children = ( - EF0767565A52D0EF19380E6F7B3758BC /* Frameworks */, - 25ACA2BC5B982032736ABF0E57E43007 /* Support Files */, + 2D220875FDFD3FE9B83C5990F3DEE517 /* Toast.swift */, + EF14B56CAF5AF38A7A0553ADA8297364 /* Support Files */, ); - name = NMapsMap; - path = NMapsMap; + name = "Toast-Swift"; + path = "Toast-Swift"; + sourceTree = ""; + }; + F029BB56C7D0B949C66D0BE22A8A42F7 /* lottie-ios */ = { + isa = PBXGroup; + children = ( + F306D24C58AA4738DBA94EE688D5F7A4 /* AnimatedButton.swift */, + 04FE7F7F56F7ECB8AEB12EA76F43654A /* AnimatedControl.swift */, + F93414B33AE0190AE2A34CF706072B37 /* AnimatedProviding.swift */, + CC964A1BAE8C5C7C580B32520DE4D03C /* AnimatedSwitch.swift */, + E176483703262CDC89222DE31103618A /* AnimationCacheProvider.swift */, + 30215225AC1EF01A4708E6D421D58706 /* AnimationContext.swift */, + 7DBB0B75D89351C997DB15F7EDCA3749 /* AnimationFontProvider.swift */, + 932BD8F9B3FA154815FA11FA5F5FB230 /* AnimationImageProvider.swift */, + F594C59F98F8FB78B84D28682A26C838 /* AnimationKeypath.swift */, + 6E1F3682C9B09184EE5416EB2DF703C9 /* AnimationKeypathExtension.swift */, + 3EC6261E53EEFCF4B54C6C520B216495 /* AnimationLayer.swift */, + 7D73FE08A858EB34A9242BD4768E5864 /* AnimationSubview.swift */, + 322BE6CE68BD1DCB1B8FA921E14D54A5 /* AnimationTextProvider.swift */, + E12F326CB79AB386EFBE87BF3ABD80B7 /* AnimationTime.swift */, + 53B3DB3C0CAB53E80767317BB31AEAEB /* AnimatorNode.swift */, + D298C0F3678058548E35C34CCE930406 /* AnimatorNodeDebugging.swift */, + E8602EBA3E0AE78AA4FA16BCE00D0B09 /* AnyEpoxyModelProperty.swift */, + F2ECAD6367127B7436A19BEF9ADD73DA /* AnyEquatable.swift */, + 1173B0E4444DBF6F8164F5481F93C751 /* AnyNodeProperty.swift */, + 039E252DE0E8DE5FF547EC957807CE76 /* AnyValueContainer.swift */, + A0B118E1805BE674C532297DB58584A2 /* AnyValueProvider.swift */, + EC7B217C9D4C24899033F25CE430B075 /* Archive.swift */, + 7C181A786B86040AF164424444B92E04 /* Archive+BackingConfiguration.swift */, + 94CA12994CD96AEC4DA15C0301640F9E /* Archive+Helpers.swift */, + E8A63D15D3511F102342E5C6615BE104 /* Archive+MemoryFile.swift */, + 050C44669B66D8C9F49600ED7F6CF982 /* Archive+Progress.swift */, + 6B79BD29E9030E0FB3162FB72930CD24 /* Archive+Reading.swift */, + 71225498F5D2D3B14D1F855AE5E14470 /* Archive+ReadingDeprecated.swift */, + 326EC037910377400A172281549D8836 /* Archive+Writing.swift */, + E6FE2E02F190FC9B4A0435649E8C9A63 /* Archive+WritingDeprecated.swift */, + 75465EBB6C0D11C0CAC1B5E1331AEF00 /* Archive+ZIP64.swift */, + 60B0841F1070189EF98D354B4E40A910 /* Asset.swift */, + DC5F3C28EE206CF618619666A7EA09A4 /* AssetLibrary.swift */, + 5235CD207BFA19BA129620A596A79621 /* BaseAnimationLayer.swift */, + 38725AED42C209B7402B8B302DA0123F /* BaseCompositionLayer.swift */, + EC8D2F0562C5AD4AAA419046AC189284 /* BehaviorsConfigurableView.swift */, + ED81A592D8ACE6FE251C739B6D970581 /* BezierPath.swift */, + 9BE8882CB649842E7CD6C0FC821D8229 /* BezierPathRoundExtension.swift */, + ED31C1AE4B6B478BC1C5335307471591 /* Binding+Map.swift */, + E8EB1E152D79133E40F042E410819375 /* BlendMode+Filter.swift */, + A66C09F0ED8AE5BE3546CD10F6FEA5BF /* Bundle.swift */, + DB6412A09081951A5C46F4026A700AA4 /* BundleImageProvider.swift */, + 159F11CB5886E26E6EED644302523D6A /* CAAnimation+TimingConfiguration.swift */, + 1596FB8ECB0CB3B983E0AB952FFF5A1D /* CachedImageProvider.swift */, + D57F05776A63A08AE8E165126084ADA3 /* CALayer+addAnimation.swift */, + F222CE05707FE466417BDE2C4E09FE88 /* CALayer+fillBounds.swift */, + D8AE4B78534F1C228BAB9B3F1D70A0B6 /* CALayer+setupLayerHierarchy.swift */, + E861D91ED730AAE5A74DCBFCFD6BB361 /* CallbackContextEpoxyModeled.swift */, + 9EC9ACD79AA84D3B862A84FB531ACD61 /* CGColor+RGB.swift */, + C35562723E0E2056F449067DB6C2DAB4 /* CGFloatExtensions.swift */, + 0AC4B094059E30A4C8CBF8104C9C11B7 /* CGPointExtension.swift */, + 6B60955EA27FE213C89E46EBE2F1B48E /* ClassReference.swift */, + 0C93D6535C7BC867E4C69E506694CD59 /* Collection+Diff.swift */, + FA504942A57612F81E1002D93F388D9C /* ColorEffectValue.swift */, + 2AE9D33941589916776DD5574A20D6D8 /* ColorExtension.swift */, + B7D7FD6DAD231E96E295B86CCC13ADC1 /* ColorValueProvider.swift */, + 2B72D863C491B2B7A846D1FFA1181A1B /* CombinedShapeAnimation.swift */, + 269953BDB9609B25439FE87D54A24041 /* CompatibilityTracker.swift */, + 75EC9B1622135B6D0F384BE647D09B4B /* CompatibleAnimationKeypath.swift */, + 6AAA398DAAF9E7859B2987B07495F7C6 /* CompatibleAnimationView.swift */, + 136D4E066CDF93D7FBAAE8A065993730 /* CompositionLayer.swift */, + A68BA96F8A08615BC9BC9EBBDFA0CD1E /* CompositionLayersInitializer.swift */, + 2327E01E1A8F84150921E25FEBC65449 /* CompoundBezierPath.swift */, + 68FF112D57A44E9831B8BFB0A2818E70 /* ContentConfigurableView.swift */, + E1FD67C6CD86BD3064EAE2D549771CBD /* CoreAnimationLayer.swift */, + 0A51C456198DEE49073991328B60F38E /* CoreTextRenderLayer.swift */, + 67853E99CB67B73ED00B0D0D8FB8358B /* CurveVertex.swift */, + F52EF652738EA87B2BE89981D156DC02 /* CustomPathAnimation.swift */, + 9105F35CB71741D830F74527B6521528 /* DashPattern.swift */, + 701A32585B61A5766D5C4525902FFACB /* Data+Compression.swift */, + 43A19EB314D4432F58888F8FB4A0B9AA /* Data+CompressionDeprecated.swift */, + 5C1B20618216B31C9FE4F1F095733450 /* Data+Serialization.swift */, + 1142DE1A28A340FBB65F49F670B20F89 /* DataExtension.swift */, + 89558EC67BEEB1D8C7046735B6ABB4E7 /* DataIDProviding.swift */, + 4D7CDF19E8911E5BF9D6B19BECD0188F /* DecodingStrategy.swift */, + 00E998788F29854B09D51B4C97423E67 /* DefaultAnimationCache.swift */, + CEB29FA481044DA557396E1997FB445C /* DictionaryInitializable.swift */, + 1DD7BC445A0F1010A612ADEBD2BDA683 /* DidDisplayProviding.swift */, + C0560B045D900514A39899E1A7A993B9 /* DidEndDisplayingProviding.swift */, + 68BB49DFAEEEBB0F49C61AB7EB81D052 /* DidSelectProviding.swift */, + 955BCBB1495E5D0C1A66959FB9176C80 /* Diffable.swift */, + 25228F6EA4B064717CA2913A3DAF5EA9 /* DiffableSection.swift */, + A9896FD6754C887DF1416D0367996E44 /* DotLottieAnimation.swift */, + 941C08827A4EF199BD939D98DDAF9D1A /* DotLottieCache.swift */, + D7264331C9E4073714A8CB32782E158F /* DotLottieCacheProvider.swift */, + 997D2F04ADAADEFE4C690333E29FADB1 /* DotLottieConfiguration.swift */, + 080E3DAADC464CFFE0A29EC93335E2AF /* DotLottieFile.swift */, + 36154A9F2642B9524ED319FA520DAE00 /* DotLottieFileHelpers.swift */, + 129BD882637F2F938CB6C853C5266B04 /* DotLottieImageProvider.swift */, + 0DCC5A137BE69716B67DA577D5C697C1 /* DotLottieManifest.swift */, + 4A40B1DA9AD9057086D84EC2F25AAED2 /* DotLottieUtils.swift */, + BAFB3FC60B564C8861272AFA4855EBD4 /* DropShadowAnimation.swift */, + 68E915F2943F7E8226C7FFBEDC54D5E7 /* DropShadowEffect.swift */, + 52F1E6AC2BC0E5E4A2030EABF5BCF9AD /* DropShadowStyle.swift */, + 293E65997890C7C324639D4F0EE6231E /* EffectValue.swift */, + 7E09C7E726CEEB5A690031DEBB49EBFF /* Ellipse.swift */, + 263AC5F3B02CB153AC663322D192767D /* EllipseAnimation.swift */, + EF50B1B410F5AA049299ECBD7F6CAEAC /* EllipseNode.swift */, + 976AD7DA50FAEB394DC3F9AD5AEC70EF /* Entry.swift */, + 41B615601B0A4DCE7115D7919A38C7A0 /* Entry+Serialization.swift */, + 5020D79CB71B74F91AC162889185B769 /* Entry+ZIP64.swift */, + 0C71CC9CA6AFF006779EAFA9F05BFE6F /* EpoxyableView.swift */, + BD7DFE11DACA5B8910EFD5063B96FF24 /* EpoxyableView+SwiftUIView.swift */, + 08B25964FAB1DB177DA93ABFC80C52A7 /* EpoxyLogger.swift */, + ED20397C703C8C2D2ED3BC2D12EBD19C /* EpoxyModelArrayBuilder.swift */, + E1E52076AB010B535872F3E2290C5113 /* EpoxyModeled.swift */, + A5057D37AC049BAA45DCA73EBA5C7123 /* EpoxyModelProperty.swift */, + 9F515F69DB7CD5DA8104A142D8B6FB71 /* EpoxyModelStorage.swift */, + 8558816C571B744717FE046A4A354C8C /* EpoxySwiftUIHostingController.swift */, + 49861EFA1327020DD328940A463AE027 /* EpoxySwiftUIHostingView.swift */, + AF934D724485749650D00F02F906D63F /* EpoxySwiftUIIntrinsicContentSizeInvalidator.swift */, + AFC6E7C05BFC3BA550C17D6FCBC38569 /* EpoxySwiftUILayoutMargins.swift */, + D6F873B3B4CEFB5E2364CA12CF18208E /* ErasedContentProviding.swift */, + 548BB54B6B8AC573C0F1CD8BECFCBA35 /* FileManager+ZIP.swift */, + FEF65C0B1B62EEF12B279F9110555D13 /* FilepathImageProvider.swift */, + B6546BC0E8DAEC6CB6861EFA203EE78D /* Fill.swift */, + C4E8AAAD16D89326E5851E8A698EE952 /* FillNode.swift */, + 9E139263F8BBDB3A95487DCB5BB9B0CD /* FillRenderer.swift */, + AD9CF0B65206D9CE1CA15EC1B85EB65E /* FloatValueProvider.swift */, + BFE9890902C01B64B93AE7C884EAABD8 /* Font.swift */, + 6F14F0442AA48C96C40E738A4B7D5038 /* Glyph.swift */, + 99241E73967093ADAA624636DEA8A03F /* GradientAnimations.swift */, + 0945BE9A327250698068AE1853D7BCCE /* GradientFill.swift */, + DA2A0C135790DFE7166F3CB4645A9A32 /* GradientFillNode.swift */, + 2F3C49CA372585808C7CA06EB5E6C63E /* GradientFillRenderer.swift */, + 737F86D1E6EF92051A6C142E02989157 /* GradientRenderLayer.swift */, + CF5D53950FFC8FB763A00E431D75FFC7 /* GradientStroke.swift */, + E9A4BC02E4DC98E9CB9E27523ACC4AE6 /* GradientStrokeNode.swift */, + 0D29A6FB309921AE9EA720BB76ABEAB0 /* GradientStrokeRenderer.swift */, + FCC4C21678DC6B14D8B8958BC10D2A65 /* GradientValueProvider.swift */, + B73EF561D06A291CA388F3E279D1BE39 /* Group.swift */, + 064B3A5517581611B0A73B0011BB26E6 /* GroupInterpolator.swift */, + 146F6C394DD2ACF55908793AD3268DD7 /* GroupNode.swift */, + 402009B8D4C46DF4C533BB83C2D1E270 /* GroupOutputNode.swift */, + D9E5F45A99E1ED80DC6DFE8FFDD344B4 /* ImageAsset.swift */, + A47C7BEC960C9F369BA067586920B5C8 /* ImageCompositionLayer.swift */, + 7E3FE0D532E85D150FE057DCCF553B6D /* ImageLayer.swift */, + 295F880F759883C9544EBB0AC0750265 /* ImageLayerModel.swift */, + 5481F20B58F92702E54D874B50ECA7D7 /* IndexChangeset.swift */, + 2FAFE68880171E3CC3FBBB914C86A080 /* InfiniteOpaqueAnimationLayer.swift */, + D3B71670C83A3976A8AC85305BDECB50 /* Interpolatable.swift */, + FF8E9C62B7F963B81C0963D5F617C15B /* InterpolatableExtensions.swift */, + EBB0D18520BF27C53AEBD3965BC1FE23 /* InvertedMatteLayer.swift */, + 33609720D6A7BBF13859E159B404D843 /* ItemsExtension.swift */, + FDD4510330F3844965318013977AC5E5 /* KeyedDecodingContainerExtensions.swift */, + 229488CEEF0EFA1B255E19A10642B294 /* Keyframe.swift */, + AEC59383042CE47F8D0CEB5A19B090FA /* KeyframeData.swift */, + D530E2D317C4204BCDB0676F3B1D78F9 /* KeyframeExtensions.swift */, + 173E3847DEFFA607F791F653625122CF /* KeyframeGroup.swift */, + 48EC5F752EC122CD818E259A05364E76 /* KeyframeGroup+exactlyOneKeyframe.swift */, + 0E37D861225A4D5733692E397AE12EA0 /* KeyframeInterpolator.swift */, + 83E8A2D134401852E4A6C869C09FDCAD /* Keyframes+combined.swift */, + D62AC1C83B72512C076016BA92DC3350 /* KeypathSearchable.swift */, + D2B01BCB1BD1DA06FA52F9CAFF699B64 /* LayerDebugging.swift */, + ED5622CFFD5E05DAAF8EEA1C8AD56EDA /* LayerEffect.swift */, + 172CD3EDA4CC99FFCADB95039B389D4B /* LayerFontProvider.swift */, + 037D5E0300687A215AA897379C8A5E12 /* LayerImageProvider.swift */, + DD2052E50E103A95B8D3C61BDE85AB60 /* LayerModel.swift */, + 25DFF6DE948D39473A1D9F16881771A2 /* LayerModel+makeAnimationLayer.swift */, + A41784785CF120C1EC83A5270B852E4A /* LayerProperty.swift */, + 6BD13147A4561A0256D8EF59BC2B1FBB /* LayerStyle.swift */, + 888BE7E8B3D305A2ED17DD24E4DE746B /* LayerTextProvider.swift */, + 405E765CFD7E18D6EEC5BCDA06BEFEDD /* LayerTransformNode.swift */, + FD23EF836688F14BC6DA3BFE431F7331 /* LegacyGradientFillRenderer.swift */, + 5EB8DABA55B1D42457A110A27BA4668D /* LottieAnimation.swift */, + BE0308DEE2FFCA6CA9007B06C6BE17F4 /* LottieAnimationCache.swift */, + D41FAFE7F791CF593E37AC386C1A3085 /* LottieAnimationHelpers.swift */, + 82762A94A16EECCCB0BE41A33B378F05 /* LottieAnimationLayer.swift */, + A28170F968C7E7018F117EE6DB96285D /* LottieAnimationSource.swift */, + 23BE9F7C7EE5248B51A198F37926AE9E /* LottieAnimationView.swift */, + 774F21DA8AC1A1A85775095EB84226DF /* LottieAnimationViewBase.swift */, + 34D34AB320CFDD5F985B19170EB91C0B /* LottieAnimationViewInitializers.swift */, + 1B3995979B983237097AA4ADED53CD5D /* LottieButton.swift */, + 3B7990B7F93AA73E7BAAE42B7E241345 /* LottieColor.swift */, + 0BB0CA0B6693A5A2F10C8489229AEEC4 /* LottieConfiguration.swift */, + 43CE4DB0703CAB85F31532CC6D79025D /* LottieLogger.swift */, + B91F78FF51C848D66D6C96A05622FF65 /* LottiePlaybackMode.swift */, + 19E1E62FD77D81C6619046C2785896A6 /* LottieSwitch.swift */, + A554A32E418FC10C23AD8F080689E9C0 /* LottieView.swift */, + E973C0AD313FA185D7883A70B3DB644E /* LottieViewType.swift */, + DA221B22E38A914664FA415A3768ED16 /* LRUAnimationCache.swift */, + 22A6BDFCFE3161709FF418323A4F21DA /* MainThreadAnimationLayer.swift */, + 50164484152A5192763F53D44393AC00 /* MakeViewProviding.swift */, + A383BADF66500A3FC94AD12F4EEFB980 /* Marker.swift */, + 14C3792B6C65D381BA5DC74A926B44F2 /* Mask.swift */, + CEE5B0D847F8A029FE07573A5BAE5211 /* MaskCompositionLayer.swift */, + E73D980ABDFE1AFA38A348986FB05061 /* MaskContainerLayer.swift */, + 32F1ED32FBFC99CB7DB27B97EFF6EEEF /* MathKit.swift */, + 959AB0233C8A9F1E98F205B8CB27A7B5 /* MeasuringViewRepresentable.swift */, + 60FEA4AC2EA1588C3E8AABDEDAE496DF /* Merge.swift */, + C4EA252794E988A4C9FCD3B34822A7FD /* NodeProperty.swift */, + A46E7B2BE1CD0443BEDE5F437E569352 /* NodePropertyMap.swift */, + 30B8CBD290549F0EE27999BDFB361F7E /* NullCompositionLayer.swift */, + E31D1AD29B3D6B53F32577884DC59C2F /* OpacityAnimation.swift */, + F1B43608C474DDBFEDFD8A7770AE6C9A /* PassThroughOutputNode.swift */, + B65935F8197830FA8CC3B6D19B1B68FA /* PathElement.swift */, + 9322B6B94A528E6F0A23C16D946153B8 /* PathNode.swift */, + 66CCDA6A7125A9D0D3D2D243B972174A /* PathOutputNode.swift */, + 8CBF84E09C34CC32B2EFB7C3FF51C3B5 /* PointValueProvider.swift */, + 690C3BF8D2E4A505ADA508CCF3B5AC70 /* PolygonNode.swift */, + 7088CE337B066330ACAAAA2C75935327 /* PrecompAsset.swift */, + 70F71936E7F17AE44470E0AB831F67E0 /* PreCompLayer.swift */, + 320B18CBFE6A398BFDC86E9426C64B16 /* PreCompLayerModel.swift */, + ADA5E23A86C014249ACC5020E06B071D /* PreCompositionLayer.swift */, + CB230B5BD51AA84A1CE8F0ECD1FFF01A /* Rectangle.swift */, + E78883F5A05E743DA35DBAE01EEB8522 /* RectangleAnimation.swift */, + CD96BE3C4A3E2D943FDEDE4DD7FF7237 /* RectNode.swift */, + F22F893F7B8E356A9DD7A79AEDDA25CE /* ReducedMotionOption.swift */, + C7F6194A61742982DFA9D8E481E8C894 /* RenderingEngineOption.swift */, + F205826CF53F221C55766668B310CD4A /* RenderNode.swift */, + EA11571C4BABF534A56CE14A1EF12F31 /* Repeater.swift */, + 6D5F0D7C90A145FC63E62989E7A2AE4C /* RepeaterLayer.swift */, + DE646227FA81878914174D0021B4AC93 /* RootAnimationLayer.swift */, + AB84DD00EB59156015A4179BC82E9964 /* RoundedCorners.swift */, + 45526FFF222A2E5969146ABF5A327F10 /* RoundedCornersNode.swift */, + 528778E00AC8AAF2B4D10A4EBFEC7DBF /* SectionedChangeset.swift */, + F9ED9968E6FD4781C1E15D25E1E9E15A /* SetBehaviorsProviding.swift */, + EF4D5F9BC7534DDF5A9E15AAE7A9A4AE /* SetContentProviding.swift */, + A426201EB5A91F9751220645B6AC149E /* Shape.swift */, + ACE1C6A805A7577CC7C850DB0CF158FE /* ShapeAnimation.swift */, + E057B584725E8568504D18EBB3888B5A /* ShapeCompositionLayer.swift */, + 80BA24566DEFE3198BD5211AB9842848 /* ShapeContainerLayer.swift */, + 9BE4962026DEFB8F3FA5EFE53F4B57F8 /* ShapeItem.swift */, + BED2FF6A3A71BAB9CAF96AFB3DB21744 /* ShapeItemLayer.swift */, + 8027070DF25C8ED54AE15E7E06F68397 /* ShapeLayer.swift */, + AE232DDBFF02C7108B42BE2A13D58D63 /* ShapeLayerModel.swift */, + 815DA6A516F57D2BEBC576BAF3ED85DA /* ShapeNode.swift */, + 17D3B81289714EDD74A5156F510B90C8 /* ShapeRenderLayer.swift */, + 2C16C1A32F3A62984CEA6D5DFF181591 /* ShapeTransform.swift */, + 1259417AFE273F11E984F41ADFFD32C8 /* SingleValueProvider.swift */, + E81382070E2871E3D5635C3947818820 /* SizeValueProvider.swift */, + F2A3FDA53B7E94FCB3AC69C9A60091C1 /* SolidCompositionLayer.swift */, + F055B08EC70088A43D3C0C6A2EEDDA9E /* SolidLayer.swift */, + 8E371B578A71BE9B1B1189D0FE07DCE4 /* SolidLayerModel.swift */, + BEE497A61506A2E1B8E85F338456C36A /* Star.swift */, + 0EA9C17A856DC033823ED0E37F4ACD5C /* StarAnimation.swift */, + 0FE61DF3F991F27E533F4850E9010A9C /* StarNode.swift */, + E10DC33ED82F903929824DEC996C732A /* StringExtensions.swift */, + 6562B6625171D02335B52219E9B448ED /* Stroke.swift */, + A62482D960C7C93EC005182D1C872B83 /* StrokeAnimation.swift */, + ED1C9A4979104E0884B5ACF57A3F3DC9 /* StrokeNode.swift */, + CE38D94C0175DEDF31BF19A69C04BE9C /* StrokeRenderer.swift */, + EB6E082117EAA5550B3E9DEDBCDABBF9 /* StyledView.swift */, + 72CE5AD0E0BA54D03804278D0412469D /* StyleIDProviding.swift */, + B7ED364F15E6DE9A42AFCA6595BFF965 /* SwiftUIMeasurementContainer.swift */, + D1AF27D2FA3AC62D2D047162A9ECD34D /* SwiftUIView.swift */, + EDB433E24090A614B8F0B6A25EB5F955 /* TestHelpers.swift */, + 84862197285CF8DA0D9017B238DDA71C /* TextAnimator.swift */, + 0D24178972D03DC2CF2D50494842E38B /* TextAnimatorNode.swift */, + 1D469B874713B0F309874C8FF8E49D70 /* TextCompositionLayer.swift */, + C24DCE192033AC4D6E1C2AC287E6D20F /* TextDocument.swift */, + 7881EA4E72AE99FD100838C658A993F5 /* TextLayer.swift */, + 2917678695A28A8EF4CA31CC02EC7E80 /* TextLayerModel.swift */, + 0B8209612D87AE3DAD49DC9130F4A32C /* TraitCollectionProviding.swift */, + 3EC936ECD56A74E4B136C873394817BB /* Transform.swift */, + 08B7C39B5116EDE6326F50378970E4B7 /* TransformAnimations.swift */, + DA9056B65C1EF8B5A8D110B44181AD35 /* TransformLayer.swift */, + 3406ACB3F57C7E5649323D6C6820198B /* Trim.swift */, + D911F1F22D4B0DC5B1B5952B5CE49190 /* TrimPathNode.swift */, + B71AD9AC552F496F0D3E67491CED2F71 /* UIColorExtension.swift */, + 955EED4F1C437C25AAB5E0BE222A543A /* UIView+SwiftUIView.swift */, + E4D8BC5AF7180E5118BD40FFA4ADF4B9 /* UIViewConfiguringSwiftUIView.swift */, + 392A37C1D291D2FAA87E2EEF77936E62 /* UnitBezier.swift */, + 00A3820C78A03CDAA16CEE40FDE77AB8 /* URL+ZIP.swift */, + 84EE95E307B608809881C842DFD1F5FA /* ValueContainer.swift */, + 45E8ECAD0B725D4A4FCA9EC542EFB365 /* ValueProviderStore.swift */, + 5ACF47909685F76B57F5768AE82B6D2D /* Vector1DEffectValue.swift */, + 74FF95C7111EE8CDA3A0F173F6B601CD /* Vectors.swift */, + 65EC27BF58C197E12ACB7146CA3E25AA /* VectorsExtensions.swift */, + 1DA723D79B41C128F767B776BB076A71 /* View+ValueChanged.swift */, + AE96A4360FAF43A8CF2472AB3E45BA37 /* ViewDifferentiatorProviding.swift */, + B74BF391C4433D9CB80E6BFDEADEC0B0 /* ViewEpoxyModeled.swift */, + EE2E86D6CDE8AE727E28013651EB4638 /* ViewProviding.swift */, + 765F577CFD28C69D33E3A072DD996D79 /* ViewType.swift */, + 90A0F1F0BD2017F9E91E63366C603905 /* VisibilityAnimation.swift */, + 22E8179D585169A7C6963C1E38D0BA84 /* WillDisplayProviding.swift */, + ED691A95F7E2F079C00041E2042F3447 /* Support Files */, + ); + name = "lottie-ios"; + path = "lottie-ios"; + sourceTree = ""; + }; + F7DFB7F9194BE103CEAA24C4765E1349 /* Headers */ = { + isa = PBXGroup; + children = ( + 632967D471BAB6EC4B3E6B6AE2A90596 /* NSError+RLMSync.h */, + D0BB637647ACA09B72211510776DFA0D /* Realm.h */, + 3281B9719A62EF27E3095EBBD9128C75 /* RLMAPIKeyAuth.h */, + E87A4DD1639C457A4A2D92A34EE8F890 /* RLMApp.h */, + 6BDB6BD7DC15A72425F2D3BAA0B3D001 /* RLMArray.h */, + D6B4D134F48128AA95E47E6A0F6639BF /* RLMAsymmetricObject.h */, + FC73C73F8937B7141C246B6A71F8F916 /* RLMAsyncTask.h */, + 118145025830CC5ED1D8B8542651CE7E /* RLMBSON.h */, + 4C9CCEE533A70708EB5148DE16AD7DA5 /* RLMCollection.h */, + C42CCE88D17761CA95CF0424D6008467 /* RLMConstants.h */, + 9615FC6B90324F508CAE7ADF1E4367EB /* RLMCredentials.h */, + 0B1C9B68E8F6E5B0300C870FCAA08A7F /* RLMDecimal128.h */, + FD5B0AFEB338B84613EC0F9108253236 /* RLMDictionary.h */, + 00B783BADD4A97412D43D5CB3132033D /* RLMEmailPasswordAuth.h */, + EFA3F2ABB67D05296195FBC5098DB9DD /* RLMEmbeddedObject.h */, + 1F11366AB98A25F58850B09966C02A59 /* RLMError.h */, + 3A948869F2FFA6AC988559994969074C /* RLMFindOneAndModifyOptions.h */, + 5591FAE6B23033D83C73813DFDEBD875 /* RLMFindOptions.h */, + 3DAF5FF02F05131C60201C1763C7E268 /* RLMLogger.h */, + F108155AC694055D24110B36BD0ED2E8 /* RLMMigration.h */, + 8711FFAF3BE62ABD350952C307B32FD9 /* RLMMongoClient.h */, + B515B49D804654DEAA945AE1F9D3001A /* RLMMongoCollection.h */, + 2A1B10972E31354EE3F67D1784964F02 /* RLMMongoDatabase.h */, + FE336D7F7560C735A67A074571EFEBAB /* RLMNetworkTransport.h */, + 4EE566FDFA1CD12F7BA6F0C71E109B8F /* RLMObject.h */, + BD3008DB1FC827037E3658F425B418BB /* RLMObjectBase.h */, + 6A309F3DB9563378927C7C2DDDE09C00 /* RLMObjectBase_Dynamic.h */, + 557896491F6529811FA722AF4A37D9D4 /* RLMObjectId.h */, + 53D07AFF10B85B63F7A7DC9F61002DA2 /* RLMObjectSchema.h */, + 1E621465D080F278E6D740E46A7B4281 /* RLMProperty.h */, + C7E83A4A27FA925BE4FEB9ADA5F728E3 /* RLMProviderClient.h */, + 2D45FB0BC8A3B8259BA20596AA273096 /* RLMPushClient.h */, + 2C1C74D187BB2F0829923F69ED542CF2 /* RLMRealm.h */, + DE10937CD839AEA9524A2518C0777C86 /* RLMRealm+Sync.h */, + 978E1DF510A74CBC691BBF6747026B95 /* RLMRealm_Dynamic.h */, + E18B947D96079060FD81A44AA56758C0 /* RLMRealmConfiguration.h */, + 83FB166805E59B887D6FEB1E492F11AC /* RLMResults.h */, + 385A3507E7FA129668D715BA74A205CF /* RLMSchema.h */, + A74C81B22B3AC313A6F125A6BAD0F154 /* RLMSectionedResults.h */, + C23383D690CCBB1C3C427F376EA4AE65 /* RLMSet.h */, + 1FA9A8B5146E7B57A486DD31990F6982 /* RLMSwiftCollectionBase.h */, + E21EC97CCAF4505B503D36BB7A62F2E6 /* RLMSwiftObject.h */, + 98E9E623CD959BE173AD84B684638857 /* RLMSwiftValueStorage.h */, + E7D1BDB455434610F24CF94AEEFFF63E /* RLMSyncConfiguration.h */, + 03F464E083C39261ECF027662E19A9F7 /* RLMSyncManager.h */, + A79BBFAA30E15FE04639C6B2F774ACB7 /* RLMSyncSession.h */, + E372A7FE022080FC8C96158C85665B48 /* RLMSyncSubscription.h */, + A981DA45CA15D31A9DB132F606CFA21D /* RLMThreadSafeReference.h */, + 203D35C6E9C626DEABAD23530C56EB65 /* RLMUpdateResult.h */, + A155549DBA438C9F4BB0C3C992A6A0D7 /* RLMUser.h */, + FE5365F2191B179405C44F9603022DE9 /* RLMUserAPIKey.h */, + A64F36E5169979F2F7E2A0E0AE65FE51 /* RLMValue.h */, + ); + name = Headers; sourceTree = ""; }; /* End PBXGroup section */ @@ -2318,35 +3776,97 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 63D019064C2255A3D74C25BDF1937802 /* Headers */ = { + 17DA947104CA175E7E41C57B818DF06B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BF20C741EBB18F936CA31F2E41DC9F23 /* Toast-Swift-umbrella.h in Headers */, + E4F762E79E6F5854C997F9B962A7D96E /* RxRelay-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9DB6084DEE775A30475C7394B207FBCE /* Headers */ = { + 3152092B9D91078AC3EA567FAC7F8A13 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 467D8AEE183654AB29DAADC843B3C63F /* Pods-AVIRO-umbrella.h in Headers */, + 841014B283EE9F2F8580D9C8804EE7F2 /* RxSwift-framework-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9DE80BD9AB4FE4CD5F648F30C4CC186A /* Headers */ = { + 3EB93B45432AE21A7FE4650E413AD2E6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5749D1A65604B226A1BFFF407FEF11F8 /* AmplitudeSwift-umbrella.h in Headers */, + EEEFD68CCFA995C2CCA87161560DECC9 /* _RX.h in Headers */, + 9352A63FDB23FE79C0D3F436A9BD42D6 /* _RXDelegateProxy.h in Headers */, + 2D8F4FE8EFAA47FD719FCD16038D6049 /* _RXKVOObserver.h in Headers */, + FBB5E1C645058DD688693C5597631C29 /* _RXObjCRuntime.h in Headers */, + 16444867D6B17DCB5BE7283DD28714CD /* RxCocoa.h in Headers */, + 0C22A59184E2B9EE14CAD8EDE9EBDDF3 /* RxCocoa-umbrella.h in Headers */, + 3C781FF289FE7DBAE6687DD27DE659C7 /* RxCocoaRuntime.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A581BE0E16E4FCE52E9519A091628842 /* Headers */ = { + 4FE50CDFB47B55574E4FD297453AE495 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 186A9950AD2BC40A5E06896B3F3FFBC4 /* RealmSwift-umbrella.h in Headers */, + 7EF32B18C5B484658F63722DCEDDBA21 /* Pods-AVIROTests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 51206EC669AE6F5A23C7E232D9BC9509 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + DC787C7B729C3D27A9D2346E668A9F84 /* RxSwift-library-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 57CC151629C40F1DEBAD488B7EBDDDB4 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 569654A9C2BE004493E9018BA3BD3AA1 /* RxTest-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 63D019064C2255A3D74C25BDF1937802 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BF20C741EBB18F936CA31F2E41DC9F23 /* Toast-Swift-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9048292B486E944DB524EBAA16D662B7 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 314D7C13BFE920DDBB526E778D3CEBEA /* Pods-AVIRO-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9DE80BD9AB4FE4CD5F648F30C4CC186A /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 5749D1A65604B226A1BFFF407FEF11F8 /* AmplitudeSwift-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A581BE0E16E4FCE52E9519A091628842 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 186A9950AD2BC40A5E06896B3F3FFBC4 /* RealmSwift-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E3F7BFB8815EEBEF3A42F7BEA38C30C0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 7010F3E9E0D97F9BC37EA0DCB049EAD4 /* RxBlocking-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2472,26 +3992,86 @@ productReference = 51BA97E8B5085EFFB47BC9C0B785CEA7 /* lottie-ios */; productType = "com.apple.product-type.framework"; }; + 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6F962C52D8C87F1DF12D5258286D195D /* Build configuration list for PBXNativeTarget "RxRelay" */; + buildPhases = ( + 17DA947104CA175E7E41C57B818DF06B /* Headers */, + EAE9AB7340F6E0FFDF93A64648565A10 /* Sources */, + DA49154C1A9324F99E7F657B4B8DA600 /* Frameworks */, + 67F8942CE53D93BA5E0E3EF2685C7482 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + FE80EFE4C349707733C4B612100F3445 /* PBXTargetDependency */, + ); + name = RxRelay; + productName = RxRelay; + productReference = FF8B264DFE802855D5D67E7CDDABFC3C /* RxRelay */; + productType = "com.apple.product-type.framework"; + }; + 49E6FD7E708D59A6B3CFE1B957B5A28E /* Pods-AVIROTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 5EAA617B31E9099AC2ADAD701F7456A1 /* Build configuration list for PBXNativeTarget "Pods-AVIROTests" */; + buildPhases = ( + 4FE50CDFB47B55574E4FD297453AE495 /* Headers */, + B4CFD91088528C81353A69381681D077 /* Sources */, + FE6A7D0E5CECCAE59C18546609F144B4 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 575F4091B58ABB4477A291AA5E2C1A31 /* PBXTargetDependency */, + 1C128E59EEBB3BBC97E7E0B24EBC3CA7 /* PBXTargetDependency */, + 4ECDC1DE8F21FD31A8DFB9FB00CD3033 /* PBXTargetDependency */, + ); + name = "Pods-AVIROTests"; + productName = "Pods-AVIROTests"; + productReference = E44074341936E86C93E247952811FF54 /* Pods-AVIROTests */; + productType = "com.apple.product-type.library.static"; + }; + 524E387885E0F0463B2B6AAF53165788 /* RxSwift-library */ = { + isa = PBXNativeTarget; + buildConfigurationList = D50F5FF9FDC6FEAEDF2FD91F589EE0F5 /* Build configuration list for PBXNativeTarget "RxSwift-library" */; + buildPhases = ( + 51206EC669AE6F5A23C7E232D9BC9509 /* Headers */, + C439C25E690365C0A9E84C6BDB427C70 /* Sources */, + BD238331BC659B1005A5A11976205AD8 /* Frameworks */, + 039A2EFB9A5BF931D863B214149A39CB /* Copy generated compatibility header */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "RxSwift-library"; + productName = "RxSwift-library"; + productReference = 9079429D32DB5A1423EA3EBD14E7D9C4 /* RxSwift-library */; + productType = "com.apple.product-type.library.static"; + }; 60A7021A5E051B83B2C46602C1AC738A /* Pods-AVIRO */ = { isa = PBXNativeTarget; - buildConfigurationList = 5BF37C30209FAEE5A8C963226BEA1F6C /* Build configuration list for PBXNativeTarget "Pods-AVIRO" */; + buildConfigurationList = 1AD50F16E9CAFB40F35EC9C2B280D896 /* Build configuration list for PBXNativeTarget "Pods-AVIRO" */; buildPhases = ( - 9DB6084DEE775A30475C7394B207FBCE /* Headers */, - 6847034AFFC9B0643501E696D93926BB /* Sources */, - 69370C78A7A718CA966AA65C00CF7A92 /* Frameworks */, - F3EF5C7933A819D37AF74AB9343EA819 /* Resources */, + 9048292B486E944DB524EBAA16D662B7 /* Headers */, + 39FFAE88141424B5F416238F68F959A3 /* Sources */, + F9835ED9EACFE2FFBEF44FA264FE3181 /* Frameworks */, + 18C1BC6F46F6AA667672DA70F44ED0CE /* Resources */, ); buildRules = ( ); dependencies = ( - 66541ACC77AB0EBB5A65863DFA04A0DB /* PBXTargetDependency */, - A2C65C8926A58B106D64D4EE6B61482A /* PBXTargetDependency */, - 70655F55E8E942A0513A3036F19E853C /* PBXTargetDependency */, - 2823EA4CC4277CF5DE29D35595EAF887 /* PBXTargetDependency */, - 53397FC8E9C64C44BB724CFC6D00CC7A /* PBXTargetDependency */, - B5E8C8423D6834009FF104329B664FF5 /* PBXTargetDependency */, - CACC643577028041236D51FBD4CFF824 /* PBXTargetDependency */, - D9D99146A6B01DBEED5927392EF0D156 /* PBXTargetDependency */, + 8AF89909DAB5B8DFBB4D970EBB75980D /* PBXTargetDependency */, + E7E9D6126F0EA436909B897DDA5C865A /* PBXTargetDependency */, + E495E9E28AA194E921AD34EE68B332B9 /* PBXTargetDependency */, + EDCA0118B0B79707CE9B350FBD1D7817 /* PBXTargetDependency */, + F05C8D04C7DC8757F85ADBE9ECE57A88 /* PBXTargetDependency */, + CEE1239ED9FCD3A93DE7B1EF14B5AAF6 /* PBXTargetDependency */, + F212DAD1D07C7F1696E96E669295DC2E /* PBXTargetDependency */, + C78F24D1A49E7E3293403411CD7BDC3B /* PBXTargetDependency */, + B81CF90AFA581CC147DEDDF851C603B5 /* PBXTargetDependency */, + 9B66427B3A24B2BE25D017229426F820 /* PBXTargetDependency */, + E21D46A7BF805D42102F59BF6BCE1FFB /* PBXTargetDependency */, ); name = "Pods-AVIRO"; productName = Pods_AVIRO; @@ -2532,13 +4112,51 @@ buildRules = ( ); dependencies = ( - B0BA821200571DE5F5DF79646473E2C0 /* PBXTargetDependency */, + 7D6F17FEC685458576700D9D9E71CD8F /* PBXTargetDependency */, ); name = RealmSwift; productName = RealmSwift; productReference = 437919EE08EC6BFCCBAC3BD346309742 /* RealmSwift */; productType = "com.apple.product-type.framework"; }; + 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */ = { + isa = PBXNativeTarget; + buildConfigurationList = D814EEBEC0CA9E0C79D2F16597730737 /* Build configuration list for PBXNativeTarget "RxCocoa" */; + buildPhases = ( + 3EB93B45432AE21A7FE4650E413AD2E6 /* Headers */, + 9F6F4B0C6CC2FBB1CF547FC33ECA9ACB /* Sources */, + C2988204023F3A7E378FF972A80A3061 /* Frameworks */, + 8628F60D1CA58A961549AA05ECC6717F /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 8267225880DF00DA6A7D4CF0AF11591E /* PBXTargetDependency */, + FCD3F76D46BCAD1C28E907D8CD6716E2 /* PBXTargetDependency */, + ); + name = RxCocoa; + productName = RxCocoa; + productReference = BC432FD48A5932251F1CAFBC4BF74894 /* RxCocoa */; + productType = "com.apple.product-type.framework"; + }; + 91D17BEB3F6784AA8CA6D969FC78F446 /* RxSwift-framework */ = { + isa = PBXNativeTarget; + buildConfigurationList = 20346524B8B6A0D87522253CCA0B9B19 /* Build configuration list for PBXNativeTarget "RxSwift-framework" */; + buildPhases = ( + 3152092B9D91078AC3EA567FAC7F8A13 /* Headers */, + E43F3D05AC26B4CB19A2517EE915BB5C /* Sources */, + A9A85E640850CF31B51F0B1B64EE4678 /* Frameworks */, + E2A2EE55E29B3E59E28C8008402B5682 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "RxSwift-framework"; + productName = RxSwift; + productReference = FB85F6F3191526F64F447E31EEFD4244 /* RxSwift-framework */; + productType = "com.apple.product-type.framework"; + }; B990BD87169C76A3ED3FE8A9258D91A3 /* Toast-Swift */ = { isa = PBXNativeTarget; buildConfigurationList = 3393B836BCDFD5292B077E63A26DC97F /* Build configuration list for PBXNativeTarget "Toast-Swift" */; @@ -2557,6 +4175,44 @@ productReference = D6043471C96F93DC41F7DD1E0D7D8B35 /* Toast-Swift */; productType = "com.apple.product-type.framework"; }; + C8D93C508E21FFD4EE60D335DD6C22E3 /* RxTest */ = { + isa = PBXNativeTarget; + buildConfigurationList = F9AA0041A158DB68865363E3E8644A68 /* Build configuration list for PBXNativeTarget "RxTest" */; + buildPhases = ( + 57CC151629C40F1DEBAD488B7EBDDDB4 /* Headers */, + F75AF238BCD8E93148C48E97569239FE /* Sources */, + 9EF85C94E7BAB4A14B2DB3232DB5A3AC /* Frameworks */, + 5E384B06F81A7126A17A589CCEDEE6C4 /* Copy generated compatibility header */, + ); + buildRules = ( + ); + dependencies = ( + E44112B8AC97C034578328B4F0D93397 /* PBXTargetDependency */, + ); + name = RxTest; + productName = RxTest; + productReference = 031893FD3D882E436EC541DF783B1276 /* RxTest */; + productType = "com.apple.product-type.library.static"; + }; + F243B36381C0CE83CCFF789AC38F0D36 /* RxBlocking */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0E09D720C1404519AE536CE855DBD2BF /* Build configuration list for PBXNativeTarget "RxBlocking" */; + buildPhases = ( + E3F7BFB8815EEBEF3A42F7BEA38C30C0 /* Headers */, + A31697E1DD7523D8B50A8DF15860068B /* Sources */, + 7423C3C256154C4E2C02652F47F69065 /* Frameworks */, + 85E92F41A00A4467CD4CE16E431761EC /* Copy generated compatibility header */, + ); + buildRules = ( + ); + dependencies = ( + 0B3CB9B14FD3A2EA1C60DFBE519A636F /* PBXTargetDependency */, + ); + name = RxBlocking; + productName = RxBlocking; + productReference = 25F63A531105CD4E1E4CCF5B918C5494 /* RxBlocking */; + productType = "com.apple.product-type.library.static"; + }; F2541C12E9BA697CFF5DE2E52A71D9D3 /* AmplitudeSwift */ = { isa = PBXNativeTarget; buildConfigurationList = 04F80416A06F55A22CF0A2F786AC9E88 /* Build configuration list for PBXNativeTarget "AmplitudeSwift" */; @@ -2593,7 +4249,7 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = DFCFD7A5F837CB0E70C3CBB7AE28B0F4 /* Products */; + productRefGroup = A67590B45AFA83AE7358D48904F2F949 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -2603,14 +4259,28 @@ 72E614C823EA09AB1AAE80D5CD8A4C58 /* NMapsGeometry */, 8E049F5F4E3BDC647F924FEF22D49D90 /* NMapsMap */, 60A7021A5E051B83B2C46602C1AC738A /* Pods-AVIRO */, + 49E6FD7E708D59A6B3CFE1B957B5A28E /* Pods-AVIROTests */, 68494F30B4A13F8E5E88BCCAEC25B0A4 /* Realm */, 782725687624F8665247B84AB581BEB1 /* RealmSwift */, + F243B36381C0CE83CCFF789AC38F0D36 /* RxBlocking */, + 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */, + 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */, + 91D17BEB3F6784AA8CA6D969FC78F446 /* RxSwift-framework */, + 524E387885E0F0463B2B6AAF53165788 /* RxSwift-library */, + C8D93C508E21FFD4EE60D335DD6C22E3 /* RxTest */, B990BD87169C76A3ED3FE8A9258D91A3 /* Toast-Swift */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ + 18C1BC6F46F6AA667672DA70F44ED0CE /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 39537AB4608D9B5FE694169E21AD9F19 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -2632,6 +4302,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 67F8942CE53D93BA5E0E3EF2685C7482 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8628F60D1CA58A961549AA05ECC6717F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; A61BD24233D44F4A595AA1968518C848 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -2653,7 +4337,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F3EF5C7933A819D37AF74AB9343EA819 /* Resources */ = { + E2A2EE55E29B3E59E28C8008402B5682 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2663,6 +4347,30 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ + 039A2EFB9A5BF931D863B214149A39CB /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-library.modulemap", + "${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-library-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/RxSwift-library-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-library.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-library-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; 06DEA16D4139F67FC0E17642FDBEECD0 /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -2697,6 +4405,54 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/Realm/Realm-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; + 5E384B06F81A7126A17A589CCEDEE6C4 /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/RxTest/RxTest.modulemap", + "${PODS_ROOT}/Headers/Public/RxTest/RxTest-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/RxTest-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxTest/RxTest.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxTest/RxTest-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; + 85E92F41A00A4467CD4CE16E431761EC /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/RxBlocking/RxBlocking.modulemap", + "${PODS_ROOT}/Headers/Public/RxBlocking/RxBlocking-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/RxBlocking-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxBlocking/RxBlocking.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxBlocking/RxBlocking-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; 9F41E4BF07CD0C2520045B26BE219B15 /* Create Symlinks to Header Folders */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -3103,6 +4859,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 39FFAE88141424B5F416238F68F959A3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1F046DED206B870C824BC89C72F721C1 /* Pods-AVIRO-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5FE650516D9443CC6B2B19A4F00897BA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3153,14 +4917,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6847034AFFC9B0643501E696D93926BB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 455BE0C854203003959BD4AE28C123C6 /* Pods-AVIRO-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 7E19C03913F3D1CB2F7603740B976F22 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3222,6 +4978,320 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9F6F4B0C6CC2FBB1CF547FC33ECA9ACB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E92EFB101833B001EA542188EDA91D94 /* _RX.m in Sources */, + 9D6E5FC20BC3B538575835028DAEF893 /* _RXDelegateProxy.m in Sources */, + 310A816290D44150ED60D15122886130 /* _RXKVOObserver.m in Sources */, + E882E2FC6FF0575B40627F708AC3B971 /* _RXObjCRuntime.m in Sources */, + 66C8837C6C94501154E05320B5E592E9 /* Bag.swift in Sources */, + CA989545055299BEB23DC4A86F4D140A /* BehaviorRelay+Driver.swift in Sources */, + A8D7E9360C56E2229E6943AAA0185C98 /* ControlEvent.swift in Sources */, + F1AC5C8BA85473E2D465A168F58AF94D /* ControlEvent+Driver.swift in Sources */, + E9173A04F97BC7297AEB0A61DA9A12F6 /* ControlEvent+Signal.swift in Sources */, + EA78BE96DD14E2CA74588605A396E0B9 /* ControlProperty.swift in Sources */, + 9B0AE9B754403B07C8F23D8B85967380 /* ControlProperty+Driver.swift in Sources */, + 59ADBE9B7C46FBC83DDA8ABEB03B4832 /* ControlTarget.swift in Sources */, + C0D174B64659D91A34F3EF12803F088E /* DelegateProxy.swift in Sources */, + 8EA1B688709F9143D7566FEF0675EBE8 /* DelegateProxyType.swift in Sources */, + 87A2E52A0CE3D0EFC986C109B8B3734E /* DispatchQueue+Extensions.swift in Sources */, + 17E13A48E022F07BE92336D2C9488DD3 /* Driver.swift in Sources */, + 4B90C2464D121B1E83EFAF2885E3B112 /* Driver+Subscription.swift in Sources */, + 1171F0C211793BADBDA3C8DF8CD7048F /* Infallible+Bind.swift in Sources */, + BF3B8B9866206BDACBED7C9E5A6102FE /* Infallible+Driver.swift in Sources */, + 70AC24DD7FE50B3D00D28E4F1533AF62 /* InfiniteSequence.swift in Sources */, + 304A34F9CD57E38897766A2AEEE02735 /* ItemEvents.swift in Sources */, + 2A98A1F6D0A0F47E495E9BB0682C3D78 /* KVORepresentable.swift in Sources */, + 5EEAA67192C30531B6B6C14E3CAA913B /* KVORepresentable+CoreGraphics.swift in Sources */, + 5D6E566D294FAD7C3E7B6BD6EC571955 /* KVORepresentable+Swift.swift in Sources */, + C799B51AC871F44590F1D6B0B8E3A7B2 /* NotificationCenter+Rx.swift in Sources */, + E4C31C495C95ADB3D4C7626A920FDF3B /* NSButton+Rx.swift in Sources */, + 4410FEA335C7919B2B57132B66CABEBE /* NSControl+Rx.swift in Sources */, + 9C003FCE28C43675BA6489FF9668C29A /* NSObject+Rx.swift in Sources */, + 10A0B72ED30154F85C0C8D4B2262F671 /* NSObject+Rx+KVORepresentable.swift in Sources */, + E62592A24689420C4CC5F0A6264BED52 /* NSObject+Rx+RawRepresentable.swift in Sources */, + D2EE7351903009229C0A9E42911CDFAD /* NSSlider+Rx.swift in Sources */, + 83F508C5073F92B00E75012FF111A68F /* NSTextField+Rx.swift in Sources */, + AB8A64166D700BB79461D0A75A8CDE08 /* NSTextStorage+Rx.swift in Sources */, + 7B2AF4D8909C3996E1AD886153429987 /* NSTextView+Rx.swift in Sources */, + 66326E797C7E1B1FAFA63991FCB60838 /* NSView+Rx.swift in Sources */, + C2E7D47D0DCE91C0C335D29D8FE97760 /* Observable+Bind.swift in Sources */, + 16BBCDC6EA9D28EAD4110D568AF6F8BE /* ObservableConvertibleType+Driver.swift in Sources */, + 97805516DB95089270B8AA6AC3FDC63E /* ObservableConvertibleType+SharedSequence.swift in Sources */, + BE182C5501F0B120ACD5FEF98DAA2953 /* ObservableConvertibleType+Signal.swift in Sources */, + E224C283AA84FF48BCE71EDB0283CB64 /* Platform.Darwin.swift in Sources */, + EAA6DC88AD6760E6FC5D584043798D77 /* Platform.Linux.swift in Sources */, + E91E0BD02DB8157A18E292957F034042 /* PriorityQueue.swift in Sources */, + C10E77244A4D189940E4DE21C8435804 /* PublishRelay+Signal.swift in Sources */, + 1010B62761CFAE48BD31A0E4018F5CBB /* Queue.swift in Sources */, + E813B8E55907FD9C9D90C22792AC827D /* RecursiveLock.swift in Sources */, + 7EAA8B28240F7E5CE19C0AA6E191FABC /* RxCocoa.swift in Sources */, + 83708D207D410D06E58B64B56661355B /* RxCocoa-dummy.m in Sources */, + A7944869F3770FAB6302AAA4D1BFA7FA /* RxCocoaObjCRuntimeError+Extensions.swift in Sources */, + C71EF1D50DEDD64C07F2769D1E5E25D8 /* RxCollectionViewDataSourcePrefetchingProxy.swift in Sources */, + 01F658414AAC04A52EF2DEAFE3F9F964 /* RxCollectionViewDataSourceProxy.swift in Sources */, + 300641EE1BB2AC2A1552FA423147BF57 /* RxCollectionViewDataSourceType.swift in Sources */, + 2FC0553D2BC00C6C769F289944E5F546 /* RxCollectionViewDelegateProxy.swift in Sources */, + 32E452BF8E6ACD592403CB7C0A4D8DA6 /* RxCollectionViewReactiveArrayDataSource.swift in Sources */, + 137CE12130498555F0C0AF03E21B6AE3 /* RxDelegateProxyCrashFix.swift in Sources */, + E0124C428956811F8179E1EE39232A01 /* RxNavigationControllerDelegateProxy.swift in Sources */, + 63328EE52982943381D1F2F52EEE56F2 /* RxPickerViewAdapter.swift in Sources */, + F2E161033DF3DAC38E07C08581B5F5A9 /* RxPickerViewDataSourceProxy.swift in Sources */, + 9F1CF8083D7732C578ADC4E4BA0D3302 /* RxPickerViewDataSourceType.swift in Sources */, + DDC5E044E5B0ABA30C014A6BC6F6967C /* RxPickerViewDelegateProxy.swift in Sources */, + 490D08A997D04533EFDA3023DEEAF03D /* RxScrollViewDelegateProxy.swift in Sources */, + 413AA7D4B66DB837623BF2313631D3C1 /* RxSearchBarDelegateProxy.swift in Sources */, + AECBC83544CE5B0469A79F5BDA95C1A0 /* RxSearchControllerDelegateProxy.swift in Sources */, + F9D9C36DAEAD3700FA65B292FB65EF7D /* RxTabBarControllerDelegateProxy.swift in Sources */, + C1D6041BAD973C35377AFFF04008A72D /* RxTabBarDelegateProxy.swift in Sources */, + 9E9AF3E1DEEA8367F067431519548AE3 /* RxTableViewDataSourcePrefetchingProxy.swift in Sources */, + 8B1F0A86460BBA1A779CCC30EBAFEB4D /* RxTableViewDataSourceProxy.swift in Sources */, + 4CE07550F733491F83A8D1A20E848CC9 /* RxTableViewDataSourceType.swift in Sources */, + F9A188521930674A255FA9238F315EE3 /* RxTableViewDelegateProxy.swift in Sources */, + 80348E17B7D829503E8761FF8B3C38BE /* RxTableViewReactiveArrayDataSource.swift in Sources */, + 8E12AB1108C4C834139FD90DA2F03213 /* RxTarget.swift in Sources */, + D7F14A70D6E40AF373E4790C3218E022 /* RxTextStorageDelegateProxy.swift in Sources */, + 65A152B1E7EF9F149C135FB1A270665A /* RxTextViewDelegateProxy.swift in Sources */, + 0F1B0B9DA067670F3672FDA658D1D1D0 /* RxWKNavigationDelegateProxy.swift in Sources */, + 86A9F1E04041FE72058D224729CD7F8E /* SchedulerType+SharedSequence.swift in Sources */, + 90E44784FCE4A68C3F895C313DA4BEC5 /* SectionedViewDataSourceType.swift in Sources */, + A9EE6FC0B66CE74D05C013B75968FA6A /* SharedSequence.swift in Sources */, + 15076E7056795128EEF46A9BAEC66F46 /* SharedSequence+Concurrency.swift in Sources */, + 658D6B4BEDAD417225CA32D53C5CE9D3 /* SharedSequence+Operators.swift in Sources */, + EA3728B159E2D05E27AD5C28D0D1A82F /* SharedSequence+Operators+arity.swift in Sources */, + C19D0CF6848D6C346EC0BFDA3D1DF6A3 /* Signal.swift in Sources */, + CA79349CC7B00B5C4DF6C4537B2AC60F /* Signal+Subscription.swift in Sources */, + 2D3806DFB069BA12BAEC34A0AA296501 /* TextInput.swift in Sources */, + 8B2E331E093F7856F580D81AEC0743EE /* UIActivityIndicatorView+Rx.swift in Sources */, + 135BD6CC14257CD0EFE77467A23842D6 /* UIApplication+Rx.swift in Sources */, + ED1C56919D5C98B19B471B9B81B9E4F1 /* UIBarButtonItem+Rx.swift in Sources */, + 5F098717B430F34EDEDBD6A2CA25242E /* UIButton+Rx.swift in Sources */, + C9CAB7859CA4DC2009F1811732C568E3 /* UICollectionView+Rx.swift in Sources */, + 9D326EB935C78A675A97BA4C6703D27F /* UIControl+Rx.swift in Sources */, + D90076AA39528B228EB694479B684AA8 /* UIDatePicker+Rx.swift in Sources */, + 7EC5CBF9F3E7E96A1198B8EECB8FC2CB /* UIGestureRecognizer+Rx.swift in Sources */, + 1FBFA46E0B99A48D4820953DD3D02E19 /* UINavigationController+Rx.swift in Sources */, + C36AA7FD8FB24066AE8B0A4F5E2EAD0C /* UIPickerView+Rx.swift in Sources */, + 546BC5CC4F96554277FCB5D38EF9C53F /* UIRefreshControl+Rx.swift in Sources */, + 3FE6ECCA48447AACD400BBA0FAA68C55 /* UIScrollView+Rx.swift in Sources */, + 200304C1B8C5457625AFF7D1423B7756 /* UISearchBar+Rx.swift in Sources */, + DB7FCF7D27BF854F851A4B0AF3953A47 /* UISearchController+Rx.swift in Sources */, + BC3358E38DC1946F2B4D13A790EB4907 /* UISegmentedControl+Rx.swift in Sources */, + 084B91099B0AC64656DDD83692F611C8 /* UISlider+Rx.swift in Sources */, + F817863CB919C40D856F191E0F568D38 /* UIStepper+Rx.swift in Sources */, + 95F80CA43243EA0B50782D2F864CEC90 /* UISwitch+Rx.swift in Sources */, + 949D359C31CA4788759C7221D9974853 /* UITabBar+Rx.swift in Sources */, + C12D397074DDBF1345B477AD7E46766A /* UITabBarController+Rx.swift in Sources */, + 621597FDE1C168BD9F1C79DF649BB3C3 /* UITableView+Rx.swift in Sources */, + 4A3603267F6D4C393E4E5C744D7C2D81 /* UITextField+Rx.swift in Sources */, + 973BD401E3C5733AEBFE160E4267A199 /* UITextView+Rx.swift in Sources */, + EEF7168FB48A5E06167323F9072834D5 /* URLSession+Rx.swift in Sources */, + D7A1CAB9DFF52DBF41A8BF9EE10AAF77 /* WKWebView+Rx.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A31697E1DD7523D8B50A8DF15860068B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5423058DD6933995B0CFCE6D58A71C6E /* AtomicInt.swift in Sources */, + C8B51D345C71C8FA2B9D67B97ADDB3B5 /* Bag.swift in Sources */, + 6714E8DC76B0F1EEAB5110A42093BA6C /* BlockingObservable.swift in Sources */, + 9CA3D4D1D90483613AA29BABB5A9C16A /* BlockingObservable+Operators.swift in Sources */, + 2B43EBEA12E620A01E90ACB739FDA06D /* DispatchQueue+Extensions.swift in Sources */, + E6217D67F33652D0734F26F441012898 /* InfiniteSequence.swift in Sources */, + 2D1D46A9B70AF19FE0978F4B0399AAE7 /* ObservableConvertibleType+Blocking.swift in Sources */, + 268C56EB3E2E871154DF0E8255C8A326 /* Platform.Darwin.swift in Sources */, + 5C819F1ED9C7F670C455ECC0124AB1DD /* Platform.Linux.swift in Sources */, + 78619D374991D035C59CD4ED5D7A980B /* PriorityQueue.swift in Sources */, + B1D0901C232DA3422495493EAEAFA704 /* Queue.swift in Sources */, + 4F877574E03A09B380828FB4FD165278 /* RecursiveLock.swift in Sources */, + 20408617EAC0F466177F09B9D5E54659 /* Resources.swift in Sources */, + BF510581405BF1EB78D9CCF2BA8B11EA /* RunLoopLock.swift in Sources */, + A00F3986B2A16E862E2F8A94F8720EF9 /* RxBlocking-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B4CFD91088528C81353A69381681D077 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E56775636E96D23213B7AE52834F2718 /* Pods-AVIROTests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C439C25E690365C0A9E84C6BDB427C70 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7B726E8DE10B96AC2E39F33D86F78901 /* AddRef.swift in Sources */, + 06AC9ADBD882A1694D629C9D8AFC1A57 /* Amb.swift in Sources */, + 3FEDA52699B8EDF1E75FEC8B64C0EEB5 /* AnonymousDisposable.swift in Sources */, + BC2453A03A9CACA92701F61E7E0E987A /* AnonymousObserver.swift in Sources */, + 23F03C671E695EA3F737A28E9F19DB56 /* AnyObserver.swift in Sources */, + 219610984D2B62170858D885E9F76D13 /* AsMaybe.swift in Sources */, + EF4C4F3716D4D380D63DFC39920EBCCC /* AsSingle.swift in Sources */, + F9A9DADC7CC1B4A69FC350F77CD14E4F /* AsyncLock.swift in Sources */, + 6445446E477FE1621F47283C0EE130AE /* AsyncSubject.swift in Sources */, + 0E730511A1994EE8552D5FFD3E229486 /* AtomicInt.swift in Sources */, + 239B59395A93B2A17B9AB852BD537D9B /* Bag.swift in Sources */, + 7783C544112FE6141DAF72C975C31DE0 /* Bag+Rx.swift in Sources */, + 75253E1AF1435C34B899E6E7AB6C2098 /* BehaviorSubject.swift in Sources */, + 30EA28F45841206E63D33DF0EACF983D /* BinaryDisposable.swift in Sources */, + 6EF38E60DD4C0FF75DEC80B622966516 /* Binder.swift in Sources */, + 826FB267A1987158B31C95195F12509F /* BooleanDisposable.swift in Sources */, + 183AC0D556D9B5F874A211A70AD98386 /* Buffer.swift in Sources */, + 4E3A54E8638D45F6C4E71C3475469712 /* Cancelable.swift in Sources */, + 2767FED0432C2C1ABBC5A7EBA9002980 /* Catch.swift in Sources */, + 94435A2580C858C129539CF5F2269AD5 /* CombineLatest.swift in Sources */, + 113A7B21C54D6861B578F10DBD54F21C /* CombineLatest+arity.swift in Sources */, + 2E223DDF4B5CC9AE5E4CB1AAAC892E1E /* CombineLatest+Collection.swift in Sources */, + 86FEDAA4078FBA3CB106F95186FDBF69 /* CompactMap.swift in Sources */, + 175FFA5B7F65B72806629CD9BDB1FA43 /* Completable.swift in Sources */, + E15615F47845E70AA950366457359C8A /* Completable+AndThen.swift in Sources */, + 69D4BA448DFD49F506C44DB5CFD43B43 /* CompositeDisposable.swift in Sources */, + A368040EA5B0E93C7179E414E74ECA41 /* Concat.swift in Sources */, + E5C224465CBD11D3723460CBD10CCD8C /* ConcurrentDispatchQueueScheduler.swift in Sources */, + 7E6FDE5F76D785912C9294D973CE8E56 /* ConcurrentMainScheduler.swift in Sources */, + F75B72CF84DB33B6560E5E78A86E4340 /* ConnectableObservableType.swift in Sources */, + DFC5067255A455B81BAA3FAD7CA5377F /* Create.swift in Sources */, + 34C405D05092660520C487D1F6A9C0DF /* CurrentThreadScheduler.swift in Sources */, + 4F65B4F12828DAF6A3D010170ED1F7BB /* Date+Dispatch.swift in Sources */, + 23A2861943A80395A6C42C77F7138549 /* Debounce.swift in Sources */, + 203C3C1C7366967D94560B775937E0C6 /* Debug.swift in Sources */, + 07B64FFC5BFD8F406E43A861EE34EC0A /* Decode.swift in Sources */, + EF502BF4513C9E7B190D624355892F07 /* DefaultIfEmpty.swift in Sources */, + 97922F9BA3139B1104BB4C483EFA1647 /* Deferred.swift in Sources */, + 1AEEDC67160E4073806165FF1D7967D5 /* Delay.swift in Sources */, + 27DDCE38C1BADCBBFE79C72BDC4F6E25 /* DelaySubscription.swift in Sources */, + E491D3F86FF3E43A9E6C938990576445 /* Dematerialize.swift in Sources */, + 5C769931192AD7279C895D7B6BD3940C /* DispatchQueue+Extensions.swift in Sources */, + 0C6C747EC84D302031DF6C77D4B86A12 /* DispatchQueueConfiguration.swift in Sources */, + 88A0AEF3BF25B5AB230D3FF8280F6D16 /* Disposable.swift in Sources */, + 912A71A07511B5A578D26A48243A9605 /* Disposables.swift in Sources */, + 5B83B05F4CC0FCD8CFB5397724C4FD93 /* DisposeBag.swift in Sources */, + FAD080E85B0F41F271FC471B98F90699 /* DisposeBase.swift in Sources */, + C5F9F7A34408E6A5C785B55FF5DD861A /* DistinctUntilChanged.swift in Sources */, + EE7DFE8B712AD1DA331B9248684A278F /* Do.swift in Sources */, + 92BFD3CA2F51DC5E00463E6177F73DBA /* ElementAt.swift in Sources */, + DA7FBB7E934EB047110236BF79D94E7D /* Empty.swift in Sources */, + 1A0855D726B9D26FC479D2A9ADD4632F /* Enumerated.swift in Sources */, + 5F1587F7D254178C9A5B5660156B766F /* Error.swift in Sources */, + 2960AF44887F543F27EAA56C95DBC9D9 /* Errors.swift in Sources */, + FD463B3BE92FCA4251D526C9AEB77B4E /* Event.swift in Sources */, + CF95FD6CD69703336E4AA455FF876DDD /* Filter.swift in Sources */, + 5F2EE5A1C2A3B49BDFDB3173C3A438BC /* First.swift in Sources */, + EB810984B48BB08319411AC58C7DD552 /* Generate.swift in Sources */, + 2AF70D936CB3D6C26E6CD5703A52042E /* GroupBy.swift in Sources */, + 0BDDACCC7E43790995F64290C6AD9173 /* GroupedObservable.swift in Sources */, + 97DB580C72FB16C1FDED0607569F4B6D /* HistoricalScheduler.swift in Sources */, + 0552F966CFEE769B4DDBF36E4A97CDC8 /* HistoricalSchedulerTimeConverter.swift in Sources */, + F8CA9ADC478F3C8DE2B0F65C4891E82C /* ImmediateSchedulerType.swift in Sources */, + 6284AC51A29E6B3F3A05E60AF222A84E /* Infallible.swift in Sources */, + F2B27F60883E32A3B22070E1FFC0C173 /* Infallible+CombineLatest+arity.swift in Sources */, + 1EEC882449ED888292291455510BFE57 /* Infallible+CombineLatest+Collection.swift in Sources */, + D1CD7ECEB932C87421701A31617368C8 /* Infallible+Concurrency.swift in Sources */, + 065FB91DA48C722620A5537ABF326778 /* Infallible+Create.swift in Sources */, + 8E24E2B4D3989AE092E9233E51FFBA73 /* Infallible+Debug.swift in Sources */, + A2DE66DCC11931C4F656601AA2BDF7DE /* Infallible+Operators.swift in Sources */, + 1FA5A38DFC3D32A6FF04541229FD26F1 /* Infallible+Zip+arity.swift in Sources */, + 02C9A00076A6DF2A477B02695882CC3B /* InfiniteSequence.swift in Sources */, + 7901EA24082064D3F1008679B801DB49 /* InvocableScheduledItem.swift in Sources */, + B2D3AB5C16F92F522C3A587966A18FD8 /* InvocableType.swift in Sources */, + ABD1FB1E50838F100EFC43A7A15DD4C5 /* Just.swift in Sources */, + FD39798D4E6A2151C517E174154D163B /* Lock.swift in Sources */, + F0664F11084D14E6733855A8BB7CB19B /* LockOwnerType.swift in Sources */, + 0F079036AE1DB0BB1AEF0B5FA154E848 /* MainScheduler.swift in Sources */, + 05E370A5DBD095E075D058418EEF13C6 /* Map.swift in Sources */, + 98F9F7D849CEE718BF5D3A805685F4CD /* Materialize.swift in Sources */, + AD11AA80C3FE71311DB6C7C91336199C /* Maybe.swift in Sources */, + 95F4E8BB7CEA70B08B578DA59A748BF0 /* Merge.swift in Sources */, + 7E2E8B9CE672652CD88D17368B611FD3 /* Multicast.swift in Sources */, + 163247BE8C8181DBC0334FF07370EE9A /* Never.swift in Sources */, + 35A7A603BCE1889608D512C1CDF64FEB /* NopDisposable.swift in Sources */, + FA3D8F42E808BC6DF0E8428D7CE48D3F /* Observable.swift in Sources */, + 3A5043ACF0D4BF7D4DDB3EE5877E0629 /* Observable+Concurrency.swift in Sources */, + AD6E24EC42DE020441BD7F8E5329789B /* ObservableConvertibleType.swift in Sources */, + 7F726644507BED425BC25779B7B00A43 /* ObservableConvertibleType+Infallible.swift in Sources */, + 457BADA96E51AE257C56AADB01EDD0FD /* ObservableType.swift in Sources */, + B1C3F0E159138B08795F7AE68120FF94 /* ObservableType+Extensions.swift in Sources */, + 6FF97FCF0002C68E1DCC33B966EE32E0 /* ObservableType+PrimitiveSequence.swift in Sources */, + 6DE98D4D1A6C2924F21419F94A65110A /* ObserveOn.swift in Sources */, + ABD5B83D15621B835AF8E9956732A232 /* ObserverBase.swift in Sources */, + 8E237E62C911ADF9CAB69E50216F8819 /* ObserverType.swift in Sources */, + C2730F371E0FBF30017A6DFAF7651CD9 /* OperationQueueScheduler.swift in Sources */, + E7AFB4D5C2E45922675A8077041DEE3E /* Optional.swift in Sources */, + DC681FE918A9B29EAD3A35393F570AFC /* Platform.Darwin.swift in Sources */, + 80929105D768D703FCED146D1E640D60 /* Platform.Linux.swift in Sources */, + 6CD558933F1520219719F2AC2ED44E59 /* PrimitiveSequence.swift in Sources */, + 56B0551FA86E0DF854294F47F5BAA2F7 /* PrimitiveSequence+Concurrency.swift in Sources */, + 626B8F9A558B20AC6A9B1A26CAC94E5A /* PrimitiveSequence+Zip+arity.swift in Sources */, + 80922C312F0234E217199AB5930C101C /* PriorityQueue.swift in Sources */, + 22E09CD84D6A8DF43BD3A9C5269274D0 /* Producer.swift in Sources */, + 0E8B02B24E6D20525AC028EB4A9EC958 /* PublishSubject.swift in Sources */, + 7E1061DDF20372D5A0EBF71867F2C36F /* Queue.swift in Sources */, + 7321CB1BE5CD85C165083B1E9C706333 /* Range.swift in Sources */, + F2E58CB9052C6503AAA02780D267F260 /* Reactive.swift in Sources */, + 3071E81B181D340426D7499E3766D26B /* RecursiveLock.swift in Sources */, + 3B000CDD0B03EEA484CB76202685DA34 /* RecursiveScheduler.swift in Sources */, + BBAB7D9EAD6D92989B3485E40D39C0FA /* Reduce.swift in Sources */, + 5699EA7F2B3A95B6893D530FB1C98F2C /* RefCountDisposable.swift in Sources */, + 81F1628E5F2840243A4EBC8E5CFB9A39 /* Repeat.swift in Sources */, + 1FFC48F1E0EE3BBAC03DFC1647822997 /* ReplaySubject.swift in Sources */, + 069A9ACE79DB3B4A3FBB96DEE22761B0 /* RetryWhen.swift in Sources */, + F8BBC6FE3BA8F1AAFF4D357BC72F0968 /* Rx.swift in Sources */, + 56B2946A9841EB2F198258261968605B /* RxMutableBox.swift in Sources */, + D84CF391107FE0FAFD27AE816D856B9B /* RxSwift-library-dummy.m in Sources */, + 9C5710636AE0AADFA60044F48D3BA090 /* Sample.swift in Sources */, + 222E1EA7765B64B49AB7D8116FF432B0 /* Scan.swift in Sources */, + 7FABE4EB70DEF0B67BE661D32AF68E06 /* ScheduledDisposable.swift in Sources */, + E8622A9F5D68CF83D4A0F7BEB04A43D5 /* ScheduledItem.swift in Sources */, + CF220E54DDF22688DF913DE23B468CAC /* ScheduledItemType.swift in Sources */, + 5DF37D08FD45FAA70B5D533CB213B3FC /* SchedulerServices+Emulation.swift in Sources */, + 76FDB7F0ACAC702D1FD7E5C7B26A3B19 /* SchedulerType.swift in Sources */, + 4A0D6504843591AE9880FCC535EDCCDA /* Sequence.swift in Sources */, + 2FB2EDA4DE035DFE96FAEB12B978F5FE /* SerialDispatchQueueScheduler.swift in Sources */, + 859252B74C821CA06B56A5178B85442D /* SerialDisposable.swift in Sources */, + F50AE3738FF59C1D5F746261696CB2F9 /* ShareReplayScope.swift in Sources */, + 2230398E54F695DE9CDD6CEA8B08EA12 /* Single.swift in Sources */, + 2DC65A03526D2A7086C62B34B34F6E67 /* SingleAssignmentDisposable.swift in Sources */, + 7B7AC66AB31C29F8FF67CA447B23A0EF /* SingleAsync.swift in Sources */, + 0BFF58AA2577A3228C4B514B583310E3 /* Sink.swift in Sources */, + 0F4F50A5582DF322D48C1EA8FEE6325F /* Skip.swift in Sources */, + 06220F282A31EE62FCA54014991D7293 /* SkipUntil.swift in Sources */, + FA44A75F4BDA7E6B3D42E7B0BF6A8875 /* SkipWhile.swift in Sources */, + 6EDF30E50B4EE22F5B72EA04297E0452 /* StartWith.swift in Sources */, + 8FD00334DE912E8D4049B259A418082A /* SubjectType.swift in Sources */, + 6DB3DDF5BBBEB0307F7D43725CA9E41C /* SubscribeOn.swift in Sources */, + CCDF322A8B66078152641CD1558A8B19 /* SubscriptionDisposable.swift in Sources */, + 3AE0F1254F5BACA99290F675F9BACBC7 /* SwiftSupport.swift in Sources */, + A791E0FAED5482AA2CBC96BBFF3F6906 /* Switch.swift in Sources */, + 49D2CBE6D7C228D9089D85B08F885160 /* SwitchIfEmpty.swift in Sources */, + 018FEF87EB4F7AB5C6C274A27B19DB57 /* SynchronizedDisposeType.swift in Sources */, + E077B70EA8DAA51E3A41EBFBE4364D39 /* SynchronizedOnType.swift in Sources */, + 85445DAEDDC3947B16A65ABA7EB59155 /* SynchronizedUnsubscribeType.swift in Sources */, + EF39E502A388B0305A48972903052D32 /* TailRecursiveSink.swift in Sources */, + B7C62CBC8575D18B029F44ADF44BE3A3 /* Take.swift in Sources */, + 37290FA3822D3DD2EE9B182639F71477 /* TakeLast.swift in Sources */, + A6B6D994B61DCC5BE8EC781EEA79F1C1 /* TakeWithPredicate.swift in Sources */, + 8E563156EC197B15D61B1B3F82150940 /* Throttle.swift in Sources */, + D062B21EA8626384B15DA211559DF16C /* Timeout.swift in Sources */, + AC56DD6563EFB4F084311EC99F27C6D3 /* Timer.swift in Sources */, + 3EB23667AD932BD06017F1470235B777 /* ToArray.swift in Sources */, + A006A9A0C658D32D6D599E6F47CF1562 /* Using.swift in Sources */, + 73BF4E0B40CC1D7C1446EF57626AF225 /* VirtualTimeConverterType.swift in Sources */, + 37E6281723579F84EE460D1C481A4F10 /* VirtualTimeScheduler.swift in Sources */, + 8AD62B971FC7631CF0A7BD73E04FBAC1 /* Window.swift in Sources */, + C7D763F4A906E9BDDA8F9CC592CCAD40 /* WithLatestFrom.swift in Sources */, + D3F7414A4EDECDAA8E9909D0AF5F7059 /* WithUnretained.swift in Sources */, + 0A698206A12D7164659C1A50559626A6 /* Zip.swift in Sources */, + 2A6FFA4C0FD1E68F1D75E79E9ACA1979 /* Zip+arity.swift in Sources */, + 5457E8851FB44CFDBB096C81AB61AE8E /* Zip+Collection.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C576B265A93E25312929172E0AB5B460 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -3231,78 +5301,355 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E43F3D05AC26B4CB19A2517EE915BB5C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1E88A2A1149210CBD1CB6B86E369C7B5 /* AddRef.swift in Sources */, + B29F9ED7C4BB608579D2DE842A8226BE /* Amb.swift in Sources */, + 4106E233F91B96E690844EAD596D1A34 /* AnonymousDisposable.swift in Sources */, + 03E97605D8057A57A4C32B5434C35BDC /* AnonymousObserver.swift in Sources */, + DC87B561084FFDF8D5535760A36D10C6 /* AnyObserver.swift in Sources */, + E207D63B72031816DE83E74BFBCA4D5B /* AsMaybe.swift in Sources */, + 74C9E61AA90E644FF6CD3EED62672282 /* AsSingle.swift in Sources */, + 9EB0CD93CCE4694C4B6226B32BF34AEC /* AsyncLock.swift in Sources */, + C526F18E310906A5AF2250FC85A23461 /* AsyncSubject.swift in Sources */, + 73B4D0F82BE5A8CD73FC6EF421D2D8EA /* AtomicInt.swift in Sources */, + 31247AE04A5568B8A6C8D6B652169400 /* Bag.swift in Sources */, + E869EDD10A354055F3514C00BE14DA02 /* Bag+Rx.swift in Sources */, + AA7D712F6F5E4902825120D447DDDF83 /* BehaviorSubject.swift in Sources */, + 9F7AC51620C9D9DEA9454FF6584DED83 /* BinaryDisposable.swift in Sources */, + 7129868F63B1EB9DE44DC8F742605A7D /* Binder.swift in Sources */, + EC1D2E9C77A543904BE5DE7D2C32A675 /* BooleanDisposable.swift in Sources */, + E83CDF125B26E80C4957513ACBBE18FC /* Buffer.swift in Sources */, + 858098B5697C822078C2FBAD3073B50D /* Cancelable.swift in Sources */, + 6F9562ACD6CEDA78F83D75B7A0FAB209 /* Catch.swift in Sources */, + DF6FD5E6489588B3878129FA4EE184BD /* CombineLatest.swift in Sources */, + 81649F8CCBAE8B2E402BCFCCEC2CCB60 /* CombineLatest+arity.swift in Sources */, + 641CCC92DE6F507D9A4133C3EAC760D2 /* CombineLatest+Collection.swift in Sources */, + 40A7E63894934F59F2D8FE22EA69BBE3 /* CompactMap.swift in Sources */, + 63DB8632C56426446E46FA16EA0DC951 /* Completable.swift in Sources */, + 1B59AB6F6D9EDC1845F341EB3C6E1A29 /* Completable+AndThen.swift in Sources */, + 516EE5C8EA1B24B4E7465A37B6D48643 /* CompositeDisposable.swift in Sources */, + E96CE118EE60AB398481EBB98D909159 /* Concat.swift in Sources */, + F6E8225546FF80949844A03E0D132E6C /* ConcurrentDispatchQueueScheduler.swift in Sources */, + DA3E6750DFE946D39DD13321B749ED1C /* ConcurrentMainScheduler.swift in Sources */, + 757ED09234B43C2B8381195F7F3CC943 /* ConnectableObservableType.swift in Sources */, + 7EF9F53380243D66558AF936EC5AE2E0 /* Create.swift in Sources */, + EAA0497C0EDB5BB6999CF33CA75B88EF /* CurrentThreadScheduler.swift in Sources */, + 86F003CEA78F5AF6453C5FF49498F51F /* Date+Dispatch.swift in Sources */, + 0F470287E09768EE0416E04720C43283 /* Debounce.swift in Sources */, + 6F7AD65C094EAA53E38710347908057E /* Debug.swift in Sources */, + 4CD1D926433ADBFA48C0DEB50F64FEA9 /* Decode.swift in Sources */, + 78C70C568511F47E70304121EAAC57FF /* DefaultIfEmpty.swift in Sources */, + 85697FE431315B7DFAD0ED4862CE02E4 /* Deferred.swift in Sources */, + BF352BDBFA4634EA6774B894C3C5C897 /* Delay.swift in Sources */, + 9C918F78A94240E89A94B5B52D9BE307 /* DelaySubscription.swift in Sources */, + 0D4D6A12DF96CA2C08527FBFD7151D1C /* Dematerialize.swift in Sources */, + E375CDBCB57AFD47055B40D1D446E052 /* DispatchQueue+Extensions.swift in Sources */, + B488F4CCA727C5CB786CE18D2BC3B8CF /* DispatchQueueConfiguration.swift in Sources */, + B364352010EE6728166BCC1611218E3C /* Disposable.swift in Sources */, + 6E12E7EF4FBB63C1D48270B57D0BD7DA /* Disposables.swift in Sources */, + 6483F13D3F439EC3F14AEE7093389928 /* DisposeBag.swift in Sources */, + 82025CEA0E45E6A0CBF1FFDC1D09EDAF /* DisposeBase.swift in Sources */, + 199EA0A4D1BFC87B7C43B51965C83655 /* DistinctUntilChanged.swift in Sources */, + 7C65598A2C031035E21E2D37966F851F /* Do.swift in Sources */, + 008B1A848FC7CF6D2B75633938403375 /* ElementAt.swift in Sources */, + 3EE6768D08001A68D649BDCA7DD57E53 /* Empty.swift in Sources */, + 5707E3AAF765D2E2536B6EC1EADA6DDD /* Enumerated.swift in Sources */, + BC75150ADF04C63EB6EDB5A65A450942 /* Error.swift in Sources */, + 7CFD97A4A66883EB2EF09C977F36E1F7 /* Errors.swift in Sources */, + 4FB339AC990617F3E959CB11772E5A09 /* Event.swift in Sources */, + 9CBA76964E94A557D6C13ACCB804297B /* Filter.swift in Sources */, + 1F7199B62D469DC89689CB876FDD9BEA /* First.swift in Sources */, + 7112B21B30C21C190F85D7726FDD28F6 /* Generate.swift in Sources */, + BDE30EFB7B16D5C7B743245997719E47 /* GroupBy.swift in Sources */, + C256D9BD5C756FF7CA65DDE283A2CCAF /* GroupedObservable.swift in Sources */, + 064919A7AF5C55A72BF0CA110E2ED790 /* HistoricalScheduler.swift in Sources */, + E97864C85C221B43F5127AAD1A58D04D /* HistoricalSchedulerTimeConverter.swift in Sources */, + 2D924CC5836A833E85688DDD9272E1ED /* ImmediateSchedulerType.swift in Sources */, + A83F9A3F4E7C7C82CD8210C78DA1F443 /* Infallible.swift in Sources */, + 980F7EB1BAC39CC466933436915339E6 /* Infallible+CombineLatest+arity.swift in Sources */, + 74D084AAAF967E0BF0C6824F9FD8DF30 /* Infallible+CombineLatest+Collection.swift in Sources */, + 0C5A71CAA79B663315D69C979DCC12EA /* Infallible+Concurrency.swift in Sources */, + 2E743BE5294D121EFCE82E3AB597EF40 /* Infallible+Create.swift in Sources */, + 97772977644D2CE45C6B73F668E6E38B /* Infallible+Debug.swift in Sources */, + 4B7C52073AF920947CC1AF0747B3DE7B /* Infallible+Operators.swift in Sources */, + 60A758AC5AF93BE2CB5306A322B00BD7 /* Infallible+Zip+arity.swift in Sources */, + A724FC173860BA33829C2D5B0CD82FE5 /* InfiniteSequence.swift in Sources */, + 6319CD8FD5879CE7B27B538453F4FBF0 /* InvocableScheduledItem.swift in Sources */, + 4AB31164F1802213748D154A81EA60C7 /* InvocableType.swift in Sources */, + B0B2396991B16F01315F514D11F0420D /* Just.swift in Sources */, + 916CC9848945F0598F1954B63EE811E4 /* Lock.swift in Sources */, + C35902869C592210C63FE613C0A7E652 /* LockOwnerType.swift in Sources */, + 64FDD18C8AFA1122777C02E301A95BC3 /* MainScheduler.swift in Sources */, + 2CD3775E0486F7B1C973E90EDD29A124 /* Map.swift in Sources */, + 46D6E1F04D971DE2B8931695CB40B4B3 /* Materialize.swift in Sources */, + 40C04ECB0137BDFCE55FCA68412BCC16 /* Maybe.swift in Sources */, + 2CBAEE4DD70AE7982CC3915915F5119A /* Merge.swift in Sources */, + 5D407E579959281B31CEB06D8EBE57DE /* Multicast.swift in Sources */, + 0E64DC6957386DC96BD69871D5075183 /* Never.swift in Sources */, + 44181EC98EA3AD8298E941E4F0A6C281 /* NopDisposable.swift in Sources */, + 6E04B1BCCC822DA7BCA83A4A054EE8F8 /* Observable.swift in Sources */, + 4D66B6E64999CBD11557671C2D6255EE /* Observable+Concurrency.swift in Sources */, + 45988489B16639370E7BED871BB06A05 /* ObservableConvertibleType.swift in Sources */, + D513F3F9206A57644D7232F1BB555687 /* ObservableConvertibleType+Infallible.swift in Sources */, + A3E8C8C3E02FAB1EE48202D2A2B8BB15 /* ObservableType.swift in Sources */, + 7AD4CE7B802E658C3E3438AD2712BDD7 /* ObservableType+Extensions.swift in Sources */, + 625417F9577DEEB73A75A0F6C4C0AE9B /* ObservableType+PrimitiveSequence.swift in Sources */, + 1DBA6C930595CD6C2CC041005E9B9C61 /* ObserveOn.swift in Sources */, + FD992938EFEB1897BE1B039EE89206F7 /* ObserverBase.swift in Sources */, + 8C9C440CB8FA053BD3647DC523574F5F /* ObserverType.swift in Sources */, + 345A20B1ACFE4AD6C092A06F5EC030CC /* OperationQueueScheduler.swift in Sources */, + ECA8CB7EB8C07DF7A270B6D4A0B7A41B /* Optional.swift in Sources */, + 649AA5104EEF892189F3FEBACC38B38D /* Platform.Darwin.swift in Sources */, + 606E820E0429E36AB6B3B037071842CF /* Platform.Linux.swift in Sources */, + EF222E9FE124BB244EFBA03C12630B45 /* PrimitiveSequence.swift in Sources */, + 5675E80D44EA5E3BD18D9FC26DFAAE09 /* PrimitiveSequence+Concurrency.swift in Sources */, + 91E26869282B5BDC09C1364502C71DFE /* PrimitiveSequence+Zip+arity.swift in Sources */, + AE56B923B4A92DF55D2BFCA196F0CDDB /* PriorityQueue.swift in Sources */, + 3E13E72BADBBA1E4DAA260C9787BCCC0 /* Producer.swift in Sources */, + 8AF4868973692BDD65558514FD82AEFF /* PublishSubject.swift in Sources */, + F5A4E8117CC404FBF30FAA18DDF2B464 /* Queue.swift in Sources */, + 64D88A7392F24FCAE2105F347B13152C /* Range.swift in Sources */, + 1105A0A9EC686161407E31992013DD37 /* Reactive.swift in Sources */, + E7C5CC9FE5C8208B9206CEF237EA0F77 /* RecursiveLock.swift in Sources */, + 155FFF8C90A3B82CDD24CE51966A6BD4 /* RecursiveScheduler.swift in Sources */, + E68ED20625AF91E9DA00E03DE00DC679 /* Reduce.swift in Sources */, + 0ED8A20BF62953864A3CA64339815A8D /* RefCountDisposable.swift in Sources */, + 75C7E20E81B7B4134E28CBD580A08A80 /* Repeat.swift in Sources */, + C1C80CEFEE65EE7EEBA30044D81E4490 /* ReplaySubject.swift in Sources */, + 142B8792E6A83F6993155ABBA31F772D /* RetryWhen.swift in Sources */, + 5911A508553BA886DC5A2FD83E581C8A /* Rx.swift in Sources */, + 91A7258F94D008A3D84CB29CF11A1AF5 /* RxMutableBox.swift in Sources */, + 595063D7FD957DD282DCA569D0CB31BE /* RxSwift-framework-dummy.m in Sources */, + C260CAD07A80D5305714D6C25827EF10 /* Sample.swift in Sources */, + EAA3E86514B34B52B1BE1F6C19348E5F /* Scan.swift in Sources */, + 027535850FB09987C59072B38AD528E7 /* ScheduledDisposable.swift in Sources */, + 025A39D4E6152DFF0C75A24232D4A1D4 /* ScheduledItem.swift in Sources */, + 1BE3AE5164B048B17D43EFB91D7E1B99 /* ScheduledItemType.swift in Sources */, + 164864AA43F040C62C331940FADF822C /* SchedulerServices+Emulation.swift in Sources */, + E4B30C2FC6F770B35965F7A83FB45F1B /* SchedulerType.swift in Sources */, + C83FF06E7A917F4856171FE31E4267CD /* Sequence.swift in Sources */, + 0EA1FBBC8A3F5B8B3ACC7164E53C7796 /* SerialDispatchQueueScheduler.swift in Sources */, + 68ACCF8F6A5C6724DDBE6F67065EB24B /* SerialDisposable.swift in Sources */, + C5FE5151C69BC12AFC01C87940DF0497 /* ShareReplayScope.swift in Sources */, + 34A585172E0AA36FE0D52353FD70CD1D /* Single.swift in Sources */, + 5CDD26EC54DC9389D8548F9776A77344 /* SingleAssignmentDisposable.swift in Sources */, + F24E28526E33CE9B1205E6FE92CDCF8D /* SingleAsync.swift in Sources */, + 52CA2C7BBF49F61574604500745546B6 /* Sink.swift in Sources */, + C0568DF48139A2DD240FCC692ED3696B /* Skip.swift in Sources */, + 3B3484E8CE6C44851C1E7F784AE800AF /* SkipUntil.swift in Sources */, + 2C52A87169E1ACC4028E4D34C78B6768 /* SkipWhile.swift in Sources */, + B1D7E5323FFC22C4B8127FE58AAAB475 /* StartWith.swift in Sources */, + 9EF642F8B133B46807D75D4E98BA487D /* SubjectType.swift in Sources */, + D3A3E5CBEB60BD7FC256065A73D363AE /* SubscribeOn.swift in Sources */, + BC2002D898532CFD165FEF9626F500D2 /* SubscriptionDisposable.swift in Sources */, + E8CB5726B0DE18CF71A8A08925B3CFA7 /* SwiftSupport.swift in Sources */, + FE37D6297754179D680E93B403CE3E40 /* Switch.swift in Sources */, + 3D83F25EC701CC16F3D0AD85273295B9 /* SwitchIfEmpty.swift in Sources */, + C91A745A76FF4C40C3B5C2BFFF6CC990 /* SynchronizedDisposeType.swift in Sources */, + CA13C6ECF413F77188B55D97A2957802 /* SynchronizedOnType.swift in Sources */, + E7D204CA7813CC4061154DAD40DCC3B6 /* SynchronizedUnsubscribeType.swift in Sources */, + B954A3A6D4BF827448BE84FEBE708849 /* TailRecursiveSink.swift in Sources */, + C501700A41A57E5C1D399D62AF8759C1 /* Take.swift in Sources */, + 8A3CF40E98F18AED18202AFB13D21312 /* TakeLast.swift in Sources */, + C52C709CE499A6DDF23BCBF10F441909 /* TakeWithPredicate.swift in Sources */, + EE8657A2016412FBE0CF7F24CA6A4411 /* Throttle.swift in Sources */, + 8D1CB3C2CAED0673415F4138D42C0E75 /* Timeout.swift in Sources */, + 611EF6FC6CC7718D83A72E89299DE7B5 /* Timer.swift in Sources */, + 6302AA661E8ED73DE214B5D811FD0054 /* ToArray.swift in Sources */, + 67A316F219C90400A109C2FDC765EFD5 /* Using.swift in Sources */, + 4D3D136BE3DDE2AEA805741CBE356F11 /* VirtualTimeConverterType.swift in Sources */, + 1B49AE8DD19D300E0C3FE52EF2AE0EE7 /* VirtualTimeScheduler.swift in Sources */, + 9784284124B30375541353AFA1F0FC50 /* Window.swift in Sources */, + AD6237C8337DE6B2A08127FD23D94976 /* WithLatestFrom.swift in Sources */, + B0C19F1BB81A76E117DDCB673CCAE796 /* WithUnretained.swift in Sources */, + 7998CA14107B3B792999F4B2EF26AB2E /* Zip.swift in Sources */, + 6ADA128BA557892BCB0293BB79559C4A /* Zip+arity.swift in Sources */, + 79741307834F56DA9971748B70FEFCFE /* Zip+Collection.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EAE9AB7340F6E0FFDF93A64648565A10 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CFB99976116F3F6F6959C751DC72DBD8 /* BehaviorRelay.swift in Sources */, + FA02DF628A2D0431207A001BC193FCF0 /* Observable+Bind.swift in Sources */, + DDE08C4324D2843FB11240170F127149 /* PublishRelay.swift in Sources */, + C7230A41C04915B681803BB372726AF0 /* ReplayRelay.swift in Sources */, + B9162C3D497554A66A632744373A7A0E /* RxRelay-dummy.m in Sources */, + 2233858A1D70DDBE6346A3D5AFD80837 /* Utils.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F75AF238BCD8E93148C48E97569239FE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0B0BA5CC3A990576B958A46801FB5F30 /* Any+Equatable.swift in Sources */, + 34BD36BF1D0DB5321FC5EC1719EA5828 /* AtomicInt.swift in Sources */, + A3A2F11B0E21777F869E3D8D3E94F7B7 /* Bag.swift in Sources */, + 457C032F95EECBFFB814E988345C6693 /* ColdObservable.swift in Sources */, + 76564BB3B7BC444088A51A910580D41B /* DispatchQueue+Extensions.swift in Sources */, + 8E22B26F0B84DE95997A8C9531C889F8 /* Event+Equatable.swift in Sources */, + 6B82FFA3BD02953ABA4E8126B6E75F06 /* HotObservable.swift in Sources */, + BE3A9E68BD56C81312F98B98B21E9851 /* InfiniteSequence.swift in Sources */, + A9CB30992B0698EAC8B4CFB5F1CCDAE0 /* Platform.Darwin.swift in Sources */, + 725D55EB78221105579A7D990B3ED1E9 /* Platform.Linux.swift in Sources */, + C6F27BB6671C89F5DB705A00E81C51FD /* PriorityQueue.swift in Sources */, + AB7CC336CBD76CF8009B7DB26103C218 /* Queue.swift in Sources */, + 5CE25C943925A2ECDF73B3319B59CC0F /* Recorded.swift in Sources */, + E295753C69223EFECEE9D57D90E68952 /* Recorded+Event.swift in Sources */, + 3B8B5CFBE1964C1CB93B5C4CC4420FC6 /* RecursiveLock.swift in Sources */, + 23E2425A70DFF13DE1B2036DA6D447FF /* RxTest.swift in Sources */, + 745622229EB192D8B78EBD3A852464C5 /* RxTest-dummy.m in Sources */, + 3E2F67A6DB2B47A63273A20E91E59313 /* Subscription.swift in Sources */, + 6060412AEF1B5FF40E6F17EDA4577E37 /* TestableObservable.swift in Sources */, + 1B48C0DE9C0DDE239323752F75E47B7F /* TestableObserver.swift in Sources */, + A65B8394F4FDC6A500F8290327D7F2A9 /* TestScheduler.swift in Sources */, + CC2EB130C92CE276D8357FF3333C0F47 /* TestSchedulerVirtualTimeConverter.swift in Sources */, + DB0CC7EB970D5B48A6EAFA423FFB9392 /* XCTest+Rx.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 2823EA4CC4277CF5DE29D35595EAF887 /* PBXTargetDependency */ = { + 0B3CB9B14FD3A2EA1C60DFBE519A636F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = NMapsMap; - target = 8E049F5F4E3BDC647F924FEF22D49D90 /* NMapsMap */; - targetProxy = 10DEE9F5CA0D0C98A4FF26B21156C7A5 /* PBXContainerItemProxy */; + name = "RxSwift-library"; + target = 524E387885E0F0463B2B6AAF53165788 /* RxSwift-library */; + targetProxy = E632156EA5D1C77549F7306BDDE7CB4C /* PBXContainerItemProxy */; + }; + 1C128E59EEBB3BBC97E7E0B24EBC3CA7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RxSwift-library"; + target = 524E387885E0F0463B2B6AAF53165788 /* RxSwift-library */; + targetProxy = 7BDCE3E37E2851BE804D6898DBF0071A /* PBXContainerItemProxy */; + }; + 4ECDC1DE8F21FD31A8DFB9FB00CD3033 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxTest; + target = C8D93C508E21FFD4EE60D335DD6C22E3 /* RxTest */; + targetProxy = 1E176242EA3C149F0AA4F3CD38D2E35D /* PBXContainerItemProxy */; + }; + 575F4091B58ABB4477A291AA5E2C1A31 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxBlocking; + target = F243B36381C0CE83CCFF789AC38F0D36 /* RxBlocking */; + targetProxy = 4812463D67A8FF1A3F6036C5D8C1307B /* PBXContainerItemProxy */; }; - 53397FC8E9C64C44BB724CFC6D00CC7A /* PBXTargetDependency */ = { + 58B06DA4E14AA2F525C567375A699551 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = NMapsGeometry; + target = 72E614C823EA09AB1AAE80D5CD8A4C58 /* NMapsGeometry */; + targetProxy = C5F8BAD1D451EC3ADD2F850957D336AC /* PBXContainerItemProxy */; + }; + 7D6F17FEC685458576700D9D9E71CD8F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Realm; target = 68494F30B4A13F8E5E88BCCAEC25B0A4 /* Realm */; - targetProxy = 7B3EDF9F450903603470B3E2732D7FAD /* PBXContainerItemProxy */; + targetProxy = FE8F7702EBA0B82A8012781B5D468C38 /* PBXContainerItemProxy */; }; - 66541ACC77AB0EBB5A65863DFA04A0DB /* PBXTargetDependency */ = { + 8267225880DF00DA6A7D4CF0AF11591E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxRelay; + target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; + targetProxy = 5309F79A97415C1F34FBB8F259E46D6C /* PBXContainerItemProxy */; + }; + 8AF89909DAB5B8DFBB4D970EBB75980D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = AmplitudeSwift; target = F2541C12E9BA697CFF5DE2E52A71D9D3 /* AmplitudeSwift */; - targetProxy = CD7B6F88D2C02CD2218CB322B25D16DA /* PBXContainerItemProxy */; + targetProxy = A8BF358DCEDA1873E3288AB0A0FDABE3 /* PBXContainerItemProxy */; }; - 70655F55E8E942A0513A3036F19E853C /* PBXTargetDependency */ = { + 9B66427B3A24B2BE25D017229426F820 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = NMapsGeometry; - target = 72E614C823EA09AB1AAE80D5CD8A4C58 /* NMapsGeometry */; - targetProxy = 9E06D62155DA03C393F968B71F75FEE2 /* PBXContainerItemProxy */; + name = "Toast-Swift"; + target = B990BD87169C76A3ED3FE8A9258D91A3 /* Toast-Swift */; + targetProxy = 2CA16FBC1B5A54EDBF62DBCB3C571568 /* PBXContainerItemProxy */; }; - A2C65C8926A58B106D64D4EE6B61482A /* PBXTargetDependency */ = { + B81CF90AFA581CC147DEDDF851C603B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeychainSwift; - target = 07E54A78BCF82272E99319D7F7F5E8C1 /* KeychainSwift */; - targetProxy = 9DA64CD644D2B68D829FF0BFD6E3283E /* PBXContainerItemProxy */; + name = "RxSwift-framework"; + target = 91D17BEB3F6784AA8CA6D969FC78F446 /* RxSwift-framework */; + targetProxy = 95734113656FFFB19A1337C5F8BB35D2 /* PBXContainerItemProxy */; }; - B0BA821200571DE5F5DF79646473E2C0 /* PBXTargetDependency */ = { + C78F24D1A49E7E3293403411CD7BDC3B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Realm; - target = 68494F30B4A13F8E5E88BCCAEC25B0A4 /* Realm */; - targetProxy = D7990E42729795579266128E3F66CA01 /* PBXContainerItemProxy */; + name = RxRelay; + target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; + targetProxy = 6D88A5A51A8363D250122467815BB894 /* PBXContainerItemProxy */; }; - B5E8C8423D6834009FF104329B664FF5 /* PBXTargetDependency */ = { + CEE1239ED9FCD3A93DE7B1EF14B5AAF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RealmSwift; target = 782725687624F8665247B84AB581BEB1 /* RealmSwift */; - targetProxy = 140A2AA3F4779FDF724642220A8E8CCF /* PBXContainerItemProxy */; + targetProxy = 5B86227FFC12628296EE96DBC4B53893 /* PBXContainerItemProxy */; }; - C782CF72A87F97F57C555DC1F205C921 /* PBXTargetDependency */ = { + E21D46A7BF805D42102F59BF6BCE1FFB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "lottie-ios"; + target = 0B967D7F8561D42493EE289EC8D450D1 /* lottie-ios */; + targetProxy = A1B696D837BDFADC488DDAE1F50A9D76 /* PBXContainerItemProxy */; + }; + E44112B8AC97C034578328B4F0D93397 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RxSwift-library"; + target = 524E387885E0F0463B2B6AAF53165788 /* RxSwift-library */; + targetProxy = 67C242D58AD09FC2169816B7A8198199 /* PBXContainerItemProxy */; + }; + E495E9E28AA194E921AD34EE68B332B9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = NMapsGeometry; target = 72E614C823EA09AB1AAE80D5CD8A4C58 /* NMapsGeometry */; - targetProxy = B46DEBEF179C4895528AF7672D8A8596 /* PBXContainerItemProxy */; + targetProxy = C8956A14586069AB9B794433F127270B /* PBXContainerItemProxy */; }; - CACC643577028041236D51FBD4CFF824 /* PBXTargetDependency */ = { + E7E9D6126F0EA436909B897DDA5C865A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Toast-Swift"; - target = B990BD87169C76A3ED3FE8A9258D91A3 /* Toast-Swift */; - targetProxy = 163082C5FC7FAEF5328657CD53A8484B /* PBXContainerItemProxy */; + name = KeychainSwift; + target = 07E54A78BCF82272E99319D7F7F5E8C1 /* KeychainSwift */; + targetProxy = 81FFF3328BCF7AA3F9F1CBD5788D0E2A /* PBXContainerItemProxy */; }; - D9D99146A6B01DBEED5927392EF0D156 /* PBXTargetDependency */ = { + EDCA0118B0B79707CE9B350FBD1D7817 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "lottie-ios"; - target = 0B967D7F8561D42493EE289EC8D450D1 /* lottie-ios */; - targetProxy = D898ECFB6782CCA76B164F38F2C60A23 /* PBXContainerItemProxy */; + name = NMapsMap; + target = 8E049F5F4E3BDC647F924FEF22D49D90 /* NMapsMap */; + targetProxy = B1C485A96A8404151122519DCDE890D9 /* PBXContainerItemProxy */; + }; + F05C8D04C7DC8757F85ADBE9ECE57A88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Realm; + target = 68494F30B4A13F8E5E88BCCAEC25B0A4 /* Realm */; + targetProxy = BA084D10971EB6C3141A91B92A53B60B /* PBXContainerItemProxy */; + }; + F212DAD1D07C7F1696E96E669295DC2E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxCocoa; + target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; + targetProxy = 08BFD16817070ADFADE50A3F0E47A84E /* PBXContainerItemProxy */; + }; + FCD3F76D46BCAD1C28E907D8CD6716E2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RxSwift-framework"; + target = 91D17BEB3F6784AA8CA6D969FC78F446 /* RxSwift-framework */; + targetProxy = B0D7775457DD58A1A3D2C914F7D21855 /* PBXContainerItemProxy */; + }; + FE80EFE4C349707733C4B612100F3445 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "RxSwift-framework"; + target = 91D17BEB3F6784AA8CA6D969FC78F446 /* RxSwift-framework */; + targetProxy = 8628A84CAD5AE44FF71DC5E136B0485B /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 07A6C190A2D2CCEEECE7E4B985B0EE58 /* Debug */ = { + 02EAE3AC107AF29324FB0906418035A3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A7CEF4490D6403E91330872D30B3852 /* Pods-AVIRO.debug.xcconfig */; + baseConfigurationReference = 57DFEE9A04F36ECF43C05016E8CFC076 /* RxRelay.debug.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -3311,7 +5658,8 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-AVIRO/Pods-AVIRO-Info.plist"; + GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RxRelay/RxRelay-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -3319,15 +5667,13 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-AVIRO/Pods-AVIRO.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/RxRelay/RxRelay.modulemap"; + PRODUCT_MODULE_NAME = RxRelay; + PRODUCT_NAME = RxRelay; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; @@ -3336,7 +5682,7 @@ }; 103C775A12EF4A73FE3DCB70BB9C912B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB0542AFE9A466D579F55FE4E8FB9ABC /* Realm.debug.xcconfig */; + baseConfigurationReference = 954464FBB1089BD83C2BA29BAFB74798 /* Realm.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3371,7 +5717,7 @@ }; 11CBB8F807C2B825FBE78C259C7CAF8E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 31336E7A0171BB431150C6023D63DA19 /* lottie-ios.release.xcconfig */; + baseConfigurationReference = E244D34D5D8A1516ECE297F206C69A9E /* lottie-ios.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3405,9 +5751,34 @@ }; name = Release; }; + 1245C8D57E93E9734ED914D78814F18B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6376127B8BD776307A65452133EF4079 /* RxSwift-library.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift-library/RxSwift-library-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MODULEMAP_FILE = "Headers/Public/RxSwift/RxSwift-library.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = "RxSwift-library"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 138EE7F5840AEF4E4028CA5FAAE9EE6E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AA9B79AE324CFFE8605F0097EC5CE597 /* NMapsGeometry.release.xcconfig */; + baseConfigurationReference = 14854AC285BFDA1B92AAC2DA6553DEBE /* NMapsGeometry.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -3424,7 +5795,7 @@ }; 1F6D3DD34E8A819816BB3E88E22EDACC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0AC8DCA2015581D80D86B5166B10FB03 /* Toast-Swift.debug.xcconfig */; + baseConfigurationReference = 45336C59ECE207854F8641563AF3448E /* Toast-Swift.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3456,9 +5827,104 @@ }; name = Debug; }; - 3936A45C100B4EF0F2482DC1408DB071 /* Release */ = { + 26062D43F78FEB28FB77A6E5DE63258B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 07186156FD4E71266897A834CB5CEABE /* RxCocoa.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/RxCocoa/RxCocoa-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RxCocoa/RxCocoa-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/RxCocoa/RxCocoa.modulemap"; + PRODUCT_MODULE_NAME = RxCocoa; + PRODUCT_NAME = RxCocoa; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 2D9F59AF544C8447C41677EB4F948847 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A81D3744793BF8FD4670B1FC3A43562E /* RxSwift-framework.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift-framework/RxSwift-framework-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RxSwift-framework/RxSwift-framework-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/RxSwift-framework/RxSwift-framework.modulemap"; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = RxSwift; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 3A2D830457F9184A33E46FB09281AA4C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B3018B7253A24BA757BFF1080DEB6815 /* RxTest.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RxTest/RxTest-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MODULEMAP_FILE = Headers/Public/RxTest/RxTest.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxTest; + PRODUCT_NAME = RxTest; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 40C88D5B4E86AF4D509F6DDBB6CDDF45 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 759E249799FCB60AD71A05CE47221735 /* Pods-AVIRO.release.xcconfig */; + baseConfigurationReference = 65DFC140F9074BFD31A9F9BA83927693 /* Pods-AVIRO.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -3470,7 +5936,95 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-AVIRO/Pods-AVIRO-Info.plist"; + INFOPLIST_FILE = "Target Support Files/Pods-AVIRO/Pods-AVIRO-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-AVIRO/Pods-AVIRO.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 4122D12474652D4B94029A59C0DC6010 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 63FDDF5D802A2B6F8B0E8464A89F7727 /* NMapsGeometry.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 47E4CBF639D6C513F05BC7FD1349A2C3 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2C5EDA4F324936CDF8835072EC0E98D3 /* Realm.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Realm/Realm-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Realm/Realm-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/Realm/Realm.modulemap"; + PRODUCT_MODULE_NAME = Realm; + PRODUCT_NAME = Realm; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 4B8ED3A9F4C1FDF77D9592BA93F27631 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9D575611734C069989AAA5B1D17291C8 /* RxCocoa.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/RxCocoa/RxCocoa-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RxCocoa/RxCocoa-Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( @@ -3478,77 +6032,69 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-AVIRO/Pods-AVIRO.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + MODULEMAP_FILE = "Target Support Files/RxCocoa/RxCocoa.modulemap"; + PRODUCT_MODULE_NAME = RxCocoa; + PRODUCT_NAME = RxCocoa; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 4122D12474652D4B94029A59C0DC6010 /* Debug */ = { + 4B8FA8D0B215996B06A04C17750A0A25 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 44AEB5BF5E9C3A65ED861FF8D195CD1D /* NMapsGeometry.debug.xcconfig */; + baseConfigurationReference = F0FAD295B22F6744E34A60F580D7B540 /* RxBlocking.release.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RxBlocking/RxBlocking-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + MODULEMAP_FILE = Headers/Public/RxBlocking/RxBlocking.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxBlocking; + PRODUCT_NAME = RxBlocking; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 47E4CBF639D6C513F05BC7FD1349A2C3 /* Release */ = { + 6BAC2BFBC8AEC10549C6782101EE0B43 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 877D491714C0976C918EF1138976B2D3 /* Realm.release.xcconfig */; + baseConfigurationReference = F642CC2AB45B83C3E7E7D2909A156AF0 /* Pods-AVIROTests.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - GCC_PREFIX_HEADER = "Target Support Files/Realm/Realm-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Realm/Realm-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/Realm/Realm.modulemap"; - PRODUCT_MODULE_NAME = Realm; - PRODUCT_NAME = Realm; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-AVIROTests/Pods-AVIROTests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; 717BF11508A479CC048B39007DBFA655 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9DB0096BAAA1D77112C8FCFD87F1D313 /* KeychainSwift.release.xcconfig */; + baseConfigurationReference = 74B67F7D91636A2DDB439C486D5E6B19 /* KeychainSwift.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3583,7 +6129,7 @@ }; 7803B9C7C9EFFE38C6B12DF10677132C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AB7189C4155E7E5DC03B848FC51A3280 /* AmplitudeSwift.debug.xcconfig */; + baseConfigurationReference = B60D16093C99FEA28E748FA19096EBF9 /* AmplitudeSwift.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3617,7 +6163,7 @@ }; 84971A590416E7195FA3E895F88755D0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2081C24D0F068D64A219AFC680E00575 /* RealmSwift.release.xcconfig */; + baseConfigurationReference = 591BF33129BD6D14D1C023FB958B4811 /* RealmSwift.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3651,6 +6197,41 @@ }; name = Release; }; + 89C3695FD9652F90252C09432E07DE79 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 713AD94862F38B25DD88B6FEBE5C9BF5 /* RxRelay.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RxRelay/RxRelay-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/RxRelay/RxRelay.modulemap"; + PRODUCT_MODULE_NAME = RxRelay; + PRODUCT_NAME = RxRelay; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; 90D4D09BCB6A4660E43ACBE9ECB6FE9A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -3781,7 +6362,7 @@ }; 993757F9E8B9E05B91457069EEB5AF03 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F089FD081FD8AED0737340E3ACCC220E /* AmplitudeSwift.release.xcconfig */; + baseConfigurationReference = 009117157D5C75381BDA8661FB9131F4 /* AmplitudeSwift.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3816,7 +6397,7 @@ }; AD67ACEC5E0CB491BF2C49D02AC8064D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D5527DAF155D91AD97C4367ED9A79FE3 /* RealmSwift.debug.xcconfig */; + baseConfigurationReference = 70A12B1DCEC0485BC21FFD9E8D7A920A /* RealmSwift.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3849,9 +6430,114 @@ }; name = Debug; }; + B7382E00E2E5247985F1D11A93353A4B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 59A2C21ADF6B167139B50CEA91357750 /* RxSwift-framework.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift-framework/RxSwift-framework-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RxSwift-framework/RxSwift-framework-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/RxSwift-framework/RxSwift-framework.modulemap"; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = RxSwift; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + B9A751502EC89BEF36F84C372DE0D0A5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6994A069C1A574A33EC6DD55D0A4BC70 /* RxSwift-library.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift-library/RxSwift-library-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MODULEMAP_FILE = "Headers/Public/RxSwift/RxSwift-library.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = "RxSwift-library"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + BD982B1FE8622E8E24C6C54DFEFA0C52 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 89F87B946885B4215A06E1358A42D819 /* Pods-AVIROTests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-AVIROTests/Pods-AVIROTests.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + C6365AA5D8C20156B9AFCCA85DBFAD11 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7C6DA66845AEE25E3F585B77166AA3D8 /* RxTest.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RxTest/RxTest-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MODULEMAP_FILE = Headers/Public/RxTest/RxTest.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxTest; + PRODUCT_NAME = RxTest; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; D2F78367C06F341A16DEF595FE4BB14C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9FEF35BBB113AEFCC273B2A94003B1D9 /* KeychainSwift.debug.xcconfig */; + baseConfigurationReference = 1F32CCD1DC9C99196D871961C16BC5C7 /* KeychainSwift.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3883,9 +6569,33 @@ }; name = Debug; }; + D4C95B7ECFE0419DBA1FC69F385D3C5D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D1D2F4329B500575FBE1F0B90CCA7E16 /* RxBlocking.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RxBlocking/RxBlocking-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MODULEMAP_FILE = Headers/Public/RxBlocking/RxBlocking.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxBlocking; + PRODUCT_NAME = RxBlocking; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; DD076AFEEE0A686B597DD62BCA7E46CF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 968FA21951F3330BDA191766485673D4 /* Toast-Swift.release.xcconfig */; + baseConfigurationReference = 3D4669CEE421F882863A7774DCF406C6 /* Toast-Swift.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3920,7 +6630,7 @@ }; E683018BA3CA2E27A39E5DF5619B90F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 29DEF47F5EC9B1AD022830B737C6787D /* NMapsMap.debug.xcconfig */; + baseConfigurationReference = EB010A7CC60229C280D8DEB4197F53D0 /* NMapsMap.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -3936,7 +6646,7 @@ }; E72157A73C2B74B9D739004FB0CBE62C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5EA714A92D146F9EEA7896A17F49B8FA /* lottie-ios.debug.xcconfig */; + baseConfigurationReference = 3D5AEF062DBE7CC143EAE6430DCA1A7D /* lottie-ios.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3971,7 +6681,7 @@ }; FE5D137BA104CCBECE001BF38C0AEB3E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4720C7A5F21CA529CFBC0616ED3CF152 /* NMapsMap.release.xcconfig */; + baseConfigurationReference = 5553783E4639E1FCC2373431A361F824 /* NMapsMap.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -3986,6 +6696,44 @@ }; name = Release; }; + FECFBA0B45816E596AEB62DBB24E9B74 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 956DF3F3F157F21868C4E003021802DB /* Pods-AVIRO.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-AVIRO/Pods-AVIRO-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-AVIRO/Pods-AVIRO.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -3998,6 +6746,33 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 0E09D720C1404519AE536CE855DBD2BF /* Build configuration list for PBXNativeTarget "RxBlocking" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D4C95B7ECFE0419DBA1FC69F385D3C5D /* Debug */, + 4B8FA8D0B215996B06A04C17750A0A25 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1AD50F16E9CAFB40F35EC9C2B280D896 /* Build configuration list for PBXNativeTarget "Pods-AVIRO" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 40C88D5B4E86AF4D509F6DDBB6CDDF45 /* Debug */, + FECFBA0B45816E596AEB62DBB24E9B74 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 20346524B8B6A0D87522253CCA0B9B19 /* Build configuration list for PBXNativeTarget "RxSwift-framework" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B7382E00E2E5247985F1D11A93353A4B /* Debug */, + 2D9F59AF544C8447C41677EB4F948847 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 3393B836BCDFD5292B077E63A26DC97F /* Build configuration list for PBXNativeTarget "Toast-Swift" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4025,11 +6800,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5BF37C30209FAEE5A8C963226BEA1F6C /* Build configuration list for PBXNativeTarget "Pods-AVIRO" */ = { + 5EAA617B31E9099AC2ADAD701F7456A1 /* Build configuration list for PBXNativeTarget "Pods-AVIROTests" */ = { isa = XCConfigurationList; buildConfigurations = ( - 07A6C190A2D2CCEEECE7E4B985B0EE58 /* Debug */, - 3936A45C100B4EF0F2482DC1408DB071 /* Release */, + 6BAC2BFBC8AEC10549C6782101EE0B43 /* Debug */, + BD982B1FE8622E8E24C6C54DFEFA0C52 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -4043,6 +6818,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 6F962C52D8C87F1DF12D5258286D195D /* Build configuration list for PBXNativeTarget "RxRelay" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 02EAE3AC107AF29324FB0906418035A3 /* Debug */, + 89C3695FD9652F90252C09432E07DE79 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 73E737D5F21341C24A13EBC70CD8D471 /* Build configuration list for PBXAggregateTarget "NMapsMap" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4070,6 +6854,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + D50F5FF9FDC6FEAEDF2FD91F589EE0F5 /* Build configuration list for PBXNativeTarget "RxSwift-library" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B9A751502EC89BEF36F84C372DE0D0A5 /* Debug */, + 1245C8D57E93E9734ED914D78814F18B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D814EEBEC0CA9E0C79D2F16597730737 /* Build configuration list for PBXNativeTarget "RxCocoa" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4B8ED3A9F4C1FDF77D9592BA93F27631 /* Debug */, + 26062D43F78FEB28FB77A6E5DE63258B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; EB98AD101AB530610FAEE48FABDF7F57 /* Build configuration list for PBXAggregateTarget "NMapsGeometry" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4079,6 +6881,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + F9AA0041A158DB68865363E3E8644A68 /* Build configuration list for PBXNativeTarget "RxTest" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C6365AA5D8C20156B9AFCCA85DBFAD11 /* Debug */, + 3A2D830457F9184A33E46FB09281AA4C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ }; rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; diff --git a/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 94b2795e..00000000 --- a/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,4 +0,0 @@ - - - diff --git a/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/Pods-AVIROTests.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/Pods-AVIROTests.xcscheme new file mode 100644 index 00000000..510edaf3 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/Pods-AVIROTests.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxBlocking.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxBlocking.xcscheme new file mode 100644 index 00000000..faf9dd9f --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxBlocking.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxCocoa.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxCocoa.xcscheme new file mode 100644 index 00000000..ab56e3e0 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxCocoa.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxRelay.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxRelay.xcscheme new file mode 100644 index 00000000..be7db3d4 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxRelay.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxSwift-framework.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxSwift-framework.xcscheme new file mode 100644 index 00000000..dce15c8e --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxSwift-framework.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxSwift-library.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxSwift-library.xcscheme new file mode 100644 index 00000000..362cb89d --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxSwift-library.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxTest.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxTest.xcscheme new file mode 100644 index 00000000..6ccb9551 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/RxTest.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/xcschememanagement.plist index c8cd18dc..b4c08def 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Pods/Pods.xcodeproj/xcuserdata/jeonseonghun.xcuserdatad/xcschemes/xcschememanagement.plist @@ -29,6 +29,11 @@ isShown + Pods-AVIROTests.xcscheme + + isShown + + Realm.xcscheme isShown @@ -39,6 +44,36 @@ isShown + RxBlocking.xcscheme + + isShown + + + RxCocoa.xcscheme + + isShown + + + RxRelay.xcscheme + + isShown + + + RxSwift-framework.xcscheme + + isShown + + + RxSwift-library.xcscheme + + isShown + + + RxTest.xcscheme + + isShown + + Toast-Swift.xcscheme isShown diff --git a/Pods/RxBlocking/LICENSE.md b/Pods/RxBlocking/LICENSE.md new file mode 100644 index 00000000..e32511b3 --- /dev/null +++ b/Pods/RxBlocking/LICENSE.md @@ -0,0 +1,9 @@ +**The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Pods/RxBlocking/Platform/AtomicInt.swift b/Pods/RxBlocking/Platform/AtomicInt.swift new file mode 100644 index 00000000..98479fd2 --- /dev/null +++ b/Pods/RxBlocking/Platform/AtomicInt.swift @@ -0,0 +1,71 @@ +// +// AtomicInt.swift +// Platform +// +// Created by Krunoslav Zaher on 10/28/18. +// Copyright © 2018 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +final class AtomicInt: NSLock { + fileprivate var value: Int32 + public init(_ value: Int32 = 0) { + self.value = value + } +} + +@discardableResult +@inline(__always) +func add(_ this: AtomicInt, _ value: Int32) -> Int32 { + this.lock() + let oldValue = this.value + this.value += value + this.unlock() + return oldValue +} + +@discardableResult +@inline(__always) +func sub(_ this: AtomicInt, _ value: Int32) -> Int32 { + this.lock() + let oldValue = this.value + this.value -= value + this.unlock() + return oldValue +} + +@discardableResult +@inline(__always) +func fetchOr(_ this: AtomicInt, _ mask: Int32) -> Int32 { + this.lock() + let oldValue = this.value + this.value |= mask + this.unlock() + return oldValue +} + +@inline(__always) +func load(_ this: AtomicInt) -> Int32 { + this.lock() + let oldValue = this.value + this.unlock() + return oldValue +} + +@discardableResult +@inline(__always) +func increment(_ this: AtomicInt) -> Int32 { + add(this, 1) +} + +@discardableResult +@inline(__always) +func decrement(_ this: AtomicInt) -> Int32 { + sub(this, 1) +} + +@inline(__always) +func isFlagSet(_ this: AtomicInt, _ mask: Int32) -> Bool { + (load(this) & mask) != 0 +} diff --git a/Pods/RxBlocking/Platform/DataStructures/Bag.swift b/Pods/RxBlocking/Platform/DataStructures/Bag.swift new file mode 100644 index 00000000..5720a3b4 --- /dev/null +++ b/Pods/RxBlocking/Platform/DataStructures/Bag.swift @@ -0,0 +1,181 @@ +// +// Bag.swift +// Platform +// +// Created by Krunoslav Zaher on 2/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Swift + +let arrayDictionaryMaxSize = 30 + +struct BagKey { + /** + Unique identifier for object added to `Bag`. + + It's underlying type is UInt64. If we assume there in an idealized CPU that works at 4GHz, + it would take ~150 years of continuous running time for it to overflow. + */ + fileprivate let rawValue: UInt64 +} + +/** +Data structure that represents a bag of elements typed `T`. + +Single element can be stored multiple times. + +Time and space complexity of insertion and deletion is O(n). + +It is suitable for storing small number of elements. +*/ +struct Bag : CustomDebugStringConvertible { + /// Type of identifier for inserted elements. + typealias KeyType = BagKey + + typealias Entry = (key: BagKey, value: T) + + private var _nextKey: BagKey = BagKey(rawValue: 0) + + // data + + // first fill inline variables + var _key0: BagKey? + var _value0: T? + + // then fill "array dictionary" + var _pairs = ContiguousArray() + + // last is sparse dictionary + var _dictionary: [BagKey: T]? + + var _onlyFastPath = true + + /// Creates new empty `Bag`. + init() { + } + + /** + Inserts `value` into bag. + + - parameter element: Element to insert. + - returns: Key that can be used to remove element from bag. + */ + mutating func insert(_ element: T) -> BagKey { + let key = _nextKey + + _nextKey = BagKey(rawValue: _nextKey.rawValue &+ 1) + + if _key0 == nil { + _key0 = key + _value0 = element + return key + } + + _onlyFastPath = false + + if _dictionary != nil { + _dictionary![key] = element + return key + } + + if _pairs.count < arrayDictionaryMaxSize { + _pairs.append((key: key, value: element)) + return key + } + + _dictionary = [key: element] + + return key + } + + /// - returns: Number of elements in bag. + var count: Int { + let dictionaryCount: Int = _dictionary?.count ?? 0 + return (_value0 != nil ? 1 : 0) + _pairs.count + dictionaryCount + } + + /// Removes all elements from bag and clears capacity. + mutating func removeAll() { + _key0 = nil + _value0 = nil + + _pairs.removeAll(keepingCapacity: false) + _dictionary?.removeAll(keepingCapacity: false) + } + + /** + Removes element with a specific `key` from bag. + + - parameter key: Key that identifies element to remove from bag. + - returns: Element that bag contained, or nil in case element was already removed. + */ + mutating func removeKey(_ key: BagKey) -> T? { + if _key0 == key { + _key0 = nil + let value = _value0! + _value0 = nil + return value + } + + if let existingObject = _dictionary?.removeValue(forKey: key) { + return existingObject + } + + for i in 0 ..< _pairs.count where _pairs[i].key == key { + let value = _pairs[i].value + _pairs.remove(at: i) + return value + } + + return nil + } +} + +extension Bag { + /// A textual representation of `self`, suitable for debugging. + var debugDescription : String { + "\(self.count) elements in Bag" + } +} + +extension Bag { + /// Enumerates elements inside the bag. + /// + /// - parameter action: Enumeration closure. + func forEach(_ action: (T) -> Void) { + if _onlyFastPath { + if let value0 = _value0 { + action(value0) + } + return + } + + let value0 = _value0 + let dictionary = _dictionary + + if let value0 = value0 { + action(value0) + } + + for i in 0 ..< _pairs.count { + action(_pairs[i].value) + } + + if dictionary?.count ?? 0 > 0 { + for element in dictionary!.values { + action(element) + } + } + } +} + +extension BagKey: Hashable { + func hash(into hasher: inout Hasher) { + hasher.combine(rawValue) + } +} + +func ==(lhs: BagKey, rhs: BagKey) -> Bool { + lhs.rawValue == rhs.rawValue +} diff --git a/Pods/RxBlocking/Platform/DataStructures/InfiniteSequence.swift b/Pods/RxBlocking/Platform/DataStructures/InfiniteSequence.swift new file mode 100644 index 00000000..75d7bea7 --- /dev/null +++ b/Pods/RxBlocking/Platform/DataStructures/InfiniteSequence.swift @@ -0,0 +1,23 @@ +// +// InfiniteSequence.swift +// Platform +// +// Created by Krunoslav Zaher on 6/13/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Sequence that repeats `repeatedValue` infinite number of times. +struct InfiniteSequence : Sequence { + typealias Iterator = AnyIterator + + private let repeatedValue: Element + + init(repeatedValue: Element) { + self.repeatedValue = repeatedValue + } + + func makeIterator() -> Iterator { + let repeatedValue = self.repeatedValue + return AnyIterator { repeatedValue } + } +} diff --git a/Pods/RxBlocking/Platform/DataStructures/PriorityQueue.swift b/Pods/RxBlocking/Platform/DataStructures/PriorityQueue.swift new file mode 100644 index 00000000..9ed856b9 --- /dev/null +++ b/Pods/RxBlocking/Platform/DataStructures/PriorityQueue.swift @@ -0,0 +1,111 @@ +// +// PriorityQueue.swift +// Platform +// +// Created by Krunoslav Zaher on 12/27/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +struct PriorityQueue { + private let hasHigherPriority: (Element, Element) -> Bool + private let isEqual: (Element, Element) -> Bool + + private var elements = [Element]() + + init(hasHigherPriority: @escaping (Element, Element) -> Bool, isEqual: @escaping (Element, Element) -> Bool) { + self.hasHigherPriority = hasHigherPriority + self.isEqual = isEqual + } + + mutating func enqueue(_ element: Element) { + elements.append(element) + bubbleToHigherPriority(elements.count - 1) + } + + func peek() -> Element? { + elements.first + } + + var isEmpty: Bool { + elements.count == 0 + } + + mutating func dequeue() -> Element? { + guard let front = peek() else { + return nil + } + + removeAt(0) + + return front + } + + mutating func remove(_ element: Element) { + for i in 0 ..< elements.count { + if self.isEqual(elements[i], element) { + removeAt(i) + return + } + } + } + + private mutating func removeAt(_ index: Int) { + let removingLast = index == elements.count - 1 + if !removingLast { + elements.swapAt(index, elements.count - 1) + } + + _ = elements.popLast() + + if !removingLast { + bubbleToHigherPriority(index) + bubbleToLowerPriority(index) + } + } + + private mutating func bubbleToHigherPriority(_ initialUnbalancedIndex: Int) { + precondition(initialUnbalancedIndex >= 0) + precondition(initialUnbalancedIndex < elements.count) + + var unbalancedIndex = initialUnbalancedIndex + + while unbalancedIndex > 0 { + let parentIndex = (unbalancedIndex - 1) / 2 + guard self.hasHigherPriority(elements[unbalancedIndex], elements[parentIndex]) else { break } + elements.swapAt(unbalancedIndex, parentIndex) + unbalancedIndex = parentIndex + } + } + + private mutating func bubbleToLowerPriority(_ initialUnbalancedIndex: Int) { + precondition(initialUnbalancedIndex >= 0) + precondition(initialUnbalancedIndex < elements.count) + + var unbalancedIndex = initialUnbalancedIndex + while true { + let leftChildIndex = unbalancedIndex * 2 + 1 + let rightChildIndex = unbalancedIndex * 2 + 2 + + var highestPriorityIndex = unbalancedIndex + + if leftChildIndex < elements.count && self.hasHigherPriority(elements[leftChildIndex], elements[highestPriorityIndex]) { + highestPriorityIndex = leftChildIndex + } + + if rightChildIndex < elements.count && self.hasHigherPriority(elements[rightChildIndex], elements[highestPriorityIndex]) { + highestPriorityIndex = rightChildIndex + } + + guard highestPriorityIndex != unbalancedIndex else { break } + elements.swapAt(highestPriorityIndex, unbalancedIndex) + + unbalancedIndex = highestPriorityIndex + } + } +} + +extension PriorityQueue : CustomDebugStringConvertible { + var debugDescription: String { + elements.debugDescription + } +} diff --git a/Pods/RxBlocking/Platform/DataStructures/Queue.swift b/Pods/RxBlocking/Platform/DataStructures/Queue.swift new file mode 100644 index 00000000..625d4733 --- /dev/null +++ b/Pods/RxBlocking/Platform/DataStructures/Queue.swift @@ -0,0 +1,148 @@ +// +// Queue.swift +// Platform +// +// Created by Krunoslav Zaher on 3/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/** +Data structure that represents queue. + +Complexity of `enqueue`, `dequeue` is O(1) when number of operations is +averaged over N operations. + +Complexity of `peek` is O(1). +*/ +struct Queue: Sequence { + /// Type of generator. + typealias Generator = AnyIterator + + private let resizeFactor = 2 + + private var storage: ContiguousArray + private var innerCount = 0 + private var pushNextIndex = 0 + private let initialCapacity: Int + + /** + Creates new queue. + + - parameter capacity: Capacity of newly created queue. + */ + init(capacity: Int) { + initialCapacity = capacity + + storage = ContiguousArray(repeating: nil, count: capacity) + } + + private var dequeueIndex: Int { + let index = pushNextIndex - count + return index < 0 ? index + storage.count : index + } + + /// - returns: Is queue empty. + var isEmpty: Bool { count == 0 } + + /// - returns: Number of elements inside queue. + var count: Int { innerCount } + + /// - returns: Element in front of a list of elements to `dequeue`. + func peek() -> T { + precondition(count > 0) + + return storage[dequeueIndex]! + } + + mutating private func resizeTo(_ size: Int) { + var newStorage = ContiguousArray(repeating: nil, count: size) + + let count = self.count + + let dequeueIndex = self.dequeueIndex + let spaceToEndOfQueue = storage.count - dequeueIndex + + // first batch is from dequeue index to end of array + let countElementsInFirstBatch = Swift.min(count, spaceToEndOfQueue) + // second batch is wrapped from start of array to end of queue + let numberOfElementsInSecondBatch = count - countElementsInFirstBatch + + newStorage[0 ..< countElementsInFirstBatch] = storage[dequeueIndex ..< (dequeueIndex + countElementsInFirstBatch)] + newStorage[countElementsInFirstBatch ..< (countElementsInFirstBatch + numberOfElementsInSecondBatch)] = storage[0 ..< numberOfElementsInSecondBatch] + + self.innerCount = count + pushNextIndex = count + storage = newStorage + } + + /// Enqueues `element`. + /// + /// - parameter element: Element to enqueue. + mutating func enqueue(_ element: T) { + if count == storage.count { + resizeTo(Swift.max(storage.count, 1) * resizeFactor) + } + + storage[pushNextIndex] = element + pushNextIndex += 1 + innerCount += 1 + + if pushNextIndex >= storage.count { + pushNextIndex -= storage.count + } + } + + private mutating func dequeueElementOnly() -> T { + precondition(count > 0) + + let index = dequeueIndex + + defer { + storage[index] = nil + innerCount -= 1 + } + + return storage[index]! + } + + /// Dequeues element or throws an exception in case queue is empty. + /// + /// - returns: Dequeued element. + mutating func dequeue() -> T? { + if self.count == 0 { + return nil + } + + defer { + let downsizeLimit = storage.count / (resizeFactor * resizeFactor) + if count < downsizeLimit && downsizeLimit >= initialCapacity { + resizeTo(storage.count / resizeFactor) + } + } + + return dequeueElementOnly() + } + + /// - returns: Generator of contained elements. + func makeIterator() -> AnyIterator { + var i = dequeueIndex + var innerCount = count + + return AnyIterator { + if innerCount == 0 { + return nil + } + + defer { + innerCount -= 1 + i += 1 + } + + if i >= self.storage.count { + i -= self.storage.count + } + + return self.storage[i] + } + } +} diff --git a/Pods/RxBlocking/Platform/DispatchQueue+Extensions.swift b/Pods/RxBlocking/Platform/DispatchQueue+Extensions.swift new file mode 100644 index 00000000..aaf24cae --- /dev/null +++ b/Pods/RxBlocking/Platform/DispatchQueue+Extensions.swift @@ -0,0 +1,21 @@ +// +// DispatchQueue+Extensions.swift +// Platform +// +// Created by Krunoslav Zaher on 10/22/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import Dispatch + +extension DispatchQueue { + private static var token: DispatchSpecificKey<()> = { + let key = DispatchSpecificKey<()>() + DispatchQueue.main.setSpecific(key: key, value: ()) + return key + }() + + static var isMain: Bool { + DispatchQueue.getSpecific(key: token) != nil + } +} diff --git a/Pods/RxBlocking/Platform/Platform.Darwin.swift b/Pods/RxBlocking/Platform/Platform.Darwin.swift new file mode 100644 index 00000000..eacc1943 --- /dev/null +++ b/Pods/RxBlocking/Platform/Platform.Darwin.swift @@ -0,0 +1,35 @@ +// +// Platform.Darwin.swift +// Platform +// +// Created by Krunoslav Zaher on 12/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(macOS) || os(iOS) || os(tvOS) || os(watchOS) + + import Darwin + import Foundation + + extension Thread { + static func setThreadLocalStorageValue(_ value: T?, forKey key: NSCopying) { + let currentThread = Thread.current + let threadDictionary = currentThread.threadDictionary + + if let newValue = value { + threadDictionary[key] = newValue + } + else { + threadDictionary[key] = nil + } + } + + static func getThreadLocalStorageValueForKey(_ key: NSCopying) -> T? { + let currentThread = Thread.current + let threadDictionary = currentThread.threadDictionary + + return threadDictionary[key] as? T + } + } + +#endif diff --git a/Pods/RxBlocking/Platform/Platform.Linux.swift b/Pods/RxBlocking/Platform/Platform.Linux.swift new file mode 100644 index 00000000..52a3e3af --- /dev/null +++ b/Pods/RxBlocking/Platform/Platform.Linux.swift @@ -0,0 +1,32 @@ +// +// Platform.Linux.swift +// Platform +// +// Created by Krunoslav Zaher on 12/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(Linux) + + import Foundation + + extension Thread { + + static func setThreadLocalStorageValue(_ value: T?, forKey key: String) { + if let newValue = value { + Thread.current.threadDictionary[key] = newValue + } + else { + Thread.current.threadDictionary[key] = nil + } + } + + static func getThreadLocalStorageValueForKey(_ key: String) -> T? { + let currentThread = Thread.current + let threadDictionary = currentThread.threadDictionary + + return threadDictionary[key] as? T + } + } + +#endif diff --git a/Pods/RxBlocking/Platform/RecursiveLock.swift b/Pods/RxBlocking/Platform/RecursiveLock.swift new file mode 100644 index 00000000..10b9bbb0 --- /dev/null +++ b/Pods/RxBlocking/Platform/RecursiveLock.swift @@ -0,0 +1,34 @@ +// +// RecursiveLock.swift +// Platform +// +// Created by Krunoslav Zaher on 12/18/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +#if TRACE_RESOURCES + class RecursiveLock: NSRecursiveLock { + override init() { + _ = Resources.incrementTotal() + super.init() + } + + override func lock() { + super.lock() + _ = Resources.incrementTotal() + } + + override func unlock() { + super.unlock() + _ = Resources.decrementTotal() + } + + deinit { + _ = Resources.decrementTotal() + } + } +#else + typealias RecursiveLock = NSRecursiveLock +#endif diff --git a/Pods/RxBlocking/README.md b/Pods/RxBlocking/README.md new file mode 100644 index 00000000..8181ef4c --- /dev/null +++ b/Pods/RxBlocking/README.md @@ -0,0 +1,254 @@ +

+RxSwift Logo +
+Build Status +Supported Platforms: iOS, macOS, tvOS, watchOS & Linux +
+ + + +

+ +Rx is a [generic abstraction of computation](https://youtu.be/looJcaeboBY) expressed through `Observable` interface, which lets you broadcast and subscribe to values and other events from an `Observable` stream. + +RxSwift is the Swift-specific implementation of the [Reactive Extensions](http://reactivex.io) standard. + +

RxSwift Observable Example of a price constantly changing and updating the app's UI

+ +While this version aims to stay true to the original spirit and naming conventions of Rx, this project also aims to provide a true Swift-first API for Rx APIs. + +Cross platform documentation can be found on [ReactiveX.io](http://reactivex.io/). + +Like other Rx implementations, RxSwift's intention is to enable easy composition of asynchronous operations and streams of data in the form of `Observable` objects and a suite of methods to transform and compose these pieces of asynchronous work. + +KVO observation, async operations, UI Events and other streams of data are all unified under [abstraction of sequence](Documentation/GettingStarted.md#observables-aka-sequences). This is the reason why Rx is so simple, elegant and powerful. + +## I came here because I want to ... + +###### ... understand + +* [why use rx?](Documentation/Why.md) +* [the basics, getting started with RxSwift](Documentation/GettingStarted.md) +* [traits](Documentation/Traits.md) - what are `Single`, `Completable`, `Maybe`, `Driver`, and `ControlProperty` ... and why do they exist? +* [testing](Documentation/UnitTests.md) +* [tips and common errors](Documentation/Tips.md) +* [debugging](Documentation/GettingStarted.md#debugging) +* [the math behind Rx](Documentation/MathBehindRx.md) +* [what are hot and cold observable sequences?](Documentation/HotAndColdObservables.md) + +###### ... install + +* Integrate RxSwift/RxCocoa with my app. [Installation Guide](#installation) + +###### ... hack around + +* with the example app. [Running Example App](Documentation/ExampleApp.md) +* with operators in playgrounds. [Playgrounds](Documentation/Playgrounds.md) + +###### ... interact + +* All of this is great, but it would be nice to talk with other people using RxSwift and exchange experiences.
[Join Slack Channel](http://slack.rxswift.org) +* Report a problem using the library. [Open an Issue With Bug Template](.github/ISSUE_TEMPLATE.md) +* Request a new feature. [Open an Issue With Feature Request Template](Documentation/NewFeatureRequestTemplate.md) +* Help out [Check out contribution guide](CONTRIBUTING.md) + +###### ... compare + +* [with Combine and ReactiveSwift](Documentation/ComparisonWithOtherLibraries.md). + +###### ... understand the structure + +RxSwift is as compositional as the asynchronous work it drives. The core unit is RxSwift itself, while other dependencies can be added for UI Work, testing, and more. + +It comprises five separate components depending on each other in the following way: + +```none +┌──────────────┐ ┌──────────────┐ +│ RxCocoa ├────▶ RxRelay │ +└───────┬──────┘ └──────┬───────┘ + │ │ +┌───────▼──────────────────▼───────┐ +│ RxSwift │ +└───────▲──────────────────▲───────┘ + │ │ +┌───────┴──────┐ ┌──────┴───────┐ +│ RxTest │ │ RxBlocking │ +└──────────────┘ └──────────────┘ +``` + +* **RxSwift**: The core of RxSwift, providing the Rx standard as (mostly) defined by [ReactiveX](https://reactivex.io). It has no other dependencies. +* **RxCocoa**: Provides Cocoa-specific capabilities for general iOS/macOS/watchOS & tvOS app development, such as Shared Sequences, Traits, and much more. It depends on both `RxSwift` and `RxRelay`. +* **RxRelay**: Provides `PublishRelay`, `BehaviorRelay` and `ReplayRelay`, three [simple wrappers around Subjects](https://github.com/ReactiveX/RxSwift/blob/main/Documentation/Subjects.md#relays). It depends on `RxSwift`. +* **RxTest** and **RxBlocking**: Provides testing capabilities for Rx-based systems. It depends on `RxSwift`. + +## Usage + + + + + + + + + + + + + + + + + + + +
Here's an exampleIn Action
Define search for GitHub repositories ...
+let searchResults = searchBar.rx.text.orEmpty
+    .throttle(.milliseconds(300), scheduler: MainScheduler.instance)
+    .distinctUntilChanged()
+    .flatMapLatest { query -> Observable<[Repository]> in
+        if query.isEmpty {
+            return .just([])
+        }
+        return searchGitHub(query)
+            .catchAndReturn([])
+    }
+    .observe(on: MainScheduler.instance)
... then bind the results to your tableview
+searchResults
+    .bind(to: tableView.rx.items(cellIdentifier: "Cell")) {
+        (index, repository: Repository, cell) in
+        cell.textLabel?.text = repository.name
+        cell.detailTextLabel?.text = repository.url
+    }
+    .disposed(by: disposeBag)
+ + +## Requirements + +* Xcode 12.x +* Swift 5.x + +For Xcode 11 and below, [use RxSwift 5.x](https://github.com/ReactiveX/RxSwift/releases/tag/5.1.1). + +## Installation + +RxSwift doesn't contain any external dependencies. + +These are currently the supported installation options: + +### Manual + +Open Rx.xcworkspace, choose `RxExample` and hit run. This method will build everything and run the sample app + +### [CocoaPods](https://guides.cocoapods.org/using/using-cocoapods.html) + +```ruby +# Podfile +use_frameworks! + +target 'YOUR_TARGET_NAME' do + pod 'RxSwift', '6.6.0' + pod 'RxCocoa', '6.6.0' +end + +# RxTest and RxBlocking make the most sense in the context of unit/integration tests +target 'YOUR_TESTING_TARGET' do + pod 'RxBlocking', '6.6.0' + pod 'RxTest', '6.6.0' +end +``` + +Replace `YOUR_TARGET_NAME` and then, in the `Podfile` directory, type: + +```bash +$ pod install +``` + +### XCFrameworks + +Each release starting with RxSwift 6 includes `*.xcframework` framework binaries. + +Simply drag the needed framework binaries to your **Frameworks, Libraries, and Embedded Content** section under your target's **General** tab. + +> **Note**: If you're using `RxCocoa`, be sure to also drag **RxCocoaRuntime.xcframework** before importing `RxCocoa`. + +XCFrameworks instructions + +### [Carthage](https://github.com/Carthage/Carthage) + +Add this to `Cartfile` + +``` +github "ReactiveX/RxSwift" "6.6.0" +``` + +```bash +$ carthage update +``` + +#### Carthage as a Static Library + +Carthage defaults to building RxSwift as a Dynamic Library. + +If you wish to build RxSwift as a Static Library using Carthage you may use the script below to manually modify the framework type before building with Carthage: + +```bash +carthage update RxSwift --platform iOS --no-build +sed -i -e 's/MACH_O_TYPE = mh_dylib/MACH_O_TYPE = staticlib/g' Carthage/Checkouts/RxSwift/Rx.xcodeproj/project.pbxproj +carthage build RxSwift --platform iOS +``` + +### [Swift Package Manager](https://github.com/apple/swift-package-manager) + +> **Note**: There is a critical cross-dependency bug affecting many projects including RxSwift in Swift Package Manager. We've [filed a bug (SR-12303)](https://bugs.swift.org/browse/SR-12303) in early 2020 but have no answer yet. Your mileage may vary. A partial workaround can be found [here](https://github.com/ReactiveX/RxSwift/issues/2127#issuecomment-717830502). + +Create a `Package.swift` file. + +```swift +// swift-tools-version:5.0 + +import PackageDescription + +let package = Package( + name: "RxTestProject", + dependencies: [ + .package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.6.0")) + ], + targets: [ + .target(name: "RxTestProject", dependencies: ["RxSwift", "RxCocoa"]) + ] +) +``` + +```bash +$ swift build +``` + +To build or test a module with RxTest dependency, set `TEST=1`. + +```bash +$ TEST=1 swift test +``` + +### Manually using git submodules + +* Add RxSwift as a submodule + +```bash +$ git submodule add git@github.com:ReactiveX/RxSwift.git +``` + +* Drag `Rx.xcodeproj` into Project Navigator +* Go to `Project > Targets > Build Phases > Link Binary With Libraries`, click `+` and select `RxSwift`, `RxCocoa` and `RxRelay` targets + +## References + +* [http://reactivex.io/](http://reactivex.io/) +* [Reactive Extensions GitHub (GitHub)](https://github.com/Reactive-Extensions) +* [RxSwift RayWenderlich.com Book](https://store.raywenderlich.com/products/rxswift-reactive-programming-with-swift) +* [RxSwift: Debunking the myth of hard (YouTube)](https://www.youtube.com/watch?v=GdvLP0ZAhhc) +* [Boxue.io RxSwift Online Course](https://boxueio.com/series/rxswift-101) (Chinese 🇨🇳) +* [Expert to Expert: Brian Beckman and Erik Meijer - Inside the .NET Reactive Framework (Rx) (video)](https://youtu.be/looJcaeboBY) +* [Reactive Programming Overview (Jafar Husain from Netflix)](https://youtu.be/-8Y1-lE6NSA) +* [Subject/Observer is Dual to Iterator (paper)](http://csl.stanford.edu/~christos/pldi2010.fit/meijer.duality.pdf) +* [Rx standard sequence operators visualized (visualization tool)](http://rxmarbles.com/) +* [Haskell](https://www.haskell.org/) diff --git a/Pods/RxBlocking/RxBlocking/BlockingObservable+Operators.swift b/Pods/RxBlocking/RxBlocking/BlockingObservable+Operators.swift new file mode 100644 index 00000000..02104a25 --- /dev/null +++ b/Pods/RxBlocking/RxBlocking/BlockingObservable+Operators.swift @@ -0,0 +1,170 @@ +// +// BlockingObservable+Operators.swift +// RxBlocking +// +// Created by Krunoslav Zaher on 10/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// The `MaterializedSequenceResult` enum represents the materialized +/// output of a BlockingObservable. +/// +/// If the sequence terminates successfully, the result is represented +/// by `.completed` with the array of elements. +/// +/// If the sequence terminates with error, the result is represented +/// by `.failed` with both the array of elements and the terminating error. +@frozen public enum MaterializedSequenceResult { + case completed(elements: [T]) + case failed(elements: [T], error: Error) +} + +extension BlockingObservable { + /// Blocks current thread until sequence terminates. + /// + /// If sequence terminates with error, terminating error will be thrown. + /// + /// - returns: All elements of sequence. + public func toArray() throws -> [Element] { + let results = self.materializeResult() + return try self.elementsOrThrow(results) + } +} + +extension BlockingObservable { + /// Blocks current thread until sequence produces first element. + /// + /// If sequence terminates with error before producing first element, terminating error will be thrown. + /// + /// - returns: First element of sequence. If sequence is empty `nil` is returned. + public func first() throws -> Element? { + let results = self.materializeResult(max: 1) + return try self.elementsOrThrow(results).first + } +} + +extension BlockingObservable { + /// Blocks current thread until sequence terminates. + /// + /// If sequence terminates with error, terminating error will be thrown. + /// + /// - returns: Last element in the sequence. If sequence is empty `nil` is returned. + public func last() throws -> Element? { + let results = self.materializeResult() + return try self.elementsOrThrow(results).last + } +} + +extension BlockingObservable { + /// Blocks current thread until sequence terminates. + /// + /// If sequence terminates with error before producing first element, terminating error will be thrown. + /// + /// - returns: Returns the only element of an sequence, and reports an error if there is not exactly one element in the observable sequence. + public func single() throws -> Element { + try self.single { _ in true } + } + + /// Blocks current thread until sequence terminates. + /// + /// If sequence terminates with error before producing first element, terminating error will be thrown. + /// + /// - parameter predicate: A function to test each source element for a condition. + /// - returns: Returns the only element of an sequence that satisfies the condition in the predicate, and reports an error if there is not exactly one element in the sequence. + public func single(_ predicate: @escaping (Element) throws -> Bool) throws -> Element { + let results = self.materializeResult(max: 2, predicate: predicate) + let elements = try self.elementsOrThrow(results) + + if elements.count > 1 { + throw RxError.moreThanOneElement + } + + guard let first = elements.first else { + throw RxError.noElements + } + + return first + } +} + +extension BlockingObservable { + /// Blocks current thread until sequence terminates. + /// + /// The sequence is materialized as a result type capturing how the sequence terminated (completed or error), along with any elements up to that point. + /// + /// - returns: On completion, returns the list of elements in the sequence. On error, returns the list of elements up to that point, along with the error itself. + public func materialize() -> MaterializedSequenceResult { + self.materializeResult() + } +} + +extension BlockingObservable { + private func materializeResult(max: Int? = nil, predicate: @escaping (Element) throws -> Bool = { _ in true }) -> MaterializedSequenceResult { + var elements = [Element]() + var error: Swift.Error? + + let lock = RunLoopLock(timeout: self.timeout) + + let d = SingleAssignmentDisposable() + + defer { + d.dispose() + } + + lock.dispatch { + let subscription = self.source.subscribe { event in + if d.isDisposed { + return + } + switch event { + case .next(let element): + do { + if try predicate(element) { + elements.append(element) + } + if let max = max, elements.count >= max { + d.dispose() + lock.stop() + } + } catch let err { + error = err + d.dispose() + lock.stop() + } + case .error(let err): + error = err + d.dispose() + lock.stop() + case .completed: + d.dispose() + lock.stop() + } + } + + d.setDisposable(subscription) + } + + do { + try lock.run() + } catch let err { + error = err + } + + if let error = error { + return MaterializedSequenceResult.failed(elements: elements, error: error) + } + + return MaterializedSequenceResult.completed(elements: elements) + } + + private func elementsOrThrow(_ results: MaterializedSequenceResult) throws -> [Element] { + switch results { + case .failed(_, let error): + throw error + case .completed(let elements): + return elements + } + } +} diff --git a/Pods/RxBlocking/RxBlocking/BlockingObservable.swift b/Pods/RxBlocking/RxBlocking/BlockingObservable.swift new file mode 100644 index 00000000..12aa9fdc --- /dev/null +++ b/Pods/RxBlocking/RxBlocking/BlockingObservable.swift @@ -0,0 +1,23 @@ +// +// BlockingObservable.swift +// RxBlocking +// +// Created by Krunoslav Zaher on 10/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation +import RxSwift + +/** +`BlockingObservable` is a variety of `Observable` that provides blocking operators. + +It can be useful for testing and demo purposes, but is generally inappropriate for production applications. + +If you think you need to use a `BlockingObservable` this is usually a sign that you should rethink your +design. +*/ +public struct BlockingObservable { + let timeout: TimeInterval? + let source: Observable +} diff --git a/Pods/RxBlocking/RxBlocking/ObservableConvertibleType+Blocking.swift b/Pods/RxBlocking/RxBlocking/ObservableConvertibleType+Blocking.swift new file mode 100644 index 00000000..7108e885 --- /dev/null +++ b/Pods/RxBlocking/RxBlocking/ObservableConvertibleType+Blocking.swift @@ -0,0 +1,20 @@ +// +// ObservableConvertibleType+Blocking.swift +// RxBlocking +// +// Created by Krunoslav Zaher on 7/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift +import Foundation + +extension ObservableConvertibleType { + /// Converts an Observable into a `BlockingObservable` (an Observable with blocking operators). + /// + /// - parameter timeout: Maximal time interval BlockingObservable can block without throwing `RxError.timeout`. + /// - returns: `BlockingObservable` version of `self` + public func toBlocking(timeout: TimeInterval? = nil) -> BlockingObservable { + BlockingObservable(timeout: timeout, source: self.asObservable()) + } +} diff --git a/Pods/RxBlocking/RxBlocking/Resources.swift b/Pods/RxBlocking/RxBlocking/Resources.swift new file mode 100644 index 00000000..b22246bc --- /dev/null +++ b/Pods/RxBlocking/RxBlocking/Resources.swift @@ -0,0 +1,29 @@ +// +// Resources.swift +// RxBlocking +// +// Created by Krunoslav Zaher on 1/21/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +#if TRACE_RESOURCES + struct Resources { + static func incrementTotal() -> Int32 { + return RxSwift.Resources.incrementTotal() + } + + static func decrementTotal() -> Int32 { + return RxSwift.Resources.decrementTotal() + } + + static var numberOfSerialDispatchQueueObservables: Int32 { + return RxSwift.Resources.numberOfSerialDispatchQueueObservables + } + + static var total: Int32 { + return RxSwift.Resources.total + } + } +#endif diff --git a/Pods/RxBlocking/RxBlocking/RunLoopLock.swift b/Pods/RxBlocking/RxBlocking/RunLoopLock.swift new file mode 100644 index 00000000..cc8c9e00 --- /dev/null +++ b/Pods/RxBlocking/RxBlocking/RunLoopLock.swift @@ -0,0 +1,87 @@ +// +// RunLoopLock.swift +// RxBlocking +// +// Created by Krunoslav Zaher on 11/5/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import CoreFoundation +import Foundation +import RxSwift + +#if os(Linux) + import Foundation + let runLoopMode: RunLoop.Mode = .default + let runLoopModeRaw: CFString = unsafeBitCast(runLoopMode.rawValue._bridgeToObjectiveC(), to: CFString.self) +#else + let runLoopMode: CFRunLoopMode = CFRunLoopMode.defaultMode + let runLoopModeRaw = runLoopMode.rawValue +#endif + +final class RunLoopLock { + let currentRunLoop: CFRunLoop + + let calledRun = AtomicInt(0) + let calledStop = AtomicInt(0) + var timeout: TimeInterval? + + init(timeout: TimeInterval?) { + self.timeout = timeout + self.currentRunLoop = CFRunLoopGetCurrent() + } + + func dispatch(_ action: @escaping () -> Void) { + CFRunLoopPerformBlock(self.currentRunLoop, runLoopModeRaw) { + if CurrentThreadScheduler.isScheduleRequired { + _ = CurrentThreadScheduler.instance.schedule(()) { _ in + action() + return Disposables.create() + } + } + else { + action() + } + } + CFRunLoopWakeUp(self.currentRunLoop) + } + + func stop() { + if decrement(self.calledStop) > 1 { + return + } + CFRunLoopPerformBlock(self.currentRunLoop, runLoopModeRaw) { + CFRunLoopStop(self.currentRunLoop) + } + CFRunLoopWakeUp(self.currentRunLoop) + } + + func run() throws { + if increment(self.calledRun) != 0 { + fatalError("Run can be only called once") + } + if let timeout = self.timeout { + #if os(Linux) + let runLoopResult = CFRunLoopRunInMode(runLoopModeRaw, timeout, false) + #else + let runLoopResult = CFRunLoopRunInMode(runLoopMode, timeout, false) + #endif + + switch runLoopResult { + case .finished: + return + case .handledSource: + return + case .stopped: + return + case .timedOut: + throw RxError.timeout + default: + return + } + } + else { + CFRunLoopRun() + } + } +} diff --git a/Pods/RxCocoa/LICENSE.md b/Pods/RxCocoa/LICENSE.md new file mode 100644 index 00000000..e32511b3 --- /dev/null +++ b/Pods/RxCocoa/LICENSE.md @@ -0,0 +1,9 @@ +**The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Pods/RxCocoa/Platform/DataStructures/Bag.swift b/Pods/RxCocoa/Platform/DataStructures/Bag.swift new file mode 100644 index 00000000..5720a3b4 --- /dev/null +++ b/Pods/RxCocoa/Platform/DataStructures/Bag.swift @@ -0,0 +1,181 @@ +// +// Bag.swift +// Platform +// +// Created by Krunoslav Zaher on 2/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Swift + +let arrayDictionaryMaxSize = 30 + +struct BagKey { + /** + Unique identifier for object added to `Bag`. + + It's underlying type is UInt64. If we assume there in an idealized CPU that works at 4GHz, + it would take ~150 years of continuous running time for it to overflow. + */ + fileprivate let rawValue: UInt64 +} + +/** +Data structure that represents a bag of elements typed `T`. + +Single element can be stored multiple times. + +Time and space complexity of insertion and deletion is O(n). + +It is suitable for storing small number of elements. +*/ +struct Bag : CustomDebugStringConvertible { + /// Type of identifier for inserted elements. + typealias KeyType = BagKey + + typealias Entry = (key: BagKey, value: T) + + private var _nextKey: BagKey = BagKey(rawValue: 0) + + // data + + // first fill inline variables + var _key0: BagKey? + var _value0: T? + + // then fill "array dictionary" + var _pairs = ContiguousArray() + + // last is sparse dictionary + var _dictionary: [BagKey: T]? + + var _onlyFastPath = true + + /// Creates new empty `Bag`. + init() { + } + + /** + Inserts `value` into bag. + + - parameter element: Element to insert. + - returns: Key that can be used to remove element from bag. + */ + mutating func insert(_ element: T) -> BagKey { + let key = _nextKey + + _nextKey = BagKey(rawValue: _nextKey.rawValue &+ 1) + + if _key0 == nil { + _key0 = key + _value0 = element + return key + } + + _onlyFastPath = false + + if _dictionary != nil { + _dictionary![key] = element + return key + } + + if _pairs.count < arrayDictionaryMaxSize { + _pairs.append((key: key, value: element)) + return key + } + + _dictionary = [key: element] + + return key + } + + /// - returns: Number of elements in bag. + var count: Int { + let dictionaryCount: Int = _dictionary?.count ?? 0 + return (_value0 != nil ? 1 : 0) + _pairs.count + dictionaryCount + } + + /// Removes all elements from bag and clears capacity. + mutating func removeAll() { + _key0 = nil + _value0 = nil + + _pairs.removeAll(keepingCapacity: false) + _dictionary?.removeAll(keepingCapacity: false) + } + + /** + Removes element with a specific `key` from bag. + + - parameter key: Key that identifies element to remove from bag. + - returns: Element that bag contained, or nil in case element was already removed. + */ + mutating func removeKey(_ key: BagKey) -> T? { + if _key0 == key { + _key0 = nil + let value = _value0! + _value0 = nil + return value + } + + if let existingObject = _dictionary?.removeValue(forKey: key) { + return existingObject + } + + for i in 0 ..< _pairs.count where _pairs[i].key == key { + let value = _pairs[i].value + _pairs.remove(at: i) + return value + } + + return nil + } +} + +extension Bag { + /// A textual representation of `self`, suitable for debugging. + var debugDescription : String { + "\(self.count) elements in Bag" + } +} + +extension Bag { + /// Enumerates elements inside the bag. + /// + /// - parameter action: Enumeration closure. + func forEach(_ action: (T) -> Void) { + if _onlyFastPath { + if let value0 = _value0 { + action(value0) + } + return + } + + let value0 = _value0 + let dictionary = _dictionary + + if let value0 = value0 { + action(value0) + } + + for i in 0 ..< _pairs.count { + action(_pairs[i].value) + } + + if dictionary?.count ?? 0 > 0 { + for element in dictionary!.values { + action(element) + } + } + } +} + +extension BagKey: Hashable { + func hash(into hasher: inout Hasher) { + hasher.combine(rawValue) + } +} + +func ==(lhs: BagKey, rhs: BagKey) -> Bool { + lhs.rawValue == rhs.rawValue +} diff --git a/Pods/RxCocoa/Platform/DataStructures/InfiniteSequence.swift b/Pods/RxCocoa/Platform/DataStructures/InfiniteSequence.swift new file mode 100644 index 00000000..75d7bea7 --- /dev/null +++ b/Pods/RxCocoa/Platform/DataStructures/InfiniteSequence.swift @@ -0,0 +1,23 @@ +// +// InfiniteSequence.swift +// Platform +// +// Created by Krunoslav Zaher on 6/13/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Sequence that repeats `repeatedValue` infinite number of times. +struct InfiniteSequence : Sequence { + typealias Iterator = AnyIterator + + private let repeatedValue: Element + + init(repeatedValue: Element) { + self.repeatedValue = repeatedValue + } + + func makeIterator() -> Iterator { + let repeatedValue = self.repeatedValue + return AnyIterator { repeatedValue } + } +} diff --git a/Pods/RxCocoa/Platform/DataStructures/PriorityQueue.swift b/Pods/RxCocoa/Platform/DataStructures/PriorityQueue.swift new file mode 100644 index 00000000..9ed856b9 --- /dev/null +++ b/Pods/RxCocoa/Platform/DataStructures/PriorityQueue.swift @@ -0,0 +1,111 @@ +// +// PriorityQueue.swift +// Platform +// +// Created by Krunoslav Zaher on 12/27/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +struct PriorityQueue { + private let hasHigherPriority: (Element, Element) -> Bool + private let isEqual: (Element, Element) -> Bool + + private var elements = [Element]() + + init(hasHigherPriority: @escaping (Element, Element) -> Bool, isEqual: @escaping (Element, Element) -> Bool) { + self.hasHigherPriority = hasHigherPriority + self.isEqual = isEqual + } + + mutating func enqueue(_ element: Element) { + elements.append(element) + bubbleToHigherPriority(elements.count - 1) + } + + func peek() -> Element? { + elements.first + } + + var isEmpty: Bool { + elements.count == 0 + } + + mutating func dequeue() -> Element? { + guard let front = peek() else { + return nil + } + + removeAt(0) + + return front + } + + mutating func remove(_ element: Element) { + for i in 0 ..< elements.count { + if self.isEqual(elements[i], element) { + removeAt(i) + return + } + } + } + + private mutating func removeAt(_ index: Int) { + let removingLast = index == elements.count - 1 + if !removingLast { + elements.swapAt(index, elements.count - 1) + } + + _ = elements.popLast() + + if !removingLast { + bubbleToHigherPriority(index) + bubbleToLowerPriority(index) + } + } + + private mutating func bubbleToHigherPriority(_ initialUnbalancedIndex: Int) { + precondition(initialUnbalancedIndex >= 0) + precondition(initialUnbalancedIndex < elements.count) + + var unbalancedIndex = initialUnbalancedIndex + + while unbalancedIndex > 0 { + let parentIndex = (unbalancedIndex - 1) / 2 + guard self.hasHigherPriority(elements[unbalancedIndex], elements[parentIndex]) else { break } + elements.swapAt(unbalancedIndex, parentIndex) + unbalancedIndex = parentIndex + } + } + + private mutating func bubbleToLowerPriority(_ initialUnbalancedIndex: Int) { + precondition(initialUnbalancedIndex >= 0) + precondition(initialUnbalancedIndex < elements.count) + + var unbalancedIndex = initialUnbalancedIndex + while true { + let leftChildIndex = unbalancedIndex * 2 + 1 + let rightChildIndex = unbalancedIndex * 2 + 2 + + var highestPriorityIndex = unbalancedIndex + + if leftChildIndex < elements.count && self.hasHigherPriority(elements[leftChildIndex], elements[highestPriorityIndex]) { + highestPriorityIndex = leftChildIndex + } + + if rightChildIndex < elements.count && self.hasHigherPriority(elements[rightChildIndex], elements[highestPriorityIndex]) { + highestPriorityIndex = rightChildIndex + } + + guard highestPriorityIndex != unbalancedIndex else { break } + elements.swapAt(highestPriorityIndex, unbalancedIndex) + + unbalancedIndex = highestPriorityIndex + } + } +} + +extension PriorityQueue : CustomDebugStringConvertible { + var debugDescription: String { + elements.debugDescription + } +} diff --git a/Pods/RxCocoa/Platform/DataStructures/Queue.swift b/Pods/RxCocoa/Platform/DataStructures/Queue.swift new file mode 100644 index 00000000..625d4733 --- /dev/null +++ b/Pods/RxCocoa/Platform/DataStructures/Queue.swift @@ -0,0 +1,148 @@ +// +// Queue.swift +// Platform +// +// Created by Krunoslav Zaher on 3/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/** +Data structure that represents queue. + +Complexity of `enqueue`, `dequeue` is O(1) when number of operations is +averaged over N operations. + +Complexity of `peek` is O(1). +*/ +struct Queue: Sequence { + /// Type of generator. + typealias Generator = AnyIterator + + private let resizeFactor = 2 + + private var storage: ContiguousArray + private var innerCount = 0 + private var pushNextIndex = 0 + private let initialCapacity: Int + + /** + Creates new queue. + + - parameter capacity: Capacity of newly created queue. + */ + init(capacity: Int) { + initialCapacity = capacity + + storage = ContiguousArray(repeating: nil, count: capacity) + } + + private var dequeueIndex: Int { + let index = pushNextIndex - count + return index < 0 ? index + storage.count : index + } + + /// - returns: Is queue empty. + var isEmpty: Bool { count == 0 } + + /// - returns: Number of elements inside queue. + var count: Int { innerCount } + + /// - returns: Element in front of a list of elements to `dequeue`. + func peek() -> T { + precondition(count > 0) + + return storage[dequeueIndex]! + } + + mutating private func resizeTo(_ size: Int) { + var newStorage = ContiguousArray(repeating: nil, count: size) + + let count = self.count + + let dequeueIndex = self.dequeueIndex + let spaceToEndOfQueue = storage.count - dequeueIndex + + // first batch is from dequeue index to end of array + let countElementsInFirstBatch = Swift.min(count, spaceToEndOfQueue) + // second batch is wrapped from start of array to end of queue + let numberOfElementsInSecondBatch = count - countElementsInFirstBatch + + newStorage[0 ..< countElementsInFirstBatch] = storage[dequeueIndex ..< (dequeueIndex + countElementsInFirstBatch)] + newStorage[countElementsInFirstBatch ..< (countElementsInFirstBatch + numberOfElementsInSecondBatch)] = storage[0 ..< numberOfElementsInSecondBatch] + + self.innerCount = count + pushNextIndex = count + storage = newStorage + } + + /// Enqueues `element`. + /// + /// - parameter element: Element to enqueue. + mutating func enqueue(_ element: T) { + if count == storage.count { + resizeTo(Swift.max(storage.count, 1) * resizeFactor) + } + + storage[pushNextIndex] = element + pushNextIndex += 1 + innerCount += 1 + + if pushNextIndex >= storage.count { + pushNextIndex -= storage.count + } + } + + private mutating func dequeueElementOnly() -> T { + precondition(count > 0) + + let index = dequeueIndex + + defer { + storage[index] = nil + innerCount -= 1 + } + + return storage[index]! + } + + /// Dequeues element or throws an exception in case queue is empty. + /// + /// - returns: Dequeued element. + mutating func dequeue() -> T? { + if self.count == 0 { + return nil + } + + defer { + let downsizeLimit = storage.count / (resizeFactor * resizeFactor) + if count < downsizeLimit && downsizeLimit >= initialCapacity { + resizeTo(storage.count / resizeFactor) + } + } + + return dequeueElementOnly() + } + + /// - returns: Generator of contained elements. + func makeIterator() -> AnyIterator { + var i = dequeueIndex + var innerCount = count + + return AnyIterator { + if innerCount == 0 { + return nil + } + + defer { + innerCount -= 1 + i += 1 + } + + if i >= self.storage.count { + i -= self.storage.count + } + + return self.storage[i] + } + } +} diff --git a/Pods/RxCocoa/Platform/DispatchQueue+Extensions.swift b/Pods/RxCocoa/Platform/DispatchQueue+Extensions.swift new file mode 100644 index 00000000..aaf24cae --- /dev/null +++ b/Pods/RxCocoa/Platform/DispatchQueue+Extensions.swift @@ -0,0 +1,21 @@ +// +// DispatchQueue+Extensions.swift +// Platform +// +// Created by Krunoslav Zaher on 10/22/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import Dispatch + +extension DispatchQueue { + private static var token: DispatchSpecificKey<()> = { + let key = DispatchSpecificKey<()>() + DispatchQueue.main.setSpecific(key: key, value: ()) + return key + }() + + static var isMain: Bool { + DispatchQueue.getSpecific(key: token) != nil + } +} diff --git a/Pods/RxCocoa/Platform/Platform.Darwin.swift b/Pods/RxCocoa/Platform/Platform.Darwin.swift new file mode 100644 index 00000000..eacc1943 --- /dev/null +++ b/Pods/RxCocoa/Platform/Platform.Darwin.swift @@ -0,0 +1,35 @@ +// +// Platform.Darwin.swift +// Platform +// +// Created by Krunoslav Zaher on 12/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(macOS) || os(iOS) || os(tvOS) || os(watchOS) + + import Darwin + import Foundation + + extension Thread { + static func setThreadLocalStorageValue(_ value: T?, forKey key: NSCopying) { + let currentThread = Thread.current + let threadDictionary = currentThread.threadDictionary + + if let newValue = value { + threadDictionary[key] = newValue + } + else { + threadDictionary[key] = nil + } + } + + static func getThreadLocalStorageValueForKey(_ key: NSCopying) -> T? { + let currentThread = Thread.current + let threadDictionary = currentThread.threadDictionary + + return threadDictionary[key] as? T + } + } + +#endif diff --git a/Pods/RxCocoa/Platform/Platform.Linux.swift b/Pods/RxCocoa/Platform/Platform.Linux.swift new file mode 100644 index 00000000..52a3e3af --- /dev/null +++ b/Pods/RxCocoa/Platform/Platform.Linux.swift @@ -0,0 +1,32 @@ +// +// Platform.Linux.swift +// Platform +// +// Created by Krunoslav Zaher on 12/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(Linux) + + import Foundation + + extension Thread { + + static func setThreadLocalStorageValue(_ value: T?, forKey key: String) { + if let newValue = value { + Thread.current.threadDictionary[key] = newValue + } + else { + Thread.current.threadDictionary[key] = nil + } + } + + static func getThreadLocalStorageValueForKey(_ key: String) -> T? { + let currentThread = Thread.current + let threadDictionary = currentThread.threadDictionary + + return threadDictionary[key] as? T + } + } + +#endif diff --git a/Pods/RxCocoa/Platform/RecursiveLock.swift b/Pods/RxCocoa/Platform/RecursiveLock.swift new file mode 100644 index 00000000..10b9bbb0 --- /dev/null +++ b/Pods/RxCocoa/Platform/RecursiveLock.swift @@ -0,0 +1,34 @@ +// +// RecursiveLock.swift +// Platform +// +// Created by Krunoslav Zaher on 12/18/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +#if TRACE_RESOURCES + class RecursiveLock: NSRecursiveLock { + override init() { + _ = Resources.incrementTotal() + super.init() + } + + override func lock() { + super.lock() + _ = Resources.incrementTotal() + } + + override func unlock() { + super.unlock() + _ = Resources.decrementTotal() + } + + deinit { + _ = Resources.decrementTotal() + } + } +#else + typealias RecursiveLock = NSRecursiveLock +#endif diff --git a/Pods/RxCocoa/README.md b/Pods/RxCocoa/README.md new file mode 100644 index 00000000..8181ef4c --- /dev/null +++ b/Pods/RxCocoa/README.md @@ -0,0 +1,254 @@ +

+RxSwift Logo +
+Build Status +Supported Platforms: iOS, macOS, tvOS, watchOS & Linux +
+ + + +

+ +Rx is a [generic abstraction of computation](https://youtu.be/looJcaeboBY) expressed through `Observable` interface, which lets you broadcast and subscribe to values and other events from an `Observable` stream. + +RxSwift is the Swift-specific implementation of the [Reactive Extensions](http://reactivex.io) standard. + +

RxSwift Observable Example of a price constantly changing and updating the app's UI

+ +While this version aims to stay true to the original spirit and naming conventions of Rx, this project also aims to provide a true Swift-first API for Rx APIs. + +Cross platform documentation can be found on [ReactiveX.io](http://reactivex.io/). + +Like other Rx implementations, RxSwift's intention is to enable easy composition of asynchronous operations and streams of data in the form of `Observable` objects and a suite of methods to transform and compose these pieces of asynchronous work. + +KVO observation, async operations, UI Events and other streams of data are all unified under [abstraction of sequence](Documentation/GettingStarted.md#observables-aka-sequences). This is the reason why Rx is so simple, elegant and powerful. + +## I came here because I want to ... + +###### ... understand + +* [why use rx?](Documentation/Why.md) +* [the basics, getting started with RxSwift](Documentation/GettingStarted.md) +* [traits](Documentation/Traits.md) - what are `Single`, `Completable`, `Maybe`, `Driver`, and `ControlProperty` ... and why do they exist? +* [testing](Documentation/UnitTests.md) +* [tips and common errors](Documentation/Tips.md) +* [debugging](Documentation/GettingStarted.md#debugging) +* [the math behind Rx](Documentation/MathBehindRx.md) +* [what are hot and cold observable sequences?](Documentation/HotAndColdObservables.md) + +###### ... install + +* Integrate RxSwift/RxCocoa with my app. [Installation Guide](#installation) + +###### ... hack around + +* with the example app. [Running Example App](Documentation/ExampleApp.md) +* with operators in playgrounds. [Playgrounds](Documentation/Playgrounds.md) + +###### ... interact + +* All of this is great, but it would be nice to talk with other people using RxSwift and exchange experiences.
[Join Slack Channel](http://slack.rxswift.org) +* Report a problem using the library. [Open an Issue With Bug Template](.github/ISSUE_TEMPLATE.md) +* Request a new feature. [Open an Issue With Feature Request Template](Documentation/NewFeatureRequestTemplate.md) +* Help out [Check out contribution guide](CONTRIBUTING.md) + +###### ... compare + +* [with Combine and ReactiveSwift](Documentation/ComparisonWithOtherLibraries.md). + +###### ... understand the structure + +RxSwift is as compositional as the asynchronous work it drives. The core unit is RxSwift itself, while other dependencies can be added for UI Work, testing, and more. + +It comprises five separate components depending on each other in the following way: + +```none +┌──────────────┐ ┌──────────────┐ +│ RxCocoa ├────▶ RxRelay │ +└───────┬──────┘ └──────┬───────┘ + │ │ +┌───────▼──────────────────▼───────┐ +│ RxSwift │ +└───────▲──────────────────▲───────┘ + │ │ +┌───────┴──────┐ ┌──────┴───────┐ +│ RxTest │ │ RxBlocking │ +└──────────────┘ └──────────────┘ +``` + +* **RxSwift**: The core of RxSwift, providing the Rx standard as (mostly) defined by [ReactiveX](https://reactivex.io). It has no other dependencies. +* **RxCocoa**: Provides Cocoa-specific capabilities for general iOS/macOS/watchOS & tvOS app development, such as Shared Sequences, Traits, and much more. It depends on both `RxSwift` and `RxRelay`. +* **RxRelay**: Provides `PublishRelay`, `BehaviorRelay` and `ReplayRelay`, three [simple wrappers around Subjects](https://github.com/ReactiveX/RxSwift/blob/main/Documentation/Subjects.md#relays). It depends on `RxSwift`. +* **RxTest** and **RxBlocking**: Provides testing capabilities for Rx-based systems. It depends on `RxSwift`. + +## Usage + + + + + + + + + + + + + + + + + + + +
Here's an exampleIn Action
Define search for GitHub repositories ...
+let searchResults = searchBar.rx.text.orEmpty
+    .throttle(.milliseconds(300), scheduler: MainScheduler.instance)
+    .distinctUntilChanged()
+    .flatMapLatest { query -> Observable<[Repository]> in
+        if query.isEmpty {
+            return .just([])
+        }
+        return searchGitHub(query)
+            .catchAndReturn([])
+    }
+    .observe(on: MainScheduler.instance)
... then bind the results to your tableview
+searchResults
+    .bind(to: tableView.rx.items(cellIdentifier: "Cell")) {
+        (index, repository: Repository, cell) in
+        cell.textLabel?.text = repository.name
+        cell.detailTextLabel?.text = repository.url
+    }
+    .disposed(by: disposeBag)
+ + +## Requirements + +* Xcode 12.x +* Swift 5.x + +For Xcode 11 and below, [use RxSwift 5.x](https://github.com/ReactiveX/RxSwift/releases/tag/5.1.1). + +## Installation + +RxSwift doesn't contain any external dependencies. + +These are currently the supported installation options: + +### Manual + +Open Rx.xcworkspace, choose `RxExample` and hit run. This method will build everything and run the sample app + +### [CocoaPods](https://guides.cocoapods.org/using/using-cocoapods.html) + +```ruby +# Podfile +use_frameworks! + +target 'YOUR_TARGET_NAME' do + pod 'RxSwift', '6.6.0' + pod 'RxCocoa', '6.6.0' +end + +# RxTest and RxBlocking make the most sense in the context of unit/integration tests +target 'YOUR_TESTING_TARGET' do + pod 'RxBlocking', '6.6.0' + pod 'RxTest', '6.6.0' +end +``` + +Replace `YOUR_TARGET_NAME` and then, in the `Podfile` directory, type: + +```bash +$ pod install +``` + +### XCFrameworks + +Each release starting with RxSwift 6 includes `*.xcframework` framework binaries. + +Simply drag the needed framework binaries to your **Frameworks, Libraries, and Embedded Content** section under your target's **General** tab. + +> **Note**: If you're using `RxCocoa`, be sure to also drag **RxCocoaRuntime.xcframework** before importing `RxCocoa`. + +XCFrameworks instructions + +### [Carthage](https://github.com/Carthage/Carthage) + +Add this to `Cartfile` + +``` +github "ReactiveX/RxSwift" "6.6.0" +``` + +```bash +$ carthage update +``` + +#### Carthage as a Static Library + +Carthage defaults to building RxSwift as a Dynamic Library. + +If you wish to build RxSwift as a Static Library using Carthage you may use the script below to manually modify the framework type before building with Carthage: + +```bash +carthage update RxSwift --platform iOS --no-build +sed -i -e 's/MACH_O_TYPE = mh_dylib/MACH_O_TYPE = staticlib/g' Carthage/Checkouts/RxSwift/Rx.xcodeproj/project.pbxproj +carthage build RxSwift --platform iOS +``` + +### [Swift Package Manager](https://github.com/apple/swift-package-manager) + +> **Note**: There is a critical cross-dependency bug affecting many projects including RxSwift in Swift Package Manager. We've [filed a bug (SR-12303)](https://bugs.swift.org/browse/SR-12303) in early 2020 but have no answer yet. Your mileage may vary. A partial workaround can be found [here](https://github.com/ReactiveX/RxSwift/issues/2127#issuecomment-717830502). + +Create a `Package.swift` file. + +```swift +// swift-tools-version:5.0 + +import PackageDescription + +let package = Package( + name: "RxTestProject", + dependencies: [ + .package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.6.0")) + ], + targets: [ + .target(name: "RxTestProject", dependencies: ["RxSwift", "RxCocoa"]) + ] +) +``` + +```bash +$ swift build +``` + +To build or test a module with RxTest dependency, set `TEST=1`. + +```bash +$ TEST=1 swift test +``` + +### Manually using git submodules + +* Add RxSwift as a submodule + +```bash +$ git submodule add git@github.com:ReactiveX/RxSwift.git +``` + +* Drag `Rx.xcodeproj` into Project Navigator +* Go to `Project > Targets > Build Phases > Link Binary With Libraries`, click `+` and select `RxSwift`, `RxCocoa` and `RxRelay` targets + +## References + +* [http://reactivex.io/](http://reactivex.io/) +* [Reactive Extensions GitHub (GitHub)](https://github.com/Reactive-Extensions) +* [RxSwift RayWenderlich.com Book](https://store.raywenderlich.com/products/rxswift-reactive-programming-with-swift) +* [RxSwift: Debunking the myth of hard (YouTube)](https://www.youtube.com/watch?v=GdvLP0ZAhhc) +* [Boxue.io RxSwift Online Course](https://boxueio.com/series/rxswift-101) (Chinese 🇨🇳) +* [Expert to Expert: Brian Beckman and Erik Meijer - Inside the .NET Reactive Framework (Rx) (video)](https://youtu.be/looJcaeboBY) +* [Reactive Programming Overview (Jafar Husain from Netflix)](https://youtu.be/-8Y1-lE6NSA) +* [Subject/Observer is Dual to Iterator (paper)](http://csl.stanford.edu/~christos/pldi2010.fit/meijer.duality.pdf) +* [Rx standard sequence operators visualized (visualization tool)](http://rxmarbles.com/) +* [Haskell](https://www.haskell.org/) diff --git a/Pods/RxCocoa/RxCocoa/Common/ControlTarget.swift b/Pods/RxCocoa/RxCocoa/Common/ControlTarget.swift new file mode 100644 index 00000000..231c3fe5 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Common/ControlTarget.swift @@ -0,0 +1,88 @@ +// +// ControlTarget.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 2/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) || os(macOS) + +import RxSwift + +#if os(iOS) || os(tvOS) + import UIKit + + typealias Control = UIKit.UIControl +#elseif os(macOS) + import Cocoa + + typealias Control = Cocoa.NSControl +#endif + +// This should be only used from `MainScheduler` +final class ControlTarget: RxTarget { + typealias Callback = (Control) -> Void + + let selector: Selector = #selector(ControlTarget.eventHandler(_:)) + + weak var control: Control? +#if os(iOS) || os(tvOS) + let controlEvents: UIControl.Event +#endif + var callback: Callback? + #if os(iOS) || os(tvOS) + init(control: Control, controlEvents: UIControl.Event, callback: @escaping Callback) { + MainScheduler.ensureRunningOnMainThread() + + self.control = control + self.controlEvents = controlEvents + self.callback = callback + + super.init() + + control.addTarget(self, action: selector, for: controlEvents) + + let method = self.method(for: selector) + if method == nil { + rxFatalError("Can't find method") + } + } +#elseif os(macOS) + init(control: Control, callback: @escaping Callback) { + MainScheduler.ensureRunningOnMainThread() + + self.control = control + self.callback = callback + + super.init() + + control.target = self + control.action = self.selector + + let method = self.method(for: self.selector) + if method == nil { + rxFatalError("Can't find method") + } + } +#endif + + @objc func eventHandler(_ sender: Control!) { + if let callback = self.callback, let control = self.control { + callback(control) + } + } + + override func dispose() { + super.dispose() +#if os(iOS) || os(tvOS) + self.control?.removeTarget(self, action: self.selector, for: self.controlEvents) +#elseif os(macOS) + self.control?.target = nil + self.control?.action = nil +#endif + self.callback = nil + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/Common/DelegateProxy.swift b/Pods/RxCocoa/RxCocoa/Common/DelegateProxy.swift new file mode 100644 index 00000000..d103448e --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Common/DelegateProxy.swift @@ -0,0 +1,294 @@ +// +// DelegateProxy.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if !os(Linux) + + import RxSwift + #if SWIFT_PACKAGE && !os(Linux) + import RxCocoaRuntime + #endif + + /// Base class for `DelegateProxyType` protocol. + /// + /// This implementation is not thread safe and can be used only from one thread (Main thread). + open class DelegateProxy: _RXDelegateProxy { + public typealias ParentObject = P + public typealias Delegate = D + + private var _sentMessageForSelector = [Selector: MessageDispatcher]() + private var _methodInvokedForSelector = [Selector: MessageDispatcher]() + + /// Parent object associated with delegate proxy. + private weak var _parentObject: ParentObject? + + private let _currentDelegateFor: (ParentObject) -> AnyObject? + private let _setCurrentDelegateTo: (AnyObject?, ParentObject) -> Void + + /// Initializes new instance. + /// + /// - parameter parentObject: Optional parent object that owns `DelegateProxy` as associated object. + public init(parentObject: ParentObject, delegateProxy: Proxy.Type) + where Proxy: DelegateProxy, Proxy.ParentObject == ParentObject, Proxy.Delegate == Delegate { + self._parentObject = parentObject + self._currentDelegateFor = delegateProxy._currentDelegate + self._setCurrentDelegateTo = delegateProxy._setCurrentDelegate + + MainScheduler.ensureRunningOnMainThread() + #if TRACE_RESOURCES + _ = Resources.incrementTotal() + #endif + super.init() + } + + /** + Returns observable sequence of invocations of delegate methods. Elements are sent *before method is invoked*. + + Only methods that have `void` return value can be observed using this method because + those methods are used as a notification mechanism. It doesn't matter if they are optional + or not. Observing is performed by installing a hidden associated `PublishSubject` that is + used to dispatch messages to observers. + + Delegate methods that have non `void` return value can't be observed directly using this method + because: + * those methods are not intended to be used as a notification mechanism, but as a behavior customization mechanism + * there is no sensible automatic way to determine a default return value + + In case observing of delegate methods that have return type is required, it can be done by + manually installing a `PublishSubject` or `BehaviorSubject` and implementing delegate method. + + e.g. + + // delegate proxy part (RxScrollViewDelegateProxy) + + let internalSubject = PublishSubject + + public func requiredDelegateMethod(scrollView: UIScrollView, arg1: CGPoint) -> Bool { + internalSubject.on(.next(arg1)) + return self._forwardToDelegate?.requiredDelegateMethod?(scrollView, arg1: arg1) ?? defaultReturnValue + } + + .... + + // reactive property implementation in a real class (`UIScrollView`) + public var property: Observable { + let proxy = RxScrollViewDelegateProxy.proxy(for: base) + return proxy.internalSubject.asObservable() + } + + **In case calling this method prints "Delegate proxy is already implementing `\(selector)`, + a more performant way of registering might exist.", that means that manual observing method + is required analog to the example above because delegate method has already been implemented.** + + - parameter selector: Selector used to filter observed invocations of delegate methods. + - returns: Observable sequence of arguments passed to `selector` method. + */ + open func sentMessage(_ selector: Selector) -> Observable<[Any]> { + MainScheduler.ensureRunningOnMainThread() + + let subject = self._sentMessageForSelector[selector] + + if let subject = subject { + return subject.asObservable() + } + else { + let subject = MessageDispatcher(selector: selector, delegateProxy: self) + self._sentMessageForSelector[selector] = subject + return subject.asObservable() + } + } + + /** + Returns observable sequence of invoked delegate methods. Elements are sent *after method is invoked*. + + Only methods that have `void` return value can be observed using this method because + those methods are used as a notification mechanism. It doesn't matter if they are optional + or not. Observing is performed by installing a hidden associated `PublishSubject` that is + used to dispatch messages to observers. + + Delegate methods that have non `void` return value can't be observed directly using this method + because: + * those methods are not intended to be used as a notification mechanism, but as a behavior customization mechanism + * there is no sensible automatic way to determine a default return value + + In case observing of delegate methods that have return type is required, it can be done by + manually installing a `PublishSubject` or `BehaviorSubject` and implementing delegate method. + + e.g. + + // delegate proxy part (RxScrollViewDelegateProxy) + + let internalSubject = PublishSubject + + public func requiredDelegateMethod(scrollView: UIScrollView, arg1: CGPoint) -> Bool { + internalSubject.on(.next(arg1)) + return self._forwardToDelegate?.requiredDelegateMethod?(scrollView, arg1: arg1) ?? defaultReturnValue + } + + .... + + // reactive property implementation in a real class (`UIScrollView`) + public var property: Observable { + let proxy = RxScrollViewDelegateProxy.proxy(for: base) + return proxy.internalSubject.asObservable() + } + + **In case calling this method prints "Delegate proxy is already implementing `\(selector)`, + a more performant way of registering might exist.", that means that manual observing method + is required analog to the example above because delegate method has already been implemented.** + + - parameter selector: Selector used to filter observed invocations of delegate methods. + - returns: Observable sequence of arguments passed to `selector` method. + */ + open func methodInvoked(_ selector: Selector) -> Observable<[Any]> { + MainScheduler.ensureRunningOnMainThread() + + let subject = self._methodInvokedForSelector[selector] + + if let subject = subject { + return subject.asObservable() + } + else { + let subject = MessageDispatcher(selector: selector, delegateProxy: self) + self._methodInvokedForSelector[selector] = subject + return subject.asObservable() + } + } + + fileprivate func checkSelectorIsObservable(_ selector: Selector) { + MainScheduler.ensureRunningOnMainThread() + + if self.hasWiredImplementation(for: selector) { + print("⚠️ Delegate proxy is already implementing `\(selector)`, a more performant way of registering might exist.") + return + } + + if self.voidDelegateMethodsContain(selector) { + return + } + + // In case `_forwardToDelegate` is `nil`, it is assumed the check is being done prematurely. + if !(self._forwardToDelegate?.responds(to: selector) ?? true) { + print("⚠️ Using delegate proxy dynamic interception method but the target delegate object doesn't respond to the requested selector. " + + "In case pure Swift delegate proxy is being used please use manual observing method by using`PublishSubject`s. " + + " (selector: `\(selector)`, forwardToDelegate: `\(self._forwardToDelegate ?? self)`)") + } + } + + // proxy + + open override func _sentMessage(_ selector: Selector, withArguments arguments: [Any]) { + self._sentMessageForSelector[selector]?.on(.next(arguments)) + } + + open override func _methodInvoked(_ selector: Selector, withArguments arguments: [Any]) { + self._methodInvokedForSelector[selector]?.on(.next(arguments)) + } + + /// Returns reference of normal delegate that receives all forwarded messages + /// through `self`. + /// + /// - returns: Value of reference if set or nil. + open func forwardToDelegate() -> Delegate? { + return castOptionalOrFatalError(self._forwardToDelegate) + } + + /// Sets reference of normal delegate that receives all forwarded messages + /// through `self`. + /// + /// - parameter delegate: Reference of delegate that receives all messages through `self`. + /// - parameter retainDelegate: Should `self` retain `forwardToDelegate`. + open func setForwardToDelegate(_ delegate: Delegate?, retainDelegate: Bool) { + #if DEBUG // 4.0 all configurations + MainScheduler.ensureRunningOnMainThread() + #endif + self._setForwardToDelegate(delegate, retainDelegate: retainDelegate) + + let sentSelectors: [Selector] = self._sentMessageForSelector.values.filter { $0.hasObservers }.map { $0.selector } + let invokedSelectors: [Selector] = self._methodInvokedForSelector.values.filter { $0.hasObservers }.map { $0.selector } + let allUsedSelectors = sentSelectors + invokedSelectors + + for selector in Set(allUsedSelectors) { + self.checkSelectorIsObservable(selector) + } + + self.reset() + } + + private func hasObservers(selector: Selector) -> Bool { + return (self._sentMessageForSelector[selector]?.hasObservers ?? false) + || (self._methodInvokedForSelector[selector]?.hasObservers ?? false) + } + + override open func responds(to aSelector: Selector!) -> Bool { + guard let aSelector = aSelector else { return false } + return super.responds(to: aSelector) + || (self._forwardToDelegate?.responds(to: aSelector) ?? false) + || (self.voidDelegateMethodsContain(aSelector) && self.hasObservers(selector: aSelector)) + } + + fileprivate func reset() { + guard let parentObject = self._parentObject else { return } + + let maybeCurrentDelegate = self._currentDelegateFor(parentObject) + + if maybeCurrentDelegate === self { + self._setCurrentDelegateTo(nil, parentObject) + self._setCurrentDelegateTo(castOrFatalError(self), parentObject) + } + } + + deinit { + for v in self._sentMessageForSelector.values { + v.on(.completed) + } + for v in self._methodInvokedForSelector.values { + v.on(.completed) + } + #if TRACE_RESOURCES + _ = Resources.decrementTotal() + #endif + } + + + } + + private let mainScheduler = MainScheduler() + + private final class MessageDispatcher { + private let dispatcher: PublishSubject<[Any]> + private let result: Observable<[Any]> + + fileprivate let selector: Selector + + init(selector: Selector, delegateProxy _delegateProxy: DelegateProxy) { + weak var weakDelegateProxy = _delegateProxy + + let dispatcher = PublishSubject<[Any]>() + self.dispatcher = dispatcher + self.selector = selector + + self.result = dispatcher + .do(onSubscribed: { weakDelegateProxy?.checkSelectorIsObservable(selector); weakDelegateProxy?.reset() }, onDispose: { weakDelegateProxy?.reset() }) + .share() + .subscribe(on: mainScheduler) + } + + var on: (Event<[Any]>) -> Void { + return self.dispatcher.on + } + + var hasObservers: Bool { + return self.dispatcher.hasObservers + } + + func asObservable() -> Observable<[Any]> { + return self.result + } + } + +#endif diff --git a/Pods/RxCocoa/RxCocoa/Common/DelegateProxyType.swift b/Pods/RxCocoa/RxCocoa/Common/DelegateProxyType.swift new file mode 100644 index 00000000..7ca9c97a --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Common/DelegateProxyType.swift @@ -0,0 +1,435 @@ +// +// DelegateProxyType.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if !os(Linux) + + import Foundation + import RxSwift + +/** +`DelegateProxyType` protocol enables using both normal delegates and Rx observable sequences with +views that can have only one delegate/datasource registered. + +`Proxies` store information about observers, subscriptions and delegates +for specific views. + +Type implementing `DelegateProxyType` should never be initialized directly. + +To fetch initialized instance of type implementing `DelegateProxyType`, `proxy` method +should be used. + +This is more or less how it works. + + + + +-------------------------------------------+ + | | + | UIView subclass (UIScrollView) | + | | + +-----------+-------------------------------+ + | + | Delegate + | + | + +-----------v-------------------------------+ + | | + | Delegate proxy : DelegateProxyType +-----+----> Observable + | , UIScrollViewDelegate | | + +-----------+-------------------------------+ +----> Observable + | | + | +----> Observable + | | + | forwards events | + | to custom delegate | + | v + +-----------v-------------------------------+ + | | + | Custom delegate (UIScrollViewDelegate) | + | | + +-------------------------------------------+ + + +Since RxCocoa needs to automagically create those Proxies and because views that have delegates can be hierarchical + + UITableView : UIScrollView : UIView + +.. and corresponding delegates are also hierarchical + + UITableViewDelegate : UIScrollViewDelegate : NSObject + +... this mechanism can be extended by using the following snippet in `registerKnownImplementations` or in some other + part of your app that executes before using `rx.*` (e.g. appDidFinishLaunching). + + RxScrollViewDelegateProxy.register { RxTableViewDelegateProxy(parentObject: $0) } + +*/ +public protocol DelegateProxyType: AnyObject { + associatedtype ParentObject: AnyObject + associatedtype Delegate + + /// It is require that enumerate call `register` of the extended DelegateProxy subclasses here. + static func registerKnownImplementations() + + /// Unique identifier for delegate + static var identifier: UnsafeRawPointer { get } + + /// Returns designated delegate property for object. + /// + /// Objects can have multiple delegate properties. + /// + /// Each delegate property needs to have it's own type implementing `DelegateProxyType`. + /// + /// It's abstract method. + /// + /// - parameter object: Object that has delegate property. + /// - returns: Value of delegate property. + static func currentDelegate(for object: ParentObject) -> Delegate? + + /// Sets designated delegate property for object. + /// + /// Objects can have multiple delegate properties. + /// + /// Each delegate property needs to have it's own type implementing `DelegateProxyType`. + /// + /// It's abstract method. + /// + /// - parameter delegate: Delegate value. + /// - parameter object: Object that has delegate property. + static func setCurrentDelegate(_ delegate: Delegate?, to object: ParentObject) + + /// Returns reference of normal delegate that receives all forwarded messages + /// through `self`. + /// + /// - returns: Value of reference if set or nil. + func forwardToDelegate() -> Delegate? + + /// Sets reference of normal delegate that receives all forwarded messages + /// through `self`. + /// + /// - parameter forwardToDelegate: Reference of delegate that receives all messages through `self`. + /// - parameter retainDelegate: Should `self` retain `forwardToDelegate`. + func setForwardToDelegate(_ forwardToDelegate: Delegate?, retainDelegate: Bool) +} + +// default implementations +extension DelegateProxyType { + /// Unique identifier for delegate + public static var identifier: UnsafeRawPointer { + let delegateIdentifier = ObjectIdentifier(Delegate.self) + let integerIdentifier = Int(bitPattern: delegateIdentifier) + return UnsafeRawPointer(bitPattern: integerIdentifier)! + } +} + +// workaround of Delegate: class +extension DelegateProxyType { + static func _currentDelegate(for object: ParentObject) -> AnyObject? { + currentDelegate(for: object).map { $0 as AnyObject } + } + + static func _setCurrentDelegate(_ delegate: AnyObject?, to object: ParentObject) { + setCurrentDelegate(castOptionalOrFatalError(delegate), to: object) + } + + func _forwardToDelegate() -> AnyObject? { + self.forwardToDelegate().map { $0 as AnyObject } + } + + func _setForwardToDelegate(_ forwardToDelegate: AnyObject?, retainDelegate: Bool) { + self.setForwardToDelegate(castOptionalOrFatalError(forwardToDelegate), retainDelegate: retainDelegate) + } +} + +extension DelegateProxyType { + + /// Store DelegateProxy subclass to factory. + /// When make 'Rx*DelegateProxy' subclass, call 'Rx*DelegateProxySubclass.register(for:_)' 1 time, or use it in DelegateProxyFactory + /// 'Rx*DelegateProxy' can have one subclass implementation per concrete ParentObject type. + /// Should call it from concrete DelegateProxy type, not generic. + public static func register(make: @escaping (Parent) -> Self) { + self.factory.extend(make: make) + } + + /// Creates new proxy for target object. + /// Should not call this function directory, use 'DelegateProxy.proxy(for:)' + public static func createProxy(for object: AnyObject) -> Self { + castOrFatalError(factory.createProxy(for: object)) + } + + /// Returns existing proxy for object or installs new instance of delegate proxy. + /// + /// - parameter object: Target object on which to install delegate proxy. + /// - returns: Installed instance of delegate proxy. + /// + /// + /// extension Reactive where Base: UISearchBar { + /// + /// public var delegate: DelegateProxy { + /// return RxSearchBarDelegateProxy.proxy(for: base) + /// } + /// + /// public var text: ControlProperty { + /// let source: Observable = self.delegate.observe(#selector(UISearchBarDelegate.searchBar(_:textDidChange:))) + /// ... + /// } + /// } + public static func proxy(for object: ParentObject) -> Self { + MainScheduler.ensureRunningOnMainThread() + + let maybeProxy = self.assignedProxy(for: object) + + let proxy: AnyObject + if let existingProxy = maybeProxy { + proxy = existingProxy + } + else { + proxy = castOrFatalError(self.createProxy(for: object)) + self.assignProxy(proxy, toObject: object) + assert(self.assignedProxy(for: object) === proxy) + } + let currentDelegate = self._currentDelegate(for: object) + let delegateProxy: Self = castOrFatalError(proxy) + + if currentDelegate !== delegateProxy { + delegateProxy._setForwardToDelegate(currentDelegate, retainDelegate: false) + assert(delegateProxy._forwardToDelegate() === currentDelegate) + self._setCurrentDelegate(proxy, to: object) + assert(self._currentDelegate(for: object) === proxy) + assert(delegateProxy._forwardToDelegate() === currentDelegate) + } + + return delegateProxy + } + + /// Sets forward delegate for `DelegateProxyType` associated with a specific object and return disposable that can be used to unset the forward to delegate. + /// Using this method will also make sure that potential original object cached selectors are cleared and will report any accidental forward delegate mutations. + /// + /// - parameter forwardDelegate: Delegate object to set. + /// - parameter retainDelegate: Retain `forwardDelegate` while it's being set. + /// - parameter onProxyForObject: Object that has `delegate` property. + /// - returns: Disposable object that can be used to clear forward delegate. + public static func installForwardDelegate(_ forwardDelegate: Delegate, retainDelegate: Bool, onProxyForObject object: ParentObject) -> Disposable { + weak var weakForwardDelegate: AnyObject? = forwardDelegate as AnyObject + let proxy = self.proxy(for: object) + + assert(proxy._forwardToDelegate() === nil, "This is a feature to warn you that there is already a delegate (or data source) set somewhere previously. The action you are trying to perform will clear that delegate (data source) and that means that some of your features that depend on that delegate (data source) being set will likely stop working.\n" + + "If you are ok with this, try to set delegate (data source) to `nil` in front of this operation.\n" + + " This is the source object value: \(object)\n" + + " This is the original delegate (data source) value: \(proxy.forwardToDelegate()!)\n" + + "Hint: Maybe delegate was already set in xib or storyboard and now it's being overwritten in code.\n") + + proxy.setForwardToDelegate(forwardDelegate, retainDelegate: retainDelegate) + + return Disposables.create { + MainScheduler.ensureRunningOnMainThread() + + let delegate: AnyObject? = weakForwardDelegate + + assert(delegate == nil || proxy._forwardToDelegate() === delegate, "Delegate was changed from time it was first set. Current \(String(describing: proxy.forwardToDelegate())), and it should have been \(proxy)") + + proxy.setForwardToDelegate(nil, retainDelegate: retainDelegate) + } + } +} + + +// private extensions +extension DelegateProxyType { + private static var factory: DelegateProxyFactory { + DelegateProxyFactory.sharedFactory(for: self) + } + + private static func assignedProxy(for object: ParentObject) -> AnyObject? { + let maybeDelegate = objc_getAssociatedObject(object, self.identifier) + return castOptionalOrFatalError(maybeDelegate) + } + + private static func assignProxy(_ proxy: AnyObject, toObject object: ParentObject) { + objc_setAssociatedObject(object, self.identifier, proxy, .OBJC_ASSOCIATION_RETAIN) + } +} + +/// Describes an object that has a delegate. +public protocol HasDelegate: AnyObject { + /// Delegate type + associatedtype Delegate + + /// Delegate + var delegate: Delegate? { get set } +} + +extension DelegateProxyType where ParentObject: HasDelegate, Self.Delegate == ParentObject.Delegate { + public static func currentDelegate(for object: ParentObject) -> Delegate? { + object.delegate + } + + public static func setCurrentDelegate(_ delegate: Delegate?, to object: ParentObject) { + object.delegate = delegate + } +} + +/// Describes an object that has a data source. +public protocol HasDataSource: AnyObject { + /// Data source type + associatedtype DataSource + + /// Data source + var dataSource: DataSource? { get set } +} + +extension DelegateProxyType where ParentObject: HasDataSource, Self.Delegate == ParentObject.DataSource { + public static func currentDelegate(for object: ParentObject) -> Delegate? { + object.dataSource + } + + public static func setCurrentDelegate(_ delegate: Delegate?, to object: ParentObject) { + object.dataSource = delegate + } +} + +/// Describes an object that has a prefetch data source. +@available(iOS 10.0, tvOS 10.0, *) +public protocol HasPrefetchDataSource: AnyObject { + /// Prefetch data source type + associatedtype PrefetchDataSource + + /// Prefetch data source + var prefetchDataSource: PrefetchDataSource? { get set } +} + +@available(iOS 10.0, tvOS 10.0, *) +extension DelegateProxyType where ParentObject: HasPrefetchDataSource, Self.Delegate == ParentObject.PrefetchDataSource { + public static func currentDelegate(for object: ParentObject) -> Delegate? { + object.prefetchDataSource + } + + public static func setCurrentDelegate(_ delegate: Delegate?, to object: ParentObject) { + object.prefetchDataSource = delegate + } +} + + #if os(iOS) || os(tvOS) + import UIKit + + extension ObservableType { + func subscribeProxyDataSource(ofObject object: DelegateProxy.ParentObject, dataSource: DelegateProxy.Delegate, retainDataSource: Bool, binding: @escaping (DelegateProxy, Event) -> Void) + -> Disposable + where DelegateProxy.ParentObject: UIView + , DelegateProxy.Delegate: AnyObject { + let proxy = DelegateProxy.proxy(for: object) + let unregisterDelegate = DelegateProxy.installForwardDelegate(dataSource, retainDelegate: retainDataSource, onProxyForObject: object) + + // Do not perform layoutIfNeeded if the object is still not in the view hierarchy + if object.window != nil { + // this is needed to flush any delayed old state (https://github.com/RxSwiftCommunity/RxDataSources/pull/75) + object.layoutIfNeeded() + } + + let subscription = self.asObservable() + .observe(on:MainScheduler()) + .catch { error in + bindingError(error) + return Observable.empty() + } + // source can never end, otherwise it would release the subscriber, and deallocate the data source + .concat(Observable.never()) + .take(until: object.rx.deallocated) + .subscribe { [weak object] (event: Event) in + + if let object = object { + assert(proxy === DelegateProxy.currentDelegate(for: object), "Proxy changed from the time it was first set.\nOriginal: \(proxy)\nExisting: \(String(describing: DelegateProxy.currentDelegate(for: object)))") + } + + binding(proxy, event) + + switch event { + case .error(let error): + bindingError(error) + unregisterDelegate.dispose() + case .completed: + unregisterDelegate.dispose() + default: + break + } + } + + return Disposables.create { [weak object] in + subscription.dispose() + + if object?.window != nil { + object?.layoutIfNeeded() + } + + unregisterDelegate.dispose() + } + } + } + + #endif + + /** + + To add delegate proxy subclasses call `DelegateProxySubclass.register()` in `registerKnownImplementations` or in some other + part of your app that executes before using `rx.*` (e.g. appDidFinishLaunching). + + class RxScrollViewDelegateProxy: DelegateProxy { + public static func registerKnownImplementations() { + self.register { RxTableViewDelegateProxy(parentObject: $0) } + } + ... + + + */ + private class DelegateProxyFactory { + private static var _sharedFactories: [UnsafeRawPointer: DelegateProxyFactory] = [:] + + fileprivate static func sharedFactory(for proxyType: DelegateProxy.Type) -> DelegateProxyFactory { + MainScheduler.ensureRunningOnMainThread() + let identifier = DelegateProxy.identifier + if let factory = _sharedFactories[identifier] { + return factory + } + let factory = DelegateProxyFactory(for: proxyType) + _sharedFactories[identifier] = factory + DelegateProxy.registerKnownImplementations() + return factory + } + + private var _factories: [ObjectIdentifier: ((AnyObject) -> AnyObject)] + private var _delegateProxyType: Any.Type + private var _identifier: UnsafeRawPointer + + private init(for proxyType: DelegateProxy.Type) { + self._factories = [:] + self._delegateProxyType = proxyType + self._identifier = proxyType.identifier + } + + fileprivate func extend(make: @escaping (ParentObject) -> DelegateProxy) { + MainScheduler.ensureRunningOnMainThread() + precondition(self._identifier == DelegateProxy.identifier, "Delegate proxy has inconsistent identifier") + guard self._factories[ObjectIdentifier(ParentObject.self)] == nil else { + rxFatalError("The factory of \(ParentObject.self) is duplicated. DelegateProxy is not allowed of duplicated base object type.") + } + self._factories[ObjectIdentifier(ParentObject.self)] = { make(castOrFatalError($0)) } + } + + fileprivate func createProxy(for object: AnyObject) -> AnyObject { + MainScheduler.ensureRunningOnMainThread() + var maybeMirror: Mirror? = Mirror(reflecting: object) + while let mirror = maybeMirror { + if let factory = self._factories[ObjectIdentifier(mirror.subjectType)] { + return factory(object) + } + maybeMirror = mirror.superclassMirror + } + rxFatalError("DelegateProxy has no factory of \(object). Implement DelegateProxy subclass for \(object) first.") + } + } + +#endif diff --git a/Pods/RxCocoa/RxCocoa/Common/Infallible+Bind.swift b/Pods/RxCocoa/RxCocoa/Common/Infallible+Bind.swift new file mode 100644 index 00000000..4849641a --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Common/Infallible+Bind.swift @@ -0,0 +1,148 @@ +// +// Infallible+Bind.swift +// RxCocoa +// +// Created by Shai Mishali on 27/08/2020. +// Copyright © 2020 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension InfallibleType { + /** + Creates new subscription and sends elements to observer(s). + In this form, it's equivalent to the `subscribe` method, but it better conveys intent, and enables + writing more consistent binding code. + - parameter observers: Observers to receives events. + - returns: Disposable object that can be used to unsubscribe the observers. + */ + public func bind(to observers: Observer...) -> Disposable where Observer.Element == Element { + self.subscribe { infallibleEvent in + observers.forEach { $0.on(infallibleEvent.event) } + } + } + + /** + Creates new subscription and sends elements to observer(s). + In this form, it's equivalent to the `subscribe` method, but it better conveys intent, and enables + writing more consistent binding code. + - parameter observers: Observers to receives events. + - returns: Disposable object that can be used to unsubscribe the observers. + */ + public func bind(to observers: Observer...) -> Disposable where Observer.Element == Element? { + self.map { $0 as Element? } + .subscribe { infallibleEvent in + observers.forEach { $0.on(infallibleEvent.event) } + } + } + + /** + Subscribes to observable sequence using custom binder function. + + - parameter binder: Function used to bind elements from `self`. + - returns: Object representing subscription. + */ + public func bind(to binder: (Self) -> Result) -> Result { + binder(self) + } + + /** + Subscribes to observable sequence using custom binder function and final parameter passed to binder function + after `self` is passed. + + public func bind(to binder: Self -> R1 -> R2, curriedArgument: R1) -> R2 { + return binder(self)(curriedArgument) + } + + - parameter binder: Function used to bind elements from `self`. + - parameter curriedArgument: Final argument passed to `binder` to finish binding process. + - returns: Object representing subscription. + */ + public func bind(to binder: (Self) -> (R1) -> R2, curriedArgument: R1) -> R2 { + binder(self)(curriedArgument) + } + + /** + Subscribes an element handler to an observable sequence. + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + + - parameter onNext: Action to invoke for each element in the observable sequence. + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func bind(onNext: @escaping (Element) -> Void) -> Disposable { + self.subscribe(onNext: onNext) + } + + /** + Creates new subscription and sends elements to `BehaviorRelay`. + + - parameter relays: Target relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func bind(to relays: BehaviorRelay...) -> Disposable { + return self.subscribe(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `BehaviorRelay`. + + - parameter relays: Target relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func bind(to relays: BehaviorRelay...) -> Disposable { + return self.subscribe(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `PublishRelay`. + + - parameter relays: Target relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func bind(to relays: PublishRelay...) -> Disposable { + return self.subscribe(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `PublishRelay`. + + - parameter relays: Target relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func bind(to relays: PublishRelay...) -> Disposable { + return self.subscribe(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `ReplayRelay`. + + - parameter relays: Target relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func bind(to relays: ReplayRelay...) -> Disposable { + return self.subscribe(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `ReplayRelay`. + + - parameter relays: Target relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func bind(to relays: ReplayRelay...) -> Disposable { + return self.subscribe(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift b/Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift new file mode 100644 index 00000000..500154aa --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift @@ -0,0 +1,103 @@ +// +// Observable+Bind.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 8/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension ObservableType { + /** + Creates new subscription and sends elements to observer(s). + In this form, it's equivalent to the `subscribe` method, but it better conveys intent, and enables + writing more consistent binding code. + - parameter observers: Observers to receives events. + - returns: Disposable object that can be used to unsubscribe the observers. + */ + public func bind(to observers: Observer...) -> Disposable where Observer.Element == Element { + self.subscribe { event in + observers.forEach { $0.on(event) } + } + } + + /** + Creates new subscription and sends elements to observer(s). + In this form, it's equivalent to the `subscribe` method, but it better conveys intent, and enables + writing more consistent binding code. + - parameter observers: Observers to receives events. + - returns: Disposable object that can be used to unsubscribe the observers. + */ + public func bind(to observers: Observer...) -> Disposable where Observer.Element == Element? { + self.map { $0 as Element? } + .subscribe { event in + observers.forEach { $0.on(event) } + } + } + + /** + Subscribes to observable sequence using custom binder function. + + - parameter binder: Function used to bind elements from `self`. + - returns: Object representing subscription. + */ + public func bind(to binder: (Self) -> Result) -> Result { + binder(self) + } + + /** + Subscribes to observable sequence using custom binder function and final parameter passed to binder function + after `self` is passed. + + public func bind(to binder: Self -> R1 -> R2, curriedArgument: R1) -> R2 { + return binder(self)(curriedArgument) + } + + - parameter binder: Function used to bind elements from `self`. + - parameter curriedArgument: Final argument passed to `binder` to finish binding process. + - returns: Object representing subscription. + */ + public func bind(to binder: (Self) -> (R1) -> R2, curriedArgument: R1) -> R2 { + binder(self)(curriedArgument) + } + + /** + Subscribes an element handler to an observable sequence. + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + + - Note: If `object` can't be retained, none of the other closures will be invoked. + + - parameter object: The object to provide an unretained reference on. + - parameter onNext: Action to invoke for each element in the observable sequence. + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func bind( + with object: Object, + onNext: @escaping (Object, Element) -> Void + ) -> Disposable { + self.subscribe(onNext: { [weak object] in + guard let object = object else { return } + onNext(object, $0) + }, + onError: { error in + rxFatalErrorInDebug("Binding error: \(error)") + }) + } + + /** + Subscribes an element handler to an observable sequence. + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + + - parameter onNext: Action to invoke for each element in the observable sequence. + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func bind(onNext: @escaping (Element) -> Void) -> Disposable { + self.subscribe(onNext: onNext, + onError: { error in + rxFatalErrorInDebug("Binding error: \(error)") + }) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift b/Pods/RxCocoa/RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift new file mode 100644 index 00000000..4abf8808 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift @@ -0,0 +1,161 @@ +// +// RxCocoaObjCRuntimeError+Extensions.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 10/9/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if SWIFT_PACKAGE && !DISABLE_SWIZZLING && !os(Linux) + import RxCocoaRuntime +#endif + +#if !DISABLE_SWIZZLING && !os(Linux) + /// RxCocoa ObjC runtime interception mechanism. + public enum RxCocoaInterceptionMechanism { + /// Unknown message interception mechanism. + case unknown + /// Key value observing interception mechanism. + case kvo + } + + /// RxCocoa ObjC runtime modification errors. + public enum RxCocoaObjCRuntimeError + : Swift.Error + , CustomDebugStringConvertible { + /// Unknown error has occurred. + case unknown(target: AnyObject) + + /** + If the object is reporting a different class then it's real class, that means that there is probably + already some interception mechanism in place or something weird is happening. + + The most common case when this would happen is when using a combination of KVO (`observe`) and `sentMessage`. + + This error is easily resolved by just using `sentMessage` observing before `observe`. + + The reason why the other way around could create issues is because KVO will unregister it's interceptor + class and restore original class. Unfortunately that will happen no matter was there another interceptor + subclass registered in hierarchy or not. + + Failure scenario: + * KVO sets class to be `__KVO__OriginalClass` (subclass of `OriginalClass`) + * `sentMessage` sets object class to be `_RX_namespace___KVO__OriginalClass` (subclass of `__KVO__OriginalClass`) + * then unobserving with KVO will restore class to be `OriginalClass` -> failure point (possibly a bug in KVO) + + The reason why changing order of observing works is because any interception method on unregistration + should return object's original real class (if that doesn't happen then it's really easy to argue that's a bug + in that interception mechanism). + + This library won't remove registered interceptor even if there aren't any observers left because + it's highly unlikely it would have any benefit in real world use cases, and it's even more + dangerous. + */ + case objectMessagesAlreadyBeingIntercepted(target: AnyObject, interceptionMechanism: RxCocoaInterceptionMechanism) + + /// Trying to observe messages for selector that isn't implemented. + case selectorNotImplemented(target: AnyObject) + + /// Core Foundation classes are usually toll free bridged. Those classes crash the program in case + /// `object_setClass` is performed on them. + /// + /// There is a possibility to just swizzle methods on original object, but since those won't be usual use + /// cases for this library, then an error will just be reported for now. + case cantInterceptCoreFoundationTollFreeBridgedObjects(target: AnyObject) + + /// Two libraries have simultaneously tried to modify ObjC runtime and that was detected. This can only + /// happen in scenarios where multiple interception libraries are used. + /// + /// To synchronize other libraries intercepting messages for an object, use `synchronized` on target object and + /// it's meta-class. + case threadingCollisionWithOtherInterceptionMechanism(target: AnyObject) + + /// For some reason saving original method implementation under RX namespace failed. + case savingOriginalForwardingMethodFailed(target: AnyObject) + + /// Intercepting a sent message by replacing a method implementation with `_objc_msgForward` failed for some reason. + case replacingMethodWithForwardingImplementation(target: AnyObject) + + /// Attempt to intercept one of the performance sensitive methods: + /// * class + /// * respondsToSelector: + /// * methodSignatureForSelector: + /// * forwardingTargetForSelector: + case observingPerformanceSensitiveMessages(target: AnyObject) + + /// Message implementation has unsupported return type (for example large struct). The reason why this is a error + /// is because in some cases intercepting sent messages requires replacing implementation with `_objc_msgForward_stret` + /// instead of `_objc_msgForward`. + /// + /// The unsupported cases should be fairly uncommon. + case observingMessagesWithUnsupportedReturnType(target: AnyObject) + } + + extension RxCocoaObjCRuntimeError { + /// A textual representation of `self`, suitable for debugging. + public var debugDescription: String { + switch self { + case let .unknown(target): + return "Unknown error occurred.\nTarget: `\(target)`" + case let .objectMessagesAlreadyBeingIntercepted(target, interceptionMechanism): + let interceptionMechanismDescription = interceptionMechanism == .kvo ? "KVO" : "other interception mechanism" + return "Collision between RxCocoa interception mechanism and \(interceptionMechanismDescription)." + + " To resolve this conflict please use this interception mechanism first.\nTarget: \(target)" + case let .selectorNotImplemented(target): + return "Trying to observe messages for selector that isn't implemented.\nTarget: \(target)" + case let .cantInterceptCoreFoundationTollFreeBridgedObjects(target): + return "Interception of messages sent to Core Foundation isn't supported.\nTarget: \(target)" + case let .threadingCollisionWithOtherInterceptionMechanism(target): + return "Detected a conflict while modifying ObjC runtime.\nTarget: \(target)" + case let .savingOriginalForwardingMethodFailed(target): + return "Saving original method implementation failed.\nTarget: \(target)" + case let .replacingMethodWithForwardingImplementation(target): + return "Intercepting a sent message by replacing a method implementation with `_objc_msgForward` failed for some reason.\nTarget: \(target)" + case let .observingPerformanceSensitiveMessages(target): + return "Attempt to intercept one of the performance sensitive methods. \nTarget: \(target)" + case let .observingMessagesWithUnsupportedReturnType(target): + return "Attempt to intercept a method with unsupported return type. \nTarget: \(target)" + } + } + } + + // MARK: Conversions `NSError` > `RxCocoaObjCRuntimeError` + + extension Error { + func rxCocoaErrorForTarget(_ target: AnyObject) -> RxCocoaObjCRuntimeError { + let error = self as NSError + + if error.domain == RXObjCRuntimeErrorDomain { + let errorCode = RXObjCRuntimeError(rawValue: error.code) ?? .unknown + + switch errorCode { + case .unknown: + return .unknown(target: target) + case .objectMessagesAlreadyBeingIntercepted: + let isKVO = (error.userInfo[RXObjCRuntimeErrorIsKVOKey] as? NSNumber)?.boolValue ?? false + return .objectMessagesAlreadyBeingIntercepted(target: target, interceptionMechanism: isKVO ? .kvo : .unknown) + case .selectorNotImplemented: + return .selectorNotImplemented(target: target) + case .cantInterceptCoreFoundationTollFreeBridgedObjects: + return .cantInterceptCoreFoundationTollFreeBridgedObjects(target: target) + case .threadingCollisionWithOtherInterceptionMechanism: + return .threadingCollisionWithOtherInterceptionMechanism(target: target) + case .savingOriginalForwardingMethodFailed: + return .savingOriginalForwardingMethodFailed(target: target) + case .replacingMethodWithForwardingImplementation: + return .replacingMethodWithForwardingImplementation(target: target) + case .observingPerformanceSensitiveMessages: + return .observingPerformanceSensitiveMessages(target: target) + case .observingMessagesWithUnsupportedReturnType: + return .observingMessagesWithUnsupportedReturnType(target: target) + @unknown default: + fatalError("Unhandled Objective C Runtime Error") + } + } + + return RxCocoaObjCRuntimeError.unknown(target: target) + } + } + +#endif + diff --git a/Pods/RxCocoa/RxCocoa/Common/RxTarget.swift b/Pods/RxCocoa/RxCocoa/Common/RxTarget.swift new file mode 100644 index 00000000..5a2c464b --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Common/RxTarget.swift @@ -0,0 +1,43 @@ +// +// RxTarget.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 7/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +import RxSwift + +class RxTarget : NSObject + , Disposable { + + private var retainSelf: RxTarget? + + override init() { + super.init() + self.retainSelf = self + +#if TRACE_RESOURCES + _ = Resources.incrementTotal() +#endif + +#if DEBUG + MainScheduler.ensureRunningOnMainThread() +#endif + } + + func dispose() { +#if DEBUG + MainScheduler.ensureRunningOnMainThread() +#endif + self.retainSelf = nil + } + +#if TRACE_RESOURCES + deinit { + _ = Resources.decrementTotal() + } +#endif +} diff --git a/Pods/RxCocoa/RxCocoa/Common/SectionedViewDataSourceType.swift b/Pods/RxCocoa/RxCocoa/Common/SectionedViewDataSourceType.swift new file mode 100644 index 00000000..5c3cf3ca --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Common/SectionedViewDataSourceType.swift @@ -0,0 +1,20 @@ +// +// SectionedViewDataSourceType.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 1/10/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +/// Data source with access to underlying sectioned model. +public protocol SectionedViewDataSourceType { + /// Returns model at index path. + /// + /// In case data source doesn't contain any sections when this method is being called, `RxCocoaError.ItemsNotYetBound(object: self)` is thrown. + + /// - parameter indexPath: Model index path + /// - returns: Model at index path. + func model(at indexPath: IndexPath) throws -> Any +} diff --git a/Pods/RxCocoa/RxCocoa/Common/TextInput.swift b/Pods/RxCocoa/RxCocoa/Common/TextInput.swift new file mode 100644 index 00000000..2268882f --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Common/TextInput.swift @@ -0,0 +1,78 @@ +// +// TextInput.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 5/12/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +#if os(iOS) || os(tvOS) + import UIKit + + /// Represents text input with reactive extensions. + public struct TextInput { + /// Base text input to extend. + public let base: Base + + /// Reactive wrapper for `text` property. + public let text: ControlProperty + + /// Initializes new text input. + /// + /// - parameter base: Base object. + /// - parameter text: Textual control property. + public init(base: Base, text: ControlProperty) { + self.base = base + self.text = text + } + } + + extension Reactive where Base: UITextField { + /// Reactive text input. + public var textInput: TextInput { + return TextInput(base: base, text: self.text) + } + } + + extension Reactive where Base: UITextView { + /// Reactive text input. + public var textInput: TextInput { + return TextInput(base: base, text: self.text) + } + } + +#endif + +#if os(macOS) + import Cocoa + + /// Represents text input with reactive extensions. + public struct TextInput { + /// Base text input to extend. + public let base: Base + + /// Reactive wrapper for `text` property. + public let text: ControlProperty + + /// Initializes new text input. + /// + /// - parameter base: Base object. + /// - parameter text: Textual control property. + public init(base: Base, text: ControlProperty) { + self.base = base + self.text = text + } + } + + extension Reactive where Base: NSTextField, Base: NSTextInputClient { + /// Reactive text input. + public var textInput: TextInput { + return TextInput(base: self.base, text: self.text) + } + } + +#endif + + diff --git a/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift b/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift new file mode 100644 index 00000000..30026bf9 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift @@ -0,0 +1,68 @@ +// +// KVORepresentable+CoreGraphics.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 11/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if !os(Linux) + +import RxSwift +import CoreGraphics + +import Foundation + +#if arch(x86_64) || arch(arm64) + let CGRectType = "{CGRect={CGPoint=dd}{CGSize=dd}}" + let CGSizeType = "{CGSize=dd}" + let CGPointType = "{CGPoint=dd}" +#elseif arch(i386) || arch(arm) || os(watchOS) + let CGRectType = "{CGRect={CGPoint=ff}{CGSize=ff}}" + let CGSizeType = "{CGSize=ff}" + let CGPointType = "{CGPoint=ff}" +#endif + +extension CGRect : KVORepresentable { + public typealias KVOType = NSValue + + /// Constructs self from `NSValue`. + public init?(KVOValue: KVOType) { + if strcmp(KVOValue.objCType, CGRectType) != 0 { + return nil + } + var typedValue = CGRect(x: 0, y: 0, width: 0, height: 0) + KVOValue.getValue(&typedValue) + self = typedValue + } +} + +extension CGPoint : KVORepresentable { + public typealias KVOType = NSValue + + /// Constructs self from `NSValue`. + public init?(KVOValue: KVOType) { + if strcmp(KVOValue.objCType, CGPointType) != 0 { + return nil + } + var typedValue = CGPoint(x: 0, y: 0) + KVOValue.getValue(&typedValue) + self = typedValue + } +} + +extension CGSize : KVORepresentable { + public typealias KVOType = NSValue + + /// Constructs self from `NSValue`. + public init?(KVOValue: KVOType) { + if strcmp(KVOValue.objCType, CGSizeType) != 0 { + return nil + } + var typedValue = CGSize(width: 0, height: 0) + KVOValue.getValue(&typedValue) + self = typedValue + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+Swift.swift b/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+Swift.swift new file mode 100644 index 00000000..00d53dd0 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+Swift.swift @@ -0,0 +1,88 @@ +// +// KVORepresentable+Swift.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 11/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +extension Int : KVORepresentable { + public typealias KVOType = NSNumber + + /// Constructs `Self` using KVO value. + public init?(KVOValue: KVOType) { + self.init(KVOValue.int32Value) + } +} + +extension Int32 : KVORepresentable { + public typealias KVOType = NSNumber + + /// Constructs `Self` using KVO value. + public init?(KVOValue: KVOType) { + self.init(KVOValue.int32Value) + } +} + +extension Int64 : KVORepresentable { + public typealias KVOType = NSNumber + + /// Constructs `Self` using KVO value. + public init?(KVOValue: KVOType) { + self.init(KVOValue.int64Value) + } +} + +extension UInt : KVORepresentable { + public typealias KVOType = NSNumber + + /// Constructs `Self` using KVO value. + public init?(KVOValue: KVOType) { + self.init(KVOValue.uintValue) + } +} + +extension UInt32 : KVORepresentable { + public typealias KVOType = NSNumber + + /// Constructs `Self` using KVO value. + public init?(KVOValue: KVOType) { + self.init(KVOValue.uint32Value) + } +} + +extension UInt64 : KVORepresentable { + public typealias KVOType = NSNumber + + /// Constructs `Self` using KVO value. + public init?(KVOValue: KVOType) { + self.init(KVOValue.uint64Value) + } +} + +extension Bool : KVORepresentable { + public typealias KVOType = NSNumber + + /// Constructs `Self` using KVO value. + public init?(KVOValue: KVOType) { + self.init(KVOValue.boolValue) + } +} + + +extension RawRepresentable where RawValue: KVORepresentable { + /// Constructs `Self` using optional KVO value. + init?(KVOValue: RawValue.KVOType?) { + guard let KVOValue = KVOValue else { + return nil + } + + guard let rawValue = RawValue(KVOValue: KVOValue) else { + return nil + } + + self.init(rawValue: rawValue) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable.swift b/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable.swift new file mode 100644 index 00000000..be12b332 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable.swift @@ -0,0 +1,28 @@ +// +// KVORepresentable.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 11/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Type that is KVO representable (KVO mechanism can be used to observe it). +public protocol KVORepresentable { + /// Associated KVO type. + associatedtype KVOType + + /// Constructs `Self` using KVO value. + init?(KVOValue: KVOType) +} + +extension KVORepresentable { + /// Initializes `KVORepresentable` with optional value. + init?(KVOValue: KVOType?) { + guard let KVOValue = KVOValue else { + return nil + } + + self.init(KVOValue: KVOValue) + } +} + diff --git a/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift b/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift new file mode 100644 index 00000000..1be5a212 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift @@ -0,0 +1,60 @@ +// +// NSObject+Rx+KVORepresentable.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 11/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if !os(Linux) + +import Foundation +import RxSwift + +/// Key value observing options +public struct KeyValueObservingOptions: OptionSet { + /// Raw value + public let rawValue: UInt + + public init(rawValue: UInt) { + self.rawValue = rawValue + } + + /// Whether a sequence element should be sent to the observer immediately, before the subscribe method even returns. + public static let initial = KeyValueObservingOptions(rawValue: 1 << 0) + /// Whether to send updated values. + public static let new = KeyValueObservingOptions(rawValue: 1 << 1) +} + +extension Reactive where Base: NSObject { + + /** + Specialization of generic `observe` method. + + This is a special overload because to observe values of some type (for example `Int`), first values of KVO type + need to be observed (`NSNumber`), and then converted to result type. + + For more information take a look at `observe` method. + */ + public func observe(_ type: Element.Type, _ keyPath: String, options: KeyValueObservingOptions = [.new, .initial], retainSelf: Bool = true) -> Observable { + return self.observe(Element.KVOType.self, keyPath, options: options, retainSelf: retainSelf) + .map(Element.init) + } +} + +#if !DISABLE_SWIZZLING && !os(Linux) + // KVO + extension Reactive where Base: NSObject { + /** + Specialization of generic `observeWeakly` method. + + For more information take a look at `observeWeakly` method. + */ + public func observeWeakly(_ type: Element.Type, _ keyPath: String, options: KeyValueObservingOptions = [.new, .initial]) -> Observable { + return self.observeWeakly(Element.KVOType.self, keyPath, options: options) + .map(Element.init) + } + } +#endif + +#endif diff --git a/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift b/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift new file mode 100644 index 00000000..6e47cb24 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift @@ -0,0 +1,52 @@ +// +// NSObject+Rx+RawRepresentable.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 11/9/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if !os(Linux) + +import RxSwift + +import Foundation + +extension Reactive where Base: NSObject { + /** + Specialization of generic `observe` method. + + This specialization first observes `KVORepresentable` value and then converts it to `RawRepresentable` value. + + It is useful for observing bridged ObjC enum values. + + For more information take a look at `observe` method. + */ + public func observe(_ type: Element.Type, _ keyPath: String, options: KeyValueObservingOptions = [.new, .initial], retainSelf: Bool = true) -> Observable where Element.RawValue: KVORepresentable { + return self.observe(Element.RawValue.KVOType.self, keyPath, options: options, retainSelf: retainSelf) + .map(Element.init) + } +} + +#if !DISABLE_SWIZZLING + + // observeWeakly + RawRepresentable + extension Reactive where Base: NSObject { + + /** + Specialization of generic `observeWeakly` method. + + This specialization first observes `KVORepresentable` value and then converts it to `RawRepresentable` value. + + It is useful for observing bridged ObjC enum values. + + For more information take a look at `observeWeakly` method. + */ + public func observeWeakly(_ type: Element.Type, _ keyPath: String, options: KeyValueObservingOptions = [.new, .initial]) -> Observable where Element.RawValue: KVORepresentable { + return self.observeWeakly(Element.RawValue.KVOType.self, keyPath, options: options) + .map(Element.init) + } + } +#endif + +#endif diff --git a/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx.swift b/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx.swift new file mode 100644 index 00000000..2f157241 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx.swift @@ -0,0 +1,569 @@ +// +// NSObject+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 2/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if !os(Linux) + +import Foundation +import RxSwift +#if SWIFT_PACKAGE && !DISABLE_SWIZZLING && !os(Linux) + import RxCocoaRuntime +#endif + +#if !DISABLE_SWIZZLING && !os(Linux) +private var deallocatingSubjectTriggerContext: UInt8 = 0 +private var deallocatingSubjectContext: UInt8 = 0 +#endif +private var deallocatedSubjectTriggerContext: UInt8 = 0 +private var deallocatedSubjectContext: UInt8 = 0 + +#if !os(Linux) + +/** +KVO is a tricky mechanism. + +When observing child in a ownership hierarchy, usually retaining observing target is wanted behavior. +When observing parent in a ownership hierarchy, usually retaining target isn't wanter behavior. + +KVO with weak references is especially tricky. For it to work, some kind of swizzling is required. +That can be done by + * replacing object class dynamically (like KVO does) + * by swizzling `dealloc` method on all instances for a class. + * some third method ... + +Both approaches can fail in certain scenarios: + * problems arise when swizzlers return original object class (like KVO does when nobody is observing) + * Problems can arise because replacing dealloc method isn't atomic operation (get implementation, + set implementation). + +Second approach is chosen. It can fail in case there are multiple libraries dynamically trying +to replace dealloc method. In case that isn't the case, it should be ok. +*/ +extension Reactive where Base: NSObject { + + + /** + Observes values on `keyPath` starting from `self` with `options` and retains `self` if `retainSelf` is set. + + `observe` is just a simple and performant wrapper around KVO mechanism. + + * it can be used to observe paths starting from `self` or from ancestors in ownership graph (`retainSelf = false`) + * it can be used to observe paths starting from descendants in ownership graph (`retainSelf = true`) + * the paths have to consist only of `strong` properties, otherwise you are risking crashing the system by not unregistering KVO observer before dealloc. + + If support for weak properties is needed or observing arbitrary or unknown relationships in the + ownership tree, `observeWeakly` is the preferred option. + - parameter type: Optional type hint of the observed sequence elements. + - parameter keyPath: Key path of property names to observe. + - parameter options: KVO mechanism notification options. + - parameter retainSelf: Retains self during observation if set `true`. + - returns: Observable sequence of objects on `keyPath`. + */ + public func observe(_ type: Element.Type, + _ keyPath: String, + options: KeyValueObservingOptions = [.new, .initial], + retainSelf: Bool = true) -> Observable { + KVOObservable(object: self.base, keyPath: keyPath, options: options, retainTarget: retainSelf).asObservable() + } + + /** + Observes values at the provided key path using the provided options. + + - parameter keyPath: A key path between the object and one of its properties. + - parameter options: Key-value observation options, defaults to `.new` and `.initial`. + + - note: When the object is deallocated, a completion event is emitted. + + - returns: An observable emitting value changes at the provided key path. + */ + public func observe(_ keyPath: KeyPath, + options: NSKeyValueObservingOptions = [.new, .initial]) -> Observable { + Observable.create { [weak base] observer in + let observation = base?.observe(keyPath, options: options) { obj, _ in + observer.on(.next(obj[keyPath: keyPath])) + } + + return Disposables.create { observation?.invalidate() } + } + .take(until: base.rx.deallocated) + } +} + +#endif + +#if !DISABLE_SWIZZLING && !os(Linux) +// KVO +extension Reactive where Base: NSObject { + /** + Observes values on `keyPath` starting from `self` with `options` and doesn't retain `self`. + + It can be used in all cases where `observe` can be used and additionally + + * because it won't retain observed target, it can be used to observe arbitrary object graph whose ownership relation is unknown + * it can be used to observe `weak` properties + + **Since it needs to intercept object deallocation process it needs to perform swizzling of `dealloc` method on observed object.** + - parameter type: Optional type hint of the observed sequence elements. + - parameter keyPath: Key path of property names to observe. + - parameter options: KVO mechanism notification options. + - returns: Observable sequence of objects on `keyPath`. + */ + public func observeWeakly(_ type: Element.Type, _ keyPath: String, options: KeyValueObservingOptions = [.new, .initial]) -> Observable { + return observeWeaklyKeyPathFor(self.base, keyPath: keyPath, options: options) + .map { n in + return n as? Element + } + } +} +#endif + +// Dealloc +extension Reactive where Base: AnyObject { + + /** + Observable sequence of object deallocated events. + + After object is deallocated one `()` element will be produced and sequence will immediately complete. + + - returns: Observable sequence of object deallocated events. + */ + public var deallocated: Observable { + return self.synchronized { + if let deallocObservable = objc_getAssociatedObject(self.base, &deallocatedSubjectContext) as? DeallocObservable { + return deallocObservable.subject + } + + let deallocObservable = DeallocObservable() + + objc_setAssociatedObject(self.base, &deallocatedSubjectContext, deallocObservable, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + return deallocObservable.subject + } + } + +#if !DISABLE_SWIZZLING && !os(Linux) + + /** + Observable sequence of message arguments that completes when object is deallocated. + + Each element is produced before message is invoked on target object. `methodInvoked` + exists in case observing of invoked messages is needed. + + In case an error occurs sequence will fail with `RxCocoaObjCRuntimeError`. + + In case some argument is `nil`, instance of `NSNull()` will be sent. + + - returns: Observable sequence of arguments passed to `selector` method. + */ + public func sentMessage(_ selector: Selector) -> Observable<[Any]> { + return self.synchronized { + // in case of dealloc selector replay subject behavior needs to be used + if selector == deallocSelector { + return self.deallocating.map { _ in [] } + } + + do { + let proxy: MessageSentProxy = try self.registerMessageInterceptor(selector) + return proxy.messageSent.asObservable() + } + catch let e { + return Observable.error(e) + } + } + } + + /** + Observable sequence of message arguments that completes when object is deallocated. + + Each element is produced after message is invoked on target object. `sentMessage` + exists in case interception of sent messages before they were invoked is needed. + + In case an error occurs sequence will fail with `RxCocoaObjCRuntimeError`. + + In case some argument is `nil`, instance of `NSNull()` will be sent. + + - returns: Observable sequence of arguments passed to `selector` method. + */ + public func methodInvoked(_ selector: Selector) -> Observable<[Any]> { + return self.synchronized { + // in case of dealloc selector replay subject behavior needs to be used + if selector == deallocSelector { + return self.deallocated.map { _ in [] } + } + + + do { + let proxy: MessageSentProxy = try self.registerMessageInterceptor(selector) + return proxy.methodInvoked.asObservable() + } + catch let e { + return Observable.error(e) + } + } + } + + /** + Observable sequence of object deallocating events. + + When `dealloc` message is sent to `self` one `()` element will be produced and after object is deallocated sequence + will immediately complete. + + In case an error occurs sequence will fail with `RxCocoaObjCRuntimeError`. + + - returns: Observable sequence of object deallocating events. + */ + public var deallocating: Observable<()> { + return self.synchronized { + do { + let proxy: DeallocatingProxy = try self.registerMessageInterceptor(deallocSelector) + return proxy.messageSent.asObservable() + } + catch let e { + return Observable.error(e) + } + } + } + + private func registerMessageInterceptor(_ selector: Selector) throws -> T { + let rxSelector = RX_selector(selector) + let selectorReference = RX_reference_from_selector(rxSelector) + + let subject: T + if let existingSubject = objc_getAssociatedObject(self.base, selectorReference) as? T { + subject = existingSubject + } + else { + subject = T() + objc_setAssociatedObject( + self.base, + selectorReference, + subject, + .OBJC_ASSOCIATION_RETAIN_NONATOMIC + ) + } + + if subject.isActive { + return subject + } + + var error: NSError? + let targetImplementation = RX_ensure_observing(self.base, selector, &error) + if targetImplementation == nil { + throw error?.rxCocoaErrorForTarget(self.base) ?? RxCocoaError.unknown + } + + subject.targetImplementation = targetImplementation! + + return subject + } +#endif +} + +// MARK: Message interceptors + +#if !DISABLE_SWIZZLING && !os(Linux) + + private protocol MessageInterceptorSubject: AnyObject { + init() + + var isActive: Bool { + get + } + + var targetImplementation: IMP { get set } + } + + private final class DeallocatingProxy + : MessageInterceptorSubject + , RXDeallocatingObserver { + typealias Element = () + + let messageSent = ReplaySubject<()>.create(bufferSize: 1) + + @objc var targetImplementation: IMP = RX_default_target_implementation() + + var isActive: Bool { + return self.targetImplementation != RX_default_target_implementation() + } + + init() { + } + + @objc func deallocating() { + self.messageSent.on(.next(())) + } + + deinit { + self.messageSent.on(.completed) + } + } + + private final class MessageSentProxy + : MessageInterceptorSubject + , RXMessageSentObserver { + typealias Element = [AnyObject] + + let messageSent = PublishSubject<[Any]>() + let methodInvoked = PublishSubject<[Any]>() + + @objc var targetImplementation: IMP = RX_default_target_implementation() + + var isActive: Bool { + return self.targetImplementation != RX_default_target_implementation() + } + + init() { + } + + @objc func messageSent(withArguments arguments: [Any]) { + self.messageSent.on(.next(arguments)) + } + + @objc func methodInvoked(withArguments arguments: [Any]) { + self.methodInvoked.on(.next(arguments)) + } + + deinit { + self.messageSent.on(.completed) + self.methodInvoked.on(.completed) + } + } + +#endif + + +private final class DeallocObservable { + let subject = ReplaySubject.create(bufferSize:1) + + init() { + } + + deinit { + self.subject.on(.next(())) + self.subject.on(.completed) + } +} + +// MARK: KVO + +#if !os(Linux) + +private protocol KVOObservableProtocol { + var target: AnyObject { get } + var keyPath: String { get } + var retainTarget: Bool { get } + var options: KeyValueObservingOptions { get } +} + +private final class KVOObserver + : _RXKVOObserver + , Disposable { + typealias Callback = (Any?) -> Void + + var retainSelf: KVOObserver? + + init(parent: KVOObservableProtocol, callback: @escaping Callback) { + #if TRACE_RESOURCES + _ = Resources.incrementTotal() + #endif + + super.init(target: parent.target, retainTarget: parent.retainTarget, keyPath: parent.keyPath, options: parent.options.nsOptions, callback: callback) + self.retainSelf = self + } + + override func dispose() { + super.dispose() + self.retainSelf = nil + } + + deinit { + #if TRACE_RESOURCES + _ = Resources.decrementTotal() + #endif + } +} + +private final class KVOObservable + : ObservableType + , KVOObservableProtocol { + typealias Element = Element? + + unowned var target: AnyObject + var strongTarget: AnyObject? + + var keyPath: String + var options: KeyValueObservingOptions + var retainTarget: Bool + + init(object: AnyObject, keyPath: String, options: KeyValueObservingOptions, retainTarget: Bool) { + self.target = object + self.keyPath = keyPath + self.options = options + self.retainTarget = retainTarget + if retainTarget { + self.strongTarget = object + } + } + + func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element? { + let observer = KVOObserver(parent: self) { value in + if value as? NSNull != nil { + observer.on(.next(nil)) + return + } + observer.on(.next(value as? Element)) + } + + return Disposables.create(with: observer.dispose) + } + +} + +private extension KeyValueObservingOptions { + var nsOptions: NSKeyValueObservingOptions { + var result: UInt = 0 + if self.contains(.new) { + result |= NSKeyValueObservingOptions.new.rawValue + } + if self.contains(.initial) { + result |= NSKeyValueObservingOptions.initial.rawValue + } + + return NSKeyValueObservingOptions(rawValue: result) + } +} + +#endif + +#if !DISABLE_SWIZZLING && !os(Linux) + + private func observeWeaklyKeyPathFor(_ target: NSObject, keyPath: String, options: KeyValueObservingOptions) -> Observable { + let components = keyPath.components(separatedBy: ".").filter { $0 != "self" } + + let observable = observeWeaklyKeyPathFor(target, keyPathSections: components, options: options) + .finishWithNilWhenDealloc(target) + + if !options.isDisjoint(with: .initial) { + return observable + } + else { + return observable + .skip(1) + } + } + + // This should work correctly + // Identifiers can't contain `,`, so the only place where `,` can appear + // is as a delimiter. + // This means there is `W` as element in an array of property attributes. + private func isWeakProperty(_ properyRuntimeInfo: String) -> Bool { + properyRuntimeInfo.range(of: ",W,") != nil + } + + private extension ObservableType where Element == AnyObject? { + func finishWithNilWhenDealloc(_ target: NSObject) + -> Observable { + let deallocating = target.rx.deallocating + + return deallocating + .map { _ in + return Observable.just(nil) + } + .startWith(self.asObservable()) + .switchLatest() + } + } + + private func observeWeaklyKeyPathFor( + _ target: NSObject, + keyPathSections: [String], + options: KeyValueObservingOptions + ) -> Observable { + + weak var weakTarget: AnyObject? = target + + let propertyName = keyPathSections[0] + let remainingPaths = Array(keyPathSections[1.. + + // KVO recursion for value changes + return propertyObservable + .flatMapLatest { (nextTarget: AnyObject?) -> Observable in + if nextTarget == nil { + return Observable.just(nil) + } + let nextObject = nextTarget! as? NSObject + + let strongTarget: AnyObject? = weakTarget + + if nextObject == nil { + return Observable.error(RxCocoaError.invalidObjectOnKeyPath(object: nextTarget!, sourceObject: strongTarget ?? NSNull(), propertyName: propertyName)) + } + + // if target is alive, then send change + // if it's deallocated, don't send anything + if strongTarget == nil { + return Observable.empty() + } + + let nextElementsObservable = keyPathSections.count == 1 + ? Observable.just(nextTarget) + : observeWeaklyKeyPathFor(nextObject!, keyPathSections: remainingPaths, options: options) + + if isWeak { + return nextElementsObservable + .finishWithNilWhenDealloc(nextObject!) + } + else { + return nextElementsObservable + } + } + } +#endif + +// MARK: Constants + +private let deallocSelector = NSSelectorFromString("dealloc") + +// MARK: AnyObject + Reactive + +extension Reactive where Base: AnyObject { + func synchronized( _ action: () -> T) -> T { + objc_sync_enter(self.base) + let result = action() + objc_sync_exit(self.base) + return result + } +} + +extension Reactive where Base: AnyObject { + /** + Helper to make sure that `Observable` returned from `createCachedObservable` is only created once. + This is important because there is only one `target` and `action` properties on `NSControl` or `UIBarButtonItem`. + */ + func lazyInstanceObservable(_ key: UnsafeRawPointer, createCachedObservable: () -> T) -> T { + if let value = objc_getAssociatedObject(self.base, key) { + return value as! T + } + + let observable = createCachedObservable() + + objc_setAssociatedObject(self.base, key, observable, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + + return observable + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/Foundation/NotificationCenter+Rx.swift b/Pods/RxCocoa/RxCocoa/Foundation/NotificationCenter+Rx.swift new file mode 100644 index 00000000..30ffa2bf --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Foundation/NotificationCenter+Rx.swift @@ -0,0 +1,31 @@ +// +// NotificationCenter+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 5/2/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation +import RxSwift + +extension Reactive where Base: NotificationCenter { + /** + Transforms notifications posted to notification center to observable sequence of notifications. + + - parameter name: Optional name used to filter notifications. + - parameter object: Optional object used to filter notifications. + - returns: Observable sequence of posted notifications. + */ + public func notification(_ name: Notification.Name?, object: AnyObject? = nil) -> Observable { + return Observable.create { [weak object] observer in + let nsObserver = self.base.addObserver(forName: name, object: object, queue: nil) { notification in + observer.on(.next(notification)) + } + + return Disposables.create { + self.base.removeObserver(nsObserver) + } + } + } +} diff --git a/Pods/RxCocoa/RxCocoa/Foundation/URLSession+Rx.swift b/Pods/RxCocoa/RxCocoa/Foundation/URLSession+Rx.swift new file mode 100644 index 00000000..93e65ccf --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Foundation/URLSession+Rx.swift @@ -0,0 +1,240 @@ +// +// URLSession+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 3/23/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation +import RxSwift + +#if canImport(FoundationNetworking) +import FoundationNetworking +#endif + +/// RxCocoa URL errors. +public enum RxCocoaURLError + : Swift.Error { + /// Unknown error occurred. + case unknown + /// Response is not NSHTTPURLResponse + case nonHTTPResponse(response: URLResponse) + /// Response is not successful. (not in `200 ..< 300` range) + case httpRequestFailed(response: HTTPURLResponse, data: Data?) + /// Deserialization error. + case deserializationError(error: Swift.Error) +} + +extension RxCocoaURLError + : CustomDebugStringConvertible { + /// A textual representation of `self`, suitable for debugging. + public var debugDescription: String { + switch self { + case .unknown: + return "Unknown error has occurred." + case let .nonHTTPResponse(response): + return "Response is not NSHTTPURLResponse `\(response)`." + case let .httpRequestFailed(response, _): + return "HTTP request failed with `\(response.statusCode)`." + case let .deserializationError(error): + return "Error during deserialization of the response: \(error)" + } + } +} + +private func escapeTerminalString(_ value: String) -> String { + return value.replacingOccurrences(of: "\"", with: "\\\"", options:[], range: nil) +} + +private func convertURLRequestToCurlCommand(_ request: URLRequest) -> String { + let method = request.httpMethod ?? "GET" + var returnValue = "curl -X \(method) " + + if let httpBody = request.httpBody { + let maybeBody = String(data: httpBody, encoding: String.Encoding.utf8) + if let body = maybeBody { + returnValue += "-d \"\(escapeTerminalString(body))\" " + } + } + + for (key, value) in request.allHTTPHeaderFields ?? [:] { + let escapedKey = escapeTerminalString(key as String) + let escapedValue = escapeTerminalString(value as String) + returnValue += "\n -H \"\(escapedKey): \(escapedValue)\" " + } + + let URLString = request.url?.absoluteString ?? "" + + returnValue += "\n\"\(escapeTerminalString(URLString))\"" + + returnValue += " -i -v" + + return returnValue +} + +private func convertResponseToString(_ response: URLResponse?, _ error: NSError?, _ interval: TimeInterval) -> String { + let ms = Int(interval * 1000) + + if let response = response as? HTTPURLResponse { + if 200 ..< 300 ~= response.statusCode { + return "Success (\(ms)ms): Status \(response.statusCode)" + } + else { + return "Failure (\(ms)ms): Status \(response.statusCode)" + } + } + + if let error = error { + if error.domain == NSURLErrorDomain && error.code == NSURLErrorCancelled { + return "Canceled (\(ms)ms)" + } + return "Failure (\(ms)ms): NSError > \(error)" + } + + return "" +} + +extension Reactive where Base: URLSession { + /** + Observable sequence of responses for URL request. + + Performing of request starts after observer is subscribed and not after invoking this method. + + **URL requests will be performed per subscribed observer.** + + Any error during fetching of the response will cause observed sequence to terminate with error. + + - parameter request: URL request. + - returns: Observable sequence of URL responses. + */ + public func response(request: URLRequest) -> Observable<(response: HTTPURLResponse, data: Data)> { + return Observable.create { observer in + + // smart compiler should be able to optimize this out + let d: Date? + + if URLSession.rx.shouldLogRequest(request) { + d = Date() + } + else { + d = nil + } + + let task = self.base.dataTask(with: request) { data, response, error in + + if URLSession.rx.shouldLogRequest(request) { + let interval = Date().timeIntervalSince(d ?? Date()) + print(convertURLRequestToCurlCommand(request)) + #if os(Linux) + print(convertResponseToString(response, error.flatMap { $0 as NSError }, interval)) + #else + print(convertResponseToString(response, error.map { $0 as NSError }, interval)) + #endif + } + + guard let response = response, let data = data else { + observer.on(.error(error ?? RxCocoaURLError.unknown)) + return + } + + guard let httpResponse = response as? HTTPURLResponse else { + observer.on(.error(RxCocoaURLError.nonHTTPResponse(response: response))) + return + } + + observer.on(.next((httpResponse, data))) + observer.on(.completed) + } + + task.resume() + + return Disposables.create(with: task.cancel) + } + } + + /** + Observable sequence of response data for URL request. + + Performing of request starts after observer is subscribed and not after invoking this method. + + **URL requests will be performed per subscribed observer.** + + Any error during fetching of the response will cause observed sequence to terminate with error. + + If response is not HTTP response with status code in the range of `200 ..< 300`, sequence + will terminate with `(RxCocoaErrorDomain, RxCocoaError.NetworkError)`. + + - parameter request: URL request. + - returns: Observable sequence of response data. + */ + public func data(request: URLRequest) -> Observable { + return self.response(request: request).map { pair -> Data in + if 200 ..< 300 ~= pair.0.statusCode { + return pair.1 + } + else { + throw RxCocoaURLError.httpRequestFailed(response: pair.0, data: pair.1) + } + } + } + + /** + Observable sequence of response JSON for URL request. + + Performing of request starts after observer is subscribed and not after invoking this method. + + **URL requests will be performed per subscribed observer.** + + Any error during fetching of the response will cause observed sequence to terminate with error. + + If response is not HTTP response with status code in the range of `200 ..< 300`, sequence + will terminate with `(RxCocoaErrorDomain, RxCocoaError.NetworkError)`. + + If there is an error during JSON deserialization observable sequence will fail with that error. + + - parameter request: URL request. + - returns: Observable sequence of response JSON. + */ + public func json(request: URLRequest, options: JSONSerialization.ReadingOptions = []) -> Observable { + return self.data(request: request).map { data -> Any in + do { + return try JSONSerialization.jsonObject(with: data, options: options) + } catch let error { + throw RxCocoaURLError.deserializationError(error: error) + } + } + } + + /** + Observable sequence of response JSON for GET request with `URL`. + + Performing of request starts after observer is subscribed and not after invoking this method. + + **URL requests will be performed per subscribed observer.** + + Any error during fetching of the response will cause observed sequence to terminate with error. + + If response is not HTTP response with status code in the range of `200 ..< 300`, sequence + will terminate with `(RxCocoaErrorDomain, RxCocoaError.NetworkError)`. + + If there is an error during JSON deserialization observable sequence will fail with that error. + + - parameter url: URL of `NSURLRequest` request. + - returns: Observable sequence of response JSON. + */ + public func json(url: Foundation.URL) -> Observable { + self.json(request: URLRequest(url: url)) + } +} + +extension Reactive where Base == URLSession { + /// Log URL requests to standard output in curl format. + public static var shouldLogRequest: (URLRequest) -> Bool = { _ in + #if DEBUG + return true + #else + return false + #endif + } +} diff --git a/Pods/RxCocoa/RxCocoa/Runtime/_RX.m b/Pods/RxCocoa/RxCocoa/Runtime/_RX.m new file mode 100644 index 00000000..cffbfbcc --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Runtime/_RX.m @@ -0,0 +1,10 @@ +// +// _RX.m +// RxCocoa +// +// Created by Krunoslav Zaher on 7/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#import "include/_RX.h" + diff --git a/Pods/RxCocoa/RxCocoa/Runtime/_RXDelegateProxy.m b/Pods/RxCocoa/RxCocoa/Runtime/_RXDelegateProxy.m new file mode 100644 index 00000000..36338a57 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Runtime/_RXDelegateProxy.m @@ -0,0 +1,147 @@ +// +// _RXDelegateProxy.m +// RxCocoa +// +// Created by Krunoslav Zaher on 7/4/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#import "include/_RXDelegateProxy.h" +#import "include/_RX.h" +#import "include/_RXObjCRuntime.h" + +@interface _RXDelegateProxy () { + id __weak __forwardToDelegate; +} + +@property (nonatomic, strong) id strongForwardDelegate; + +@end + +static NSMutableDictionary *voidSelectorsPerClass = nil; + +@implementation _RXDelegateProxy + ++(NSSet*)collectVoidSelectorsForProtocol:(Protocol *)protocol { + NSMutableSet *selectors = [NSMutableSet set]; + + unsigned int protocolMethodCount = 0; + struct objc_method_description *pMethods = protocol_copyMethodDescriptionList(protocol, NO, YES, &protocolMethodCount); + + for (unsigned int i = 0; i < protocolMethodCount; ++i) { + struct objc_method_description method = pMethods[i]; + if (RX_is_method_with_description_void(method)) { + [selectors addObject:SEL_VALUE(method.name)]; + } + } + + free(pMethods); + + unsigned int numberOfBaseProtocols = 0; + Protocol * __unsafe_unretained * pSubprotocols = protocol_copyProtocolList(protocol, &numberOfBaseProtocols); + + for (unsigned int i = 0; i < numberOfBaseProtocols; ++i) { + [selectors unionSet:[self collectVoidSelectorsForProtocol:pSubprotocols[i]]]; + } + + free(pSubprotocols); + + return selectors; +} + ++(void)initialize { + @synchronized (_RXDelegateProxy.class) { + if (voidSelectorsPerClass == nil) { + voidSelectorsPerClass = [[NSMutableDictionary alloc] init]; + } + + NSMutableSet *voidSelectors = [NSMutableSet set]; + +#define CLASS_HIERARCHY_MAX_DEPTH 100 + + NSInteger classHierarchyDepth = 0; + Class targetClass = NULL; + + for (classHierarchyDepth = 0, targetClass = self; + classHierarchyDepth < CLASS_HIERARCHY_MAX_DEPTH && targetClass != nil; + ++classHierarchyDepth, targetClass = class_getSuperclass(targetClass) + ) { + unsigned int count; + Protocol *__unsafe_unretained *pProtocols = class_copyProtocolList(targetClass, &count); + + for (unsigned int i = 0; i < count; i++) { + NSSet *selectorsForProtocol = [self collectVoidSelectorsForProtocol:pProtocols[i]]; + [voidSelectors unionSet:selectorsForProtocol]; + } + + free(pProtocols); + } + + if (classHierarchyDepth == CLASS_HIERARCHY_MAX_DEPTH) { + NSLog(@"Detected weird class hierarchy with depth over %d. Starting with this class -> %@", CLASS_HIERARCHY_MAX_DEPTH, self); +#if DEBUG + abort(); +#endif + } + + voidSelectorsPerClass[CLASS_VALUE(self)] = voidSelectors; + } +} + +-(id)_forwardToDelegate { + return __forwardToDelegate; +} + +-(void)_setForwardToDelegate:(id __nullable)forwardToDelegate retainDelegate:(BOOL)retainDelegate { + __forwardToDelegate = forwardToDelegate; + if (retainDelegate) { + self.strongForwardDelegate = forwardToDelegate; + } + else { + self.strongForwardDelegate = nil; + } +} + +-(BOOL)hasWiredImplementationForSelector:(SEL)selector { + return [super respondsToSelector:selector]; +} + +-(BOOL)voidDelegateMethodsContain:(SEL)selector { + @synchronized(_RXDelegateProxy.class) { + NSSet *voidSelectors = voidSelectorsPerClass[CLASS_VALUE(self.class)]; + NSAssert(voidSelectors != nil, @"Set of allowed methods not initialized"); + return [voidSelectors containsObject:SEL_VALUE(selector)]; + } +} + +-(void)forwardInvocation:(NSInvocation *)anInvocation { + BOOL isVoid = RX_is_method_signature_void(anInvocation.methodSignature); + NSArray *arguments = nil; + if (isVoid) { + arguments = RX_extract_arguments(anInvocation); + [self _sentMessage:anInvocation.selector withArguments:arguments]; + } + + if (self._forwardToDelegate && [self._forwardToDelegate respondsToSelector:anInvocation.selector]) { + [anInvocation invokeWithTarget:self._forwardToDelegate]; + } + + if (isVoid) { + [self _methodInvoked:anInvocation.selector withArguments:arguments]; + } +} + +// abstract method +-(void)_sentMessage:(SEL)selector withArguments:(NSArray *)arguments { + +} + +// abstract method +-(void)_methodInvoked:(SEL)selector withArguments:(NSArray *)arguments { + +} + +-(void)dealloc { +} + +@end diff --git a/Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m b/Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m new file mode 100644 index 00000000..fc8fb75c --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m @@ -0,0 +1,54 @@ +// +// _RXKVOObserver.m +// RxCocoa +// +// Created by Krunoslav Zaher on 7/11/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#import "include/_RXKVOObserver.h" + +@interface _RXKVOObserver () + +@property (nonatomic, unsafe_unretained) id target; +@property (nonatomic, strong ) id retainedTarget; +@property (nonatomic, copy ) NSString *keyPath; +@property (nonatomic, copy ) void (^callback)(id); + +@end + +@implementation _RXKVOObserver + +-(instancetype)initWithTarget:(id)target + retainTarget:(BOOL)retainTarget + keyPath:(NSString*)keyPath + options:(NSKeyValueObservingOptions)options + callback:(void (^)(id))callback { + self = [super init]; + if (!self) return nil; + + self.target = target; + if (retainTarget) { + self.retainedTarget = target; + } + self.keyPath = keyPath; + self.callback = callback; + + [self.target addObserver:self forKeyPath:self.keyPath options:options context:nil]; + + return self; +} + +-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context { + @synchronized(self) { + self.callback(change[NSKeyValueChangeNewKey]); + } +} + +-(void)dispose { + [self.target removeObserver:self forKeyPath:self.keyPath context:nil]; + self.target = nil; + self.retainedTarget = nil; +} + +@end diff --git a/Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m b/Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m new file mode 100644 index 00000000..2e685aaa --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m @@ -0,0 +1,1062 @@ +// +// _RXObjCRuntime.m +// RxCocoa +// +// Created by Krunoslav Zaher on 7/11/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#import +#import +#import +#import +#import +#import + +#import "include/_RX.h" +#import "include/_RXObjCRuntime.h" + +// self + cmd +#define HIDDEN_ARGUMENT_COUNT 2 + +#if !DISABLE_SWIZZLING + +#define NSErrorParam NSError *__autoreleasing __nullable * __nullable + +@class RXObjCRuntime; + +BOOL RXAbortOnThreadingHazard = NO; + +typedef NSInvocation *NSInvocationRef; +typedef NSMethodSignature *NSMethodSignatureRef; +typedef unsigned char rx_uchar; +typedef unsigned short rx_ushort; +typedef unsigned int rx_uint; +typedef unsigned long rx_ulong; +typedef id (^rx_block)(id); +typedef BOOL (^RXInterceptWithOptimizedObserver)(RXObjCRuntime * __nonnull self, Class __nonnull class, SEL __nonnull selector, NSErrorParam error); + +static CFTypeID defaultTypeID; +static SEL deallocSelector; + +static int RxSwizzlingTargetClassKey = 0; + +#if TRACE_RESOURCES +_Atomic static int32_t numberOInterceptedMethods = 0; +_Atomic static int32_t numberOfForwardedMethods = 0; +#endif + +#define THREADING_HAZARD(class) \ + NSLog(@"There was a problem swizzling on `%@`.\nYou have probably two libraries performing swizzling in runtime.\nWe didn't want to crash your program, but this is not good ...\nYou an solve this problem by either not using swizzling in this library, removing one of those other libraries, or making sure that swizzling parts are synchronized (only perform them on main thread).\nAnd yes, this message will self destruct when you clear the console, and since it's non deterministic, the problem could still exist and it will be hard for you to reproduce it.", NSStringFromClass(class)); ABORT_IN_DEBUG if (RXAbortOnThreadingHazard) { abort(); } + +#define ALWAYS(condition, message) if (!(condition)) { [NSException raise:@"RX Invalid Operator" format:@"%@", message]; } +#define ALWAYS_WITH_INFO(condition, message) NSAssert((condition), @"%@ [%@] > %@", NSStringFromClass(class), NSStringFromSelector(selector), (message)) +#define C_ALWAYS(condition, message) NSCAssert((condition), @"%@ [%@] > %@", NSStringFromClass(class), NSStringFromSelector(selector), (message)) + +#define RX_PREFIX @"_RX_namespace_" + +#define RX_ARG_id(value) ((value) ?: [NSNull null]) +#define RX_ARG_char(value) [NSNumber numberWithChar:value] +#define RX_ARG_short(value) [NSNumber numberWithShort:value] +#define RX_ARG_int(value) [NSNumber numberWithInt:value] +#define RX_ARG_long(value) [NSNumber numberWithLong:value] +#define RX_ARG_BOOL(value) [NSNumber numberWithBool:value] +#define RX_ARG_SEL(value) [NSNumber valueWithPointer:value] +#define RX_ARG_rx_uchar(value) [NSNumber numberWithUnsignedInt:value] +#define RX_ARG_rx_ushort(value) [NSNumber numberWithUnsignedInt:value] +#define RX_ARG_rx_uint(value) [NSNumber numberWithUnsignedInt:value] +#define RX_ARG_rx_ulong(value) [NSNumber numberWithUnsignedLong:value] +#define RX_ARG_rx_block(value) ((id)(value) ?: [NSNull null]) +#define RX_ARG_float(value) [NSNumber numberWithFloat:value] +#define RX_ARG_double(value) [NSNumber numberWithDouble:value] + +typedef struct supported_type { + const char *encoding; +} supported_type_t; + +static supported_type_t supported_types[] = { + { .encoding = @encode(void)}, + { .encoding = @encode(id)}, + { .encoding = @encode(Class)}, + { .encoding = @encode(void (^)(void))}, + { .encoding = @encode(char)}, + { .encoding = @encode(short)}, + { .encoding = @encode(int)}, + { .encoding = @encode(long)}, + { .encoding = @encode(long long)}, + { .encoding = @encode(unsigned char)}, + { .encoding = @encode(unsigned short)}, + { .encoding = @encode(unsigned int)}, + { .encoding = @encode(unsigned long)}, + { .encoding = @encode(unsigned long long)}, + { .encoding = @encode(float)}, + { .encoding = @encode(double)}, + { .encoding = @encode(BOOL)}, + { .encoding = @encode(const char*)}, +}; + +NSString * __nonnull const RXObjCRuntimeErrorDomain = @"RXObjCRuntimeErrorDomain"; +NSString * __nonnull const RXObjCRuntimeErrorIsKVOKey = @"RXObjCRuntimeErrorIsKVOKey"; + +BOOL RX_return_type_is_supported(const char *type) { + if (type == nil) { + return NO; + } + + for (int i = 0; i < sizeof(supported_types) / sizeof(supported_type_t); ++i) { + if (supported_types[i].encoding[0] != type[0]) { + continue; + } + if (strcmp(supported_types[i].encoding, type) == 0) { + return YES; + } + } + + return NO; +} + +static BOOL RX_method_has_supported_return_type(Method method) { + const char *rawEncoding = method_getTypeEncoding(method); + ALWAYS(rawEncoding != nil, @"Example encoding method is nil."); + + NSMethodSignature *methodSignature = [NSMethodSignature signatureWithObjCTypes:rawEncoding]; + ALWAYS(methodSignature != nil, @"Method signature method is nil."); + + return RX_return_type_is_supported(methodSignature.methodReturnType); +} + +SEL __nonnull RX_selector(SEL __nonnull selector) { + NSString *selectorString = NSStringFromSelector(selector); + return NSSelectorFromString([RX_PREFIX stringByAppendingString:selectorString]); +} + +#endif + +BOOL RX_is_method_signature_void(NSMethodSignature * __nonnull methodSignature) { + const char *methodReturnType = methodSignature.methodReturnType; + return strcmp(methodReturnType, @encode(void)) == 0; +} + +BOOL RX_is_method_with_description_void(struct objc_method_description method) { + return strncmp(method.types, @encode(void), 1) == 0; +} + +id __nonnull RX_extract_argument_at_index(NSInvocation * __nonnull invocation, NSUInteger index) { + const char *argumentType = [invocation.methodSignature getArgumentTypeAtIndex:index]; + +#define RETURN_VALUE(type) \ + else if (strcmp(argumentType, @encode(type)) == 0) {\ + type val = 0; \ + [invocation getArgument:&val atIndex:index]; \ + return @(val); \ + } + + // Skip const type qualifier. + if (argumentType[0] == 'r') { + argumentType++; + } + + if (strcmp(argumentType, @encode(id)) == 0 + || strcmp(argumentType, @encode(Class)) == 0 + || strcmp(argumentType, @encode(void (^)(void))) == 0 + ) { + __unsafe_unretained id argument = nil; + [invocation getArgument:&argument atIndex:index]; + return argument; + } + RETURN_VALUE(char) + RETURN_VALUE(short) + RETURN_VALUE(int) + RETURN_VALUE(long) + RETURN_VALUE(long long) + RETURN_VALUE(unsigned char) + RETURN_VALUE(unsigned short) + RETURN_VALUE(unsigned int) + RETURN_VALUE(unsigned long) + RETURN_VALUE(unsigned long long) + RETURN_VALUE(float) + RETURN_VALUE(double) + RETURN_VALUE(BOOL) + RETURN_VALUE(const char *) + else { + NSUInteger size = 0; + NSGetSizeAndAlignment(argumentType, &size, NULL); + NSCParameterAssert(size > 0); + uint8_t data[size]; + [invocation getArgument:&data atIndex:index]; + + return [NSValue valueWithBytes:&data objCType:argumentType]; + } +} + +NSArray *RX_extract_arguments(NSInvocation *invocation) { + NSUInteger numberOfArguments = invocation.methodSignature.numberOfArguments; + NSUInteger numberOfVisibleArguments = numberOfArguments - HIDDEN_ARGUMENT_COUNT; + + NSCParameterAssert(numberOfVisibleArguments >= 0); + + NSMutableArray *arguments = [NSMutableArray arrayWithCapacity:numberOfVisibleArguments]; + + for (NSUInteger index = HIDDEN_ARGUMENT_COUNT; index < numberOfArguments; ++index) { + [arguments addObject:RX_extract_argument_at_index(invocation, index) ?: [NSNull null]]; + } + + return arguments; +} + +IMP __nonnull RX_default_target_implementation(void) { + return _objc_msgForward; +} + +#if !DISABLE_SWIZZLING + +void * __nonnull RX_reference_from_selector(SEL __nonnull selector) { + return selector; +} + +static BOOL RX_forward_invocation(id __nonnull __unsafe_unretained self, NSInvocation *invocation) { + SEL originalSelector = RX_selector(invocation.selector); + + id messageSentObserver = objc_getAssociatedObject(self, originalSelector); + + if (messageSentObserver != nil) { + NSArray *arguments = RX_extract_arguments(invocation); + [messageSentObserver messageSentWithArguments:arguments]; + } + + if ([self respondsToSelector:originalSelector]) { + invocation.selector = originalSelector; + [invocation invokeWithTarget:self]; + + if (messageSentObserver != nil) { + NSArray *arguments = RX_extract_arguments(invocation); + [messageSentObserver methodInvokedWithArguments:arguments]; + } + + return YES; + } + + return NO; +} + +static BOOL RX_responds_to_selector(id __nonnull __unsafe_unretained self, SEL selector) { + Class class = object_getClass(self); + if (class == nil) { return NO; } + + Method m = class_getInstanceMethod(class, selector); + return m != nil; + +} + +static NSMethodSignatureRef RX_method_signature(id __nonnull __unsafe_unretained self, SEL selector) { + Class class = object_getClass(self); + if (class == nil) { return nil; } + + Method method = class_getInstanceMethod(class, selector); + if (method == nil) { return nil; } + + const char *encoding = method_getTypeEncoding(method); + if (encoding == nil) { return nil; } + + return [NSMethodSignature signatureWithObjCTypes:encoding]; +} + +static NSString * __nonnull RX_method_encoding(Method __nonnull method) { + const char *typeEncoding = method_getTypeEncoding(method); + ALWAYS(typeEncoding != nil, @"Method encoding is nil."); + + NSString *encoding = [NSString stringWithCString:typeEncoding encoding:NSASCIIStringEncoding]; + ALWAYS(encoding != nil, @"Can't convert encoding to NSString."); + return encoding; +} + +@interface RXObjCRuntime: NSObject + +@property (nonatomic, assign) pthread_mutex_t lock; + +@property (nonatomic, strong) NSMutableSet *classesThatSupportObservingByForwarding; +@property (nonatomic, strong) NSMutableDictionary *> *forwardedSelectorsByClass; + +@property (nonatomic, strong) NSMutableDictionary *dynamicSubclassByRealClass; +@property (nonatomic, strong) NSMutableDictionary*> *interceptorIMPbySelectorsByClass; + ++(RXObjCRuntime*)instance; + +-(void)performLocked:(void (^)(RXObjCRuntime* __nonnull))action; +-(IMP __nullable)ensurePrepared:(id __nonnull)target forObserving:(SEL __nonnull)selector error:(NSErrorParam)error; +-(BOOL)ensureSwizzledSelector:(SEL __nonnull)selector + ofClass:(Class __nonnull)class + newImplementationGenerator:(IMP(^)(void))newImplementationGenerator +replacementImplementationGenerator:(IMP (^)(IMP originalImplementation))replacementImplementationGenerator + error:(NSErrorParam)error; + + ++(void)registerOptimizedObserver:(RXInterceptWithOptimizedObserver)registration encodedAs:(SEL)selector; + +@end + +/** + All API methods perform work on locked instance of `RXObjCRuntime`. In that way it's easy to prove + that every action is properly locked. + */ +IMP __nullable RX_ensure_observing(id __nonnull target, SEL __nonnull selector, NSErrorParam error) { + __block IMP targetImplementation = nil; + // Target is the second object that needs to be synchronized to TRY to make sure other swizzling framework + // won't do something in parallel. + // Even though this is too fine grained locking and more coarse grained locks should exist, this is just in case + // someone calls this method directly without any external lock. + @synchronized(target) { + // The only other resource that all other swizzling libraries have in common without introducing external + // dependencies is class object. + // + // It is polite to try to synchronize it in hope other unknown entities will also attempt to do so. + // It's like trying to figure out how to communicate with aliens without actually communicating, + // save for the fact that aliens are people, programmers, authors of swizzling libraries. + @synchronized([target class]) { + [[RXObjCRuntime instance] performLocked:^(RXObjCRuntime * __nonnull self) { + targetImplementation = [self ensurePrepared:target + forObserving:selector + error:error]; + }]; + } + } + + return targetImplementation; +} + +// bodies + +#define FORWARD_BODY(invocation) if (RX_forward_invocation(self, NAME_CAT(_, 0, invocation))) { return; } + +#define RESPONDS_TO_SELECTOR_BODY(selector) if (RX_responds_to_selector(self, NAME_CAT(_, 0, selector))) return YES; + +#define CLASS_BODY(...) return actAsClass; + +#define METHOD_SIGNATURE_FOR_SELECTOR_BODY(selector) \ + NSMethodSignatureRef methodSignature = RX_method_signature(self, NAME_CAT(_, 0, selector)); \ + if (methodSignature != nil) { \ + return methodSignature; \ + } + +#define DEALLOCATING_BODY(...) \ + id observer = objc_getAssociatedObject(self, rxSelector); \ + if (observer != nil && observer.targetImplementation == thisIMP) { \ + [observer deallocating]; \ + } + +#define OBSERVE_BODY(...) \ + id observer = objc_getAssociatedObject(self, rxSelector); \ + \ + if (observer != nil && observer.targetImplementation == thisIMP) { \ + [observer messageSentWithArguments:@[COMMA_DELIMITED_ARGUMENTS(__VA_ARGS__)]]; \ + } \ + + +#define OBSERVE_INVOKED_BODY(...) \ + if (observer != nil && observer.targetImplementation == thisIMP) { \ + [observer methodInvokedWithArguments:@[COMMA_DELIMITED_ARGUMENTS(__VA_ARGS__)]]; \ + } \ + + +#define BUILD_ARG_WRAPPER(type) RX_ARG_ ## type //RX_ARG_ ## type + +#define CAT(_1, _2, head, tail) RX_CAT2(head, tail) +#define SEPARATE_BY_COMMA(_1, _2, head, tail) head, tail +#define SEPARATE_BY_SPACE(_1, _2, head, tail) head tail +#define SEPARATE_BY_UNDERSCORE(head, tail) RX_CAT2(RX_CAT2(head, _), tail) + +#define UNDERSCORE_TYPE_CAT(_1, index, type) RX_CAT2(_, type) // generates -> _type +#define NAME_CAT(_1, index, type) SEPARATE_BY_UNDERSCORE(type, index) // generates -> type_0 +#define TYPE_AND_NAME_CAT(_1, index, type) type SEPARATE_BY_UNDERSCORE(type, index) // generates -> type type_0 +#define NOT_NULL_ARGUMENT_CAT(_1, index, type) BUILD_ARG_WRAPPER(type)(NAME_CAT(_1, index, type)) // generates -> ((id)(type_0) ?: [NSNull null]) +#define EXAMPLE_PARAMETER(_1, index, type) RX_CAT2(_, type):(type)SEPARATE_BY_UNDERSCORE(type, index) // generates -> _type:(type)type_0 +#define SELECTOR_PART(_1, index, type) RX_CAT2(_, type:) // generates -> _type: + +#define COMMA_DELIMITED_ARGUMENTS(...) RX_FOREACH(_, SEPARATE_BY_COMMA, NOT_NULL_ARGUMENT_CAT, ## __VA_ARGS__) +#define ARGUMENTS(...) RX_FOREACH_COMMA(_, NAME_CAT, ## __VA_ARGS__) +#define DECLARE_ARGUMENTS(...) RX_FOREACH_COMMA(_, TYPE_AND_NAME_CAT, ## __VA_ARGS__) + +// optimized observe methods + +#define GENERATE_SELECTOR_IDENTIFIER(...) RX_CAT2(exampleSelector, RX_FOREACH(_, CAT, UNDERSCORE_TYPE_CAT, ## __VA_ARGS__)) + +#define GENERATE_METHOD_IDENTIFIER(...) RX_CAT2(swizzle, RX_FOREACH(_, CAT, UNDERSCORE_TYPE_CAT, ## __VA_ARGS__)) + +#define GENERATE_OBSERVE_METHOD_DECLARATION(...) \ + -(BOOL)GENERATE_METHOD_IDENTIFIER(__VA_ARGS__):(Class __nonnull)class \ + selector:(SEL)selector \ + error:(NSErrorParam)error { \ + + +#define BUILD_EXAMPLE_METHOD(return_value, ...) \ + +(return_value)RX_CAT2(RX_CAT2(example_, return_value), RX_FOREACH(_, SEPARATE_BY_SPACE, EXAMPLE_PARAMETER, ## __VA_ARGS__)) {} + +#define BUILD_EXAMPLE_METHOD_SELECTOR(return_value, ...) \ + RX_CAT2(RX_CAT2(example_, return_value), RX_FOREACH(_, SEPARATE_BY_SPACE, SELECTOR_PART, ## __VA_ARGS__)) + +#define SWIZZLE_OBSERVE_METHOD_DEFINITIONS(return_value, ...) \ + BUILD_EXAMPLE_METHOD(return_value, ## __VA_ARGS__) \ + SWIZZLE_METHOD(return_value, GENERATE_OBSERVE_METHOD_DECLARATION(return_value, ## __VA_ARGS__), OBSERVE_BODY, OBSERVE_INVOKED_BODY, ## __VA_ARGS__) \ + +#define SWIZZLE_OBSERVE_METHOD_BODY(return_value, ...) \ + __unused SEL GENERATE_SELECTOR_IDENTIFIER(return_value, ## __VA_ARGS__) = @selector(BUILD_EXAMPLE_METHOD_SELECTOR(return_value, ## __VA_ARGS__)); \ + [self registerOptimizedObserver:^BOOL(RXObjCRuntime * __nonnull self, Class __nonnull class, \ + SEL __nonnull selector, NSErrorParam error) { \ + return [self GENERATE_METHOD_IDENTIFIER(return_value, ## __VA_ARGS__):class selector:selector error:error]; \ + } encodedAs:GENERATE_SELECTOR_IDENTIFIER(return_value, ## __VA_ARGS__)]; \ + +// infrastructure method + +#define NO_BODY(...) + +#define SWIZZLE_INFRASTRUCTURE_METHOD(return_value, method_name, parameters, method_selector, body, ...) \ + SWIZZLE_METHOD(return_value, -(BOOL)method_name:(Class __nonnull)class parameters error:(NSErrorParam)error \ + { \ + SEL selector = method_selector; , body, NO_BODY, __VA_ARGS__) \ + + +// common base + +#define SWIZZLE_METHOD(return_value, method_prototype, body, invoked_body, ...) \ +method_prototype \ + __unused SEL rxSelector = RX_selector(selector); \ + IMP (^newImplementationGenerator)(void) = ^() { \ + __block IMP thisIMP = nil; \ + id newImplementation = ^return_value(__unsafe_unretained id self DECLARE_ARGUMENTS(__VA_ARGS__)) { \ + body(__VA_ARGS__) \ + \ + struct objc_super superInfo = { \ + .receiver = self, \ + .super_class = class_getSuperclass(class) \ + }; \ + \ + return_value (*msgSend)(struct objc_super *, SEL DECLARE_ARGUMENTS(__VA_ARGS__)) \ + = (__typeof__(msgSend))objc_msgSendSuper; \ + @try { \ + return msgSend(&superInfo, selector ARGUMENTS(__VA_ARGS__)); \ + } \ + @finally { invoked_body(__VA_ARGS__) } \ + }; \ + \ + thisIMP = imp_implementationWithBlock(newImplementation); \ + return thisIMP; \ + }; \ + \ + IMP (^replacementImplementationGenerator)(IMP) = ^(IMP originalImplementation) { \ + __block return_value (*originalImplementationTyped)(__unsafe_unretained id, SEL DECLARE_ARGUMENTS(__VA_ARGS__) ) \ + = (__typeof__(originalImplementationTyped))(originalImplementation); \ + \ + __block IMP thisIMP = nil; \ + id implementationReplacement = ^return_value(__unsafe_unretained id self DECLARE_ARGUMENTS(__VA_ARGS__) ) { \ + body(__VA_ARGS__) \ + @try { \ + return originalImplementationTyped(self, selector ARGUMENTS(__VA_ARGS__)); \ + } \ + @finally { invoked_body(__VA_ARGS__) } \ + }; \ + \ + thisIMP = imp_implementationWithBlock(implementationReplacement); \ + return thisIMP; \ + }; \ + \ + return [self ensureSwizzledSelector:selector \ + ofClass:class \ + newImplementationGenerator:newImplementationGenerator \ + replacementImplementationGenerator:replacementImplementationGenerator \ + error:error]; \ + } \ + + +@interface RXObjCRuntime (InfrastructureMethods) +@end + +// MARK: Infrastructure Methods + +@implementation RXObjCRuntime (InfrastructureMethods) + +SWIZZLE_INFRASTRUCTURE_METHOD( + void, + swizzleForwardInvocation, + , + @selector(forwardInvocation:), + FORWARD_BODY, + NSInvocationRef +) +SWIZZLE_INFRASTRUCTURE_METHOD( + BOOL, + swizzleRespondsToSelector, + , + @selector(respondsToSelector:), + RESPONDS_TO_SELECTOR_BODY, + SEL +) +SWIZZLE_INFRASTRUCTURE_METHOD( + Class __nonnull, + swizzleClass, + toActAs:(Class)actAsClass, + @selector(class), + CLASS_BODY +) +SWIZZLE_INFRASTRUCTURE_METHOD( + NSMethodSignatureRef, + swizzleMethodSignatureForSelector, + , + @selector(methodSignatureForSelector:), + METHOD_SIGNATURE_FOR_SELECTOR_BODY, + SEL +) +SWIZZLE_INFRASTRUCTURE_METHOD( + void, + swizzleDeallocating, + , + deallocSelector, + DEALLOCATING_BODY +) + +@end + +// MARK: Optimized intercepting methods for specific combination of parameter types + +@interface RXObjCRuntime (swizzle) + +@end + +@implementation RXObjCRuntime(swizzle) + +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void) + +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, char) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, short) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, int) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, long) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, rx_uchar) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, rx_ushort) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, rx_uint) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, rx_ulong) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, rx_block) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, float) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, double) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, SEL) + +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, id) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, char) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, short) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, int) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, long) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, rx_uchar) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, rx_ushort) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, rx_uint) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, rx_ulong) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, rx_block) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, float) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, double) +SWIZZLE_OBSERVE_METHOD_DEFINITIONS(void, id, SEL) + ++(void)load { + SWIZZLE_OBSERVE_METHOD_BODY(void) + + SWIZZLE_OBSERVE_METHOD_BODY(void, id) + SWIZZLE_OBSERVE_METHOD_BODY(void, char) + SWIZZLE_OBSERVE_METHOD_BODY(void, short) + SWIZZLE_OBSERVE_METHOD_BODY(void, int) + SWIZZLE_OBSERVE_METHOD_BODY(void, long) + SWIZZLE_OBSERVE_METHOD_BODY(void, rx_uchar) + SWIZZLE_OBSERVE_METHOD_BODY(void, rx_ushort) + SWIZZLE_OBSERVE_METHOD_BODY(void, rx_uint) + SWIZZLE_OBSERVE_METHOD_BODY(void, rx_ulong) + SWIZZLE_OBSERVE_METHOD_BODY(void, rx_block) + SWIZZLE_OBSERVE_METHOD_BODY(void, float) + SWIZZLE_OBSERVE_METHOD_BODY(void, double) + SWIZZLE_OBSERVE_METHOD_BODY(void, SEL) + + SWIZZLE_OBSERVE_METHOD_BODY(void, id, id) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, char) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, short) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, int) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, long) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, rx_uchar) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, rx_ushort) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, rx_uint) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, rx_ulong) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, rx_block) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, float) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, double) + SWIZZLE_OBSERVE_METHOD_BODY(void, id, SEL) +} + +@end + +// MARK: RXObjCRuntime + +@implementation RXObjCRuntime + +static RXObjCRuntime *_instance = nil; +static NSMutableDictionary *optimizedObserversByMethodEncoding = nil; + ++(RXObjCRuntime*)instance { + return _instance; +} + ++(void)initialize { + _instance = [[RXObjCRuntime alloc] init]; + defaultTypeID = CFGetTypeID((CFTypeRef)RXObjCRuntime.class); // just need a reference of some object not from CF + deallocSelector = NSSelectorFromString(@"dealloc"); + NSAssert(_instance != nil, @"Failed to initialize swizzling"); +} + +-(instancetype)init { + self = [super init]; + if (!self) return nil; + + self.classesThatSupportObservingByForwarding = [NSMutableSet set]; + self.forwardedSelectorsByClass = [NSMutableDictionary dictionary]; + + self.dynamicSubclassByRealClass = [NSMutableDictionary dictionary]; + self.interceptorIMPbySelectorsByClass = [NSMutableDictionary dictionary]; + + pthread_mutexattr_t lock_attr; + pthread_mutexattr_init(&lock_attr); + pthread_mutexattr_settype(&lock_attr, PTHREAD_MUTEX_RECURSIVE); + pthread_mutex_init(&_lock, &lock_attr); + pthread_mutexattr_destroy(&lock_attr); + + return self; +} + +-(void)performLocked:(void (^)(RXObjCRuntime* __nonnull))action { + pthread_mutex_lock(&_lock); + action(self); + pthread_mutex_unlock(&_lock); +} + ++(void)registerOptimizedObserver:(RXInterceptWithOptimizedObserver)registration encodedAs:(SEL)selector { + Method exampleEncodingMethod = class_getClassMethod(self, selector); + ALWAYS(exampleEncodingMethod != nil, @"Example encoding method is nil."); + + NSString *methodEncoding = RX_method_encoding(exampleEncodingMethod); + + if (optimizedObserversByMethodEncoding == nil) { + optimizedObserversByMethodEncoding = [NSMutableDictionary dictionary]; + } + + DLOG(@"Added optimized method: %@ (%@)", methodEncoding, NSStringFromSelector(selector)); + ALWAYS(optimizedObserversByMethodEncoding[methodEncoding] == nil, @"Optimized observer already registered") + optimizedObserversByMethodEncoding[methodEncoding] = registration; +} + +/** + This is the main entry point for observing messages sent to arbitrary objects. + */ +-(IMP __nullable)ensurePrepared:(id __nonnull)target forObserving:(SEL __nonnull)selector error:(NSErrorParam)error { + Method instanceMethod = class_getInstanceMethod([target class], selector); + if (instanceMethod == nil) { + RX_THROW_ERROR([NSError errorWithDomain:RXObjCRuntimeErrorDomain + code:RXObjCRuntimeErrorSelectorNotImplemented + userInfo:nil], nil); + } + + if (selector == @selector(class) + || selector == @selector(forwardingTargetForSelector:) + || selector == @selector(methodSignatureForSelector:) + || selector == @selector(respondsToSelector:)) { + RX_THROW_ERROR([NSError errorWithDomain:RXObjCRuntimeErrorDomain + code:RXObjCRuntimeErrorObservingPerformanceSensitiveMessages + userInfo:nil], nil); + } + + // For `dealloc` message, original implementation will be swizzled. + // This is a special case because observing `dealloc` message is performed when `observeWeakly` is used. + // + // Some toll free bridged classes don't handle `object_setClass` well and cause crashes. + // + // To make `deallocating` as robust as possible, original implementation will be replaced. + if (selector == deallocSelector) { + Class __nonnull deallocSwizzingTarget = [target class]; + IMP interceptorIMPForSelector = [self interceptorImplementationForSelector:selector forClass:deallocSwizzingTarget]; + if (interceptorIMPForSelector != nil) { + return interceptorIMPForSelector; + } + + if (![self swizzleDeallocating:deallocSwizzingTarget error:error]) { + return nil; + } + + interceptorIMPForSelector = [self interceptorImplementationForSelector:selector forClass:deallocSwizzingTarget]; + if (interceptorIMPForSelector != nil) { + return interceptorIMPForSelector; + } + } + else { + Class __nullable swizzlingImplementorClass = [self prepareTargetClassForObserving:target error:error]; + if (swizzlingImplementorClass == nil) { + return nil; + } + + NSString *methodEncoding = RX_method_encoding(instanceMethod); + RXInterceptWithOptimizedObserver optimizedIntercept = optimizedObserversByMethodEncoding[methodEncoding]; + + if (!RX_method_has_supported_return_type(instanceMethod)) { + RX_THROW_ERROR([NSError errorWithDomain:RXObjCRuntimeErrorDomain + code:RXObjCRuntimeErrorObservingMessagesWithUnsupportedReturnType + userInfo:nil], nil); + } + + // optimized interception method + if (optimizedIntercept != nil) { + IMP interceptorIMPForSelector = [self interceptorImplementationForSelector:selector forClass:swizzlingImplementorClass]; + if (interceptorIMPForSelector != nil) { + return interceptorIMPForSelector; + } + + if (!optimizedIntercept(self, swizzlingImplementorClass, selector, error)) { + return nil; + } + + interceptorIMPForSelector = [self interceptorImplementationForSelector:selector forClass:swizzlingImplementorClass]; + if (interceptorIMPForSelector != nil) { + return interceptorIMPForSelector; + } + } + // default fallback to observing by forwarding messages + else { + if ([self forwardingSelector:selector forClass:swizzlingImplementorClass]) { + return RX_default_target_implementation(); + } + + if (![self observeByForwardingMessages:swizzlingImplementorClass + selector:selector + target:target + error:error]) { + return nil; + } + + if ([self forwardingSelector:selector forClass:swizzlingImplementorClass]) { + return RX_default_target_implementation(); + } + } + } + + RX_THROW_ERROR([NSError errorWithDomain:RXObjCRuntimeErrorDomain + code:RXObjCRuntimeErrorUnknown + userInfo:nil], nil); +} + +-(Class __nullable)prepareTargetClassForObserving:(id __nonnull)target error:(NSErrorParam)error { + Class swizzlingClass = objc_getAssociatedObject(target, &RxSwizzlingTargetClassKey); + if (swizzlingClass != nil) { + return swizzlingClass; + } + + Class __nonnull wannaBeClass = [target class]; + /** + Core Foundation classes are usually toll free bridged. Those classes crash the program in case + `object_setClass` is performed on them. + + There is a possibility to just swizzle methods on original object, but since those won't be usual use + cases for this library, then an error will just be reported for now. + */ + BOOL isThisTollFreeFoundationClass = CFGetTypeID((CFTypeRef)target) != defaultTypeID; + + if (isThisTollFreeFoundationClass) { + RX_THROW_ERROR([NSError errorWithDomain:RXObjCRuntimeErrorDomain + code:RXObjCRuntimeErrorCantInterceptCoreFoundationTollFreeBridgedObjects + userInfo:nil], nil); + } + + /** + If the object is reporting a different class then what it's real class, that means that there is probably + already some interception mechanism in place or something weird is happening. + + Most common case when this would happen is when using KVO (`observe`) and `sentMessage`. + + This error is easily resolved by just using `sentMessage` observing before `observe`. + + The reason why other way around could create issues is because KVO will unregister it's interceptor + class and restore original class. Unfortunately that will happen no matter was there another interceptor + subclass registered in hierarchy or not. + + Failure scenario: + * KVO sets class to be `__KVO__OriginalClass` (subclass of `OriginalClass`) + * `sentMessage` sets object class to be `_RX_namespace___KVO__OriginalClass` (subclass of `__KVO__OriginalClass`) + * then unobserving with KVO will restore class to be `OriginalClass` -> failure point + + The reason why changing order of observing works is because any interception method should return + object's original real class (if that doesn't happen then it's really easy to argue that's a bug + in that other library). + + This library won't remove registered interceptor even if there aren't any observers left because + it's highly unlikely it would have any benefit in real world use cases, and it's even more + dangerous. + */ + if ([target class] != object_getClass(target)) { + BOOL isKVO = [target respondsToSelector:NSSelectorFromString(@"_isKVOA")]; + + RX_THROW_ERROR([NSError errorWithDomain:RXObjCRuntimeErrorDomain + code:RXObjCRuntimeErrorObjectMessagesAlreadyBeingIntercepted + userInfo:@{ + RXObjCRuntimeErrorIsKVOKey : @(isKVO) + }], nil); + } + + Class __nullable dynamicFakeSubclass = [self ensureHasDynamicFakeSubclass:wannaBeClass error:error]; + + if (dynamicFakeSubclass == nil) { + return nil; + } + + Class previousClass = object_setClass(target, dynamicFakeSubclass); + if (previousClass != wannaBeClass) { + THREADING_HAZARD(wannaBeClass); + RX_THROW_ERROR([NSError errorWithDomain:RXObjCRuntimeErrorDomain + code:RXObjCRuntimeErrorThreadingCollisionWithOtherInterceptionMechanism + userInfo:nil], nil); + } + + objc_setAssociatedObject(target, &RxSwizzlingTargetClassKey, dynamicFakeSubclass, OBJC_ASSOCIATION_RETAIN_NONATOMIC); + return dynamicFakeSubclass; +} + + +-(BOOL)forwardingSelector:(SEL)selector forClass:(Class __nonnull)class { + return [self.forwardedSelectorsByClass[CLASS_VALUE(class)] containsObject:SEL_VALUE(selector)]; +} + +-(void)registerForwardedSelector:(SEL)selector forClass:(Class __nonnull)class { + NSValue *classValue = CLASS_VALUE(class); + + NSMutableSet *forwardedSelectors = self.forwardedSelectorsByClass[classValue]; + + if (forwardedSelectors == nil) { + forwardedSelectors = [NSMutableSet set]; + self.forwardedSelectorsByClass[classValue] = forwardedSelectors; + } + + [forwardedSelectors addObject:SEL_VALUE(selector)]; +} + +-(BOOL)observeByForwardingMessages:(Class __nonnull)swizzlingImplementorClass + selector:(SEL)selector + target:(id __nonnull)target + error:(NSErrorParam)error { + if (![self ensureForwardingMethodsAreSwizzled:swizzlingImplementorClass error:error]) { + return NO; + } + + ALWAYS(![self forwardingSelector:selector forClass:swizzlingImplementorClass], @"Already observing selector for class"); + +#if TRACE_RESOURCES + atomic_fetch_add(&numberOfForwardedMethods, 1); +#endif + SEL rxSelector = RX_selector(selector); + + Method instanceMethod = class_getInstanceMethod(swizzlingImplementorClass, selector); + ALWAYS(instanceMethod != nil, @"Instance method is nil"); + + const char* methodEncoding = method_getTypeEncoding(instanceMethod); + ALWAYS(methodEncoding != nil, @"Method encoding is nil."); + NSMethodSignature *methodSignature = [NSMethodSignature signatureWithObjCTypes:methodEncoding]; + ALWAYS(methodSignature != nil, @"Method signature is invalid."); + + IMP implementation = method_getImplementation(instanceMethod); + + if (implementation == nil) { + RX_THROW_ERROR([NSError errorWithDomain:RXObjCRuntimeErrorDomain + code:RXObjCRuntimeErrorSelectorNotImplemented + userInfo:nil], NO); + } + + if (!class_addMethod(swizzlingImplementorClass, rxSelector, implementation, methodEncoding)) { + RX_THROW_ERROR([NSError errorWithDomain:RXObjCRuntimeErrorDomain + code:RXObjCRuntimeErrorSavingOriginalForwardingMethodFailed + userInfo:nil], NO); + } + + if (!class_addMethod(swizzlingImplementorClass, selector, _objc_msgForward, methodEncoding)) { + if (implementation != method_setImplementation(instanceMethod, _objc_msgForward)) { + THREADING_HAZARD(swizzlingImplementorClass); + RX_THROW_ERROR([NSError errorWithDomain:RXObjCRuntimeErrorDomain + code:RXObjCRuntimeErrorReplacingMethodWithForwardingImplementation + userInfo:nil], NO); + } + } + + DLOG(@"Rx uses forwarding to observe `%@` for `%@`.", NSStringFromSelector(selector), swizzlingImplementorClass); + [self registerForwardedSelector:selector forClass:swizzlingImplementorClass]; + + return YES; +} + +/** + If object don't have some weird behavior, claims it's the same class that runtime shows, + then dynamic subclass is created (only this instance will have performance hit). + + In case something weird is detected, then original base class is being swizzled and all instances + will have somewhat reduced performance. + + This is especially handy optimization for weak KVO. Nobody will swizzle for example `NSString`, + but to know when instance of a `NSString` was deallocated, performance hit will be only felt on a + single instance of `NSString`, not all instances of `NSString`s. + */ +-(Class __nullable)ensureHasDynamicFakeSubclass:(Class __nonnull)class error:(NSErrorParam)error { + Class dynamicFakeSubclass = self.dynamicSubclassByRealClass[CLASS_VALUE(class)]; + if (dynamicFakeSubclass != nil) { + return dynamicFakeSubclass; + } + + NSString *dynamicFakeSubclassName = [RX_PREFIX stringByAppendingString:NSStringFromClass(class)]; + const char *dynamicFakeSubclassNameRaw = dynamicFakeSubclassName.UTF8String; + dynamicFakeSubclass = objc_allocateClassPair(class, dynamicFakeSubclassNameRaw, 0); + ALWAYS(dynamicFakeSubclass != nil, @"Class not generated"); + + if (![self swizzleClass:dynamicFakeSubclass toActAs:class error:error]) { + return nil; + } + + objc_registerClassPair(dynamicFakeSubclass); + + [self.dynamicSubclassByRealClass setObject:dynamicFakeSubclass forKey:CLASS_VALUE(class)]; + ALWAYS(self.dynamicSubclassByRealClass[CLASS_VALUE(class)] != nil, @"Class not registered"); + + return dynamicFakeSubclass; +} + +-(BOOL)ensureForwardingMethodsAreSwizzled:(Class __nonnull)class error:(NSErrorParam)error { + NSValue *classValue = CLASS_VALUE(class); + if ([self.classesThatSupportObservingByForwarding containsObject:classValue]) { + return YES; + } + + if (![self swizzleForwardInvocation:class error:error]) { return NO; } + if (![self swizzleMethodSignatureForSelector:class error:error]) { return NO; } + if (![self swizzleRespondsToSelector:class error:error]) { return NO; } + + [self.classesThatSupportObservingByForwarding addObject:classValue]; + + return YES; +} + +-(void)registerInterceptedSelector:(SEL)selector implementation:(IMP)implementation forClass:(Class)class { + NSValue * __nonnull classValue = CLASS_VALUE(class); + NSValue * __nonnull selectorValue = SEL_VALUE(selector); + + NSMutableDictionary *swizzledIMPBySelectorsForClass = self.interceptorIMPbySelectorsByClass[classValue]; + + if (swizzledIMPBySelectorsForClass == nil) { + swizzledIMPBySelectorsForClass = [NSMutableDictionary dictionary]; + self.interceptorIMPbySelectorsByClass[classValue] = swizzledIMPBySelectorsForClass; + } + + swizzledIMPBySelectorsForClass[selectorValue] = IMP_VALUE(implementation); + + ALWAYS([self interceptorImplementationForSelector:selector forClass:class] != nil, @"Class should have been swizzled"); +} + +-(IMP)interceptorImplementationForSelector:(SEL)selector forClass:(Class)class { + NSValue * __nonnull classValue = CLASS_VALUE(class); + NSValue * __nonnull selectorValue = SEL_VALUE(selector); + + NSMutableDictionary *swizzledIMPBySelectorForClass = self.interceptorIMPbySelectorsByClass[classValue]; + + NSValue *impValue = swizzledIMPBySelectorForClass[selectorValue]; + return impValue.pointerValue; +} + +-(BOOL)ensureSwizzledSelector:(SEL __nonnull)selector + ofClass:(Class __nonnull)class + newImplementationGenerator:(IMP(^)(void))newImplementationGenerator +replacementImplementationGenerator:(IMP (^)(IMP originalImplementation))replacementImplementationGenerator + error:(NSErrorParam)error { + if ([self interceptorImplementationForSelector:selector forClass:class] != nil) { + DLOG(@"Trying to register same intercept at least once, this sounds like a possible bug"); + return YES; + } + +#if TRACE_RESOURCES + atomic_fetch_add(&numberOInterceptedMethods, 1); +#endif + + DLOG(@"Rx is swizzling `%@` for `%@`", NSStringFromSelector(selector), class); + + Method existingMethod = class_getInstanceMethod(class, selector); + ALWAYS(existingMethod != nil, @"Method doesn't exist"); + + const char *encoding = method_getTypeEncoding(existingMethod); + ALWAYS(encoding != nil, @"Encoding is nil"); + + IMP newImplementation = newImplementationGenerator(); + + if (class_addMethod(class, selector, newImplementation, encoding)) { + // new method added, job done + [self registerInterceptedSelector:selector implementation:newImplementation forClass:class]; + + return YES; + } + + imp_removeBlock(newImplementation); + + // if add fails, that means that method already exists on targetClass + Method existingMethodOnTargetClass = existingMethod; + + IMP originalImplementation = method_getImplementation(existingMethodOnTargetClass); + ALWAYS(originalImplementation != nil, @"Method must exist."); + IMP implementationReplacementIMP = replacementImplementationGenerator(originalImplementation); + ALWAYS(implementationReplacementIMP != nil, @"Method must exist."); + IMP originalImplementationAfterChange = method_setImplementation(existingMethodOnTargetClass, implementationReplacementIMP); + ALWAYS(originalImplementation != nil, @"Method must exist."); + + // If method replacing failed, who knows what happened, better not trying again, otherwise program can get + // corrupted. + [self registerInterceptedSelector:selector implementation:implementationReplacementIMP forClass:class]; + + // ¯\_(ツ)_/¯ + if (originalImplementationAfterChange != originalImplementation) { + THREADING_HAZARD(class); + return NO; + } + + return YES; +} + +@end + +#if TRACE_RESOURCES + +NSInteger RX_number_of_dynamic_subclasses(void) { + __block NSInteger count = 0; + [[RXObjCRuntime instance] performLocked:^(RXObjCRuntime * __nonnull self) { + count = self.dynamicSubclassByRealClass.count; + }]; + + return count; +} + +NSInteger RX_number_of_forwarding_enabled_classes(void) { + __block NSInteger count = 0; + [[RXObjCRuntime instance] performLocked:^(RXObjCRuntime * __nonnull self) { + count = self.classesThatSupportObservingByForwarding.count; + }]; + + return count; +} + +NSInteger RX_number_of_intercepting_classes(void) { + __block NSInteger count = 0; + [[RXObjCRuntime instance] performLocked:^(RXObjCRuntime * __nonnull self) { + count = self.interceptorIMPbySelectorsByClass.count; + }]; + + return count; +} + +NSInteger RX_number_of_forwarded_methods(void) { + return numberOfForwardedMethods; +} + +NSInteger RX_number_of_swizzled_methods(void) { + return numberOInterceptedMethods; +} + +#endif + +#endif diff --git a/Pods/RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h b/Pods/RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h new file mode 100644 index 00000000..8cf762ec --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h @@ -0,0 +1,19 @@ +// +// RxCocoaRuntime.h +// RxCocoa +// +// Created by Krunoslav Zaher on 2/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#import +#import "_RX.h" +#import "_RXDelegateProxy.h" +#import "_RXKVOObserver.h" +#import "_RXObjCRuntime.h" + +//! Project version number for RxCocoa. +FOUNDATION_EXPORT double RxCocoaVersionNumber; + +//! Project version string for RxCocoa. +FOUNDATION_EXPORT const unsigned char RxCocoaVersionString[]; diff --git a/Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h b/Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h new file mode 100644 index 00000000..b868ac97 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h @@ -0,0 +1,93 @@ +// +// _RX.h +// RxCocoa +// +// Created by Krunoslav Zaher on 7/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#import +#import + +/** + ################################################################################ + This file is part of RX private API + ################################################################################ + */ + +#if TRACE_RESOURCES >= 2 +# define DLOG(...) NSLog(__VA_ARGS__) +#else +# define DLOG(...) +#endif + +#if DEBUG +# define ABORT_IN_DEBUG abort(); +#else +# define ABORT_IN_DEBUG +#endif + + +#define SEL_VALUE(x) [NSValue valueWithPointer:(x)] +#define CLASS_VALUE(x) [NSValue valueWithNonretainedObject:(x)] +#define IMP_VALUE(x) [NSValue valueWithPointer:(x)] + +/** + Checks that the local `error` instance exists before assigning it's value by reference. + This macro exists to work around static analysis warnings — `NSError` is always assumed to be `nullable`, even though we explicitly define the method parameter as `nonnull`. See http://www.openradar.me/21766176 for more details. + */ +#define RX_THROW_ERROR(errorValue, returnValue) if (error != nil) { *error = (errorValue); } return (returnValue); + +#define RX_CAT2(_1, _2) _RX_CAT2(_1, _2) +#define _RX_CAT2(_1, _2) _1 ## _2 + +#define RX_ELEMENT_AT(n, ...) RX_CAT2(_RX_ELEMENT_AT_, n)(__VA_ARGS__) +#define _RX_ELEMENT_AT_0(x, ...) x +#define _RX_ELEMENT_AT_1(_0, x, ...) x +#define _RX_ELEMENT_AT_2(_0, _1, x, ...) x +#define _RX_ELEMENT_AT_3(_0, _1, _2, x, ...) x +#define _RX_ELEMENT_AT_4(_0, _1, _2, _3, x, ...) x +#define _RX_ELEMENT_AT_5(_0, _1, _2, _3, _4, x, ...) x +#define _RX_ELEMENT_AT_6(_0, _1, _2, _3, _4, _5, x, ...) x + +#define RX_COUNT(...) RX_ELEMENT_AT(6, ## __VA_ARGS__, 6, 5, 4, 3, 2, 1, 0) +#define RX_EMPTY(...) RX_ELEMENT_AT(6, ## __VA_ARGS__, 0, 0, 0, 0, 0, 0, 1) + +/** + #define SUM(context, index, head, tail) head + tail + #define MAP(context, index, element) (context)[index] * (element) + + RX_FOR(numbers, SUM, MAP, b0, b1, b2); + + (numbers)[0] * (b0) + (numbers)[1] * (b1) + (numbers[2]) * (b2) + */ + +#define RX_FOREACH(context, concat, map, ...) RX_FOR_MAX(RX_COUNT(__VA_ARGS__), _RX_FOREACH_CONCAT, _RX_FOREACH_MAP, context, concat, map, __VA_ARGS__) +#define _RX_FOREACH_CONCAT(index, head, tail, context, concat, map, ...) concat(context, index, head, tail) +#define _RX_FOREACH_MAP(index, context, concat, map, ...) map(context, index, RX_ELEMENT_AT(index, __VA_ARGS__)) + +/** + #define MAP(context, index, item) (context)[index] * (item) + + RX_FOR_COMMA(numbers, MAP, b0, b1); + + ,(numbers)[0] * b0, (numbers)[1] * b1 + */ +#define RX_FOREACH_COMMA(context, map, ...) RX_CAT2(_RX_FOREACH_COMMA_EMPTY_, RX_EMPTY(__VA_ARGS__))(context, map, ## __VA_ARGS__) +#define _RX_FOREACH_COMMA_EMPTY_1(context, map, ...) +#define _RX_FOREACH_COMMA_EMPTY_0(context, map, ...) , RX_FOR_MAX(RX_COUNT(__VA_ARGS__), _RX_FOREACH_COMMA_CONCAT, _RX_FOREACH_COMMA_MAP, context, map, __VA_ARGS__) +#define _RX_FOREACH_COMMA_CONCAT(index, head, tail, context, map, ...) head, tail +#define _RX_FOREACH_COMMA_MAP(index, context, map, ...) map(context, index, RX_ELEMENT_AT(index, __VA_ARGS__)) + +// rx for + +#define RX_FOR_MAX(max, concat, map, ...) RX_CAT2(RX_FOR_, max)(concat, map, ## __VA_ARGS__) + +#define RX_FOR_0(concat, map, ...) +#define RX_FOR_1(concat, map, ...) map(0, __VA_ARGS__) +#define RX_FOR_2(concat, map, ...) concat(1, RX_FOR_1(concat, map, ## __VA_ARGS__), map(1, __VA_ARGS__), __VA_ARGS__) +#define RX_FOR_3(concat, map, ...) concat(2, RX_FOR_2(concat, map, ## __VA_ARGS__), map(2, __VA_ARGS__), __VA_ARGS__) +#define RX_FOR_4(concat, map, ...) concat(3, RX_FOR_3(concat, map, ## __VA_ARGS__), map(3, __VA_ARGS__), __VA_ARGS__) +#define RX_FOR_5(concat, map, ...) concat(4, RX_FOR_4(concat, map, ## __VA_ARGS__), map(4, __VA_ARGS__), __VA_ARGS__) +#define RX_FOR_6(concat, map, ...) concat(5, RX_FOR_5(concat, map, ## __VA_ARGS__), map(5, __VA_ARGS__), __VA_ARGS__) + diff --git a/Pods/RxCocoa/RxCocoa/Runtime/include/_RXDelegateProxy.h b/Pods/RxCocoa/RxCocoa/Runtime/include/_RXDelegateProxy.h new file mode 100644 index 00000000..e1cc207d --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Runtime/include/_RXDelegateProxy.h @@ -0,0 +1,27 @@ +// +// _RXDelegateProxy.h +// RxCocoa +// +// Created by Krunoslav Zaher on 7/4/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface _RXDelegateProxy : NSObject + +@property (nonatomic, weak, readonly) id _forwardToDelegate; + +-(void)_setForwardToDelegate:(id __nullable)forwardToDelegate retainDelegate:(BOOL)retainDelegate NS_SWIFT_NAME(_setForwardToDelegate(_:retainDelegate:)) ; + +-(BOOL)hasWiredImplementationForSelector:(SEL)selector; +-(BOOL)voidDelegateMethodsContain:(SEL)selector; + +-(void)_sentMessage:(SEL)selector withArguments:(NSArray*)arguments; +-(void)_methodInvoked:(SEL)selector withArguments:(NSArray*)arguments; + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/RxCocoa/RxCocoa/Runtime/include/_RXKVOObserver.h b/Pods/RxCocoa/RxCocoa/Runtime/include/_RXKVOObserver.h new file mode 100644 index 00000000..adcfd0a3 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Runtime/include/_RXKVOObserver.h @@ -0,0 +1,28 @@ +// +// _RXKVOObserver.h +// RxCocoa +// +// Created by Krunoslav Zaher on 7/11/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#import + +/** + ################################################################################ + This file is part of RX private API + ################################################################################ + */ + +// Exists because if written in Swift, reading unowned is disabled during dealloc process +@interface _RXKVOObserver : NSObject + +-(instancetype)initWithTarget:(id)target + retainTarget:(BOOL)retainTarget + keyPath:(NSString*)keyPath + options:(NSKeyValueObservingOptions)options + callback:(void (^)(id))callback; + +-(void)dispose; + +@end diff --git a/Pods/RxCocoa/RxCocoa/Runtime/include/_RXObjCRuntime.h b/Pods/RxCocoa/RxCocoa/Runtime/include/_RXObjCRuntime.h new file mode 100644 index 00000000..bc6a76af --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Runtime/include/_RXObjCRuntime.h @@ -0,0 +1,102 @@ +// +// _RXObjCRuntime.h +// RxCocoa +// +// Created by Krunoslav Zaher on 7/11/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#import + +#if !DISABLE_SWIZZLING + +/** + ################################################################################ + This file is part of RX private API + ################################################################################ + */ + +/** + This flag controls `RELEASE` configuration behavior in case race was detecting while modifying + ObjC runtime. + + In case this value is set to `YES`, after runtime race is detected, `abort()` will be called. + Otherwise, only error will be reported using normal error reporting mechanism. + + In `DEBUG` mode `abort` will be always called in case race is detected. + + Races can't happen in case this is the only library modifying ObjC runtime, but in case there are multiple libraries + changing ObjC runtime, race conditions can occur because there is no way to synchronize multiple libraries unaware of + each other. + + To help remedy this situation this library will use `synchronized` on target object and it's meta-class, but + there aren't any guarantees of how other libraries will behave. + + Default value is `NO`. + + */ +extern BOOL RXAbortOnThreadingHazard; + +/// Error domain for RXObjCRuntime. +extern NSString * __nonnull const RXObjCRuntimeErrorDomain; + +/// `userInfo` key with additional information is interceptor probably KVO. +extern NSString * __nonnull const RXObjCRuntimeErrorIsKVOKey; + +typedef NS_ENUM(NSInteger, RXObjCRuntimeError) { + RXObjCRuntimeErrorUnknown = 1, + RXObjCRuntimeErrorObjectMessagesAlreadyBeingIntercepted = 2, + RXObjCRuntimeErrorSelectorNotImplemented = 3, + RXObjCRuntimeErrorCantInterceptCoreFoundationTollFreeBridgedObjects = 4, + RXObjCRuntimeErrorThreadingCollisionWithOtherInterceptionMechanism = 5, + RXObjCRuntimeErrorSavingOriginalForwardingMethodFailed = 6, + RXObjCRuntimeErrorReplacingMethodWithForwardingImplementation = 7, + RXObjCRuntimeErrorObservingPerformanceSensitiveMessages = 8, + RXObjCRuntimeErrorObservingMessagesWithUnsupportedReturnType = 9, +}; + +/// Transforms normal selector into a selector with RX prefix. +SEL _Nonnull RX_selector(SEL _Nonnull selector); + +/// Transforms selector into a unique pointer (because of Swift conversion rules) +void * __nonnull RX_reference_from_selector(SEL __nonnull selector); + +/// Protocol that interception observers must implement. +@protocol RXMessageSentObserver + +/// In case the same selector is being intercepted for a pair of base/sub classes, +/// this property will differentiate between interceptors that need to fire. +@property (nonatomic, assign, readonly) IMP __nonnull targetImplementation; + +-(void)messageSentWithArguments:(NSArray* __nonnull)arguments; +-(void)methodInvokedWithArguments:(NSArray* __nonnull)arguments; + +@end + +/// Protocol that deallocating observer must implement. +@protocol RXDeallocatingObserver + +/// In case the same selector is being intercepted for a pair of base/sub classes, +/// this property will differentiate between interceptors that need to fire. +@property (nonatomic, assign, readonly) IMP __nonnull targetImplementation; + +-(void)deallocating; + +@end + +/// Ensures interceptor is installed on target object. +IMP __nullable RX_ensure_observing(id __nonnull target, SEL __nonnull selector, NSError *__autoreleasing __nullable * __nullable error); + +#endif + +/// Extracts arguments for `invocation`. +NSArray * __nonnull RX_extract_arguments(NSInvocation * __nonnull invocation); + +/// Returns `YES` in case method has `void` return type. +BOOL RX_is_method_with_description_void(struct objc_method_description method); + +/// Returns `YES` in case methodSignature has `void` return type. +BOOL RX_is_method_signature_void(NSMethodSignature * __nonnull methodSignature); + +/// Default value for `RXInterceptionObserver.targetImplementation`. +IMP __nonnull RX_default_target_implementation(void); diff --git a/Pods/RxCocoa/RxCocoa/RxCocoa.h b/Pods/RxCocoa/RxCocoa/RxCocoa.h new file mode 100644 index 00000000..0bca1bc7 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/RxCocoa.h @@ -0,0 +1,19 @@ +// +// RxCocoa.h +// RxCocoa +// +// Created by Krunoslav Zaher on 2/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#import +#import +#import +#import +#import + +//! Project version number for RxCocoa. +FOUNDATION_EXPORT double RxCocoaVersionNumber; + +//! Project version string for RxCocoa. +FOUNDATION_EXPORT const unsigned char RxCocoaVersionString[]; diff --git a/Pods/RxCocoa/RxCocoa/RxCocoa.swift b/Pods/RxCocoa/RxCocoa/RxCocoa.swift new file mode 100644 index 00000000..5e569fc2 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/RxCocoa.swift @@ -0,0 +1,155 @@ +// +// RxCocoa.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 2/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +// Importing RxCocoa also imports RxRelay +@_exported import RxRelay + +import RxSwift +#if os(iOS) + import UIKit +#endif + +/// RxCocoa errors. +public enum RxCocoaError + : Swift.Error + , CustomDebugStringConvertible { + /// Unknown error has occurred. + case unknown + /// Invalid operation was attempted. + case invalidOperation(object: Any) + /// Items are not yet bound to user interface but have been requested. + case itemsNotYetBound(object: Any) + /// Invalid KVO Path. + case invalidPropertyName(object: Any, propertyName: String) + /// Invalid object on key path. + case invalidObjectOnKeyPath(object: Any, sourceObject: AnyObject, propertyName: String) + /// Error during swizzling. + case errorDuringSwizzling + /// Casting error. + case castingError(object: Any, targetType: Any.Type) +} + + +// MARK: Debug descriptions + +extension RxCocoaError { + /// A textual representation of `self`, suitable for debugging. + public var debugDescription: String { + switch self { + case .unknown: + return "Unknown error occurred." + case let .invalidOperation(object): + return "Invalid operation was attempted on `\(object)`." + case let .itemsNotYetBound(object): + return "Data source is set, but items are not yet bound to user interface for `\(object)`." + case let .invalidPropertyName(object, propertyName): + return "Object `\(object)` doesn't have a property named `\(propertyName)`." + case let .invalidObjectOnKeyPath(object, sourceObject, propertyName): + return "Unobservable object `\(object)` was observed as `\(propertyName)` of `\(sourceObject)`." + case .errorDuringSwizzling: + return "Error during swizzling." + case let .castingError(object, targetType): + return "Error casting `\(object)` to `\(targetType)`" + } + } +} + + + +// MARK: Error binding policies + +func bindingError(_ error: Swift.Error) { + let error = "Binding error: \(error)" +#if DEBUG + rxFatalError(error) +#else + print(error) +#endif +} + +/// Swift does not implement abstract methods. This method is used as a runtime check to ensure that methods which intended to be abstract (i.e., they should be implemented in subclasses) are not called directly on the superclass. +func rxAbstractMethod(message: String = "Abstract method", file: StaticString = #file, line: UInt = #line) -> Swift.Never { + rxFatalError(message, file: file, line: line) +} + +func rxFatalError(_ lastMessage: @autoclosure () -> String, file: StaticString = #file, line: UInt = #line) -> Swift.Never { + // The temptation to comment this line is great, but please don't, it's for your own good. The choice is yours. + fatalError(lastMessage(), file: file, line: line) +} + +func rxFatalErrorInDebug(_ lastMessage: @autoclosure () -> String, file: StaticString = #file, line: UInt = #line) { + #if DEBUG + fatalError(lastMessage(), file: file, line: line) + #else + print("\(file):\(line): \(lastMessage())") + #endif +} + +// MARK: casts or fatal error + +// workaround for Swift compiler bug, cheers compiler team :) +func castOptionalOrFatalError(_ value: Any?) -> T? { + if value == nil { + return nil + } + let v: T = castOrFatalError(value) + return v +} + +func castOrThrow(_ resultType: T.Type, _ object: Any) throws -> T { + guard let returnValue = object as? T else { + throw RxCocoaError.castingError(object: object, targetType: resultType) + } + + return returnValue +} + +func castOptionalOrThrow(_ resultType: T.Type, _ object: AnyObject) throws -> T? { + if NSNull().isEqual(object) { + return nil + } + + guard let returnValue = object as? T else { + throw RxCocoaError.castingError(object: object, targetType: resultType) + } + + return returnValue +} + +func castOrFatalError(_ value: AnyObject!, message: String) -> T { + let maybeResult: T? = value as? T + guard let result = maybeResult else { + rxFatalError(message) + } + + return result +} + +func castOrFatalError(_ value: Any!) -> T { + let maybeResult: T? = value as? T + guard let result = maybeResult else { + rxFatalError("Failure converting from \(String(describing: value)) to \(T.self)") + } + + return result +} + +// MARK: Error messages + +let dataSourceNotSet = "DataSource not set" +let delegateNotSet = "Delegate not set" + +// MARK: Shared with RxSwift + +func rxFatalError(_ lastMessage: String) -> Never { + // The temptation to comment this line is great, but please don't, it's for your own good. The choice is yours. + fatalError(lastMessage) +} + diff --git a/Pods/RxCocoa/RxCocoa/Traits/ControlEvent.swift b/Pods/RxCocoa/RxCocoa/Traits/ControlEvent.swift new file mode 100644 index 00000000..2efe863f --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/ControlEvent.swift @@ -0,0 +1,73 @@ +// +// ControlEvent.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 8/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// A protocol that extends `ControlEvent`. +public protocol ControlEventType : ObservableType { + + /// - returns: `ControlEvent` interface + func asControlEvent() -> ControlEvent +} + +/** + A trait for `Observable`/`ObservableType` that represents an event on a UI element. + + Properties: + + - it doesn’t send any initial value on subscription, + - it `Complete`s the sequence when the control deallocates, + - it never errors out + - it delivers events on `MainScheduler.instance`. + + **The implementation of `ControlEvent` will ensure that sequence of events is being subscribed on main scheduler + (`subscribe(on: ConcurrentMainScheduler.instance)` behavior).** + + **It is the implementor’s responsibility to make sure that all other properties enumerated above are satisfied.** + + **If they aren’t, using this trait will communicate wrong properties, and could potentially break someone’s code.** + + **If the `events` observable sequence passed into the initializer doesn’t satisfy all enumerated + properties, don’t use this trait.** +*/ +public struct ControlEvent : ControlEventType { + public typealias Element = PropertyType + + let events: Observable + + /// Initializes control event with a observable sequence that represents events. + /// + /// - parameter events: Observable sequence that represents events. + /// - returns: Control event created with a observable sequence of events. + public init(events: Ev) where Ev.Element == Element { + self.events = events.subscribe(on: ConcurrentMainScheduler.instance) + } + + /// Subscribes an observer to control events. + /// + /// - parameter observer: Observer to subscribe to events. + /// - returns: Disposable object that can be used to unsubscribe the observer from receiving control events. + public func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.events.subscribe(observer) + } + + /// - returns: `Observable` interface. + public func asObservable() -> Observable { + self.events + } + + /// - returns: `ControlEvent` interface. + public func asControlEvent() -> ControlEvent { + self + } + + /// - returns: `Infallible` interface. + public func asInfallible() -> Infallible { + asInfallible(onErrorFallbackTo: .empty()) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/ControlProperty.swift b/Pods/RxCocoa/RxCocoa/Traits/ControlProperty.swift new file mode 100644 index 00000000..5ff48ca4 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/ControlProperty.swift @@ -0,0 +1,118 @@ +// +// ControlProperty.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 8/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// Protocol that enables extension of `ControlProperty`. +public protocol ControlPropertyType : ObservableType, ObserverType { + + /// - returns: `ControlProperty` interface + func asControlProperty() -> ControlProperty +} + +/** + Trait for `Observable`/`ObservableType` that represents property of UI element. + + Sequence of values only represents initial control value and user initiated value changes. + Programmatic value changes won't be reported. + + It's properties are: + + - `shareReplay(1)` behavior + - it's stateful, upon subscription (calling subscribe) last element is immediately replayed if it was produced + - it will `Complete` sequence on control being deallocated + - it never errors out + - it delivers events on `MainScheduler.instance` + + **The implementation of `ControlProperty` will ensure that sequence of values is being subscribed on main scheduler + (`subscribe(on: ConcurrentMainScheduler.instance)` behavior).** + + **It is implementor's responsibility to make sure that that all other properties enumerated above are satisfied.** + + **If they aren't, then using this trait communicates wrong properties and could potentially break someone's code.** + + **In case `values` observable sequence that is being passed into initializer doesn't satisfy all enumerated + properties, please don't use this trait.** +*/ +public struct ControlProperty : ControlPropertyType { + public typealias Element = PropertyType + + let values: Observable + let valueSink: AnyObserver + + /// Initializes control property with a observable sequence that represents property values and observer that enables + /// binding values to property. + /// + /// - parameter values: Observable sequence that represents property values. + /// - parameter valueSink: Observer that enables binding values to control property. + /// - returns: Control property created with a observable sequence of values and an observer that enables binding values + /// to property. + public init(values: Values, valueSink: Sink) where Element == Values.Element, Element == Sink.Element { + self.values = values.subscribe(on: ConcurrentMainScheduler.instance) + self.valueSink = valueSink.asObserver() + } + + /// Subscribes an observer to control property values. + /// + /// - parameter observer: Observer to subscribe to property values. + /// - returns: Disposable object that can be used to unsubscribe the observer from receiving control property values. + public func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.values.subscribe(observer) + } + + /// `ControlEvent` of user initiated value changes. Every time user updates control value change event + /// will be emitted from `changed` event. + /// + /// Programmatic changes to control value won't be reported. + /// + /// It contains all control property values except for first one. + /// + /// The name only implies that sequence element will be generated once user changes a value and not that + /// adjacent sequence values need to be different (e.g. because of interaction between programmatic and user updates, + /// or for any other reason). + public var changed: ControlEvent { + ControlEvent(events: self.values.skip(1)) + } + + /// - returns: `Observable` interface. + public func asObservable() -> Observable { + self.values + } + + /// - returns: `ControlProperty` interface. + public func asControlProperty() -> ControlProperty { + self + } + + /// Binds event to user interface. + /// + /// - In case next element is received, it is being set to control value. + /// - In case error is received, DEBUG builds raise fatal error, RELEASE builds log event to standard output. + /// - In case sequence completes, nothing happens. + public func on(_ event: Event) { + switch event { + case .error(let error): + bindingError(error) + case .next: + self.valueSink.on(event) + case .completed: + self.valueSink.on(event) + } + } +} + +extension ControlPropertyType where Element == String? { + /// Transforms control property of type `String?` into control property of type `String`. + public var orEmpty: ControlProperty { + let original: ControlProperty = self.asControlProperty() + + let values: Observable = original.values.map { $0 ?? "" } + let valueSink: AnyObserver = original.valueSink.mapObserver { $0 } + return ControlProperty(values: values, valueSink: valueSink) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift b/Pods/RxCocoa/RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift new file mode 100644 index 00000000..76d960f0 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift @@ -0,0 +1,21 @@ +// +// BehaviorRelay+Driver.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 10/7/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +import RxSwift +import RxRelay + +extension BehaviorRelay { + /// Converts `BehaviorRelay` to `Driver`. + /// + /// - returns: Observable sequence. + public func asDriver() -> Driver { + let source = self.asObservable() + .observe(on:DriverSharingStrategy.scheduler) + return SharedSequence(source) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/Driver/ControlEvent+Driver.swift b/Pods/RxCocoa/RxCocoa/Traits/Driver/ControlEvent+Driver.swift new file mode 100644 index 00000000..b59c7533 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Driver/ControlEvent+Driver.swift @@ -0,0 +1,24 @@ +// +// ControlEvent+Driver.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 9/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension ControlEvent { + /// Converts `ControlEvent` to `Driver` trait. + /// + /// `ControlEvent` already can't fail, so no special case needs to be handled. + public func asDriver() -> Driver { + return self.asDriver { _ -> Driver in + #if DEBUG + rxFatalError("Somehow driver received error from a source that shouldn't fail.") + #else + return Driver.empty() + #endif + } + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/Driver/ControlProperty+Driver.swift b/Pods/RxCocoa/RxCocoa/Traits/Driver/ControlProperty+Driver.swift new file mode 100644 index 00000000..79045297 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Driver/ControlProperty+Driver.swift @@ -0,0 +1,24 @@ +// +// ControlProperty+Driver.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 9/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension ControlProperty { + /// Converts `ControlProperty` to `Driver` trait. + /// + /// `ControlProperty` already can't fail, so no special case needs to be handled. + public func asDriver() -> Driver { + return self.asDriver { _ -> Driver in + #if DEBUG + rxFatalError("Somehow driver received error from a source that shouldn't fail.") + #else + return Driver.empty() + #endif + } + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/Driver/Driver+Subscription.swift b/Pods/RxCocoa/RxCocoa/Traits/Driver/Driver+Subscription.swift new file mode 100644 index 00000000..0b9024c7 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Driver/Driver+Subscription.swift @@ -0,0 +1,203 @@ +// +// Driver+Subscription.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 9/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift +import RxRelay + +private let errorMessage = "`drive*` family of methods can be only called from `MainThread`.\n" + +"This is required to ensure that the last replayed `Driver` element is delivered on `MainThread`.\n" + +extension SharedSequenceConvertibleType where SharingStrategy == DriverSharingStrategy { + /** + Creates new subscription and sends elements to observer. + This method can be only called from `MainThread`. + + In this form it's equivalent to `subscribe` method, but it communicates intent better. + + - parameter observers: Observers that receives events. + - returns: Disposable object that can be used to unsubscribe the observer from the subject. + */ + public func drive(_ observers: Observer...) -> Disposable where Observer.Element == Element { + MainScheduler.ensureRunningOnMainThread(errorMessage: errorMessage) + return self.asSharedSequence() + .asObservable() + .subscribe { e in + observers.forEach { $0.on(e) } + } + } + + /** + Creates new subscription and sends elements to observer. + This method can be only called from `MainThread`. + + In this form it's equivalent to `subscribe` method, but it communicates intent better. + + - parameter observers: Observers that receives events. + - returns: Disposable object that can be used to unsubscribe the observer from the subject. + */ + public func drive(_ observers: Observer...) -> Disposable where Observer.Element == Element? { + MainScheduler.ensureRunningOnMainThread(errorMessage: errorMessage) + return self.asSharedSequence() + .asObservable() + .map { $0 as Element? } + .subscribe { e in + observers.forEach { $0.on(e) } + } + } + + /** + Creates new subscription and sends elements to `BehaviorRelay`. + This method can be only called from `MainThread`. + + - parameter relays: Target relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func drive(_ relays: BehaviorRelay...) -> Disposable { + MainScheduler.ensureRunningOnMainThread(errorMessage: errorMessage) + return self.drive(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `BehaviorRelay`. + This method can be only called from `MainThread`. + + - parameter relays: Target relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func drive(_ relays: BehaviorRelay...) -> Disposable { + MainScheduler.ensureRunningOnMainThread(errorMessage: errorMessage) + return self.drive(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `ReplayRelay`. + This method can be only called from `MainThread`. + + - parameter relays: Target relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func drive(_ relays: ReplayRelay...) -> Disposable { + MainScheduler.ensureRunningOnMainThread(errorMessage: errorMessage) + return self.drive(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `ReplayRelay`. + This method can be only called from `MainThread`. + + - parameter relays: Target relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func drive(_ relays: ReplayRelay...) -> Disposable { + MainScheduler.ensureRunningOnMainThread(errorMessage: errorMessage) + return self.drive(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Subscribes to observable sequence using custom binder function. + This method can be only called from `MainThread`. + + - parameter transformation: Function used to bind elements from `self`. + - returns: Object representing subscription. + */ + public func drive(_ transformation: (Observable) -> Result) -> Result { + MainScheduler.ensureRunningOnMainThread(errorMessage: errorMessage) + return transformation(self.asObservable()) + } + + /** + Subscribes to observable sequence using custom binder function and final parameter passed to binder function + after `self` is passed. + + public func drive(with: Self -> R1 -> R2, curriedArgument: R1) -> R2 { + return with(self)(curriedArgument) + } + + This method can be only called from `MainThread`. + + - parameter with: Function used to bind elements from `self`. + - parameter curriedArgument: Final argument passed to `binder` to finish binding process. + - returns: Object representing subscription. + */ + public func drive(_ with: (Observable) -> (R1) -> R2, curriedArgument: R1) -> R2 { + MainScheduler.ensureRunningOnMainThread(errorMessage: errorMessage) + return with(self.asObservable())(curriedArgument) + } + + /** + Subscribes an element handler, a completion handler and disposed handler to an observable sequence. + This method can be only called from `MainThread`. + + Also, take in an object and provide an unretained, safe to use (i.e. not implicitly unwrapped), reference to it along with the events emitted by the sequence. + + Error callback is not exposed because `Driver` can't error out. + + - Note: If `object` can't be retained, none of the other closures will be invoked. + + - parameter object: The object to provide an unretained reference on. + - parameter onNext: Action to invoke for each element in the observable sequence. + - parameter onCompleted: Action to invoke upon graceful termination of the observable sequence. + gracefully completed, errored, or if the generation is canceled by disposing subscription) + - parameter onDisposed: Action to invoke upon any type of termination of sequence (if the sequence has + gracefully completed, errored, or if the generation is canceled by disposing subscription) + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func drive( + with object: Object, + onNext: ((Object, Element) -> Void)? = nil, + onCompleted: ((Object) -> Void)? = nil, + onDisposed: ((Object) -> Void)? = nil + ) -> Disposable { + MainScheduler.ensureRunningOnMainThread(errorMessage: errorMessage) + return self.asObservable().subscribe(with: object, onNext: onNext, onCompleted: onCompleted, onDisposed: onDisposed) + } + + /** + Subscribes an element handler, a completion handler and disposed handler to an observable sequence. + This method can be only called from `MainThread`. + + Error callback is not exposed because `Driver` can't error out. + + - parameter onNext: Action to invoke for each element in the observable sequence. + - parameter onCompleted: Action to invoke upon graceful termination of the observable sequence. + gracefully completed, errored, or if the generation is canceled by disposing subscription) + - parameter onDisposed: Action to invoke upon any type of termination of sequence (if the sequence has + gracefully completed, errored, or if the generation is canceled by disposing subscription) + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func drive( + onNext: ((Element) -> Void)? = nil, + onCompleted: (() -> Void)? = nil, + onDisposed: (() -> Void)? = nil + ) -> Disposable { + MainScheduler.ensureRunningOnMainThread(errorMessage: errorMessage) + return self.asObservable().subscribe(onNext: onNext, onCompleted: onCompleted, onDisposed: onDisposed) + } + + /** + Subscribes to this `Driver` with a no-op. + This method can be only called from `MainThread`. + + - note: This is an alias of `drive(onNext: nil, onCompleted: nil, onDisposed: nil)` used to fix an ambiguity bug in Swift: https://bugs.swift.org/browse/SR-13657 + + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func drive() -> Disposable { + drive(onNext: nil, onCompleted: nil, onDisposed: nil) + } +} + + diff --git a/Pods/RxCocoa/RxCocoa/Traits/Driver/Driver.swift b/Pods/RxCocoa/RxCocoa/Traits/Driver/Driver.swift new file mode 100644 index 00000000..5de8b3a5 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Driver/Driver.swift @@ -0,0 +1,53 @@ +// +// Driver.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 9/26/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/** + Trait that represents observable sequence with following properties: + + - it never fails + - it delivers events on `MainScheduler.instance` + - `share(replay: 1, scope: .whileConnected)` sharing strategy + + Additional explanation: + - all observers share sequence computation resources + - it's stateful, upon subscription (calling subscribe) last element is immediately replayed if it was produced + - computation of elements is reference counted with respect to the number of observers + - if there are no subscribers, it will release sequence computation resources + + In case trait that models event bus is required, please check `Signal`. + + `Driver` can be considered a builder pattern for observable sequences that drive the application. + + If observable sequence has produced at least one element, after new subscription is made last produced element will be + immediately replayed on the same thread on which the subscription was made. + + When using `drive*`, `subscribe*` and `bind*` family of methods, they should always be called from main thread. + + If `drive*`, `subscribe*` and `bind*` are called from background thread, it is possible that initial replay + will happen on background thread, and subsequent events will arrive on main thread. + + To find out more about traits and how to use them, please visit `Documentation/Traits.md`. + */ +public typealias Driver = SharedSequence + +public struct DriverSharingStrategy: SharingStrategyProtocol { + public static var scheduler: SchedulerType { SharingScheduler.make() } + public static func share(_ source: Observable) -> Observable { + source.share(replay: 1, scope: .whileConnected) + } +} + +extension SharedSequenceConvertibleType where SharingStrategy == DriverSharingStrategy { + /// Adds `asDriver` to `SharingSequence` with `DriverSharingStrategy`. + public func asDriver() -> Driver { + self.asSharedSequence() + } +} + diff --git a/Pods/RxCocoa/RxCocoa/Traits/Driver/Infallible+Driver.swift b/Pods/RxCocoa/RxCocoa/Traits/Driver/Infallible+Driver.swift new file mode 100644 index 00000000..6a5009ba --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Driver/Infallible+Driver.swift @@ -0,0 +1,18 @@ +// +// Infallible+Driver.swift +// RxCocoa +// +// Created by Anton Siliuk on 14/02/2022. +// Copyright © 2022 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension InfallibleType { + /// Converts `InfallibleType` to `Driver`. + /// + /// - returns: Observable sequence. + public func asDriver() -> Driver { + SharedSequence(asObservable().observe(on: DriverSharingStrategy.scheduler)) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift b/Pods/RxCocoa/RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift new file mode 100644 index 00000000..bcac66b6 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift @@ -0,0 +1,57 @@ +// +// ObservableConvertibleType+Driver.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 9/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension ObservableConvertibleType { + /** + Converts observable sequence to `Driver` trait. + + - parameter onErrorJustReturn: Element to return in case of error and after that complete the sequence. + - returns: Driver trait. + */ + public func asDriver(onErrorJustReturn: Element) -> Driver { + let source = self + .asObservable() + .observe(on:DriverSharingStrategy.scheduler) + .catchAndReturn(onErrorJustReturn) + return Driver(source) + } + + /** + Converts observable sequence to `Driver` trait. + + - parameter onErrorDriveWith: Driver that continues to drive the sequence in case of error. + - returns: Driver trait. + */ + public func asDriver(onErrorDriveWith: Driver) -> Driver { + let source = self + .asObservable() + .observe(on:DriverSharingStrategy.scheduler) + .catch { _ in + onErrorDriveWith.asObservable() + } + return Driver(source) + } + + /** + Converts observable sequence to `Driver` trait. + + - parameter onErrorRecover: Calculates driver that continues to drive the sequence in case of error. + - returns: Driver trait. + */ + public func asDriver(onErrorRecover: @escaping (_ error: Swift.Error) -> Driver) -> Driver { + let source = self + .asObservable() + .observe(on:DriverSharingStrategy.scheduler) + .catch { error in + onErrorRecover(error).asObservable() + } + return Driver(source) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift new file mode 100644 index 00000000..20ddf868 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift @@ -0,0 +1,57 @@ +// +// ObservableConvertibleType+SharedSequence.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 11/1/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension ObservableConvertibleType { + /** + Converts anything convertible to `Observable` to `SharedSequence` unit. + + - parameter onErrorJustReturn: Element to return in case of error and after that complete the sequence. + - returns: Driving observable sequence. + */ + public func asSharedSequence(sharingStrategy: S.Type = S.self, onErrorJustReturn: Element) -> SharedSequence { + let source = self + .asObservable() + .observe(on:S.scheduler) + .catchAndReturn(onErrorJustReturn) + return SharedSequence(source) + } + + /** + Converts anything convertible to `Observable` to `SharedSequence` unit. + + - parameter onErrorDriveWith: SharedSequence that provides elements of the sequence in case of error. + - returns: Driving observable sequence. + */ + public func asSharedSequence(sharingStrategy: S.Type = S.self, onErrorDriveWith: SharedSequence) -> SharedSequence { + let source = self + .asObservable() + .observe(on:S.scheduler) + .catch { _ in + onErrorDriveWith.asObservable() + } + return SharedSequence(source) + } + + /** + Converts anything convertible to `Observable` to `SharedSequence` unit. + + - parameter onErrorRecover: Calculates driver that continues to drive the sequence in case of error. + - returns: Driving observable sequence. + */ + public func asSharedSequence(sharingStrategy: S.Type = S.self, onErrorRecover: @escaping (_ error: Swift.Error) -> SharedSequence) -> SharedSequence { + let source = self + .asObservable() + .observe(on:S.scheduler) + .catch { error in + onErrorRecover(error).asObservable() + } + return SharedSequence(source) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift new file mode 100644 index 00000000..5111e06d --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift @@ -0,0 +1,62 @@ +// +// SchedulerType+SharedSequence.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 8/27/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +public enum SharingScheduler { + /// Default scheduler used in SharedSequence based traits. + public private(set) static var make: () -> SchedulerType = { MainScheduler() } + + /** + This method can be used in unit tests to ensure that built in shared sequences are using mock schedulers instead + of main schedulers. + + **This shouldn't be used in normal release builds.** + */ + static public func mock(scheduler: SchedulerType, action: () throws -> Void) rethrows { + return try mock(makeScheduler: { scheduler }, action: action) + } + + /** + This method can be used in unit tests to ensure that built in shared sequences are using mock schedulers instead + of main schedulers. + + **This shouldn't be used in normal release builds.** + */ + static public func mock(makeScheduler: @escaping () -> SchedulerType, action: () throws -> Void) rethrows { + let originalMake = make + make = makeScheduler + defer { + make = originalMake + } + + try action() + + // If you remove this line , compiler buggy optimizations will change behavior of this code + _forceCompilerToStopDoingInsaneOptimizationsThatBreakCode(makeScheduler) + // Scary, I know + } +} + +#if os(Linux) + import Glibc +#else + import Foundation +#endif + +func _forceCompilerToStopDoingInsaneOptimizationsThatBreakCode(_ scheduler: () -> SchedulerType) { + let a: Int32 = 1 +#if os(Linux) + let b = 314 + Int32(Glibc.random() & 1) +#else + let b = 314 + Int32(arc4random() & 1) +#endif + if a == b { + print(scheduler()) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift new file mode 100644 index 00000000..027c2b0b --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift @@ -0,0 +1,42 @@ +// +// SharedSequence+Concurrency.swift +// RxCocoa +// +// Created by Shai Mishali on 22/09/2021. +// Copyright © 2021 Krunoslav Zaher. All rights reserved. +// + +#if swift(>=5.6) && canImport(_Concurrency) && !os(Linux) +import Foundation + +// MARK: - Shared Sequence +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public extension SharedSequence { + /// Allows iterating over the values of this Shared Sequence + /// asynchronously via Swift's concurrency features (`async/await`) + /// + /// A sample usage would look like so: + /// + /// ```swift + /// for await value in driver.values { + /// // Handle emitted values + /// } + /// ``` + @MainActor var values: AsyncStream { + AsyncStream { continuation in + // It is safe to ignore the `onError` closure here since + // Shared Sequences (`Driver` and `Signal`) cannot fail + let disposable = self.asObservable() + .subscribe( + onNext: { value in continuation.yield(value) }, + onCompleted: { continuation.finish() } + ) + continuation.onTermination = { @Sendable termination in + if termination == .cancelled { + disposable.dispose() + } + } + } + } +} +#endif diff --git a/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift new file mode 100644 index 00000000..4cc967cf --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift @@ -0,0 +1,656 @@ +// This file is autogenerated. Take a look at `Preprocessor` target in RxSwift project +// +// SharedSequence+Operators+arity.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 10/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + + + +// 2 + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, resultSelector: @escaping (O1.Element, O2.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, resultSelector: @escaping (O1.Element, O2.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever any of the observable sequences produces an element. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + + + +// 3 + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, resultSelector: @escaping (O1.Element, O2.Element, O3.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, resultSelector: @escaping (O1.Element, O2.Element, O3.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever any of the observable sequences produces an element. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + + + +// 4 + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever any of the observable sequences produces an element. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + + + +// 5 + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever any of the observable sequences produces an element. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + + + +// 6 + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever any of the observable sequences produces an element. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + + + +// 7 + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy, + SharingStrategy == O7.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable(), source7.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy, + SharingStrategy == O7.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable(), source7.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy, + SharingStrategy == O7.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable(), source7.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever any of the observable sequences produces an element. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy, + SharingStrategy == O7.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable(), source7.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + + + +// 8 + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, _ source8: O8, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element, O8.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy, + SharingStrategy == O7.SharingStrategy, + SharingStrategy == O8.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable(), source7.asSharedSequence().asObservable(), source8.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, _ source8: O8) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy, + SharingStrategy == O7.SharingStrategy, + SharingStrategy == O8.SharingStrategy { + let source = Observable.zip( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable(), source7.asSharedSequence().asObservable(), source8.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, _ source8: O8, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element, O8.Element) throws -> Element) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy, + SharingStrategy == O7.SharingStrategy, + SharingStrategy == O8.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable(), source7.asSharedSequence().asObservable(), source8.asSharedSequence().asObservable(), + resultSelector: resultSelector + ) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of element tuples whenever any of the observable sequences produces an element. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, _ source8: O8) + -> SharedSequence where SharingStrategy == O1.SharingStrategy, + SharingStrategy == O2.SharingStrategy, + SharingStrategy == O3.SharingStrategy, + SharingStrategy == O4.SharingStrategy, + SharingStrategy == O5.SharingStrategy, + SharingStrategy == O6.SharingStrategy, + SharingStrategy == O7.SharingStrategy, + SharingStrategy == O8.SharingStrategy { + let source = Observable.combineLatest( + source1.asSharedSequence().asObservable(), source2.asSharedSequence().asObservable(), source3.asSharedSequence().asObservable(), source4.asSharedSequence().asObservable(), source5.asSharedSequence().asObservable(), source6.asSharedSequence().asObservable(), source7.asSharedSequence().asObservable(), source8.asSharedSequence().asObservable() + ) + + return SharedSequence(source) + } +} + + diff --git a/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift new file mode 100644 index 00000000..1d53b03d --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift @@ -0,0 +1,584 @@ +// +// SharedSequence+Operators.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 9/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +// MARK: map +extension SharedSequenceConvertibleType { + + /** + Projects each element of an observable sequence into a new form. + + - parameter selector: A transform function to apply to each source element. + - returns: An observable sequence whose elements are the result of invoking the transform function on each element of source. + */ + public func map(_ selector: @escaping (Element) -> Result) -> SharedSequence { + let source = self + .asObservable() + .map(selector) + return SharedSequence(source) + } +} + +// MARK: compactMap +extension SharedSequenceConvertibleType { + + /** + Projects each element of an observable sequence into an optional form and filters all optional results. + + - parameter selector: A transform function to apply to each source element and which returns an element or nil. + - returns: An observable sequence whose elements are the result of filtering the transform function for each element of the source. + + */ + public func compactMap(_ selector: @escaping (Element) -> Result?) -> SharedSequence { + let source = self + .asObservable() + .compactMap(selector) + return SharedSequence(source) + } +} + +// MARK: filter +extension SharedSequenceConvertibleType { + /** + Filters the elements of an observable sequence based on a predicate. + + - parameter predicate: A function to test each source element for a condition. + - returns: An observable sequence that contains elements from the input sequence that satisfy the condition. + */ + public func filter(_ predicate: @escaping (Element) -> Bool) -> SharedSequence { + let source = self + .asObservable() + .filter(predicate) + return SharedSequence(source) + } +} + +// MARK: switchLatest +extension SharedSequenceConvertibleType where Element: SharedSequenceConvertibleType { + + /** + Transforms an observable sequence of observable sequences into an observable sequence + producing values only from the most recent observable sequence. + + Each time a new inner observable sequence is received, unsubscribe from the + previous inner observable sequence. + + - returns: The observable sequence that at any point in time produces the elements of the most recent inner observable sequence that has been received. + */ + public func switchLatest() -> SharedSequence { + let source: Observable = self + .asObservable() + .map { $0.asSharedSequence() } + .switchLatest() + return SharedSequence(source) + } +} + +// MARK: flatMapLatest +extension SharedSequenceConvertibleType { + /** + Projects each element of an observable sequence into a new sequence of observable sequences and then + transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence. + + It is a combination of `map` + `switchLatest` operator + + - parameter selector: A transform function to apply to each element. + - returns: An observable sequence whose elements are the result of invoking the transform function on each element of source producing an + Observable of Observable sequences and that at any point in time produces the elements of the most recent inner observable sequence that has been received. + */ + public func flatMapLatest(_ selector: @escaping (Element) -> SharedSequence) + -> SharedSequence { + let source: Observable = self + .asObservable() + .flatMapLatest(selector) + return SharedSequence(source) + } +} + +// MARK: flatMapFirst +extension SharedSequenceConvertibleType { + + /** + Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. + If element is received while there is some projected observable sequence being merged it will simply be ignored. + + - parameter selector: A transform function to apply to element that was observed while no observable is executing in parallel. + - returns: An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence that was received while no other sequence was being calculated. + */ + public func flatMapFirst(_ selector: @escaping (Element) -> SharedSequence) + -> SharedSequence { + let source: Observable = self + .asObservable() + .flatMapFirst(selector) + return SharedSequence(source) + } +} + +// MARK: do +extension SharedSequenceConvertibleType { + /** + Invokes an action for each event in the observable sequence, and propagates all observer messages through the result sequence. + + - parameter onNext: Action to invoke for each element in the observable sequence. + - parameter afterNext: Action to invoke for each element after the observable has passed an onNext event along to its downstream. + - parameter onCompleted: Action to invoke upon graceful termination of the observable sequence. + - parameter afterCompleted: Action to invoke after graceful termination of the observable sequence. + - parameter onSubscribe: Action to invoke before subscribing to source observable sequence. + - parameter onSubscribed: Action to invoke after subscribing to source observable sequence. + - parameter onDispose: Action to invoke after subscription to source observable has been disposed for any reason. It can be either because sequence terminates for some reason or observer subscription being disposed. + - returns: The source sequence with the side-effecting behavior applied. + */ + public func `do`(onNext: ((Element) -> Void)? = nil, afterNext: ((Element) -> Void)? = nil, onCompleted: (() -> Void)? = nil, afterCompleted: (() -> Void)? = nil, onSubscribe: (() -> Void)? = nil, onSubscribed: (() -> Void)? = nil, onDispose: (() -> Void)? = nil) + -> SharedSequence { + let source = self.asObservable() + .do(onNext: onNext, afterNext: afterNext, onCompleted: onCompleted, afterCompleted: afterCompleted, onSubscribe: onSubscribe, onSubscribed: onSubscribed, onDispose: onDispose) + + return SharedSequence(source) + } +} + +// MARK: debug +extension SharedSequenceConvertibleType { + + /** + Prints received events for all observers on standard output. + + - parameter identifier: Identifier that is printed together with event description to standard output. + - returns: An observable sequence whose events are printed to standard output. + */ + public func debug(_ identifier: String? = nil, trimOutput: Bool = false, file: String = #file, line: UInt = #line, function: String = #function) -> SharedSequence { + let source = self.asObservable() + .debug(identifier, trimOutput: trimOutput, file: file, line: line, function: function) + return SharedSequence(source) + } +} + +// MARK: distinctUntilChanged +extension SharedSequenceConvertibleType where Element: Equatable { + + /** + Returns an observable sequence that contains only distinct contiguous elements according to equality operator. + + - returns: An observable sequence only containing the distinct contiguous elements, based on equality operator, from the source sequence. + */ + public func distinctUntilChanged() + -> SharedSequence { + let source = self.asObservable() + .distinctUntilChanged({ $0 }, comparer: { ($0 == $1) }) + + return SharedSequence(source) + } +} + +extension SharedSequenceConvertibleType { + + /** + Returns an observable sequence that contains only distinct contiguous elements according to the `keySelector`. + + - parameter keySelector: A function to compute the comparison key for each element. + - returns: An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence. + */ + public func distinctUntilChanged(_ keySelector: @escaping (Element) -> Key) -> SharedSequence { + let source = self.asObservable() + .distinctUntilChanged(keySelector, comparer: { $0 == $1 }) + return SharedSequence(source) + } + + /** + Returns an observable sequence that contains only distinct contiguous elements according to the `comparer`. + + - parameter comparer: Equality comparer for computed key values. + - returns: An observable sequence only containing the distinct contiguous elements, based on `comparer`, from the source sequence. + */ + public func distinctUntilChanged(_ comparer: @escaping (Element, Element) -> Bool) -> SharedSequence { + let source = self.asObservable() + .distinctUntilChanged({ $0 }, comparer: comparer) + return SharedSequence(source) + } + + /** + Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer. + + - parameter keySelector: A function to compute the comparison key for each element. + - parameter comparer: Equality comparer for computed key values. + - returns: An observable sequence only containing the distinct contiguous elements, based on a computed key value and the comparer, from the source sequence. + */ + public func distinctUntilChanged(_ keySelector: @escaping (Element) -> K, comparer: @escaping (K, K) -> Bool) -> SharedSequence { + let source = self.asObservable() + .distinctUntilChanged(keySelector, comparer: comparer) + return SharedSequence(source) + } +} + + +// MARK: flatMap +extension SharedSequenceConvertibleType { + + /** + Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. + + - parameter selector: A transform function to apply to each element. + - returns: An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence. + */ + public func flatMap(_ selector: @escaping (Element) -> SharedSequence) -> SharedSequence { + let source = self.asObservable() + .flatMap(selector) + + return SharedSequence(source) + } +} + +// MARK: merge +extension SharedSequenceConvertibleType { + /** + Merges elements from all observable sequences from collection into a single observable sequence. + + - seealso: [merge operator on reactivex.io](http://reactivex.io/documentation/operators/merge.html) + + - parameter sources: Collection of observable sequences to merge. + - returns: The observable sequence that merges the elements of the observable sequences. + */ + public static func merge(_ sources: Collection) -> SharedSequence + where Collection.Element == SharedSequence { + let source = Observable.merge(sources.map { $0.asObservable() }) + return SharedSequence(source) + } + + /** + Merges elements from all observable sequences from array into a single observable sequence. + + - seealso: [merge operator on reactivex.io](http://reactivex.io/documentation/operators/merge.html) + + - parameter sources: Array of observable sequences to merge. + - returns: The observable sequence that merges the elements of the observable sequences. + */ + public static func merge(_ sources: [SharedSequence]) -> SharedSequence { + let source = Observable.merge(sources.map { $0.asObservable() }) + return SharedSequence(source) + } + + /** + Merges elements from all observable sequences into a single observable sequence. + + - seealso: [merge operator on reactivex.io](http://reactivex.io/documentation/operators/merge.html) + + - parameter sources: Collection of observable sequences to merge. + - returns: The observable sequence that merges the elements of the observable sequences. + */ + public static func merge(_ sources: SharedSequence...) -> SharedSequence { + let source = Observable.merge(sources.map { $0.asObservable() }) + return SharedSequence(source) + } + +} + +// MARK: merge +extension SharedSequenceConvertibleType where Element: SharedSequenceConvertibleType { + /** + Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence. + + - returns: The observable sequence that merges the elements of the observable sequences. + */ + public func merge() -> SharedSequence { + let source = self.asObservable() + .map { $0.asSharedSequence() } + .merge() + return SharedSequence(source) + } + + /** + Merges elements from all inner observable sequences into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences. + + - parameter maxConcurrent: Maximum number of inner observable sequences being subscribed to concurrently. + - returns: The observable sequence that merges the elements of the inner sequences. + */ + public func merge(maxConcurrent: Int) + -> SharedSequence { + let source = self.asObservable() + .map { $0.asSharedSequence() } + .merge(maxConcurrent: maxConcurrent) + return SharedSequence(source) + } +} + +// MARK: throttle +extension SharedSequenceConvertibleType { + + /** + Returns an Observable that emits the first and the latest item emitted by the source Observable during sequential time windows of a specified duration. + + This operator makes sure that no two elements are emitted in less then dueTime. + + - seealso: [debounce operator on reactivex.io](http://reactivex.io/documentation/operators/debounce.html) + + - parameter dueTime: Throttling duration for each element. + - parameter latest: Should latest element received in a dueTime wide time window since last element emission be emitted. + - returns: The throttled sequence. + */ + public func throttle(_ dueTime: RxTimeInterval, latest: Bool = true) + -> SharedSequence { + let source = self.asObservable() + .throttle(dueTime, latest: latest, scheduler: SharingStrategy.scheduler) + + return SharedSequence(source) + } + + /** + Ignores elements from an observable sequence which are followed by another element within a specified relative time duration, using the specified scheduler to run throttling timers. + + - parameter dueTime: Throttling duration for each element. + - returns: The throttled sequence. + */ + public func debounce(_ dueTime: RxTimeInterval) + -> SharedSequence { + let source = self.asObservable() + .debounce(dueTime, scheduler: SharingStrategy.scheduler) + + return SharedSequence(source) + } +} + +// MARK: scan +extension SharedSequenceConvertibleType { + /** + Applies an accumulator function over an observable sequence and returns each intermediate result. The specified seed value is used as the initial accumulator value. + + For aggregation behavior with no intermediate results, see `reduce`. + + - parameter seed: The initial accumulator value. + - parameter accumulator: An accumulator function to be invoked on each element. + - returns: An observable sequence containing the accumulated values. + */ + public func scan(_ seed: A, accumulator: @escaping (A, Element) -> A) + -> SharedSequence { + let source = self.asObservable() + .scan(seed, accumulator: accumulator) + return SharedSequence(source) + } +} + +// MARK: concat + +extension SharedSequence { + /** + Concatenates all observable sequences in the given sequence, as long as the previous observable sequence terminated successfully. + + - returns: An observable sequence that contains the elements of each given sequence, in sequential order. + */ + public static func concat(_ sequence: Sequence) -> SharedSequence + where Sequence.Element == SharedSequence { + let source = Observable.concat(sequence.lazy.map { $0.asObservable() }) + return SharedSequence(source) + } + + /** + Concatenates all observable sequences in the given sequence, as long as the previous observable sequence terminated successfully. + + - returns: An observable sequence that contains the elements of each given sequence, in sequential order. + */ + public static func concat(_ collection: Collection) -> SharedSequence + where Collection.Element == SharedSequence { + let source = Observable.concat(collection.map { $0.asObservable() }) + return SharedSequence(source) + } +} + +// MARK: zip + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip(_ collection: Collection, resultSelector: @escaping ([Element]) throws -> Result) -> SharedSequence + where Collection.Element == SharedSequence { + let source = Observable.zip(collection.map { $0.asSharedSequence().asObservable() }, resultSelector: resultSelector) + return SharedSequence(source) + } + + /** + Merges the specified observable sequences into one observable sequence all of the observable sequences have produced an element at a corresponding index. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip(_ collection: Collection) -> SharedSequence + where Collection.Element == SharedSequence { + let source = Observable.zip(collection.map { $0.asSharedSequence().asObservable() }) + return SharedSequence(source) + } +} + +// MARK: combineLatest + +extension SharedSequence { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest(_ collection: Collection, resultSelector: @escaping ([Element]) throws -> Result) -> SharedSequence + where Collection.Element == SharedSequence { + let source = Observable.combineLatest(collection.map { $0.asObservable() }, resultSelector: resultSelector) + return SharedSequence(source) + } + + /** + Merges the specified observable sequences into one observable sequence whenever any of the observable sequences produces an element. + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest(_ collection: Collection) -> SharedSequence + where Collection.Element == SharedSequence { + let source = Observable.combineLatest(collection.map { $0.asObservable() }) + return SharedSequence(source) + } +} + +// MARK: - withUnretained +extension SharedSequenceConvertibleType where SharingStrategy == SignalSharingStrategy { + /** + Provides an unretained, safe to use (i.e. not implicitly unwrapped), reference to an object along with the events emitted by the sequence. + + In the case the provided object cannot be retained successfully, the sequence will complete. + + - note: Be careful when using this operator in a sequence that has a buffer or replay, for example `share(replay: 1)`, as the sharing buffer will also include the provided object, which could potentially cause a retain cycle. + + - parameter obj: The object to provide an unretained reference on. + - parameter resultSelector: A function to combine the unretained referenced on `obj` and the value of the observable sequence. + - returns: An observable sequence that contains the result of `resultSelector` being called with an unretained reference on `obj` and the values of the original sequence. + */ + public func withUnretained( + _ obj: Object, + resultSelector: @escaping (Object, Element) -> Out + ) -> SharedSequence { + SharedSequence(self.asObservable().withUnretained(obj, resultSelector: resultSelector)) + } + + /** + Provides an unretained, safe to use (i.e. not implicitly unwrapped), reference to an object along with the events emitted by the sequence. + + In the case the provided object cannot be retained successfully, the sequence will complete. + + - note: Be careful when using this operator in a sequence that has a buffer or replay, for example `share(replay: 1)`, as the sharing buffer will also include the provided object, which could potentially cause a retain cycle. + + - parameter obj: The object to provide an unretained reference on. + - returns: An observable sequence of tuples that contains both an unretained reference on `obj` and the values of the original sequence. + */ + public func withUnretained(_ obj: Object) -> SharedSequence { + withUnretained(obj) { ($0, $1) } + } +} + +extension SharedSequenceConvertibleType where SharingStrategy == DriverSharingStrategy { + @available(*, message: "withUnretained has been deprecated for Driver. Consider using `drive(with:onNext:onCompleted:onDisposed:)`, instead", unavailable) + public func withUnretained( + _ obj: Object, + resultSelector: @escaping (Object, Element) -> Out + ) -> SharedSequence { + SharedSequence(self.asObservable().withUnretained(obj, resultSelector: resultSelector)) + } + + @available(*, message: "withUnretained has been deprecated for Driver. Consider using `drive(with:onNext:onCompleted:onDisposed:)`, instead", unavailable) + public func withUnretained(_ obj: Object) -> SharedSequence { + SharedSequence(self.asObservable().withUnretained(obj) { ($0, $1) }) + } +} + +// MARK: withLatestFrom +extension SharedSequenceConvertibleType { + + /** + Merges two observable sequences into one observable sequence by combining each element from self with the latest element from the second source, if any. + + - parameter second: Second observable source. + - parameter resultSelector: Function to invoke for each element from the self combined with the latest element from the second source, if any. + - returns: An observable sequence containing the result of combining each element of the self with the latest element from the second source, if any, using the specified result selector function. + */ + public func withLatestFrom(_ second: SecondO, resultSelector: @escaping (Element, SecondO.Element) -> ResultType) -> SharedSequence where SecondO.SharingStrategy == SharingStrategy { + let source = self.asObservable() + .withLatestFrom(second.asSharedSequence(), resultSelector: resultSelector) + + return SharedSequence(source) + } + + /** + Merges two observable sequences into one observable sequence by using latest element from the second sequence every time when `self` emits an element. + + - parameter second: Second observable source. + - returns: An observable sequence containing the result of combining each element of the self with the latest element from the second source, if any, using the specified result selector function. + */ + public func withLatestFrom(_ second: SecondO) -> SharedSequence { + let source = self.asObservable() + .withLatestFrom(second.asSharedSequence()) + + return SharedSequence(source) + } +} + +// MARK: skip +extension SharedSequenceConvertibleType { + + /** + Bypasses a specified number of elements in an observable sequence and then returns the remaining elements. + + - seealso: [skip operator on reactivex.io](http://reactivex.io/documentation/operators/skip.html) + + - parameter count: The number of elements to skip before returning the remaining elements. + - returns: An observable sequence that contains the elements that occur after the specified index in the input sequence. + */ + public func skip(_ count: Int) + -> SharedSequence { + let source = self.asObservable() + .skip(count) + return SharedSequence(source) + } +} + +// MARK: startWith +extension SharedSequenceConvertibleType { + + /** + Prepends a value to an observable sequence. + + - seealso: [startWith operator on reactivex.io](http://reactivex.io/documentation/operators/startwith.html) + + - parameter element: Element to prepend to the specified sequence. + - returns: The source sequence prepended with the specified values. + */ + public func startWith(_ element: Element) + -> SharedSequence { + let source = self.asObservable() + .startWith(element) + + return SharedSequence(source) + } +} + +// MARK: delay +extension SharedSequenceConvertibleType { + + /** + Returns an observable sequence by the source observable sequence shifted forward in time by a specified delay. Error events from the source observable sequence are not delayed. + + - seealso: [delay operator on reactivex.io](http://reactivex.io/documentation/operators/delay.html) + + - parameter dueTime: Relative time shift of the source by. + - returns: the source Observable shifted in time by the specified delay. + */ + public func delay(_ dueTime: RxTimeInterval) + -> SharedSequence { + let source = self.asObservable() + .delay(dueTime, scheduler: SharingStrategy.scheduler) + + return SharedSequence(source) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence.swift b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence.swift new file mode 100644 index 00000000..4596c8ec --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence.swift @@ -0,0 +1,231 @@ +// +// SharedSequence.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 8/27/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/** + Trait that represents observable sequence that shares computation resources with following properties: + + - it never fails + - it delivers events on `SharingStrategy.scheduler` + - sharing strategy is customizable using `SharingStrategy.share` behavior + + `SharedSequence` can be considered a builder pattern for observable sequences that share computation resources. + + To find out more about units and how to use them, please visit `Documentation/Traits.md`. +*/ +public struct SharedSequence : SharedSequenceConvertibleType, ObservableConvertibleType { + let source: Observable + + init(_ source: Observable) { + self.source = SharingStrategy.share(source) + } + + init(raw: Observable) { + self.source = raw + } + + #if EXPANDABLE_SHARED_SEQUENCE + /** + This method is extension hook in case this unit needs to extended from outside the library. + + By defining `EXPANDABLE_SHARED_SEQUENCE` one agrees that it's up to them to ensure shared sequence + properties are preserved after extension. + */ + public static func createUnsafe(source: Source) -> SharedSequence { + SharedSequence(raw: source.asObservable()) + } + #endif + + /** + - returns: Built observable sequence. + */ + public func asObservable() -> Observable { + self.source + } + + /** + - returns: `self` + */ + public func asSharedSequence() -> SharedSequence { + self + } + + /// - returns: `Infallible` interface. + public func asInfallible() -> Infallible { + asInfallible(onErrorFallbackTo: .empty()) + } +} + +/** + Different `SharedSequence` sharing strategies must conform to this protocol. + */ +public protocol SharingStrategyProtocol { + /** + Scheduled on which all sequence events will be delivered. + */ + static var scheduler: SchedulerType { get } + + /** + Computation resources sharing strategy for multiple sequence observers. + + E.g. One can choose `share(replay:scope:)` + as sequence event sharing strategies, but also do something more exotic, like + implementing promises or lazy loading chains. + */ + static func share(_ source: Observable) -> Observable +} + +/** +A type that can be converted to `SharedSequence`. +*/ +public protocol SharedSequenceConvertibleType : ObservableConvertibleType { + associatedtype SharingStrategy: SharingStrategyProtocol + + /** + Converts self to `SharedSequence`. + */ + func asSharedSequence() -> SharedSequence +} + +extension SharedSequenceConvertibleType { + public func asObservable() -> Observable { + self.asSharedSequence().asObservable() + } +} + + +extension SharedSequence { + + /** + Returns an empty observable sequence, using the specified scheduler to send out the single `Completed` message. + + - returns: An observable sequence with no elements. + */ + public static func empty() -> SharedSequence { + SharedSequence(raw: Observable.empty().subscribe(on: SharingStrategy.scheduler)) + } + + /** + Returns a non-terminating observable sequence, which can be used to denote an infinite duration. + + - returns: An observable sequence whose observers will never get called. + */ + public static func never() -> SharedSequence { + SharedSequence(raw: Observable.never()) + } + + /** + Returns an observable sequence that contains a single element. + + - parameter element: Single element in the resulting observable sequence. + - returns: An observable sequence containing the single specified element. + */ + public static func just(_ element: Element) -> SharedSequence { + SharedSequence(raw: Observable.just(element).subscribe(on: SharingStrategy.scheduler)) + } + + /** + Returns an observable sequence that invokes the specified factory function whenever a new observer subscribes. + + - parameter observableFactory: Observable factory function to invoke for each observer that subscribes to the resulting sequence. + - returns: An observable sequence whose observers trigger an invocation of the given observable factory function. + */ + public static func deferred(_ observableFactory: @escaping () -> SharedSequence) + -> SharedSequence { + SharedSequence(Observable.deferred { observableFactory().asObservable() }) + } + + /** + This method creates a new Observable instance with a variable number of elements. + + - seealso: [from operator on reactivex.io](http://reactivex.io/documentation/operators/from.html) + + - parameter elements: Elements to generate. + - returns: The observable sequence whose elements are pulled from the given arguments. + */ + public static func of(_ elements: Element ...) -> SharedSequence { + let source = Observable.from(elements, scheduler: SharingStrategy.scheduler) + return SharedSequence(raw: source) + } +} + +extension SharedSequence { + + /** + This method converts an array to an observable sequence. + + - seealso: [from operator on reactivex.io](http://reactivex.io/documentation/operators/from.html) + + - returns: The observable sequence whose elements are pulled from the given enumerable sequence. + */ + public static func from(_ array: [Element]) -> SharedSequence { + let source = Observable.from(array, scheduler: SharingStrategy.scheduler) + return SharedSequence(raw: source) + } + + /** + This method converts a sequence to an observable sequence. + + - seealso: [from operator on reactivex.io](http://reactivex.io/documentation/operators/from.html) + + - returns: The observable sequence whose elements are pulled from the given enumerable sequence. + */ + public static func from(_ sequence: Sequence) -> SharedSequence where Sequence.Element == Element { + let source = Observable.from(sequence, scheduler: SharingStrategy.scheduler) + return SharedSequence(raw: source) + } + + /** + This method converts a optional to an observable sequence. + + - seealso: [from operator on reactivex.io](http://reactivex.io/documentation/operators/from.html) + + - parameter optional: Optional element in the resulting observable sequence. + + - returns: An observable sequence containing the wrapped value or not from given optional. + */ + public static func from(optional: Element?) -> SharedSequence { + let source = Observable.from(optional: optional, scheduler: SharingStrategy.scheduler) + return SharedSequence(raw: source) + } +} + +extension SharedSequence where Element: RxAbstractInteger { + /** + Returns an observable sequence that produces a value after each period, using the specified scheduler to run timers and to send out observer messages. + + - seealso: [interval operator on reactivex.io](http://reactivex.io/documentation/operators/interval.html) + + - parameter period: Period for producing the values in the resulting sequence. + - returns: An observable sequence that produces a value after each period. + */ + public static func interval(_ period: RxTimeInterval) + -> SharedSequence { + SharedSequence(Observable.interval(period, scheduler: SharingStrategy.scheduler)) + } +} + +// MARK: timer + +extension SharedSequence where Element: RxAbstractInteger { + /** + Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed, using the specified scheduler to run timers. + + - seealso: [timer operator on reactivex.io](http://reactivex.io/documentation/operators/timer.html) + + - parameter dueTime: Relative time at which to produce the first value. + - parameter period: Period to produce subsequent values. + - returns: An observable sequence that produces a value after due time has elapsed and then each period. + */ + public static func timer(_ dueTime: RxTimeInterval, period: RxTimeInterval) + -> SharedSequence { + SharedSequence(Observable.timer(dueTime, period: period, scheduler: SharingStrategy.scheduler)) + } +} + diff --git a/Pods/RxCocoa/RxCocoa/Traits/Signal/ControlEvent+Signal.swift b/Pods/RxCocoa/RxCocoa/Traits/Signal/ControlEvent+Signal.swift new file mode 100644 index 00000000..bec4723d --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Signal/ControlEvent+Signal.swift @@ -0,0 +1,25 @@ +// +// ControlEvent+Signal.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 11/1/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension ControlEvent { + /// Converts `ControlEvent` to `Signal` trait. + /// + /// `ControlEvent` already can't fail, so no special case needs to be handled. + public func asSignal() -> Signal { + return self.asSignal { _ -> Signal in + #if DEBUG + rxFatalError("Somehow signal received error from a source that shouldn't fail.") + #else + return Signal.empty() + #endif + } + } +} + diff --git a/Pods/RxCocoa/RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift b/Pods/RxCocoa/RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift new file mode 100644 index 00000000..b962d4ed --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift @@ -0,0 +1,57 @@ +// +// ObservableConvertibleType+Signal.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 9/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension ObservableConvertibleType { + /** + Converts observable sequence to `Signal` trait. + + - parameter onErrorJustReturn: Element to return in case of error and after that complete the sequence. + - returns: Signal trait. + */ + public func asSignal(onErrorJustReturn: Element) -> Signal { + let source = self + .asObservable() + .observe(on: SignalSharingStrategy.scheduler) + .catchAndReturn(onErrorJustReturn) + return Signal(source) + } + + /** + Converts observable sequence to `Signal` trait. + + - parameter onErrorSignalWith: Signal that continues to emit the sequence in case of error. + - returns: Signal trait. + */ + public func asSignal(onErrorSignalWith: Signal) -> Signal { + let source = self + .asObservable() + .observe(on: SignalSharingStrategy.scheduler) + .catch { _ in + onErrorSignalWith.asObservable() + } + return Signal(source) + } + + /** + Converts observable sequence to `Signal` trait. + + - parameter onErrorRecover: Calculates signal that continues to emit the sequence in case of error. + - returns: Signal trait. + */ + public func asSignal(onErrorRecover: @escaping (_ error: Swift.Error) -> Signal) -> Signal { + let source = self + .asObservable() + .observe(on: SignalSharingStrategy.scheduler) + .catch { error in + onErrorRecover(error).asObservable() + } + return Signal(source) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/Signal/PublishRelay+Signal.swift b/Pods/RxCocoa/RxCocoa/Traits/Signal/PublishRelay+Signal.swift new file mode 100644 index 00000000..79b975db --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Signal/PublishRelay+Signal.swift @@ -0,0 +1,21 @@ +// +// PublishRelay+Signal.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 12/28/15. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +import RxSwift +import RxRelay + +extension PublishRelay { + /// Converts `PublishRelay` to `Signal`. + /// + /// - returns: Observable sequence. + public func asSignal() -> Signal { + let source = self.asObservable() + .observe(on:SignalSharingStrategy.scheduler) + return SharedSequence(source) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/Signal/Signal+Subscription.swift b/Pods/RxCocoa/RxCocoa/Traits/Signal/Signal+Subscription.swift new file mode 100644 index 00000000..4a6add33 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Signal/Signal+Subscription.swift @@ -0,0 +1,178 @@ +// +// Signal+Subscription.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 9/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift +import RxRelay + +extension SharedSequenceConvertibleType where SharingStrategy == SignalSharingStrategy { + /** + Creates new subscription and sends elements to observer. + + In this form it's equivalent to `subscribe` method, but it communicates intent better. + + - parameter observers: Observers that receives events. + - returns: Disposable object that can be used to unsubscribe the observer from the subject. + */ + public func emit(to observers: Observer...) -> Disposable where Observer.Element == Element { + return self.asSharedSequence() + .asObservable() + .subscribe { event in + observers.forEach { $0.on(event) } + } + } + + /** + Creates new subscription and sends elements to observer. + + In this form it's equivalent to `subscribe` method, but it communicates intent better. + + - parameter observers: Observers that receives events. + - returns: Disposable object that can be used to unsubscribe the observer from the subject. + */ + public func emit(to observers: Observer...) -> Disposable where Observer.Element == Element? { + return self.asSharedSequence() + .asObservable() + .map { $0 as Element? } + .subscribe { event in + observers.forEach { $0.on(event) } + } + } + + /** + Creates new subscription and sends elements to `BehaviorRelay`. + - parameter relays: Target relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func emit(to relays: BehaviorRelay...) -> Disposable { + return self.emit(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `BehaviorRelay`. + - parameter relays: Target relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func emit(to relays: BehaviorRelay...) -> Disposable { + return self.emit(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `PublishRelay`. + + - parameter relays: Target relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func emit(to relays: PublishRelay...) -> Disposable { + return self.emit(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `PublishRelay`. + + - parameter relays: Target relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func emit(to relays: PublishRelay...) -> Disposable { + return self.emit(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `ReplayRelay`. + + - parameter relays: Target relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func emit(to relays: ReplayRelay...) -> Disposable { + return self.emit(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Creates new subscription and sends elements to `ReplayRelay`. + + - parameter relays: Target relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer from the relay. + */ + public func emit(to relays: ReplayRelay...) -> Disposable { + return self.emit(onNext: { e in + relays.forEach { $0.accept(e) } + }) + } + + /** + Subscribes an element handler, a completion handler and disposed handler to an observable sequence. + + Also, take in an object and provide an unretained, safe to use (i.e. not implicitly unwrapped), reference to it along with the events emitted by the sequence. + + Error callback is not exposed because `Signal` can't error out. + + - Note: If `object` can't be retained, none of the other closures will be invoked. + + - parameter object: The object to provide an unretained reference on. + - parameter onNext: Action to invoke for each element in the observable sequence. + - parameter onCompleted: Action to invoke upon graceful termination of the observable sequence. + gracefully completed, errored, or if the generation is canceled by disposing subscription) + - parameter onDisposed: Action to invoke upon any type of termination of sequence (if the sequence has + gracefully completed, errored, or if the generation is canceled by disposing subscription) + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func emit( + with object: Object, + onNext: ((Object, Element) -> Void)? = nil, + onCompleted: ((Object) -> Void)? = nil, + onDisposed: ((Object) -> Void)? = nil + ) -> Disposable { + self.asObservable().subscribe( + with: object, + onNext: onNext, + onCompleted: onCompleted, + onDisposed: onDisposed + ) + } + + /** + Subscribes an element handler, a completion handler and disposed handler to an observable sequence. + + Error callback is not exposed because `Signal` can't error out. + + - parameter onNext: Action to invoke for each element in the observable sequence. + - parameter onCompleted: Action to invoke upon graceful termination of the observable sequence. + gracefully completed, errored, or if the generation is canceled by disposing subscription) + - parameter onDisposed: Action to invoke upon any type of termination of sequence (if the sequence has + gracefully completed, errored, or if the generation is canceled by disposing subscription) + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func emit( + onNext: ((Element) -> Void)? = nil, + onCompleted: (() -> Void)? = nil, + onDisposed: (() -> Void)? = nil + ) -> Disposable { + self.asObservable().subscribe(onNext: onNext, onCompleted: onCompleted, onDisposed: onDisposed) + } + + /** + Subscribes to this `Signal` with a no-op. + This method can be only called from `MainThread`. + + - note: This is an alias of `emit(onNext: nil, onCompleted: nil, onDisposed: nil)` used to fix an ambiguity bug in Swift: https://bugs.swift.org/browse/SR-13657 + + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func emit() -> Disposable { + emit(onNext: nil, onCompleted: nil, onDisposed: nil) + } +} diff --git a/Pods/RxCocoa/RxCocoa/Traits/Signal/Signal.swift b/Pods/RxCocoa/RxCocoa/Traits/Signal/Signal.swift new file mode 100644 index 00000000..e066b7ec --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/Traits/Signal/Signal.swift @@ -0,0 +1,45 @@ +// +// Signal.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 9/26/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/** + Trait that represents observable sequence with following properties: + + - it never fails + - it delivers events on `MainScheduler.instance` + - `share(scope: .whileConnected)` sharing strategy + + Additional explanation: + - all observers share sequence computation resources + - there is no replaying of sequence elements on new observer subscription + - computation of elements is reference counted with respect to the number of observers + - if there are no subscribers, it will release sequence computation resources + + In case trait that models state propagation is required, please check `Driver`. + + `Signal` can be considered a builder pattern for observable sequences that model imperative events part of the application. + + To find out more about units and how to use them, please visit `Documentation/Traits.md`. + */ +public typealias Signal = SharedSequence + +public struct SignalSharingStrategy: SharingStrategyProtocol { + public static var scheduler: SchedulerType { SharingScheduler.make() } + + public static func share(_ source: Observable) -> Observable { + source.share(scope: .whileConnected) + } +} + +extension SharedSequenceConvertibleType where SharingStrategy == SignalSharingStrategy { + /// Adds `asPublisher` to `SharingSequence` with `PublishSharingStrategy`. + public func asSignal() -> Signal { + self.asSharedSequence() + } +} diff --git a/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift b/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift new file mode 100644 index 00000000..1acc998a --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift @@ -0,0 +1,108 @@ +// +// RxCollectionViewReactiveArrayDataSource.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +// objc monkey business +class _RxCollectionViewReactiveArrayDataSource + : NSObject + , UICollectionViewDataSource { + + @objc(numberOfSectionsInCollectionView:) + func numberOfSections(in: UICollectionView) -> Int { + 1 + } + + func _collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { + 0 + } + + func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { + _collectionView(collectionView, numberOfItemsInSection: section) + } + + fileprivate func _collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { + rxAbstractMethod() + } + + func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { + _collectionView(collectionView, cellForItemAt: indexPath) + } +} + +class RxCollectionViewReactiveArrayDataSourceSequenceWrapper + : RxCollectionViewReactiveArrayDataSource + , RxCollectionViewDataSourceType { + typealias Element = Sequence + + override init(cellFactory: @escaping CellFactory) { + super.init(cellFactory: cellFactory) + } + + func collectionView(_ collectionView: UICollectionView, observedEvent: Event) { + Binder(self) { collectionViewDataSource, sectionModels in + let sections = Array(sectionModels) + collectionViewDataSource.collectionView(collectionView, observedElements: sections) + }.on(observedEvent) + } +} + + +// Please take a look at `DelegateProxyType.swift` +class RxCollectionViewReactiveArrayDataSource + : _RxCollectionViewReactiveArrayDataSource + , SectionedViewDataSourceType { + + typealias CellFactory = (UICollectionView, Int, Element) -> UICollectionViewCell + + var itemModels: [Element]? + + func modelAtIndex(_ index: Int) -> Element? { + itemModels?[index] + } + + func model(at indexPath: IndexPath) throws -> Any { + precondition(indexPath.section == 0) + guard let item = itemModels?[indexPath.item] else { + throw RxCocoaError.itemsNotYetBound(object: self) + } + return item + } + + var cellFactory: CellFactory + + init(cellFactory: @escaping CellFactory) { + self.cellFactory = cellFactory + } + + // data source + + override func _collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { + itemModels?.count ?? 0 + } + + override func _collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { + cellFactory(collectionView, indexPath.item, itemModels![indexPath.item]) + } + + // reactive + + func collectionView(_ collectionView: UICollectionView, observedElements: [Element]) { + self.itemModels = observedElements + + collectionView.reloadData() + + // workaround for http://stackoverflow.com/questions/39867325/ios-10-bug-uicollectionview-received-layout-attributes-for-a-cell-with-an-index + collectionView.collectionViewLayout.invalidateLayout() + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift b/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift new file mode 100644 index 00000000..53b84754 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift @@ -0,0 +1,92 @@ +// +// RxPickerViewAdapter.swift +// RxCocoa +// +// Created by Sergey Shulga on 12/07/2017. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import UIKit +import RxSwift + +class RxPickerViewArrayDataSource: NSObject, UIPickerViewDataSource, SectionedViewDataSourceType { + fileprivate var items: [T] = [] + + func model(at indexPath: IndexPath) throws -> Any { + guard items.indices ~= indexPath.row else { + throw RxCocoaError.itemsNotYetBound(object: self) + } + return items[indexPath.row] + } + + func numberOfComponents(in pickerView: UIPickerView) -> Int { + 1 + } + + func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int { + items.count + } +} + +class RxPickerViewSequenceDataSource + : RxPickerViewArrayDataSource + , RxPickerViewDataSourceType { + typealias Element = Sequence + + func pickerView(_ pickerView: UIPickerView, observedEvent: Event) { + Binder(self) { dataSource, items in + dataSource.items = items + pickerView.reloadAllComponents() + } + .on(observedEvent.map(Array.init)) + } +} + +final class RxStringPickerViewAdapter + : RxPickerViewSequenceDataSource + , UIPickerViewDelegate { + + typealias TitleForRow = (Int, Sequence.Element) -> String? + private let titleForRow: TitleForRow + + init(titleForRow: @escaping TitleForRow) { + self.titleForRow = titleForRow + super.init() + } + + func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? { + titleForRow(row, items[row]) + } +} + +final class RxAttributedStringPickerViewAdapter: RxPickerViewSequenceDataSource, UIPickerViewDelegate { + typealias AttributedTitleForRow = (Int, Sequence.Element) -> NSAttributedString? + private let attributedTitleForRow: AttributedTitleForRow + + init(attributedTitleForRow: @escaping AttributedTitleForRow) { + self.attributedTitleForRow = attributedTitleForRow + super.init() + } + + func pickerView(_ pickerView: UIPickerView, attributedTitleForRow row: Int, forComponent component: Int) -> NSAttributedString? { + attributedTitleForRow(row, items[row]) + } +} + +final class RxPickerViewAdapter: RxPickerViewSequenceDataSource, UIPickerViewDelegate { + typealias ViewForRow = (Int, Sequence.Element, UIView?) -> UIView + private let viewForRow: ViewForRow + + init(viewForRow: @escaping ViewForRow) { + self.viewForRow = viewForRow + super.init() + } + + func pickerView(_ pickerView: UIPickerView, viewForRow row: Int, forComponent component: Int, reusing view: UIView?) -> UIView { + viewForRow(row, items[row], view) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift b/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift new file mode 100644 index 00000000..6d612f32 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift @@ -0,0 +1,101 @@ +// +// RxTableViewReactiveArrayDataSource.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/26/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +// objc monkey business +class _RxTableViewReactiveArrayDataSource + : NSObject + , UITableViewDataSource { + + func numberOfSections(in tableView: UITableView) -> Int { + 1 + } + + func _tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + 0 + } + + func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + _tableView(tableView, numberOfRowsInSection: section) + } + + fileprivate func _tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + rxAbstractMethod() + } + + func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + _tableView(tableView, cellForRowAt: indexPath) + } +} + + +class RxTableViewReactiveArrayDataSourceSequenceWrapper + : RxTableViewReactiveArrayDataSource + , RxTableViewDataSourceType { + typealias Element = Sequence + + override init(cellFactory: @escaping CellFactory) { + super.init(cellFactory: cellFactory) + } + + func tableView(_ tableView: UITableView, observedEvent: Event) { + Binder(self) { tableViewDataSource, sectionModels in + let sections = Array(sectionModels) + tableViewDataSource.tableView(tableView, observedElements: sections) + }.on(observedEvent) + } +} + +// Please take a look at `DelegateProxyType.swift` +class RxTableViewReactiveArrayDataSource + : _RxTableViewReactiveArrayDataSource + , SectionedViewDataSourceType { + typealias CellFactory = (UITableView, Int, Element) -> UITableViewCell + + var itemModels: [Element]? + + func modelAtIndex(_ index: Int) -> Element? { + itemModels?[index] + } + + func model(at indexPath: IndexPath) throws -> Any { + precondition(indexPath.section == 0) + guard let item = itemModels?[indexPath.item] else { + throw RxCocoaError.itemsNotYetBound(object: self) + } + return item + } + + let cellFactory: CellFactory + + init(cellFactory: @escaping CellFactory) { + self.cellFactory = cellFactory + } + + override func _tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + itemModels?.count ?? 0 + } + + override func _tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + cellFactory(tableView, indexPath.item, itemModels![indexPath.row]) + } + + // reactive + + func tableView(_ tableView: UITableView, observedElements: [Element]) { + self.itemModels = observedElements + + tableView.reloadData() + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift b/Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift new file mode 100644 index 00000000..aadf7498 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift @@ -0,0 +1,15 @@ +// +// ItemEvents.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/20/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) +import UIKit + +public typealias ItemMovedEvent = (sourceIndex: IndexPath, destinationIndex: IndexPath) +public typealias WillDisplayCellEvent = (cell: UITableViewCell, indexPath: IndexPath) +public typealias DidEndDisplayingCellEvent = (cell: UITableViewCell, indexPath: IndexPath) +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/NSTextStorage+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/NSTextStorage+Rx.swift new file mode 100644 index 00000000..ba305476 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/NSTextStorage+Rx.swift @@ -0,0 +1,35 @@ +// +// NSTextStorage+Rx.swift +// RxCocoa +// +// Created by Segii Shulga on 12/30/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + import RxSwift + import UIKit + + extension Reactive where Base: NSTextStorage { + + /// Reactive wrapper for `delegate`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var delegate: DelegateProxy { + return RxTextStorageDelegateProxy.proxy(for: base) + } + + /// Reactive wrapper for `delegate` message. + public var didProcessEditingRangeChangeInLength: Observable<(editedMask: NSTextStorage.EditActions, editedRange: NSRange, delta: Int)> { + return delegate + .methodInvoked(#selector(NSTextStorageDelegate.textStorage(_:didProcessEditing:range:changeInLength:))) + .map { a in + let editedMask = NSTextStorage.EditActions(rawValue: try castOrThrow(UInt.self, a[1]) ) + let editedRange = try castOrThrow(NSValue.self, a[2]).rangeValue + let delta = try castOrThrow(Int.self, a[3]) + + return (editedMask, editedRange, delta) + } + } + } +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift b/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift new file mode 100644 index 00000000..b098a9ed --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift @@ -0,0 +1,27 @@ +// +// RxCollectionViewDataSourceType.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +/// Marks data source as `UICollectionView` reactive data source enabling it to be used with one of the `bindTo` methods. +public protocol RxCollectionViewDataSourceType /*: UICollectionViewDataSource*/ { + + /// Type of elements that can be bound to collection view. + associatedtype Element + + /// New observable sequence event observed. + /// + /// - parameter collectionView: Bound collection view. + /// - parameter observedEvent: Event + func collectionView(_ collectionView: UICollectionView, observedEvent: Event) +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift b/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift new file mode 100644 index 00000000..1f390bff --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift @@ -0,0 +1,26 @@ +// +// RxPickerViewDataSourceType.swift +// RxCocoa +// +// Created by Sergey Shulga on 05/07/2017. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import UIKit +import RxSwift + +/// Marks data source as `UIPickerView` reactive data source enabling it to be used with one of the `bindTo` methods. +public protocol RxPickerViewDataSourceType { + /// Type of elements that can be bound to picker view. + associatedtype Element + + /// New observable sequence event observed. + /// + /// - parameter pickerView: Bound picker view. + /// - parameter observedEvent: Event + func pickerView(_ pickerView: UIPickerView, observedEvent: Event) +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift b/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift new file mode 100644 index 00000000..d59af9e4 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift @@ -0,0 +1,27 @@ +// +// RxTableViewDataSourceType.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/26/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +/// Marks data source as `UITableView` reactive data source enabling it to be used with one of the `bindTo` methods. +public protocol RxTableViewDataSourceType /*: UITableViewDataSource*/ { + + /// Type of elements that can be bound to table view. + associatedtype Element + + /// New observable sequence event observed. + /// + /// - parameter tableView: Bound table view. + /// - parameter observedEvent: Event + func tableView(_ tableView: UITableView, observedEvent: Event) +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift new file mode 100644 index 00000000..5ddfda78 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift @@ -0,0 +1,92 @@ +// +// RxCollectionViewDataSourcePrefetchingProxy.swift +// RxCocoa +// +// Created by Rowan Livingstone on 2/15/18. +// Copyright © 2018 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +@available(iOS 10.0, tvOS 10.0, *) +extension UICollectionView: HasPrefetchDataSource { + public typealias PrefetchDataSource = UICollectionViewDataSourcePrefetching +} + +@available(iOS 10.0, tvOS 10.0, *) +private let collectionViewPrefetchDataSourceNotSet = CollectionViewPrefetchDataSourceNotSet() + +@available(iOS 10.0, tvOS 10.0, *) +private final class CollectionViewPrefetchDataSourceNotSet + : NSObject + , UICollectionViewDataSourcePrefetching { + + func collectionView(_ collectionView: UICollectionView, prefetchItemsAt indexPaths: [IndexPath]) {} + +} + +@available(iOS 10.0, tvOS 10.0, *) +open class RxCollectionViewDataSourcePrefetchingProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var collectionView: UICollectionView? + + /// - parameter collectionView: Parent object for delegate proxy. + public init(collectionView: ParentObject) { + self.collectionView = collectionView + super.init(parentObject: collectionView, delegateProxy: RxCollectionViewDataSourcePrefetchingProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxCollectionViewDataSourcePrefetchingProxy(collectionView: $0) } + } + + private var _prefetchItemsPublishSubject: PublishSubject<[IndexPath]>? + + /// Optimized version used for observing prefetch items callbacks. + internal var prefetchItemsPublishSubject: PublishSubject<[IndexPath]> { + if let subject = _prefetchItemsPublishSubject { + return subject + } + + let subject = PublishSubject<[IndexPath]>() + _prefetchItemsPublishSubject = subject + + return subject + } + + private weak var _requiredMethodsPrefetchDataSource: UICollectionViewDataSourcePrefetching? = collectionViewPrefetchDataSourceNotSet + + /// For more information take a look at `DelegateProxyType`. + open override func setForwardToDelegate(_ forwardToDelegate: UICollectionViewDataSourcePrefetching?, retainDelegate: Bool) { + _requiredMethodsPrefetchDataSource = forwardToDelegate ?? collectionViewPrefetchDataSourceNotSet + super.setForwardToDelegate(forwardToDelegate, retainDelegate: retainDelegate) + } + + deinit { + if let subject = _prefetchItemsPublishSubject { + subject.on(.completed) + } + } + +} + +@available(iOS 10.0, tvOS 10.0, *) +extension RxCollectionViewDataSourcePrefetchingProxy: UICollectionViewDataSourcePrefetching { + /// Required delegate method implementation. + public func collectionView(_ collectionView: UICollectionView, prefetchItemsAt indexPaths: [IndexPath]) { + if let subject = _prefetchItemsPublishSubject { + subject.on(.next(indexPaths)) + } + + (_requiredMethodsPrefetchDataSource ?? collectionViewPrefetchDataSourceNotSet).collectionView(collectionView, prefetchItemsAt: indexPaths) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift new file mode 100644 index 00000000..534b6fa4 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift @@ -0,0 +1,75 @@ +// +// RxCollectionViewDataSourceProxy.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +extension UICollectionView: HasDataSource { + public typealias DataSource = UICollectionViewDataSource +} + +private let collectionViewDataSourceNotSet = CollectionViewDataSourceNotSet() + +private final class CollectionViewDataSourceNotSet + : NSObject + , UICollectionViewDataSource { + + func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { + 0 + } + + // The cell that is returned must be retrieved from a call to -dequeueReusableCellWithReuseIdentifier:forIndexPath: + func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { + rxAbstractMethod(message: dataSourceNotSet) + } + +} + +/// For more information take a look at `DelegateProxyType`. +open class RxCollectionViewDataSourceProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var collectionView: UICollectionView? + + /// - parameter collectionView: Parent object for delegate proxy. + public init(collectionView: ParentObject) { + self.collectionView = collectionView + super.init(parentObject: collectionView, delegateProxy: RxCollectionViewDataSourceProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxCollectionViewDataSourceProxy(collectionView: $0) } + } + + private weak var _requiredMethodsDataSource: UICollectionViewDataSource? = collectionViewDataSourceNotSet + + /// For more information take a look at `DelegateProxyType`. + open override func setForwardToDelegate(_ forwardToDelegate: UICollectionViewDataSource?, retainDelegate: Bool) { + _requiredMethodsDataSource = forwardToDelegate ?? collectionViewDataSourceNotSet + super.setForwardToDelegate(forwardToDelegate, retainDelegate: retainDelegate) + } +} + +extension RxCollectionViewDataSourceProxy: UICollectionViewDataSource { + /// Required delegate method implementation. + public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { + (_requiredMethodsDataSource ?? collectionViewDataSourceNotSet).collectionView(collectionView, numberOfItemsInSection: section) + } + + /// Required delegate method implementation. + public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { + (_requiredMethodsDataSource ?? collectionViewDataSourceNotSet).collectionView(collectionView, cellForItemAt: indexPath) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift new file mode 100644 index 00000000..da04caa6 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift @@ -0,0 +1,32 @@ +// +// RxCollectionViewDelegateProxy.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +/// For more information take a look at `DelegateProxyType`. +open class RxCollectionViewDelegateProxy + : RxScrollViewDelegateProxy { + + /// Typed parent object. + public weak private(set) var collectionView: UICollectionView? + + /// Initializes `RxCollectionViewDelegateProxy` + /// + /// - parameter collectionView: Parent object for delegate proxy. + public init(collectionView: UICollectionView) { + self.collectionView = collectionView + super.init(scrollView: collectionView) + } +} + +extension RxCollectionViewDelegateProxy: UICollectionViewDelegateFlowLayout {} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxDelegateProxyCrashFix.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxDelegateProxyCrashFix.swift new file mode 100644 index 00000000..04f7eb18 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxDelegateProxyCrashFix.swift @@ -0,0 +1,31 @@ +// +// RxDelegateProxyCrashFix.swift +// RxCocoa +// +// Created by SlashDevSlashGnoll (SlashDevSlashGnoll@users.noreply.github.com) on 9/9/22. +// Copyright © 2022 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) +import Foundation + +// This extension exists solely to get around a crash found on iOS 15.4+ where a `text` +// method invocation is being sent to the RxCollectionViewDelegateProxy which doesn't implement it. +// This is tracked at this bug: https://github.com/ReactiveX/RxSwift/issues/2428 This can be +// removed if/when the actual source of the problem is found +@objc extension RxCollectionViewDelegateProxy { + var text: String { + return String() + } +} + +// This extension exists solely to get around a crash found on iOS 15.4+ where a `text` +// method invocation is being sent to the RxTableViewDelegateProxy which doesn't implement it. +// This is tracked at this bug: https://github.com/ReactiveX/RxSwift/issues/2428 This can be +//removed if/when the actual source of the problem is found +@objc extension RxTableViewDelegateProxy { + var text: String { + return String() + } +} +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift new file mode 100644 index 00000000..b4a827ed --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift @@ -0,0 +1,39 @@ +// +// RxNavigationControllerDelegateProxy.swift +// RxCocoa +// +// Created by Diogo on 13/04/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + + import UIKit + import RxSwift + + extension UINavigationController: HasDelegate { + public typealias Delegate = UINavigationControllerDelegate + } + + /// For more information take a look at `DelegateProxyType`. + open class RxNavigationControllerDelegateProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var navigationController: UINavigationController? + + /// - parameter navigationController: Parent object for delegate proxy. + public init(navigationController: ParentObject) { + self.navigationController = navigationController + super.init(parentObject: navigationController, delegateProxy: RxNavigationControllerDelegateProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxNavigationControllerDelegateProxy(navigationController: $0) } + } + } + + extension RxNavigationControllerDelegateProxy: UINavigationControllerDelegate {} +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift new file mode 100644 index 00000000..ecd0288d --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift @@ -0,0 +1,72 @@ +// +// RxPickerViewDataSourceProxy.swift +// RxCocoa +// +// Created by Sergey Shulga on 05/07/2017. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import UIKit +import RxSwift + +extension UIPickerView: HasDataSource { + public typealias DataSource = UIPickerViewDataSource +} + +private let pickerViewDataSourceNotSet = PickerViewDataSourceNotSet() + +final private class PickerViewDataSourceNotSet: NSObject, UIPickerViewDataSource { + func numberOfComponents(in pickerView: UIPickerView) -> Int { + 0 + } + + func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int { + 0 + } +} + +/// For more information take a look at `DelegateProxyType`. +public class RxPickerViewDataSourceProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var pickerView: UIPickerView? + + /// - parameter pickerView: Parent object for delegate proxy. + public init(pickerView: ParentObject) { + self.pickerView = pickerView + super.init(parentObject: pickerView, delegateProxy: RxPickerViewDataSourceProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxPickerViewDataSourceProxy(pickerView: $0) } + } + + private weak var _requiredMethodsDataSource: UIPickerViewDataSource? = pickerViewDataSourceNotSet + + /// For more information take a look at `DelegateProxyType`. + public override func setForwardToDelegate(_ forwardToDelegate: UIPickerViewDataSource?, retainDelegate: Bool) { + _requiredMethodsDataSource = forwardToDelegate ?? pickerViewDataSourceNotSet + super.setForwardToDelegate(forwardToDelegate, retainDelegate: retainDelegate) + } +} + +// MARK: UIPickerViewDataSource + +extension RxPickerViewDataSourceProxy: UIPickerViewDataSource { + /// Required delegate method implementation. + public func numberOfComponents(in pickerView: UIPickerView) -> Int { + (_requiredMethodsDataSource ?? pickerViewDataSourceNotSet).numberOfComponents(in: pickerView) + } + + /// Required delegate method implementation. + public func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int { + (_requiredMethodsDataSource ?? pickerViewDataSourceNotSet).pickerView(pickerView, numberOfRowsInComponent: component) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift new file mode 100644 index 00000000..9e64f01f --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift @@ -0,0 +1,38 @@ +// +// RxPickerViewDelegateProxy.swift +// RxCocoa +// +// Created by Segii Shulga on 5/12/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + + import RxSwift + import UIKit + + extension UIPickerView: HasDelegate { + public typealias Delegate = UIPickerViewDelegate + } + + open class RxPickerViewDelegateProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var pickerView: UIPickerView? + + /// - parameter pickerView: Parent object for delegate proxy. + public init(pickerView: ParentObject) { + self.pickerView = pickerView + super.init(parentObject: pickerView, delegateProxy: RxPickerViewDelegateProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxPickerViewDelegateProxy(pickerView: $0) } + } + } + + extension RxPickerViewDelegateProxy: UIPickerViewDelegate {} +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift new file mode 100644 index 00000000..02e75920 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift @@ -0,0 +1,91 @@ +// +// RxScrollViewDelegateProxy.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import RxSwift +import UIKit + +extension UIScrollView: HasDelegate { + public typealias Delegate = UIScrollViewDelegate +} + +/// For more information take a look at `DelegateProxyType`. +open class RxScrollViewDelegateProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var scrollView: UIScrollView? + + /// - parameter scrollView: Parent object for delegate proxy. + public init(scrollView: ParentObject) { + self.scrollView = scrollView + super.init(parentObject: scrollView, delegateProxy: RxScrollViewDelegateProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxScrollViewDelegateProxy(scrollView: $0) } + self.register { RxTableViewDelegateProxy(tableView: $0) } + self.register { RxCollectionViewDelegateProxy(collectionView: $0) } + self.register { RxTextViewDelegateProxy(textView: $0) } + } + + private var _contentOffsetBehaviorSubject: BehaviorSubject? + private var _contentOffsetPublishSubject: PublishSubject<()>? + + /// Optimized version used for observing content offset changes. + internal var contentOffsetBehaviorSubject: BehaviorSubject { + if let subject = _contentOffsetBehaviorSubject { + return subject + } + + let subject = BehaviorSubject(value: self.scrollView?.contentOffset ?? CGPoint.zero) + _contentOffsetBehaviorSubject = subject + + return subject + } + + /// Optimized version used for observing content offset changes. + internal var contentOffsetPublishSubject: PublishSubject<()> { + if let subject = _contentOffsetPublishSubject { + return subject + } + + let subject = PublishSubject<()>() + _contentOffsetPublishSubject = subject + + return subject + } + + deinit { + if let subject = _contentOffsetBehaviorSubject { + subject.on(.completed) + } + + if let subject = _contentOffsetPublishSubject { + subject.on(.completed) + } + } +} + +extension RxScrollViewDelegateProxy: UIScrollViewDelegate { + /// For more information take a look at `DelegateProxyType`. + public func scrollViewDidScroll(_ scrollView: UIScrollView) { + if let subject = _contentOffsetBehaviorSubject { + subject.on(.next(scrollView.contentOffset)) + } + if let subject = _contentOffsetPublishSubject { + subject.on(.next(())) + } + self._forwardToDelegate?.scrollViewDidScroll?(scrollView) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift new file mode 100644 index 00000000..94bd30bd --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift @@ -0,0 +1,40 @@ +// +// RxSearchBarDelegateProxy.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 7/4/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +extension UISearchBar: HasDelegate { + public typealias Delegate = UISearchBarDelegate +} + +/// For more information take a look at `DelegateProxyType`. +open class RxSearchBarDelegateProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var searchBar: UISearchBar? + + /// - parameter searchBar: Parent object for delegate proxy. + public init(searchBar: ParentObject) { + self.searchBar = searchBar + super.init(parentObject: searchBar, delegateProxy: RxSearchBarDelegateProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxSearchBarDelegateProxy(searchBar: $0) } + } +} + +extension RxSearchBarDelegateProxy: UISearchBarDelegate {} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift new file mode 100644 index 00000000..64e36a21 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift @@ -0,0 +1,40 @@ +// +// RxSearchControllerDelegateProxy.swift +// RxCocoa +// +// Created by Segii Shulga on 3/17/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import RxSwift +import UIKit + +extension UISearchController: HasDelegate { + public typealias Delegate = UISearchControllerDelegate +} + +/// For more information take a look at `DelegateProxyType`. +open class RxSearchControllerDelegateProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var searchController: UISearchController? + + /// - parameter searchController: Parent object for delegate proxy. + public init(searchController: UISearchController) { + self.searchController = searchController + super.init(parentObject: searchController, delegateProxy: RxSearchControllerDelegateProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxSearchControllerDelegateProxy(searchController: $0) } + } +} + +extension RxSearchControllerDelegateProxy: UISearchControllerDelegate {} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift new file mode 100644 index 00000000..62d42ac0 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift @@ -0,0 +1,40 @@ +// +// RxTabBarControllerDelegateProxy.swift +// RxCocoa +// +// Created by Yusuke Kita on 2016/12/07. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +extension UITabBarController: HasDelegate { + public typealias Delegate = UITabBarControllerDelegate +} + +/// For more information take a look at `DelegateProxyType`. +open class RxTabBarControllerDelegateProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var tabBar: UITabBarController? + + /// - parameter tabBar: Parent object for delegate proxy. + public init(tabBar: ParentObject) { + self.tabBar = tabBar + super.init(parentObject: tabBar, delegateProxy: RxTabBarControllerDelegateProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxTabBarControllerDelegateProxy(tabBar: $0) } + } +} + +extension RxTabBarControllerDelegateProxy: UITabBarControllerDelegate {} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift new file mode 100644 index 00000000..49c5cf7f --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift @@ -0,0 +1,50 @@ +// +// RxTabBarDelegateProxy.swift +// RxCocoa +// +// Created by Jesse Farless on 5/14/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +extension UITabBar: HasDelegate { + public typealias Delegate = UITabBarDelegate +} + +/// For more information take a look at `DelegateProxyType`. +open class RxTabBarDelegateProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var tabBar: UITabBar? + + /// - parameter tabBar: Parent object for delegate proxy. + public init(tabBar: ParentObject) { + self.tabBar = tabBar + super.init(parentObject: tabBar, delegateProxy: RxTabBarDelegateProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxTabBarDelegateProxy(tabBar: $0) } + } + + /// For more information take a look at `DelegateProxyType`. + open class func currentDelegate(for object: ParentObject) -> UITabBarDelegate? { + object.delegate + } + + /// For more information take a look at `DelegateProxyType`. + open class func setCurrentDelegate(_ delegate: UITabBarDelegate?, to object: ParentObject) { + object.delegate = delegate + } +} + +extension RxTabBarDelegateProxy: UITabBarDelegate {} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift new file mode 100644 index 00000000..d0831f2e --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift @@ -0,0 +1,93 @@ +// +// RxTableViewDataSourcePrefetchingProxy.swift +// RxCocoa +// +// Created by Rowan Livingstone on 2/15/18. +// Copyright © 2018 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +@available(iOS 10.0, tvOS 10.0, *) +extension UITableView: HasPrefetchDataSource { + public typealias PrefetchDataSource = UITableViewDataSourcePrefetching +} + +@available(iOS 10.0, tvOS 10.0, *) +private let tableViewPrefetchDataSourceNotSet = TableViewPrefetchDataSourceNotSet() + +@available(iOS 10.0, tvOS 10.0, *) +private final class TableViewPrefetchDataSourceNotSet + : NSObject + , UITableViewDataSourcePrefetching { + + func tableView(_ tableView: UITableView, prefetchRowsAt indexPaths: [IndexPath]) {} + +} + +@available(iOS 10.0, tvOS 10.0, *) +open class RxTableViewDataSourcePrefetchingProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var tableView: UITableView? + + /// - parameter tableView: Parent object for delegate proxy. + public init(tableView: ParentObject) { + self.tableView = tableView + super.init(parentObject: tableView, delegateProxy: RxTableViewDataSourcePrefetchingProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxTableViewDataSourcePrefetchingProxy(tableView: $0) } + } + + private var _prefetchRowsPublishSubject: PublishSubject<[IndexPath]>? + + /// Optimized version used for observing prefetch rows callbacks. + internal var prefetchRowsPublishSubject: PublishSubject<[IndexPath]> { + if let subject = _prefetchRowsPublishSubject { + return subject + } + + let subject = PublishSubject<[IndexPath]>() + _prefetchRowsPublishSubject = subject + + return subject + } + + private weak var _requiredMethodsPrefetchDataSource: UITableViewDataSourcePrefetching? = tableViewPrefetchDataSourceNotSet + + /// For more information take a look at `DelegateProxyType`. + open override func setForwardToDelegate(_ forwardToDelegate: UITableViewDataSourcePrefetching?, retainDelegate: Bool) { + _requiredMethodsPrefetchDataSource = forwardToDelegate ?? tableViewPrefetchDataSourceNotSet + super.setForwardToDelegate(forwardToDelegate, retainDelegate: retainDelegate) + } + + deinit { + if let subject = _prefetchRowsPublishSubject { + subject.on(.completed) + } + } + +} + +@available(iOS 10.0, tvOS 10.0, *) +extension RxTableViewDataSourcePrefetchingProxy: UITableViewDataSourcePrefetching { + /// Required delegate method implementation. + public func tableView(_ tableView: UITableView, prefetchRowsAt indexPaths: [IndexPath]) { + if let subject = _prefetchRowsPublishSubject { + subject.on(.next(indexPaths)) + } + + (_requiredMethodsPrefetchDataSource ?? tableViewPrefetchDataSourceNotSet).tableView(tableView, prefetchRowsAt: indexPaths) + } +} + +#endif + diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift new file mode 100644 index 00000000..4c5e8638 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift @@ -0,0 +1,73 @@ +// +// RxTableViewDataSourceProxy.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +extension UITableView: HasDataSource { + public typealias DataSource = UITableViewDataSource +} + +private let tableViewDataSourceNotSet = TableViewDataSourceNotSet() + +private final class TableViewDataSourceNotSet + : NSObject + , UITableViewDataSource { + + func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + 0 + } + + func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + rxAbstractMethod(message: dataSourceNotSet) + } +} + +/// For more information take a look at `DelegateProxyType`. +open class RxTableViewDataSourceProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var tableView: UITableView? + + /// - parameter tableView: Parent object for delegate proxy. + public init(tableView: UITableView) { + self.tableView = tableView + super.init(parentObject: tableView, delegateProxy: RxTableViewDataSourceProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxTableViewDataSourceProxy(tableView: $0) } + } + + private weak var _requiredMethodsDataSource: UITableViewDataSource? = tableViewDataSourceNotSet + + /// For more information take a look at `DelegateProxyType`. + open override func setForwardToDelegate(_ forwardToDelegate: UITableViewDataSource?, retainDelegate: Bool) { + _requiredMethodsDataSource = forwardToDelegate ?? tableViewDataSourceNotSet + super.setForwardToDelegate(forwardToDelegate, retainDelegate: retainDelegate) + } +} + +extension RxTableViewDataSourceProxy: UITableViewDataSource { + /// Required delegate method implementation. + public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + (_requiredMethodsDataSource ?? tableViewDataSourceNotSet).tableView(tableView, numberOfRowsInSection: section) + } + + /// Required delegate method implementation. + public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + (_requiredMethodsDataSource ?? tableViewDataSourceNotSet).tableView(tableView, cellForRowAt: indexPath) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift new file mode 100644 index 00000000..901fe665 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift @@ -0,0 +1,31 @@ +// +// RxTableViewDelegateProxy.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 6/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +/// For more information take a look at `DelegateProxyType`. +open class RxTableViewDelegateProxy + : RxScrollViewDelegateProxy { + + /// Typed parent object. + public weak private(set) var tableView: UITableView? + + /// - parameter tableView: Parent object for delegate proxy. + public init(tableView: UITableView) { + self.tableView = tableView + super.init(scrollView: tableView) + } + +} + +extension RxTableViewDelegateProxy: UITableViewDelegate {} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift new file mode 100644 index 00000000..e8ff33f0 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift @@ -0,0 +1,38 @@ +// +// RxTextStorageDelegateProxy.swift +// RxCocoa +// +// Created by Segii Shulga on 12/30/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + + import RxSwift + import UIKit + + extension NSTextStorage: HasDelegate { + public typealias Delegate = NSTextStorageDelegate + } + + open class RxTextStorageDelegateProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var textStorage: NSTextStorage? + + /// - parameter textStorage: Parent object for delegate proxy. + public init(textStorage: NSTextStorage) { + self.textStorage = textStorage + super.init(parentObject: textStorage, delegateProxy: RxTextStorageDelegateProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxTextStorageDelegateProxy(textStorage: $0) } + } + } + + extension RxTextStorageDelegateProxy: NSTextStorageDelegate {} +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift new file mode 100644 index 00000000..9d934247 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift @@ -0,0 +1,42 @@ +// +// RxTextViewDelegateProxy.swift +// RxCocoa +// +// Created by Yuta ToKoRo on 7/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +/// For more information take a look at `DelegateProxyType`. +open class RxTextViewDelegateProxy + : RxScrollViewDelegateProxy { + + /// Typed parent object. + public weak private(set) var textView: UITextView? + + /// - parameter textview: Parent object for delegate proxy. + public init(textView: UITextView) { + self.textView = textView + super.init(scrollView: textView) + } +} + +extension RxTextViewDelegateProxy: UITextViewDelegate { + /// For more information take a look at `DelegateProxyType`. + @objc open func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { + /** + We've had some issues with observing text changes. This is here just in case we need the same hack in future and that + we wouldn't need to change the public interface. + */ + let forwardToDelegate = self.forwardToDelegate() as? UITextViewDelegate + return forwardToDelegate?.textView?(textView, + shouldChangeTextIn: range, + replacementText: text) ?? true + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift new file mode 100644 index 00000000..80181f80 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift @@ -0,0 +1,45 @@ +// +// RxWKNavigationDelegateProxy.swift +// RxCocoa +// +// Created by Giuseppe Lanza on 14/02/2020. +// Copyright © 2020 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(macOS) + +import RxSwift +import WebKit + +@available(iOS 8.0, macOS 10.10, macOSApplicationExtension 10.10, *) +open class RxWKNavigationDelegateProxy + : DelegateProxy + , DelegateProxyType { + + /// Typed parent object. + public weak private(set) var webView: WKWebView? + + /// - parameter webView: Parent object for delegate proxy. + public init(webView: ParentObject) { + self.webView = webView + super.init(parentObject: webView, delegateProxy: RxWKNavigationDelegateProxy.self) + } + + // Register known implementations + public static func registerKnownImplementations() { + self.register { RxWKNavigationDelegateProxy(webView: $0) } + } + + public static func currentDelegate(for object: WKWebView) -> WKNavigationDelegate? { + object.navigationDelegate + } + + public static func setCurrentDelegate(_ delegate: WKNavigationDelegate?, to object: WKWebView) { + object.navigationDelegate = delegate + } +} + +@available(iOS 8.0, macOS 10.10, macOSApplicationExtension 10.10, *) +extension RxWKNavigationDelegateProxy: WKNavigationDelegate {} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIActivityIndicatorView+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIActivityIndicatorView+Rx.swift new file mode 100644 index 00000000..ca2d4f1b --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIActivityIndicatorView+Rx.swift @@ -0,0 +1,27 @@ +// +// UIActivityIndicatorView+Rx.swift +// RxCocoa +// +// Created by Ivan Persidskiy on 02/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +extension Reactive where Base: UIActivityIndicatorView { + /// Bindable sink for `startAnimating()`, `stopAnimating()` methods. + public var isAnimating: Binder { + Binder(self.base) { activityIndicator, active in + if active { + activityIndicator.startAnimating() + } else { + activityIndicator.stopAnimating() + } + } + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIApplication+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIApplication+Rx.swift new file mode 100644 index 00000000..d7761058 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIApplication+Rx.swift @@ -0,0 +1,106 @@ +// +// UIApplication+Rx.swift +// RxCocoa +// +// Created by Mads Bøgeskov on 18/01/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import UIKit +import RxSwift + +extension Reactive where Base: UIApplication { + /// Bindable sink for `isNetworkActivityIndicatorVisible`. + public var isNetworkActivityIndicatorVisible: Binder { + return Binder(self.base) { application, active in + application.isNetworkActivityIndicatorVisible = active + } + } + + /// Reactive wrapper for `UIApplication.didEnterBackgroundNotification` + public static var didEnterBackground: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.didEnterBackgroundNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.willEnterForegroundNotification` + public static var willEnterForeground: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.willEnterForegroundNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.didFinishLaunchingNotification` + public static var didFinishLaunching: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.didFinishLaunchingNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.didBecomeActiveNotification` + public static var didBecomeActive: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.didBecomeActiveNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.willResignActiveNotification` + public static var willResignActive: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.willResignActiveNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.didReceiveMemoryWarningNotification` + public static var didReceiveMemoryWarning: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.didReceiveMemoryWarningNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.willTerminateNotification` + public static var willTerminate: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.willTerminateNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.significantTimeChangeNotification` + public static var significantTimeChange: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.significantTimeChangeNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.backgroundRefreshStatusDidChangeNotification` + public static var backgroundRefreshStatusDidChange: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.backgroundRefreshStatusDidChangeNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.protectedDataWillBecomeUnavailableNotification` + public static var protectedDataWillBecomeUnavailable: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.protectedDataWillBecomeUnavailableNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.protectedDataDidBecomeAvailableNotification` + public static var protectedDataDidBecomeAvailable: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.protectedDataDidBecomeAvailableNotification).map { _ in } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `UIApplication.userDidTakeScreenshotNotification` + public static var userDidTakeScreenshot: ControlEvent { + let source = NotificationCenter.default.rx.notification(UIApplication.userDidTakeScreenshotNotification).map { _ in } + + return ControlEvent(events: source) + } +} +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIBarButtonItem+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIBarButtonItem+Rx.swift new file mode 100644 index 00000000..0bcaa994 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIBarButtonItem+Rx.swift @@ -0,0 +1,72 @@ +// +// UIBarButtonItem+Rx.swift +// RxCocoa +// +// Created by Daniel Tartaglia on 5/31/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +private var rx_tap_key: UInt8 = 0 + +extension Reactive where Base: UIBarButtonItem { + /// Reactive wrapper for target action pattern on `self`. + public var tap: ControlEvent<()> { + let source = lazyInstanceObservable(&rx_tap_key) { () -> Observable<()> in + Observable.create { [weak control = self.base] observer in + guard let control = control else { + observer.on(.completed) + return Disposables.create() + } + let target = BarButtonItemTarget(barButtonItem: control) { + observer.on(.next(())) + } + return target + } + .take(until: self.deallocated) + .share() + } + + return ControlEvent(events: source) + } +} + + +@objc +final class BarButtonItemTarget: RxTarget { + typealias Callback = () -> Void + + weak var barButtonItem: UIBarButtonItem? + var callback: Callback! + + init(barButtonItem: UIBarButtonItem, callback: @escaping () -> Void) { + self.barButtonItem = barButtonItem + self.callback = callback + super.init() + barButtonItem.target = self + barButtonItem.action = #selector(BarButtonItemTarget.action(_:)) + } + + override func dispose() { + super.dispose() +#if DEBUG + MainScheduler.ensureRunningOnMainThread() +#endif + + barButtonItem?.target = nil + barButtonItem?.action = nil + + callback = nil + } + + @objc func action(_ sender: AnyObject) { + callback() + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift new file mode 100644 index 00000000..4d0f4c32 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift @@ -0,0 +1,82 @@ +// +// UIButton+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 3/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import RxSwift +import UIKit + +extension Reactive where Base: UIButton { + + /// Reactive wrapper for `TouchUpInside` control event. + public var tap: ControlEvent { + controlEvent(.touchUpInside) + } +} + +#endif + +#if os(tvOS) + +import RxSwift +import UIKit + +extension Reactive where Base: UIButton { + + /// Reactive wrapper for `PrimaryActionTriggered` control event. + public var primaryAction: ControlEvent { + controlEvent(.primaryActionTriggered) + } + +} + +#endif + +#if os(iOS) || os(tvOS) + +import RxSwift +import UIKit + +extension Reactive where Base: UIButton { + /// Reactive wrapper for `setTitle(_:for:)` + public func title(for controlState: UIControl.State = []) -> Binder { + Binder(self.base) { button, title in + button.setTitle(title, for: controlState) + } + } + + /// Reactive wrapper for `setImage(_:for:)` + public func image(for controlState: UIControl.State = []) -> Binder { + Binder(self.base) { button, image in + button.setImage(image, for: controlState) + } + } + + /// Reactive wrapper for `setBackgroundImage(_:for:)` + public func backgroundImage(for controlState: UIControl.State = []) -> Binder { + Binder(self.base) { button, image in + button.setBackgroundImage(image, for: controlState) + } + } + +} +#endif + +#if os(iOS) || os(tvOS) + import RxSwift + import UIKit + + extension Reactive where Base: UIButton { + /// Reactive wrapper for `setAttributedTitle(_:controlState:)` + public func attributedTitle(for controlState: UIControl.State = []) -> Binder { + return Binder(self.base) { button, attributedTitle -> Void in + button.setAttributedTitle(attributedTitle, for: controlState) + } + } + } +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UICollectionView+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UICollectionView+Rx.swift new file mode 100644 index 00000000..8f4bdb3a --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UICollectionView+Rx.swift @@ -0,0 +1,380 @@ +// +// UICollectionView+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 4/2/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import RxSwift +import UIKit + +// Items + +extension Reactive where Base: UICollectionView { + + /** + Binds sequences of elements to collection view items. + + - parameter source: Observable sequence of items. + - parameter cellFactory: Transform between sequence elements and view cells. + - returns: Disposable object that can be used to unbind. + + Example + + let items = Observable.just([ + 1, + 2, + 3 + ]) + + items + .bind(to: collectionView.rx.items) { (collectionView, row, element) in + let indexPath = IndexPath(row: row, section: 0) + let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! NumberCell + cell.value?.text = "\(element) @ \(row)" + return cell + } + .disposed(by: disposeBag) + */ + public func items + (_ source: Source) + -> (_ cellFactory: @escaping (UICollectionView, Int, Sequence.Element) -> UICollectionViewCell) + -> Disposable where Source.Element == Sequence { + return { cellFactory in + let dataSource = RxCollectionViewReactiveArrayDataSourceSequenceWrapper(cellFactory: cellFactory) + return self.items(dataSource: dataSource)(source) + } + + } + + /** + Binds sequences of elements to collection view items. + + - parameter cellIdentifier: Identifier used to dequeue cells. + - parameter source: Observable sequence of items. + - parameter configureCell: Transform between sequence elements and view cells. + - parameter cellType: Type of collection view cell. + - returns: Disposable object that can be used to unbind. + + Example + + let items = Observable.just([ + 1, + 2, + 3 + ]) + + items + .bind(to: collectionView.rx.items(cellIdentifier: "Cell", cellType: NumberCell.self)) { (row, element, cell) in + cell.value?.text = "\(element) @ \(row)" + } + .disposed(by: disposeBag) + */ + public func items + (cellIdentifier: String, cellType: Cell.Type = Cell.self) + -> (_ source: Source) + -> (_ configureCell: @escaping (Int, Sequence.Element, Cell) -> Void) + -> Disposable where Source.Element == Sequence { + return { source in + return { configureCell in + let dataSource = RxCollectionViewReactiveArrayDataSourceSequenceWrapper { cv, i, item in + let indexPath = IndexPath(item: i, section: 0) + let cell = cv.dequeueReusableCell(withReuseIdentifier: cellIdentifier, for: indexPath) as! Cell + configureCell(i, item, cell) + return cell + } + + return self.items(dataSource: dataSource)(source) + } + } + } + + + /** + Binds sequences of elements to collection view items using a custom reactive data used to perform the transformation. + + - parameter dataSource: Data source used to transform elements to view cells. + - parameter source: Observable sequence of items. + - returns: Disposable object that can be used to unbind. + + Example + + let dataSource = RxCollectionViewSectionedReloadDataSource>() + + let items = Observable.just([ + SectionModel(model: "First section", items: [ + 1.0, + 2.0, + 3.0 + ]), + SectionModel(model: "Second section", items: [ + 1.0, + 2.0, + 3.0 + ]), + SectionModel(model: "Third section", items: [ + 1.0, + 2.0, + 3.0 + ]) + ]) + + dataSource.configureCell = { (dataSource, cv, indexPath, element) in + let cell = cv.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! NumberCell + cell.value?.text = "\(element) @ row \(indexPath.row)" + return cell + } + + items + .bind(to: collectionView.rx.items(dataSource: dataSource)) + .disposed(by: disposeBag) + */ + public func items< + DataSource: RxCollectionViewDataSourceType & UICollectionViewDataSource, + Source: ObservableType> + (dataSource: DataSource) + -> (_ source: Source) + -> Disposable where DataSource.Element == Source.Element + { + return { source in + // This is called for side effects only, and to make sure delegate proxy is in place when + // data source is being bound. + // This is needed because theoretically the data source subscription itself might + // call `self.rx.delegate`. If that happens, it might cause weird side effects since + // setting data source will set delegate, and UICollectionView might get into a weird state. + // Therefore it's better to set delegate proxy first, just to be sure. + _ = self.delegate + // Strong reference is needed because data source is in use until result subscription is disposed + return source.subscribeProxyDataSource(ofObject: self.base, dataSource: dataSource, retainDataSource: true) { [weak collectionView = self.base] (_: RxCollectionViewDataSourceProxy, event) -> Void in + guard let collectionView = collectionView else { + return + } + dataSource.collectionView(collectionView, observedEvent: event) + } + } + } +} + +extension Reactive where Base: UICollectionView { + public typealias DisplayCollectionViewCellEvent = (cell: UICollectionViewCell, at: IndexPath) + public typealias DisplayCollectionViewSupplementaryViewEvent = (supplementaryView: UICollectionReusableView, elementKind: String, at: IndexPath) + + /// Reactive wrapper for `dataSource`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var dataSource: DelegateProxy { + RxCollectionViewDataSourceProxy.proxy(for: base) + } + + /// Installs data source as forwarding delegate on `rx.dataSource`. + /// Data source won't be retained. + /// + /// It enables using normal delegate mechanism with reactive delegate mechanism. + /// + /// - parameter dataSource: Data source object. + /// - returns: Disposable object that can be used to unbind the data source. + public func setDataSource(_ dataSource: UICollectionViewDataSource) + -> Disposable { + RxCollectionViewDataSourceProxy.installForwardDelegate(dataSource, retainDelegate: false, onProxyForObject: self.base) + } + + /// Reactive wrapper for `delegate` message `collectionView(_:didSelectItemAtIndexPath:)`. + public var itemSelected: ControlEvent { + let source = delegate.methodInvoked(#selector(UICollectionViewDelegate.collectionView(_:didSelectItemAt:))) + .map { a in + return try castOrThrow(IndexPath.self, a[1]) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `collectionView(_:didDeselectItemAtIndexPath:)`. + public var itemDeselected: ControlEvent { + let source = delegate.methodInvoked(#selector(UICollectionViewDelegate.collectionView(_:didDeselectItemAt:))) + .map { a in + return try castOrThrow(IndexPath.self, a[1]) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `collectionView(_:didHighlightItemAt:)`. + public var itemHighlighted: ControlEvent { + let source = delegate.methodInvoked(#selector(UICollectionViewDelegate.collectionView(_:didHighlightItemAt:))) + .map { a in + return try castOrThrow(IndexPath.self, a[1]) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `collectionView(_:didUnhighlightItemAt:)`. + public var itemUnhighlighted: ControlEvent { + let source = delegate.methodInvoked(#selector(UICollectionViewDelegate.collectionView(_:didUnhighlightItemAt:))) + .map { a in + return try castOrThrow(IndexPath.self, a[1]) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `collectionView:willDisplay:forItemAt:`. + public var willDisplayCell: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UICollectionViewDelegate.collectionView(_:willDisplay:forItemAt:))) + .map { a in + return (try castOrThrow(UICollectionViewCell.self, a[1]), try castOrThrow(IndexPath.self, a[2])) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `collectionView(_:willDisplaySupplementaryView:forElementKind:at:)`. + public var willDisplaySupplementaryView: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UICollectionViewDelegate.collectionView(_:willDisplaySupplementaryView:forElementKind:at:))) + .map { a in + return (try castOrThrow(UICollectionReusableView.self, a[1]), + try castOrThrow(String.self, a[2]), + try castOrThrow(IndexPath.self, a[3])) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `collectionView:didEndDisplaying:forItemAt:`. + public var didEndDisplayingCell: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UICollectionViewDelegate.collectionView(_:didEndDisplaying:forItemAt:))) + .map { a in + return (try castOrThrow(UICollectionViewCell.self, a[1]), try castOrThrow(IndexPath.self, a[2])) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `collectionView(_:didEndDisplayingSupplementaryView:forElementOfKind:at:)`. + public var didEndDisplayingSupplementaryView: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UICollectionViewDelegate.collectionView(_:didEndDisplayingSupplementaryView:forElementOfKind:at:))) + .map { a in + return (try castOrThrow(UICollectionReusableView.self, a[1]), + try castOrThrow(String.self, a[2]), + try castOrThrow(IndexPath.self, a[3])) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `collectionView(_:didSelectItemAtIndexPath:)`. + /// + /// It can be only used when one of the `rx.itemsWith*` methods is used to bind observable sequence, + /// or any other data source conforming to `SectionedViewDataSourceType` protocol. + /// + /// ``` + /// collectionView.rx.modelSelected(MyModel.self) + /// .map { ... + /// ``` + public func modelSelected(_ modelType: T.Type) -> ControlEvent { + let source: Observable = itemSelected.flatMap { [weak view = self.base as UICollectionView] indexPath -> Observable in + guard let view = view else { + return Observable.empty() + } + + return Observable.just(try view.rx.model(at: indexPath)) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `collectionView(_:didSelectItemAtIndexPath:)`. + /// + /// It can be only used when one of the `rx.itemsWith*` methods is used to bind observable sequence, + /// or any other data source conforming to `SectionedViewDataSourceType` protocol. + /// + /// ``` + /// collectionView.rx.modelDeselected(MyModel.self) + /// .map { ... + /// ``` + public func modelDeselected(_ modelType: T.Type) -> ControlEvent { + let source: Observable = itemDeselected.flatMap { [weak view = self.base as UICollectionView] indexPath -> Observable in + guard let view = view else { + return Observable.empty() + } + + return Observable.just(try view.rx.model(at: indexPath)) + } + + return ControlEvent(events: source) + } + + /// Synchronous helper method for retrieving a model at indexPath through a reactive data source + public func model(at indexPath: IndexPath) throws -> T { + let dataSource: SectionedViewDataSourceType = castOrFatalError(self.dataSource.forwardToDelegate(), message: "This method only works in case one of the `rx.itemsWith*` methods was used.") + + let element = try dataSource.model(at: indexPath) + + return try castOrThrow(T.self, element) + } +} + +@available(iOS 10.0, tvOS 10.0, *) +extension Reactive where Base: UICollectionView { + + /// Reactive wrapper for `prefetchDataSource`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var prefetchDataSource: DelegateProxy { + RxCollectionViewDataSourcePrefetchingProxy.proxy(for: base) + } + + /** + Installs prefetch data source as forwarding delegate on `rx.prefetchDataSource`. + Prefetch data source won't be retained. + + It enables using normal delegate mechanism with reactive delegate mechanism. + + - parameter prefetchDataSource: Prefetch data source object. + - returns: Disposable object that can be used to unbind the data source. + */ + public func setPrefetchDataSource(_ prefetchDataSource: UICollectionViewDataSourcePrefetching) + -> Disposable { + return RxCollectionViewDataSourcePrefetchingProxy.installForwardDelegate(prefetchDataSource, retainDelegate: false, onProxyForObject: self.base) + } + + /// Reactive wrapper for `prefetchDataSource` message `collectionView(_:prefetchItemsAt:)`. + public var prefetchItems: ControlEvent<[IndexPath]> { + let source = RxCollectionViewDataSourcePrefetchingProxy.proxy(for: base).prefetchItemsPublishSubject + return ControlEvent(events: source) + } + + /// Reactive wrapper for `prefetchDataSource` message `collectionView(_:cancelPrefetchingForItemsAt:)`. + public var cancelPrefetchingForItems: ControlEvent<[IndexPath]> { + let source = prefetchDataSource.methodInvoked(#selector(UICollectionViewDataSourcePrefetching.collectionView(_:cancelPrefetchingForItemsAt:))) + .map { a in + return try castOrThrow(Array.self, a[1]) + } + + return ControlEvent(events: source) + } + +} +#endif + +#if os(tvOS) + +extension Reactive where Base: UICollectionView { + + /// Reactive wrapper for `delegate` message `collectionView(_:didUpdateFocusInContext:withAnimationCoordinator:)`. + public var didUpdateFocusInContextWithAnimationCoordinator: ControlEvent<(context: UICollectionViewFocusUpdateContext, animationCoordinator: UIFocusAnimationCoordinator)> { + + let source = delegate.methodInvoked(#selector(UICollectionViewDelegate.collectionView(_:didUpdateFocusIn:with:))) + .map { a -> (context: UICollectionViewFocusUpdateContext, animationCoordinator: UIFocusAnimationCoordinator) in + let context = try castOrThrow(UICollectionViewFocusUpdateContext.self, a[1]) + let animationCoordinator = try castOrThrow(UIFocusAnimationCoordinator.self, a[2]) + return (context: context, animationCoordinator: animationCoordinator) + } + + return ControlEvent(events: source) + } +} +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift new file mode 100644 index 00000000..6698cf24 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift @@ -0,0 +1,86 @@ +// +// UIControl+Rx.swift +// RxCocoa +// +// Created by Daniel Tartaglia on 5/23/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import RxSwift +import UIKit + +extension Reactive where Base: UIControl { + /// Reactive wrapper for target action pattern. + /// + /// - parameter controlEvents: Filter for observed event types. + public func controlEvent(_ controlEvents: UIControl.Event) -> ControlEvent<()> { + let source: Observable = Observable.create { [weak control = self.base] observer in + MainScheduler.ensureRunningOnMainThread() + + guard let control = control else { + observer.on(.completed) + return Disposables.create() + } + + let controlTarget = ControlTarget(control: control, controlEvents: controlEvents) { _ in + observer.on(.next(())) + } + + return Disposables.create(with: controlTarget.dispose) + } + .take(until: deallocated) + + return ControlEvent(events: source) + } + + /// Creates a `ControlProperty` that is triggered by target/action pattern value updates. + /// + /// - parameter controlEvents: Events that trigger value update sequence elements. + /// - parameter getter: Property value getter. + /// - parameter setter: Property value setter. + public func controlProperty( + editingEvents: UIControl.Event, + getter: @escaping (Base) -> T, + setter: @escaping (Base, T) -> Void + ) -> ControlProperty { + let source: Observable = Observable.create { [weak weakControl = base] observer in + guard let control = weakControl else { + observer.on(.completed) + return Disposables.create() + } + + observer.on(.next(getter(control))) + + let controlTarget = ControlTarget(control: control, controlEvents: editingEvents) { _ in + if let control = weakControl { + observer.on(.next(getter(control))) + } + } + + return Disposables.create(with: controlTarget.dispose) + } + .take(until: deallocated) + + let bindingObserver = Binder(base, binding: setter) + + return ControlProperty(values: source, valueSink: bindingObserver) + } + + /// This is a separate method to better communicate to public consumers that + /// an `editingEvent` needs to fire for control property to be updated. + internal func controlPropertyWithDefaultEvents( + editingEvents: UIControl.Event = [.allEditingEvents, .valueChanged], + getter: @escaping (Base) -> T, + setter: @escaping (Base, T) -> Void + ) -> ControlProperty { + return controlProperty( + editingEvents: editingEvents, + getter: getter, + setter: setter + ) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift new file mode 100644 index 00000000..e10c1ec9 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift @@ -0,0 +1,43 @@ +// +// UIDatePicker+Rx.swift +// RxCocoa +// +// Created by Daniel Tartaglia on 5/31/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import RxSwift +import UIKit + +extension Reactive where Base: UIDatePicker { + /// Reactive wrapper for `date` property. + public var date: ControlProperty { + value + } + + /// Reactive wrapper for `date` property. + public var value: ControlProperty { + return base.rx.controlPropertyWithDefaultEvents( + getter: { datePicker in + datePicker.date + }, setter: { datePicker, value in + datePicker.date = value + } + ) + } + + /// Reactive wrapper for `countDownDuration` property. + public var countDownDuration: ControlProperty { + return base.rx.controlPropertyWithDefaultEvents( + getter: { datePicker in + datePicker.countDownDuration + }, setter: { datePicker, value in + datePicker.countDownDuration = value + } + ) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIGestureRecognizer+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIGestureRecognizer+Rx.swift new file mode 100644 index 00000000..685c7978 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIGestureRecognizer+Rx.swift @@ -0,0 +1,75 @@ +// +// UIGestureRecognizer+Rx.swift +// RxCocoa +// +// Created by Carlos García on 10/6/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +// This should be only used from `MainScheduler` +final class GestureTarget: RxTarget { + typealias Callback = (Recognizer) -> Void + + let selector = #selector(GestureTarget.eventHandler(_:)) + + weak var gestureRecognizer: Recognizer? + var callback: Callback? + + init(_ gestureRecognizer: Recognizer, callback: @escaping Callback) { + self.gestureRecognizer = gestureRecognizer + self.callback = callback + + super.init() + + gestureRecognizer.addTarget(self, action: selector) + + let method = self.method(for: selector) + if method == nil { + fatalError("Can't find method") + } + } + + @objc func eventHandler(_ sender: UIGestureRecognizer) { + if let callback = self.callback, let gestureRecognizer = self.gestureRecognizer { + callback(gestureRecognizer) + } + } + + override func dispose() { + super.dispose() + + self.gestureRecognizer?.removeTarget(self, action: self.selector) + self.callback = nil + } +} + +extension Reactive where Base: UIGestureRecognizer { + + /// Reactive wrapper for gesture recognizer events. + public var event: ControlEvent { + let source: Observable = Observable.create { [weak control = self.base] observer in + MainScheduler.ensureRunningOnMainThread() + + guard let control = control else { + observer.on(.completed) + return Disposables.create() + } + + let observer = GestureTarget(control) { control in + observer.on(.next(control)) + } + + return observer + }.take(until: deallocated) + + return ControlEvent(events: source) + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UINavigationController+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UINavigationController+Rx.swift new file mode 100644 index 00000000..94796b65 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UINavigationController+Rx.swift @@ -0,0 +1,49 @@ +// +// UINavigationController+Rx.swift +// RxCocoa +// +// Created by Diogo on 13/04/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import RxSwift +import UIKit + +extension Reactive where Base: UINavigationController { + public typealias ShowEvent = (viewController: UIViewController, animated: Bool) + + /// Reactive wrapper for `delegate`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var delegate: DelegateProxy { + RxNavigationControllerDelegateProxy.proxy(for: base) + } + + /// Reactive wrapper for delegate method `navigationController(:willShow:animated:)`. + public var willShow: ControlEvent { + let source: Observable = delegate + .methodInvoked(#selector(UINavigationControllerDelegate.navigationController(_:willShow:animated:))) + .map { arg in + let viewController = try castOrThrow(UIViewController.self, arg[1]) + let animated = try castOrThrow(Bool.self, arg[2]) + return (viewController, animated) + } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `navigationController(:didShow:animated:)`. + public var didShow: ControlEvent { + let source: Observable = delegate + .methodInvoked(#selector(UINavigationControllerDelegate.navigationController(_:didShow:animated:))) + .map { arg in + let viewController = try castOrThrow(UIViewController.self, arg[1]) + let animated = try castOrThrow(Bool.self, arg[2]) + return (viewController, animated) + } + return ControlEvent(events: source) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift new file mode 100644 index 00000000..f8734eef --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift @@ -0,0 +1,224 @@ +// +// UIPickerView+Rx.swift +// RxCocoa +// +// Created by Segii Shulga on 5/12/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + + import RxSwift + import UIKit + + extension Reactive where Base: UIPickerView { + + /// Reactive wrapper for `delegate`. + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var delegate: DelegateProxy { + return RxPickerViewDelegateProxy.proxy(for: base) + } + + /// Installs delegate as forwarding delegate on `delegate`. + /// Delegate won't be retained. + /// + /// It enables using normal delegate mechanism with reactive delegate mechanism. + /// + /// - parameter delegate: Delegate object. + /// - returns: Disposable object that can be used to unbind the delegate. + public func setDelegate(_ delegate: UIPickerViewDelegate) + -> Disposable { + return RxPickerViewDelegateProxy.installForwardDelegate(delegate, retainDelegate: false, onProxyForObject: self.base) + } + + /** + Reactive wrapper for `dataSource`. + + For more information take a look at `DelegateProxyType` protocol documentation. + */ + public var dataSource: DelegateProxy { + return RxPickerViewDataSourceProxy.proxy(for: base) + } + + /** + Reactive wrapper for `delegate` message `pickerView:didSelectRow:inComponent:`. + */ + public var itemSelected: ControlEvent<(row: Int, component: Int)> { + let source = delegate + .methodInvoked(#selector(UIPickerViewDelegate.pickerView(_:didSelectRow:inComponent:))) + .map { + return (row: try castOrThrow(Int.self, $0[1]), component: try castOrThrow(Int.self, $0[2])) + } + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `pickerView:didSelectRow:inComponent:`. + + It can be only used when one of the `rx.itemTitles, rx.itemAttributedTitles, items(_ source: O)` methods is used to bind observable sequence, + or any other data source conforming to a `ViewDataSourceType` protocol. + + ``` + pickerView.rx.modelSelected(MyModel.self) + .map { ... + ``` + - parameter modelType: Type of a Model which bound to the dataSource + */ + public func modelSelected(_ modelType: T.Type) -> ControlEvent<[T]> { + let source = itemSelected.flatMap { [weak view = self.base as UIPickerView] _, component -> Observable<[T]> in + guard let view = view else { + return Observable.empty() + } + + let model: [T] = try (0 ..< view.numberOfComponents).map { component in + let row = view.selectedRow(inComponent: component) + return try view.rx.model(at: IndexPath(row: row, section: component)) + } + + return Observable.just(model) + } + + return ControlEvent(events: source) + } + + /** + Binds sequences of elements to picker view rows. + + - parameter source: Observable sequence of items. + - parameter titleForRow: Transform between sequence elements and row titles. + - returns: Disposable object that can be used to unbind. + + Example: + + let items = Observable.just([ + "First Item", + "Second Item", + "Third Item" + ]) + + items + .bind(to: pickerView.rx.itemTitles) { (row, element) in + return element + } + .disposed(by: disposeBag) + + */ + + public func itemTitles + (_ source: Source) + -> (_ titleForRow: @escaping (Int, Sequence.Element) -> String?) + -> Disposable where Source.Element == Sequence { + return { titleForRow in + let adapter = RxStringPickerViewAdapter(titleForRow: titleForRow) + return self.items(adapter: adapter)(source) + } + } + + /** + Binds sequences of elements to picker view rows. + + - parameter source: Observable sequence of items. + - parameter attributedTitleForRow: Transform between sequence elements and row attributed titles. + - returns: Disposable object that can be used to unbind. + + Example: + + let items = Observable.just([ + "First Item", + "Second Item", + "Third Item" + ]) + + items + .bind(to: pickerView.rx.itemAttributedTitles) { (row, element) in + return NSAttributedString(string: element) + } + .disposed(by: disposeBag) + + */ + + public func itemAttributedTitles + (_ source: Source) + -> (_ attributedTitleForRow: @escaping (Int, Sequence.Element) -> NSAttributedString?) + -> Disposable where Source.Element == Sequence { + return { attributedTitleForRow in + let adapter = RxAttributedStringPickerViewAdapter(attributedTitleForRow: attributedTitleForRow) + return self.items(adapter: adapter)(source) + } + } + + /** + Binds sequences of elements to picker view rows. + + - parameter source: Observable sequence of items. + - parameter viewForRow: Transform between sequence elements and row views. + - returns: Disposable object that can be used to unbind. + + Example: + + let items = Observable.just([ + "First Item", + "Second Item", + "Third Item" + ]) + + items + .bind(to: pickerView.rx.items) { (row, element, view) in + guard let myView = view as? MyView else { + let view = MyView() + view.configure(with: element) + return view + } + myView.configure(with: element) + return myView + } + .disposed(by: disposeBag) + + */ + + public func items + (_ source: Source) + -> (_ viewForRow: @escaping (Int, Sequence.Element, UIView?) -> UIView) + -> Disposable where Source.Element == Sequence { + return { viewForRow in + let adapter = RxPickerViewAdapter(viewForRow: viewForRow) + return self.items(adapter: adapter)(source) + } + } + + /** + Binds sequences of elements to picker view rows using a custom reactive adapter used to perform the transformation. + This method will retain the adapter for as long as the subscription isn't disposed (result `Disposable` + being disposed). + In case `source` observable sequence terminates successfully, the adapter will present latest element + until the subscription isn't disposed. + + - parameter adapter: Adapter used to transform elements to picker components. + - parameter source: Observable sequence of items. + - returns: Disposable object that can be used to unbind. + */ + public func items(adapter: Adapter) + -> (_ source: Source) + -> Disposable where Source.Element == Adapter.Element { + return { source in + let delegateSubscription = self.setDelegate(adapter) + let dataSourceSubscription = source.subscribeProxyDataSource(ofObject: self.base, dataSource: adapter, retainDataSource: true, binding: { [weak pickerView = self.base] (_: RxPickerViewDataSourceProxy, event) in + guard let pickerView = pickerView else { return } + adapter.pickerView(pickerView, observedEvent: event) + }) + return Disposables.create(delegateSubscription, dataSourceSubscription) + } + } + + /** + Synchronous helper method for retrieving a model at indexPath through a reactive data source. + */ + public func model(at indexPath: IndexPath) throws -> T { + let dataSource: SectionedViewDataSourceType = castOrFatalError(self.dataSource.forwardToDelegate(), message: "This method only works in case one of the `rx.itemTitles, rx.itemAttributedTitles, items(_ source: O)` methods was used.") + + return castOrFatalError(try dataSource.model(at: indexPath)) + } + } + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIRefreshControl+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIRefreshControl+Rx.swift new file mode 100644 index 00000000..cdb10be1 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIRefreshControl+Rx.swift @@ -0,0 +1,28 @@ +// +// UIRefreshControl+Rx.swift +// RxCocoa +// +// Created by Yosuke Ishikawa on 1/31/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import UIKit +import RxSwift + +extension Reactive where Base: UIRefreshControl { + /// Bindable sink for `beginRefreshing()`, `endRefreshing()` methods. + public var isRefreshing: Binder { + return Binder(self.base) { refreshControl, refresh in + if refresh { + refreshControl.beginRefreshing() + } else { + refreshControl.endRefreshing() + } + } + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift new file mode 100644 index 00000000..f90e1c26 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift @@ -0,0 +1,131 @@ +// +// UIScrollView+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 4/3/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + + import RxSwift + import UIKit + + extension Reactive where Base: UIScrollView { + public typealias EndZoomEvent = (view: UIView?, scale: CGFloat) + public typealias WillEndDraggingEvent = (velocity: CGPoint, targetContentOffset: UnsafeMutablePointer) + + /// Reactive wrapper for `delegate`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var delegate: DelegateProxy { + return RxScrollViewDelegateProxy.proxy(for: base) + } + + /// Reactive wrapper for `contentOffset`. + public var contentOffset: ControlProperty { + let proxy = RxScrollViewDelegateProxy.proxy(for: base) + + let bindingObserver = Binder(self.base) { scrollView, contentOffset in + scrollView.contentOffset = contentOffset + } + + return ControlProperty(values: proxy.contentOffsetBehaviorSubject, valueSink: bindingObserver) + } + + /// Reactive wrapper for delegate method `scrollViewDidScroll` + public var didScroll: ControlEvent { + let source = RxScrollViewDelegateProxy.proxy(for: base).contentOffsetPublishSubject + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `scrollViewWillBeginDecelerating` + public var willBeginDecelerating: ControlEvent { + let source = delegate.methodInvoked(#selector(UIScrollViewDelegate.scrollViewWillBeginDecelerating(_:))).map { _ in } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `scrollViewDidEndDecelerating` + public var didEndDecelerating: ControlEvent { + let source = delegate.methodInvoked(#selector(UIScrollViewDelegate.scrollViewDidEndDecelerating(_:))).map { _ in } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `scrollViewWillBeginDragging` + public var willBeginDragging: ControlEvent { + let source = delegate.methodInvoked(#selector(UIScrollViewDelegate.scrollViewWillBeginDragging(_:))).map { _ in } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `scrollViewWillEndDragging(_:withVelocity:targetContentOffset:)` + public var willEndDragging: ControlEvent { + let source = delegate.methodInvoked(#selector(UIScrollViewDelegate.scrollViewWillEndDragging(_:withVelocity:targetContentOffset:))) + .map { value -> WillEndDraggingEvent in + let velocity = try castOrThrow(CGPoint.self, value[1]) + let targetContentOffsetValue = try castOrThrow(NSValue.self, value[2]) + + guard let rawPointer = targetContentOffsetValue.pointerValue else { throw RxCocoaError.unknown } + let typedPointer = rawPointer.bindMemory(to: CGPoint.self, capacity: MemoryLayout.size) + + return (velocity, typedPointer) + } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `scrollViewDidEndDragging(_:willDecelerate:)` + public var didEndDragging: ControlEvent { + let source = delegate.methodInvoked(#selector(UIScrollViewDelegate.scrollViewDidEndDragging(_:willDecelerate:))).map { value -> Bool in + return try castOrThrow(Bool.self, value[1]) + } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `scrollViewDidZoom` + public var didZoom: ControlEvent { + let source = delegate.methodInvoked(#selector(UIScrollViewDelegate.scrollViewDidZoom)).map { _ in } + return ControlEvent(events: source) + } + + + /// Reactive wrapper for delegate method `scrollViewDidScrollToTop` + public var didScrollToTop: ControlEvent { + let source = delegate.methodInvoked(#selector(UIScrollViewDelegate.scrollViewDidScrollToTop(_:))).map { _ in } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `scrollViewDidEndScrollingAnimation` + public var didEndScrollingAnimation: ControlEvent { + let source = delegate.methodInvoked(#selector(UIScrollViewDelegate.scrollViewDidEndScrollingAnimation(_:))).map { _ in } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `scrollViewWillBeginZooming(_:with:)` + public var willBeginZooming: ControlEvent { + let source = delegate.methodInvoked(#selector(UIScrollViewDelegate.scrollViewWillBeginZooming(_:with:))).map { value -> UIView? in + return try castOptionalOrThrow(UIView.self, value[1] as AnyObject) + } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `scrollViewDidEndZooming(_:with:atScale:)` + public var didEndZooming: ControlEvent { + let source = delegate.methodInvoked(#selector(UIScrollViewDelegate.scrollViewDidEndZooming(_:with:atScale:))).map { value -> EndZoomEvent in + return (try castOptionalOrThrow(UIView.self, value[1] as AnyObject), try castOrThrow(CGFloat.self, value[2])) + } + return ControlEvent(events: source) + } + + /// Installs delegate as forwarding delegate on `delegate`. + /// Delegate won't be retained. + /// + /// It enables using normal delegate mechanism with reactive delegate mechanism. + /// + /// - parameter delegate: Delegate object. + /// - returns: Disposable object that can be used to unbind the delegate. + public func setDelegate(_ delegate: UIScrollViewDelegate) + -> Disposable { + return RxScrollViewDelegateProxy.installForwardDelegate(delegate, retainDelegate: false, onProxyForObject: self.base) + } + } + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift new file mode 100644 index 00000000..3892b1ca --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift @@ -0,0 +1,136 @@ +// +// UISearchBar+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 3/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import RxSwift +import UIKit + +extension Reactive where Base: UISearchBar { + + /// Reactive wrapper for `delegate`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var delegate: DelegateProxy { + RxSearchBarDelegateProxy.proxy(for: base) + } + + /// Reactive wrapper for `text` property. + public var text: ControlProperty { + value + } + + /// Reactive wrapper for `text` property. + public var value: ControlProperty { + let source: Observable = Observable.deferred { [weak searchBar = self.base as UISearchBar] () -> Observable in + let text = searchBar?.text + + let textDidChange = (searchBar?.rx.delegate.methodInvoked(#selector(UISearchBarDelegate.searchBar(_:textDidChange:))) ?? Observable.empty()) + let didEndEditing = (searchBar?.rx.delegate.methodInvoked(#selector(UISearchBarDelegate.searchBarTextDidEndEditing(_:))) ?? Observable.empty()) + + return Observable.merge(textDidChange, didEndEditing) + .map { _ in searchBar?.text ?? "" } + .startWith(text) + } + + let bindingObserver = Binder(self.base) { (searchBar, text: String?) in + searchBar.text = text + } + + return ControlProperty(values: source, valueSink: bindingObserver) + } + + /// Reactive wrapper for `selectedScopeButtonIndex` property. + public var selectedScopeButtonIndex: ControlProperty { + let source: Observable = Observable.deferred { [weak source = self.base as UISearchBar] () -> Observable in + let index = source?.selectedScopeButtonIndex ?? 0 + + return (source?.rx.delegate.methodInvoked(#selector(UISearchBarDelegate.searchBar(_:selectedScopeButtonIndexDidChange:))) ?? Observable.empty()) + .map { a in + return try castOrThrow(Int.self, a[1]) + } + .startWith(index) + } + + let bindingObserver = Binder(self.base) { (searchBar, index: Int) in + searchBar.selectedScopeButtonIndex = index + } + + return ControlProperty(values: source, valueSink: bindingObserver) + } + +#if os(iOS) + /// Reactive wrapper for delegate method `searchBarCancelButtonClicked`. + public var cancelButtonClicked: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UISearchBarDelegate.searchBarCancelButtonClicked(_:))) + .map { _ in + return () + } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `searchBarBookmarkButtonClicked`. + public var bookmarkButtonClicked: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UISearchBarDelegate.searchBarBookmarkButtonClicked(_:))) + .map { _ in + return () + } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `searchBarResultsListButtonClicked`. + public var resultsListButtonClicked: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UISearchBarDelegate.searchBarResultsListButtonClicked(_:))) + .map { _ in + return () + } + return ControlEvent(events: source) + } +#endif + + /// Reactive wrapper for delegate method `searchBarSearchButtonClicked`. + public var searchButtonClicked: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UISearchBarDelegate.searchBarSearchButtonClicked(_:))) + .map { _ in + return () + } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `searchBarTextDidBeginEditing`. + public var textDidBeginEditing: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UISearchBarDelegate.searchBarTextDidBeginEditing(_:))) + .map { _ in + return () + } + return ControlEvent(events: source) + } + + /// Reactive wrapper for delegate method `searchBarTextDidEndEditing`. + public var textDidEndEditing: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UISearchBarDelegate.searchBarTextDidEndEditing(_:))) + .map { _ in + return () + } + return ControlEvent(events: source) + } + + /// Installs delegate as forwarding delegate on `delegate`. + /// Delegate won't be retained. + /// + /// It enables using normal delegate mechanism with reactive delegate mechanism. + /// + /// - parameter delegate: Delegate object. + /// - returns: Disposable object that can be used to unbind the delegate. + public func setDelegate(_ delegate: UISearchBarDelegate) + -> Disposable { + RxSearchBarDelegateProxy.installForwardDelegate(delegate, retainDelegate: false, onProxyForObject: self.base) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UISearchController+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UISearchController+Rx.swift new file mode 100644 index 00000000..4f524a51 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UISearchController+Rx.swift @@ -0,0 +1,58 @@ +// +// UISearchController+Rx.swift +// RxCocoa +// +// Created by Segii Shulga on 3/17/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + + import RxSwift + import UIKit + + extension Reactive where Base: UISearchController { + /// Reactive wrapper for `delegate`. + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var delegate: DelegateProxy { + return RxSearchControllerDelegateProxy.proxy(for: base) + } + + /// Reactive wrapper for `delegate` message. + public var didDismiss: Observable { + return delegate + .methodInvoked( #selector(UISearchControllerDelegate.didDismissSearchController(_:))) + .map { _ in } + } + + /// Reactive wrapper for `delegate` message. + public var didPresent: Observable { + return delegate + .methodInvoked(#selector(UISearchControllerDelegate.didPresentSearchController(_:))) + .map { _ in } + } + + /// Reactive wrapper for `delegate` message. + public var present: Observable { + return delegate + .methodInvoked( #selector(UISearchControllerDelegate.presentSearchController(_:))) + .map { _ in } + } + + /// Reactive wrapper for `delegate` message. + public var willDismiss: Observable { + return delegate + .methodInvoked(#selector(UISearchControllerDelegate.willDismissSearchController(_:))) + .map { _ in } + } + + /// Reactive wrapper for `delegate` message. + public var willPresent: Observable { + return delegate + .methodInvoked( #selector(UISearchControllerDelegate.willPresentSearchController(_:))) + .map { _ in } + } + + } + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UISegmentedControl+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UISegmentedControl+Rx.swift new file mode 100644 index 00000000..1a626626 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UISegmentedControl+Rx.swift @@ -0,0 +1,54 @@ +// +// UISegmentedControl+Rx.swift +// RxCocoa +// +// Created by Carlos García on 8/7/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +extension Reactive where Base: UISegmentedControl { + /// Reactive wrapper for `selectedSegmentIndex` property. + public var selectedSegmentIndex: ControlProperty { + value + } + + /// Reactive wrapper for `selectedSegmentIndex` property. + public var value: ControlProperty { + return base.rx.controlPropertyWithDefaultEvents( + getter: { segmentedControl in + segmentedControl.selectedSegmentIndex + }, setter: { segmentedControl, value in + segmentedControl.selectedSegmentIndex = value + } + ) + } + + /// Reactive wrapper for `setEnabled(_:forSegmentAt:)` + public func enabledForSegment(at index: Int) -> Binder { + return Binder(self.base) { segmentedControl, segmentEnabled -> Void in + segmentedControl.setEnabled(segmentEnabled, forSegmentAt: index) + } + } + + /// Reactive wrapper for `setTitle(_:forSegmentAt:)` + public func titleForSegment(at index: Int) -> Binder { + return Binder(self.base) { segmentedControl, title -> Void in + segmentedControl.setTitle(title, forSegmentAt: index) + } + } + + /// Reactive wrapper for `setImage(_:forSegmentAt:)` + public func imageForSegment(at index: Int) -> Binder { + return Binder(self.base) { segmentedControl, image -> Void in + segmentedControl.setImage(image, forSegmentAt: index) + } + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift new file mode 100644 index 00000000..07d4adb5 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift @@ -0,0 +1,29 @@ +// +// UISlider+Rx.swift +// RxCocoa +// +// Created by Alexander van der Werff on 28/05/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import RxSwift +import UIKit + +extension Reactive where Base: UISlider { + + /// Reactive wrapper for `value` property. + public var value: ControlProperty { + return base.rx.controlPropertyWithDefaultEvents( + getter: { slider in + slider.value + }, setter: { slider, value in + slider.value = value + } + ) + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift new file mode 100644 index 00000000..29f63860 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift @@ -0,0 +1,29 @@ +// +// UIStepper+Rx.swift +// RxCocoa +// +// Created by Yuta ToKoRo on 9/1/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import UIKit +import RxSwift + +extension Reactive where Base: UIStepper { + + /// Reactive wrapper for `value` property. + public var value: ControlProperty { + return base.rx.controlPropertyWithDefaultEvents( + getter: { stepper in + stepper.value + }, setter: { stepper, value in + stepper.value = value + } + ) + } +} + +#endif + diff --git a/Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift new file mode 100644 index 00000000..6e116b39 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift @@ -0,0 +1,38 @@ +// +// UISwitch+Rx.swift +// RxCocoa +// +// Created by Carlos García on 8/7/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) + +import UIKit +import RxSwift + +extension Reactive where Base: UISwitch { + + /// Reactive wrapper for `isOn` property. + public var isOn: ControlProperty { + value + } + + /// Reactive wrapper for `isOn` property. + /// + /// ⚠️ Versions prior to iOS 10.2 were leaking `UISwitch`'s, so on those versions + /// underlying observable sequence won't complete when nothing holds a strong reference + /// to `UISwitch`. + public var value: ControlProperty { + return base.rx.controlPropertyWithDefaultEvents( + getter: { uiSwitch in + uiSwitch.isOn + }, setter: { uiSwitch, value in + uiSwitch.isOn = value + } + ) + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift new file mode 100644 index 00000000..e9896672 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift @@ -0,0 +1,92 @@ +// +// UITabBar+Rx.swift +// RxCocoa +// +// Created by Jesse Farless on 5/13/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +/** + iOS only + */ +#if os(iOS) +extension Reactive where Base: UITabBar { + + /// Reactive wrapper for `delegate` message `tabBar(_:willBeginCustomizing:)`. + public var willBeginCustomizing: ControlEvent<[UITabBarItem]> { + + let source = delegate.methodInvoked(#selector(UITabBarDelegate.tabBar(_:willBeginCustomizing:))) + .map { a in + return try castOrThrow([UITabBarItem].self, a[1]) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `tabBar(_:didBeginCustomizing:)`. + public var didBeginCustomizing: ControlEvent<[UITabBarItem]> { + let source = delegate.methodInvoked(#selector(UITabBarDelegate.tabBar(_:didBeginCustomizing:))) + .map { a in + return try castOrThrow([UITabBarItem].self, a[1]) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `tabBar(_:willEndCustomizing:changed:)`. + public var willEndCustomizing: ControlEvent<([UITabBarItem], Bool)> { + let source = delegate.methodInvoked(#selector(UITabBarDelegate.tabBar(_:willEndCustomizing:changed:))) + .map { (a: [Any]) -> (([UITabBarItem], Bool)) in + let items = try castOrThrow([UITabBarItem].self, a[1]) + let changed = try castOrThrow(Bool.self, a[2]) + return (items, changed) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `tabBar(_:didEndCustomizing:changed:)`. + public var didEndCustomizing: ControlEvent<([UITabBarItem], Bool)> { + let source = delegate.methodInvoked(#selector(UITabBarDelegate.tabBar(_:didEndCustomizing:changed:))) + .map { (a: [Any]) -> (([UITabBarItem], Bool)) in + let items = try castOrThrow([UITabBarItem].self, a[1]) + let changed = try castOrThrow(Bool.self, a[2]) + return (items, changed) + } + + return ControlEvent(events: source) + } + +} +#endif + +/** + iOS and tvOS + */ + +extension Reactive where Base: UITabBar { + /// Reactive wrapper for `delegate`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var delegate: DelegateProxy { + RxTabBarDelegateProxy.proxy(for: base) + } + + /// Reactive wrapper for `delegate` message `tabBar(_:didSelect:)`. + public var didSelectItem: ControlEvent { + let source = delegate.methodInvoked(#selector(UITabBarDelegate.tabBar(_:didSelect:))) + .map { a in + return try castOrThrow(UITabBarItem.self, a[1]) + } + + return ControlEvent(events: source) + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UITabBarController+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UITabBarController+Rx.swift new file mode 100644 index 00000000..4b48e8e5 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UITabBarController+Rx.swift @@ -0,0 +1,79 @@ +// +// UITabBarController+Rx.swift +// RxCocoa +// +// Created by Yusuke Kita on 2016/12/07. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +/** + iOS only + */ +#if os(iOS) +extension Reactive where Base: UITabBarController { + + /// Reactive wrapper for `delegate` message `tabBarController:willBeginCustomizing:`. + public var willBeginCustomizing: ControlEvent<[UIViewController]> { + let source = delegate.methodInvoked(#selector(UITabBarControllerDelegate.tabBarController(_:willBeginCustomizing:))) + .map { a in + return try castOrThrow([UIViewController].self, a[1]) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `tabBarController:willEndCustomizing:changed:`. + public var willEndCustomizing: ControlEvent<(viewControllers: [UIViewController], changed: Bool)> { + let source = delegate.methodInvoked(#selector(UITabBarControllerDelegate.tabBarController(_:willEndCustomizing:changed:))) + .map { (a: [Any]) -> (viewControllers: [UIViewController], changed: Bool) in + let viewControllers = try castOrThrow([UIViewController].self, a[1]) + let changed = try castOrThrow(Bool.self, a[2]) + return (viewControllers, changed) + } + + return ControlEvent(events: source) + } + + /// Reactive wrapper for `delegate` message `tabBarController:didEndCustomizing:changed:`. + public var didEndCustomizing: ControlEvent<(viewControllers: [UIViewController], changed: Bool)> { + let source = delegate.methodInvoked(#selector(UITabBarControllerDelegate.tabBarController(_:didEndCustomizing:changed:))) + .map { (a: [Any]) -> (viewControllers: [UIViewController], changed: Bool) in + let viewControllers = try castOrThrow([UIViewController].self, a[1]) + let changed = try castOrThrow(Bool.self, a[2]) + return (viewControllers, changed) + } + + return ControlEvent(events: source) + } +} +#endif + +/** + iOS and tvOS + */ + + extension Reactive where Base: UITabBarController { + /// Reactive wrapper for `delegate`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var delegate: DelegateProxy { + RxTabBarControllerDelegateProxy.proxy(for: base) + } + + /// Reactive wrapper for `delegate` message `tabBarController:didSelect:`. + public var didSelect: ControlEvent { + let source = delegate.methodInvoked(#selector(UITabBarControllerDelegate.tabBarController(_:didSelect:))) + .map { a in + return try castOrThrow(UIViewController.self, a[1]) + } + + return ControlEvent(events: source) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift new file mode 100644 index 00000000..f30197d6 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift @@ -0,0 +1,429 @@ +// +// UITableView+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 4/2/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import RxSwift +import UIKit + +// Items + +extension Reactive where Base: UITableView { + + /** + Binds sequences of elements to table view rows. + + - parameter source: Observable sequence of items. + - parameter cellFactory: Transform between sequence elements and view cells. + - returns: Disposable object that can be used to unbind. + + Example: + + let items = Observable.just([ + "First Item", + "Second Item", + "Third Item" + ]) + + items + .bind(to: tableView.rx.items) { (tableView, row, element) in + let cell = tableView.dequeueReusableCell(withIdentifier: "Cell")! + cell.textLabel?.text = "\(element) @ row \(row)" + return cell + } + .disposed(by: disposeBag) + + */ + public func items + (_ source: Source) + -> (_ cellFactory: @escaping (UITableView, Int, Sequence.Element) -> UITableViewCell) + -> Disposable + where Source.Element == Sequence { + return { cellFactory in + let dataSource = RxTableViewReactiveArrayDataSourceSequenceWrapper(cellFactory: cellFactory) + return self.items(dataSource: dataSource)(source) + } + } + + /** + Binds sequences of elements to table view rows. + + - parameter cellIdentifier: Identifier used to dequeue cells. + - parameter source: Observable sequence of items. + - parameter configureCell: Transform between sequence elements and view cells. + - parameter cellType: Type of table view cell. + - returns: Disposable object that can be used to unbind. + + Example: + + let items = Observable.just([ + "First Item", + "Second Item", + "Third Item" + ]) + + items + .bind(to: tableView.rx.items(cellIdentifier: "Cell", cellType: UITableViewCell.self)) { (row, element, cell) in + cell.textLabel?.text = "\(element) @ row \(row)" + } + .disposed(by: disposeBag) + */ + public func items + (cellIdentifier: String, cellType: Cell.Type = Cell.self) + -> (_ source: Source) + -> (_ configureCell: @escaping (Int, Sequence.Element, Cell) -> Void) + -> Disposable + where Source.Element == Sequence { + return { source in + return { configureCell in + let dataSource = RxTableViewReactiveArrayDataSourceSequenceWrapper { tv, i, item in + let indexPath = IndexPath(item: i, section: 0) + let cell = tv.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as! Cell + configureCell(i, item, cell) + return cell + } + return self.items(dataSource: dataSource)(source) + } + } + } + + + /** + Binds sequences of elements to table view rows using a custom reactive data used to perform the transformation. + This method will retain the data source for as long as the subscription isn't disposed (result `Disposable` + being disposed). + In case `source` observable sequence terminates successfully, the data source will present latest element + until the subscription isn't disposed. + + - parameter dataSource: Data source used to transform elements to view cells. + - parameter source: Observable sequence of items. + - returns: Disposable object that can be used to unbind. + */ + public func items< + DataSource: RxTableViewDataSourceType & UITableViewDataSource, + Source: ObservableType> + (dataSource: DataSource) + -> (_ source: Source) + -> Disposable + where DataSource.Element == Source.Element { + return { source in + // This is called for side effects only, and to make sure delegate proxy is in place when + // data source is being bound. + // This is needed because theoretically the data source subscription itself might + // call `self.rx.delegate`. If that happens, it might cause weird side effects since + // setting data source will set delegate, and UITableView might get into a weird state. + // Therefore it's better to set delegate proxy first, just to be sure. + _ = self.delegate + // Strong reference is needed because data source is in use until result subscription is disposed + return source.subscribeProxyDataSource(ofObject: self.base, dataSource: dataSource as UITableViewDataSource, retainDataSource: true) { [weak tableView = self.base] (_: RxTableViewDataSourceProxy, event) -> Void in + guard let tableView = tableView else { + return + } + dataSource.tableView(tableView, observedEvent: event) + } + } + } + +} + +extension Reactive where Base: UITableView { + /** + Reactive wrapper for `dataSource`. + + For more information take a look at `DelegateProxyType` protocol documentation. + */ + public var dataSource: DelegateProxy { + RxTableViewDataSourceProxy.proxy(for: base) + } + + /** + Installs data source as forwarding delegate on `rx.dataSource`. + Data source won't be retained. + + It enables using normal delegate mechanism with reactive delegate mechanism. + + - parameter dataSource: Data source object. + - returns: Disposable object that can be used to unbind the data source. + */ + public func setDataSource(_ dataSource: UITableViewDataSource) + -> Disposable { + RxTableViewDataSourceProxy.installForwardDelegate(dataSource, retainDelegate: false, onProxyForObject: self.base) + } + + // events + + /** + Reactive wrapper for `delegate` message `tableView:didSelectRowAtIndexPath:`. + */ + public var itemSelected: ControlEvent { + let source = self.delegate.methodInvoked(#selector(UITableViewDelegate.tableView(_:didSelectRowAt:))) + .map { a in + return try castOrThrow(IndexPath.self, a[1]) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:didDeselectRowAtIndexPath:`. + */ + public var itemDeselected: ControlEvent { + let source = self.delegate.methodInvoked(#selector(UITableViewDelegate.tableView(_:didDeselectRowAt:))) + .map { a in + return try castOrThrow(IndexPath.self, a[1]) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:didHighlightRowAt:`. + */ + public var itemHighlighted: ControlEvent { + let source = self.delegate.methodInvoked(#selector(UITableViewDelegate.tableView(_:didHighlightRowAt:))) + .map { a in + return try castOrThrow(IndexPath.self, a[1]) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:didUnhighlightRowAt:`. + */ + public var itemUnhighlighted: ControlEvent { + let source = self.delegate.methodInvoked(#selector(UITableViewDelegate.tableView(_:didUnhighlightRowAt:))) + .map { a in + return try castOrThrow(IndexPath.self, a[1]) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:accessoryButtonTappedForRowWithIndexPath:`. + */ + public var itemAccessoryButtonTapped: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UITableViewDelegate.tableView(_:accessoryButtonTappedForRowWith:))) + .map { a in + return try castOrThrow(IndexPath.self, a[1]) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:commitEditingStyle:forRowAtIndexPath:`. + */ + public var itemInserted: ControlEvent { + let source = self.dataSource.methodInvoked(#selector(UITableViewDataSource.tableView(_:commit:forRowAt:))) + .filter { a in + return UITableViewCell.EditingStyle(rawValue: (try castOrThrow(NSNumber.self, a[1])).intValue) == .insert + } + .map { a in + return (try castOrThrow(IndexPath.self, a[2])) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:commitEditingStyle:forRowAtIndexPath:`. + */ + public var itemDeleted: ControlEvent { + let source = self.dataSource.methodInvoked(#selector(UITableViewDataSource.tableView(_:commit:forRowAt:))) + .filter { a in + return UITableViewCell.EditingStyle(rawValue: (try castOrThrow(NSNumber.self, a[1])).intValue) == .delete + } + .map { a in + return try castOrThrow(IndexPath.self, a[2]) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:moveRowAtIndexPath:toIndexPath:`. + */ + public var itemMoved: ControlEvent { + let source: Observable = self.dataSource.methodInvoked(#selector(UITableViewDataSource.tableView(_:moveRowAt:to:))) + .map { a in + return (try castOrThrow(IndexPath.self, a[1]), try castOrThrow(IndexPath.self, a[2])) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:willDisplayCell:forRowAtIndexPath:`. + */ + public var willDisplayCell: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UITableViewDelegate.tableView(_:willDisplay:forRowAt:))) + .map { a in + return (try castOrThrow(UITableViewCell.self, a[1]), try castOrThrow(IndexPath.self, a[2])) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:didEndDisplayingCell:forRowAtIndexPath:`. + */ + public var didEndDisplayingCell: ControlEvent { + let source: Observable = self.delegate.methodInvoked(#selector(UITableViewDelegate.tableView(_:didEndDisplaying:forRowAt:))) + .map { a in + return (try castOrThrow(UITableViewCell.self, a[1]), try castOrThrow(IndexPath.self, a[2])) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:didSelectRowAtIndexPath:`. + + It can be only used when one of the `rx.itemsWith*` methods is used to bind observable sequence, + or any other data source conforming to `SectionedViewDataSourceType` protocol. + + ``` + tableView.rx.modelSelected(MyModel.self) + .map { ... + ``` + */ + public func modelSelected(_ modelType: T.Type) -> ControlEvent { + let source: Observable = self.itemSelected.flatMap { [weak view = self.base as UITableView] indexPath -> Observable in + guard let view = view else { + return Observable.empty() + } + + return Observable.just(try view.rx.model(at: indexPath)) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:didDeselectRowAtIndexPath:`. + + It can be only used when one of the `rx.itemsWith*` methods is used to bind observable sequence, + or any other data source conforming to `SectionedViewDataSourceType` protocol. + + ``` + tableView.rx.modelDeselected(MyModel.self) + .map { ... + ``` + */ + public func modelDeselected(_ modelType: T.Type) -> ControlEvent { + let source: Observable = self.itemDeselected.flatMap { [weak view = self.base as UITableView] indexPath -> Observable in + guard let view = view else { + return Observable.empty() + } + + return Observable.just(try view.rx.model(at: indexPath)) + } + + return ControlEvent(events: source) + } + + /** + Reactive wrapper for `delegate` message `tableView:commitEditingStyle:forRowAtIndexPath:`. + + It can be only used when one of the `rx.itemsWith*` methods is used to bind observable sequence, + or any other data source conforming to `SectionedViewDataSourceType` protocol. + + ``` + tableView.rx.modelDeleted(MyModel.self) + .map { ... + ``` + */ + public func modelDeleted(_ modelType: T.Type) -> ControlEvent { + let source: Observable = self.itemDeleted.flatMap { [weak view = self.base as UITableView] indexPath -> Observable in + guard let view = view else { + return Observable.empty() + } + + return Observable.just(try view.rx.model(at: indexPath)) + } + + return ControlEvent(events: source) + } + + /** + Synchronous helper method for retrieving a model at indexPath through a reactive data source. + */ + public func model(at indexPath: IndexPath) throws -> T { + let dataSource: SectionedViewDataSourceType = castOrFatalError(self.dataSource.forwardToDelegate(), message: "This method only works in case one of the `rx.items*` methods was used.") + + let element = try dataSource.model(at: indexPath) + + return castOrFatalError(element) + } +} + +@available(iOS 10.0, tvOS 10.0, *) +extension Reactive where Base: UITableView { + + /// Reactive wrapper for `prefetchDataSource`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var prefetchDataSource: DelegateProxy { + RxTableViewDataSourcePrefetchingProxy.proxy(for: base) + } + + /** + Installs prefetch data source as forwarding delegate on `rx.prefetchDataSource`. + Prefetch data source won't be retained. + + It enables using normal delegate mechanism with reactive delegate mechanism. + + - parameter prefetchDataSource: Prefetch data source object. + - returns: Disposable object that can be used to unbind the data source. + */ + public func setPrefetchDataSource(_ prefetchDataSource: UITableViewDataSourcePrefetching) + -> Disposable { + return RxTableViewDataSourcePrefetchingProxy.installForwardDelegate(prefetchDataSource, retainDelegate: false, onProxyForObject: self.base) + } + + /// Reactive wrapper for `prefetchDataSource` message `tableView(_:prefetchRowsAt:)`. + public var prefetchRows: ControlEvent<[IndexPath]> { + let source = RxTableViewDataSourcePrefetchingProxy.proxy(for: base).prefetchRowsPublishSubject + return ControlEvent(events: source) + } + + /// Reactive wrapper for `prefetchDataSource` message `tableView(_:cancelPrefetchingForRowsAt:)`. + public var cancelPrefetchingForRows: ControlEvent<[IndexPath]> { + let source = prefetchDataSource.methodInvoked(#selector(UITableViewDataSourcePrefetching.tableView(_:cancelPrefetchingForRowsAt:))) + .map { a in + return try castOrThrow(Array.self, a[1]) + } + + return ControlEvent(events: source) + } + +} +#endif + +#if os(tvOS) + + extension Reactive where Base: UITableView { + + /** + Reactive wrapper for `delegate` message `tableView:didUpdateFocusInContext:withAnimationCoordinator:`. + */ + public var didUpdateFocusInContextWithAnimationCoordinator: ControlEvent<(context: UITableViewFocusUpdateContext, animationCoordinator: UIFocusAnimationCoordinator)> { + + let source = delegate.methodInvoked(#selector(UITableViewDelegate.tableView(_:didUpdateFocusIn:with:))) + .map { a -> (context: UITableViewFocusUpdateContext, animationCoordinator: UIFocusAnimationCoordinator) in + let context = try castOrThrow(UITableViewFocusUpdateContext.self, a[1]) + let animationCoordinator = try castOrThrow(UIFocusAnimationCoordinator.self, a[2]) + return (context: context, animationCoordinator: animationCoordinator) + } + + return ControlEvent(events: source) + } + } +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift new file mode 100644 index 00000000..46e0e488 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift @@ -0,0 +1,55 @@ +// +// UITextField+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 2/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import RxSwift +import UIKit + +extension Reactive where Base: UITextField { + /// Reactive wrapper for `text` property. + public var text: ControlProperty { + value + } + + /// Reactive wrapper for `text` property. + public var value: ControlProperty { + return base.rx.controlPropertyWithDefaultEvents( + getter: { textField in + textField.text + }, + setter: { textField, value in + // This check is important because setting text value always clears control state + // including marked text selection which is important for proper input + // when IME input method is used. + if textField.text != value { + textField.text = value + } + } + ) + } + + /// Bindable sink for `attributedText` property. + public var attributedText: ControlProperty { + return base.rx.controlPropertyWithDefaultEvents( + getter: { textField in + textField.attributedText + }, + setter: { textField, value in + // This check is important because setting text value always clears control state + // including marked text selection which is important for proper input + // when IME input method is used. + if textField.attributedText != value { + textField.attributedText = value + } + } + ) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift new file mode 100644 index 00000000..3395d9b9 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift @@ -0,0 +1,125 @@ +// +// UITextView+Rx.swift +// RxCocoa +// +// Created by Yuta ToKoRo on 7/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(tvOS) + +import UIKit +import RxSwift + +extension Reactive where Base: UITextView { + /// Reactive wrapper for `text` property + public var text: ControlProperty { + value + } + + /// Reactive wrapper for `text` property. + public var value: ControlProperty { + let source: Observable = Observable.deferred { [weak textView = self.base] in + let text = textView?.text + + let textChanged = textView?.textStorage + // This project uses text storage notifications because + // that's the only way to catch autocorrect changes + // in all cases. Other suggestions are welcome. + .rx.didProcessEditingRangeChangeInLength + // This observe on is here because text storage + // will emit event while process is not completely done, + // so rebinding a value will cause an exception to be thrown. + .observe(on:MainScheduler.asyncInstance) + .map { _ in + return textView?.textStorage.string + } + ?? Observable.empty() + + return textChanged + .startWith(text) + } + + let bindingObserver = Binder(self.base) { (textView, text: String?) in + // This check is important because setting text value always clears control state + // including marked text selection which is important for proper input + // when IME input method is used. + if textView.text != text { + textView.text = text + } + } + + return ControlProperty(values: source, valueSink: bindingObserver) + } + + + /// Reactive wrapper for `attributedText` property. + public var attributedText: ControlProperty { + let source: Observable = Observable.deferred { [weak textView = self.base] in + let attributedText = textView?.attributedText + + let textChanged: Observable = textView?.textStorage + // This project uses text storage notifications because + // that's the only way to catch autocorrect changes + // in all cases. Other suggestions are welcome. + .rx.didProcessEditingRangeChangeInLength + // This observe on is here because attributedText storage + // will emit event while process is not completely done, + // so rebinding a value will cause an exception to be thrown. + .observe(on:MainScheduler.asyncInstance) + .map { _ in + return textView?.attributedText + } + ?? Observable.empty() + + return textChanged + .startWith(attributedText) + } + + let bindingObserver = Binder(self.base) { (textView, attributedText: NSAttributedString?) in + // This check is important because setting text value always clears control state + // including marked text selection which is important for proper input + // when IME input method is used. + if textView.attributedText != attributedText { + textView.attributedText = attributedText + } + } + + return ControlProperty(values: source, valueSink: bindingObserver) + } + + /// Reactive wrapper for `delegate` message. + public var didBeginEditing: ControlEvent<()> { + return ControlEvent<()>(events: self.delegate.methodInvoked(#selector(UITextViewDelegate.textViewDidBeginEditing(_:))) + .map { _ in + return () + }) + } + + /// Reactive wrapper for `delegate` message. + public var didEndEditing: ControlEvent<()> { + return ControlEvent<()>(events: self.delegate.methodInvoked(#selector(UITextViewDelegate.textViewDidEndEditing(_:))) + .map { _ in + return () + }) + } + + /// Reactive wrapper for `delegate` message. + public var didChange: ControlEvent<()> { + return ControlEvent<()>(events: self.delegate.methodInvoked(#selector(UITextViewDelegate.textViewDidChange(_:))) + .map { _ in + return () + }) + } + + /// Reactive wrapper for `delegate` message. + public var didChangeSelection: ControlEvent<()> { + return ControlEvent<()>(events: self.delegate.methodInvoked(#selector(UITextViewDelegate.textViewDidChangeSelection(_:))) + .map { _ in + return () + }) + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/iOS/WKWebView+Rx.swift b/Pods/RxCocoa/RxCocoa/iOS/WKWebView+Rx.swift new file mode 100644 index 00000000..6332fae7 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/iOS/WKWebView+Rx.swift @@ -0,0 +1,57 @@ +// +// WKWebView+Rx.swift +// RxCocoa +// +// Created by Giuseppe Lanza on 14/02/2020. +// Copyright © 2020 Krunoslav Zaher. All rights reserved. +// + +#if os(iOS) || os(macOS) + +import RxSwift +import WebKit + +@available(iOS 8.0, macOS 10.10, macOSApplicationExtension 10.10, *) +extension Reactive where Base: WKWebView { + + /// Reactive wrapper for `navigationDelegate`. + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var navigationDelegate: DelegateProxy { + RxWKNavigationDelegateProxy.proxy(for: base) + } + + /// Reactive wrapper for `navigationDelegate` message. + public var didCommit: Observable { + navigationDelegate + .methodInvoked(#selector(WKNavigationDelegate.webView(_:didCommit:))) + .map { a in try castOrThrow(WKNavigation.self, a[1]) } + } + + /// Reactive wrapper for `navigationDelegate` message. + public var didStartLoad: Observable { + navigationDelegate + .methodInvoked(#selector(WKNavigationDelegate.webView(_:didStartProvisionalNavigation:))) + .map { a in try castOrThrow(WKNavigation.self, a[1]) } + } + + /// Reactive wrapper for `navigationDelegate` message. + public var didFinishLoad: Observable { + navigationDelegate + .methodInvoked(#selector(WKNavigationDelegate.webView(_:didFinish:))) + .map { a in try castOrThrow(WKNavigation.self, a[1]) } + } + + /// Reactive wrapper for `navigationDelegate` message. + public var didFailLoad: Observable<(WKNavigation, Error)> { + navigationDelegate + .methodInvoked(#selector(WKNavigationDelegate.webView(_:didFail:withError:))) + .map { a in + ( + try castOrThrow(WKNavigation.self, a[1]), + try castOrThrow(Error.self, a[2]) + ) + } + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/macOS/NSButton+Rx.swift b/Pods/RxCocoa/RxCocoa/macOS/NSButton+Rx.swift new file mode 100644 index 00000000..7c223618 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/macOS/NSButton+Rx.swift @@ -0,0 +1,33 @@ +// +// NSButton+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 5/17/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(macOS) + +import RxSwift +import Cocoa + +extension Reactive where Base: NSButton { + + /// Reactive wrapper for control event. + public var tap: ControlEvent { + self.controlEvent + } + + /// Reactive wrapper for `state` property`. + public var state: ControlProperty { + return self.base.rx.controlProperty( + getter: { control in + return control.state + }, setter: { (control: NSButton, state: NSControl.StateValue) in + control.state = state + } + ) + } +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/macOS/NSControl+Rx.swift b/Pods/RxCocoa/RxCocoa/macOS/NSControl+Rx.swift new file mode 100644 index 00000000..534f40ca --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/macOS/NSControl+Rx.swift @@ -0,0 +1,87 @@ +// +// NSControl+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 5/31/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(macOS) + +import Cocoa +import RxSwift + +private var rx_value_key: UInt8 = 0 +private var rx_control_events_key: UInt8 = 0 + +extension Reactive where Base: NSControl { + + /// Reactive wrapper for control event. + public var controlEvent: ControlEvent<()> { + MainScheduler.ensureRunningOnMainThread() + + let source = self.lazyInstanceObservable(&rx_control_events_key) { () -> Observable in + Observable.create { [weak control = self.base] observer in + MainScheduler.ensureRunningOnMainThread() + + guard let control = control else { + observer.on(.completed) + return Disposables.create() + } + + let observer = ControlTarget(control: control) { _ in + observer.on(.next(())) + } + + return observer + } + .take(until: self.deallocated) + .share() + } + + return ControlEvent(events: source) + } + + /// Creates a `ControlProperty` that is triggered by target/action pattern value updates. + /// + /// - parameter getter: Property value getter. + /// - parameter setter: Property value setter. + public func controlProperty( + getter: @escaping (Base) -> T, + setter: @escaping (Base, T) -> Void + ) -> ControlProperty { + MainScheduler.ensureRunningOnMainThread() + + let source = self.base.rx.lazyInstanceObservable(&rx_value_key) { () -> Observable<()> in + return Observable.create { [weak weakControl = self.base] (observer: AnyObserver<()>) in + guard let control = weakControl else { + observer.on(.completed) + return Disposables.create() + } + + observer.on(.next(())) + + let observer = ControlTarget(control: control) { _ in + if weakControl != nil { + observer.on(.next(())) + } + } + + return observer + } + .take(until: self.deallocated) + .share(replay: 1, scope: .whileConnected) + } + .flatMap { [weak base] _ -> Observable in + guard let control = base else { return Observable.empty() } + return Observable.just(getter(control)) + } + + let bindingObserver = Binder(self.base, binding: setter) + + return ControlProperty(values: source, valueSink: bindingObserver) + } +} + + +#endif diff --git a/Pods/RxCocoa/RxCocoa/macOS/NSSlider+Rx.swift b/Pods/RxCocoa/RxCocoa/macOS/NSSlider+Rx.swift new file mode 100644 index 00000000..2e5b19a8 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/macOS/NSSlider+Rx.swift @@ -0,0 +1,30 @@ +// +// NSSlider+Rx.swift +// RxCocoa +// +// Created by Junior B. on 24/05/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(macOS) + +import RxSwift +import Cocoa + +extension Reactive where Base: NSSlider { + + /// Reactive wrapper for `value` property. + public var value: ControlProperty { + return self.base.rx.controlProperty( + getter: { control -> Double in + return control.doubleValue + }, + setter: { control, value in + control.doubleValue = value + } + ) + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/macOS/NSTextField+Rx.swift b/Pods/RxCocoa/RxCocoa/macOS/NSTextField+Rx.swift new file mode 100644 index 00000000..ce69f9e9 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/macOS/NSTextField+Rx.swift @@ -0,0 +1,87 @@ +// +// NSTextField+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 5/17/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(macOS) + +import Cocoa +import RxSwift + +/// Delegate proxy for `NSTextField`. +/// +/// For more information take a look at `DelegateProxyType`. +open class RxTextFieldDelegateProxy + : DelegateProxy + , DelegateProxyType + , NSTextFieldDelegate { + + /// Typed parent object. + public weak private(set) var textField: NSTextField? + + /// Initializes `RxTextFieldDelegateProxy` + /// + /// - parameter textField: Parent object for delegate proxy. + init(textField: NSTextField) { + self.textField = textField + super.init(parentObject: textField, delegateProxy: RxTextFieldDelegateProxy.self) + } + + public static func registerKnownImplementations() { + self.register { RxTextFieldDelegateProxy(textField: $0) } + } + + fileprivate let textSubject = PublishSubject() + + // MARK: Delegate methods + open func controlTextDidChange(_ notification: Notification) { + let textField: NSTextField = castOrFatalError(notification.object) + let nextValue = textField.stringValue + self.textSubject.on(.next(nextValue)) + _forwardToDelegate?.controlTextDidChange?(notification) + } + + // MARK: Delegate proxy methods + + /// For more information take a look at `DelegateProxyType`. + open class func currentDelegate(for object: ParentObject) -> NSTextFieldDelegate? { + object.delegate + } + + /// For more information take a look at `DelegateProxyType`. + open class func setCurrentDelegate(_ delegate: NSTextFieldDelegate?, to object: ParentObject) { + object.delegate = delegate + } + +} + +extension Reactive where Base: NSTextField { + + /// Reactive wrapper for `delegate`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var delegate: DelegateProxy { + RxTextFieldDelegateProxy.proxy(for: self.base) + } + + /// Reactive wrapper for `text` property. + public var text: ControlProperty { + let delegate = RxTextFieldDelegateProxy.proxy(for: self.base) + + let source = Observable.deferred { [weak textField = self.base] in + delegate.textSubject.startWith(textField?.stringValue) + }.take(until: self.deallocated) + + let observer = Binder(self.base) { (control, value: String?) in + control.stringValue = value ?? "" + } + + return ControlProperty(values: source, valueSink: observer.asObserver()) + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/macOS/NSTextView+Rx.swift b/Pods/RxCocoa/RxCocoa/macOS/NSTextView+Rx.swift new file mode 100644 index 00000000..c3134e4f --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/macOS/NSTextView+Rx.swift @@ -0,0 +1,94 @@ +// +// NSTextView+Rx.swift +// RxCocoa +// +// Created by Cee on 8/5/18. +// Copyright © 2018 Krunoslav Zaher. All rights reserved. +// + +#if os(macOS) + +import Cocoa +import RxSwift + +/// Delegate proxy for `NSTextView`. +/// +/// For more information take a look at `DelegateProxyType`. +open class RxTextViewDelegateProxy: DelegateProxy, DelegateProxyType, NSTextViewDelegate { + + #if compiler(>=5.2) + /// Typed parent object. + /// + /// - note: Since Swift 5.2 and Xcode 11.4, Apple have suddenly + /// disallowed using `weak` for NSTextView. For more details + /// see this GitHub Issue: https://git.io/JvSRn + public private(set) var textView: NSTextView? + #else + /// Typed parent object. + public weak private(set) var textView: NSTextView? + #endif + + /// Initializes `RxTextViewDelegateProxy` + /// + /// - parameter textView: Parent object for delegate proxy. + init(textView: NSTextView) { + self.textView = textView + super.init(parentObject: textView, delegateProxy: RxTextViewDelegateProxy.self) + } + + public static func registerKnownImplementations() { + self.register { RxTextViewDelegateProxy(textView: $0) } + } + + fileprivate let textSubject = PublishSubject() + + // MARK: Delegate methods + + open func textDidChange(_ notification: Notification) { + let textView: NSTextView = castOrFatalError(notification.object) + let nextValue = textView.string + self.textSubject.on(.next(nextValue)) + self._forwardToDelegate?.textDidChange?(notification) + } + + // MARK: Delegate proxy methods + + /// For more information take a look at `DelegateProxyType`. + open class func currentDelegate(for object: ParentObject) -> NSTextViewDelegate? { + object.delegate + } + + /// For more information take a look at `DelegateProxyType`. + open class func setCurrentDelegate(_ delegate: NSTextViewDelegate?, to object: ParentObject) { + object.delegate = delegate + } + +} + +extension Reactive where Base: NSTextView { + + /// Reactive wrapper for `delegate`. + /// + /// For more information take a look at `DelegateProxyType` protocol documentation. + public var delegate: DelegateProxy { + RxTextViewDelegateProxy.proxy(for: self.base) + } + + /// Reactive wrapper for `string` property. + public var string: ControlProperty { + let delegate = RxTextViewDelegateProxy.proxy(for: self.base) + + let source = Observable.deferred { [weak textView = self.base] in + delegate.textSubject.startWith(textView?.string ?? "") + }.take(until: self.deallocated) + + let observer = Binder(self.base) { control, value in + control.string = value + } + + return ControlProperty(values: source, valueSink: observer.asObserver()) + } + +} + +#endif diff --git a/Pods/RxCocoa/RxCocoa/macOS/NSView+Rx.swift b/Pods/RxCocoa/RxCocoa/macOS/NSView+Rx.swift new file mode 100644 index 00000000..f4256d11 --- /dev/null +++ b/Pods/RxCocoa/RxCocoa/macOS/NSView+Rx.swift @@ -0,0 +1,21 @@ +// +// NSView+Rx.swift +// RxCocoa +// +// Created by Krunoslav Zaher on 12/6/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(macOS) + import Cocoa + import RxSwift + + extension Reactive where Base: NSView { + /// Bindable sink for `alphaValue` property. + public var alpha: Binder { + return Binder(self.base) { view, value in + view.alphaValue = value + } + } + } +#endif diff --git a/Pods/RxRelay/LICENSE.md b/Pods/RxRelay/LICENSE.md new file mode 100644 index 00000000..e32511b3 --- /dev/null +++ b/Pods/RxRelay/LICENSE.md @@ -0,0 +1,9 @@ +**The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Pods/RxRelay/README.md b/Pods/RxRelay/README.md new file mode 100644 index 00000000..8181ef4c --- /dev/null +++ b/Pods/RxRelay/README.md @@ -0,0 +1,254 @@ +

+RxSwift Logo +
+
Build Status +Supported Platforms: iOS, macOS, tvOS, watchOS & Linux +
+ + + +

+ +Rx is a [generic abstraction of computation](https://youtu.be/looJcaeboBY) expressed through `Observable` interface, which lets you broadcast and subscribe to values and other events from an `Observable` stream. + +RxSwift is the Swift-specific implementation of the [Reactive Extensions](http://reactivex.io) standard. + +

RxSwift Observable Example of a price constantly changing and updating the app's UI

+ +While this version aims to stay true to the original spirit and naming conventions of Rx, this project also aims to provide a true Swift-first API for Rx APIs. + +Cross platform documentation can be found on [ReactiveX.io](http://reactivex.io/). + +Like other Rx implementations, RxSwift's intention is to enable easy composition of asynchronous operations and streams of data in the form of `Observable` objects and a suite of methods to transform and compose these pieces of asynchronous work. + +KVO observation, async operations, UI Events and other streams of data are all unified under [abstraction of sequence](Documentation/GettingStarted.md#observables-aka-sequences). This is the reason why Rx is so simple, elegant and powerful. + +## I came here because I want to ... + +###### ... understand + +* [why use rx?](Documentation/Why.md) +* [the basics, getting started with RxSwift](Documentation/GettingStarted.md) +* [traits](Documentation/Traits.md) - what are `Single`, `Completable`, `Maybe`, `Driver`, and `ControlProperty` ... and why do they exist? +* [testing](Documentation/UnitTests.md) +* [tips and common errors](Documentation/Tips.md) +* [debugging](Documentation/GettingStarted.md#debugging) +* [the math behind Rx](Documentation/MathBehindRx.md) +* [what are hot and cold observable sequences?](Documentation/HotAndColdObservables.md) + +###### ... install + +* Integrate RxSwift/RxCocoa with my app. [Installation Guide](#installation) + +###### ... hack around + +* with the example app. [Running Example App](Documentation/ExampleApp.md) +* with operators in playgrounds. [Playgrounds](Documentation/Playgrounds.md) + +###### ... interact + +* All of this is great, but it would be nice to talk with other people using RxSwift and exchange experiences.
[Join Slack Channel](http://slack.rxswift.org) +* Report a problem using the library. [Open an Issue With Bug Template](.github/ISSUE_TEMPLATE.md) +* Request a new feature. [Open an Issue With Feature Request Template](Documentation/NewFeatureRequestTemplate.md) +* Help out [Check out contribution guide](CONTRIBUTING.md) + +###### ... compare + +* [with Combine and ReactiveSwift](Documentation/ComparisonWithOtherLibraries.md). + +###### ... understand the structure + +RxSwift is as compositional as the asynchronous work it drives. The core unit is RxSwift itself, while other dependencies can be added for UI Work, testing, and more. + +It comprises five separate components depending on each other in the following way: + +```none +┌──────────────┐ ┌──────────────┐ +│ RxCocoa ├────▶ RxRelay │ +└───────┬──────┘ └──────┬───────┘ + │ │ +┌───────▼──────────────────▼───────┐ +│ RxSwift │ +└───────▲──────────────────▲───────┘ + │ │ +┌───────┴──────┐ ┌──────┴───────┐ +│ RxTest │ │ RxBlocking │ +└──────────────┘ └──────────────┘ +``` + +* **RxSwift**: The core of RxSwift, providing the Rx standard as (mostly) defined by [ReactiveX](https://reactivex.io). It has no other dependencies. +* **RxCocoa**: Provides Cocoa-specific capabilities for general iOS/macOS/watchOS & tvOS app development, such as Shared Sequences, Traits, and much more. It depends on both `RxSwift` and `RxRelay`. +* **RxRelay**: Provides `PublishRelay`, `BehaviorRelay` and `ReplayRelay`, three [simple wrappers around Subjects](https://github.com/ReactiveX/RxSwift/blob/main/Documentation/Subjects.md#relays). It depends on `RxSwift`. +* **RxTest** and **RxBlocking**: Provides testing capabilities for Rx-based systems. It depends on `RxSwift`. + +## Usage + + + + + + + + + + + + + + + + + + + +
Here's an exampleIn Action
Define search for GitHub repositories ...
+let searchResults = searchBar.rx.text.orEmpty
+    .throttle(.milliseconds(300), scheduler: MainScheduler.instance)
+    .distinctUntilChanged()
+    .flatMapLatest { query -> Observable<[Repository]> in
+        if query.isEmpty {
+            return .just([])
+        }
+        return searchGitHub(query)
+            .catchAndReturn([])
+    }
+    .observe(on: MainScheduler.instance)
... then bind the results to your tableview
+searchResults
+    .bind(to: tableView.rx.items(cellIdentifier: "Cell")) {
+        (index, repository: Repository, cell) in
+        cell.textLabel?.text = repository.name
+        cell.detailTextLabel?.text = repository.url
+    }
+    .disposed(by: disposeBag)
+ + +## Requirements + +* Xcode 12.x +* Swift 5.x + +For Xcode 11 and below, [use RxSwift 5.x](https://github.com/ReactiveX/RxSwift/releases/tag/5.1.1). + +## Installation + +RxSwift doesn't contain any external dependencies. + +These are currently the supported installation options: + +### Manual + +Open Rx.xcworkspace, choose `RxExample` and hit run. This method will build everything and run the sample app + +### [CocoaPods](https://guides.cocoapods.org/using/using-cocoapods.html) + +```ruby +# Podfile +use_frameworks! + +target 'YOUR_TARGET_NAME' do + pod 'RxSwift', '6.6.0' + pod 'RxCocoa', '6.6.0' +end + +# RxTest and RxBlocking make the most sense in the context of unit/integration tests +target 'YOUR_TESTING_TARGET' do + pod 'RxBlocking', '6.6.0' + pod 'RxTest', '6.6.0' +end +``` + +Replace `YOUR_TARGET_NAME` and then, in the `Podfile` directory, type: + +```bash +$ pod install +``` + +### XCFrameworks + +Each release starting with RxSwift 6 includes `*.xcframework` framework binaries. + +Simply drag the needed framework binaries to your **Frameworks, Libraries, and Embedded Content** section under your target's **General** tab. + +> **Note**: If you're using `RxCocoa`, be sure to also drag **RxCocoaRuntime.xcframework** before importing `RxCocoa`. + +XCFrameworks instructions + +### [Carthage](https://github.com/Carthage/Carthage) + +Add this to `Cartfile` + +``` +github "ReactiveX/RxSwift" "6.6.0" +``` + +```bash +$ carthage update +``` + +#### Carthage as a Static Library + +Carthage defaults to building RxSwift as a Dynamic Library. + +If you wish to build RxSwift as a Static Library using Carthage you may use the script below to manually modify the framework type before building with Carthage: + +```bash +carthage update RxSwift --platform iOS --no-build +sed -i -e 's/MACH_O_TYPE = mh_dylib/MACH_O_TYPE = staticlib/g' Carthage/Checkouts/RxSwift/Rx.xcodeproj/project.pbxproj +carthage build RxSwift --platform iOS +``` + +### [Swift Package Manager](https://github.com/apple/swift-package-manager) + +> **Note**: There is a critical cross-dependency bug affecting many projects including RxSwift in Swift Package Manager. We've [filed a bug (SR-12303)](https://bugs.swift.org/browse/SR-12303) in early 2020 but have no answer yet. Your mileage may vary. A partial workaround can be found [here](https://github.com/ReactiveX/RxSwift/issues/2127#issuecomment-717830502). + +Create a `Package.swift` file. + +```swift +// swift-tools-version:5.0 + +import PackageDescription + +let package = Package( + name: "RxTestProject", + dependencies: [ + .package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.6.0")) + ], + targets: [ + .target(name: "RxTestProject", dependencies: ["RxSwift", "RxCocoa"]) + ] +) +``` + +```bash +$ swift build +``` + +To build or test a module with RxTest dependency, set `TEST=1`. + +```bash +$ TEST=1 swift test +``` + +### Manually using git submodules + +* Add RxSwift as a submodule + +```bash +$ git submodule add git@github.com:ReactiveX/RxSwift.git +``` + +* Drag `Rx.xcodeproj` into Project Navigator +* Go to `Project > Targets > Build Phases > Link Binary With Libraries`, click `+` and select `RxSwift`, `RxCocoa` and `RxRelay` targets + +## References + +* [http://reactivex.io/](http://reactivex.io/) +* [Reactive Extensions GitHub (GitHub)](https://github.com/Reactive-Extensions) +* [RxSwift RayWenderlich.com Book](https://store.raywenderlich.com/products/rxswift-reactive-programming-with-swift) +* [RxSwift: Debunking the myth of hard (YouTube)](https://www.youtube.com/watch?v=GdvLP0ZAhhc) +* [Boxue.io RxSwift Online Course](https://boxueio.com/series/rxswift-101) (Chinese 🇨🇳) +* [Expert to Expert: Brian Beckman and Erik Meijer - Inside the .NET Reactive Framework (Rx) (video)](https://youtu.be/looJcaeboBY) +* [Reactive Programming Overview (Jafar Husain from Netflix)](https://youtu.be/-8Y1-lE6NSA) +* [Subject/Observer is Dual to Iterator (paper)](http://csl.stanford.edu/~christos/pldi2010.fit/meijer.duality.pdf) +* [Rx standard sequence operators visualized (visualization tool)](http://rxmarbles.com/) +* [Haskell](https://www.haskell.org/) diff --git a/Pods/RxRelay/RxRelay/BehaviorRelay.swift b/Pods/RxRelay/RxRelay/BehaviorRelay.swift new file mode 100644 index 00000000..9ab2a4e9 --- /dev/null +++ b/Pods/RxRelay/RxRelay/BehaviorRelay.swift @@ -0,0 +1,49 @@ +// +// BehaviorRelay.swift +// RxRelay +// +// Created by Krunoslav Zaher on 10/7/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// BehaviorRelay is a wrapper for `BehaviorSubject`. +/// +/// Unlike `BehaviorSubject` it can't terminate with error or completed. +public final class BehaviorRelay: ObservableType { + private let subject: BehaviorSubject + + /// Accepts `event` and emits it to subscribers + public func accept(_ event: Element) { + self.subject.onNext(event) + } + + /// Current value of behavior subject + public var value: Element { + // this try! is ok because subject can't error out or be disposed + return try! self.subject.value() + } + + /// Initializes behavior relay with initial value. + public init(value: Element) { + self.subject = BehaviorSubject(value: value) + } + + /// Subscribes observer + public func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.subject.subscribe(observer) + } + + /// - returns: Canonical interface for push style sequence + public func asObservable() -> Observable { + self.subject.asObservable() + } + + /// Convert to an `Infallible` + /// + /// - returns: `Infallible` + public func asInfallible() -> Infallible { + asInfallible(onErrorFallbackTo: .empty()) + } +} diff --git a/Pods/RxRelay/RxRelay/Observable+Bind.swift b/Pods/RxRelay/RxRelay/Observable+Bind.swift new file mode 100644 index 00000000..08c4a971 --- /dev/null +++ b/Pods/RxRelay/RxRelay/Observable+Bind.swift @@ -0,0 +1,149 @@ +// +// Observable+Bind.swift +// RxRelay +// +// Created by Shai Mishali on 09/04/2019. +// Copyright © 2019 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension ObservableType { + /** + Creates new subscription and sends elements to publish relay(s). + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + - parameter relays: Target publish relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer. + */ + public func bind(to relays: PublishRelay...) -> Disposable { + bind(to: relays) + } + + /** + Creates new subscription and sends elements to publish relay(s). + + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + + - parameter relays: Target publish relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer. + */ + public func bind(to relays: PublishRelay...) -> Disposable { + self.map { $0 as Element? }.bind(to: relays) + } + + /** + Creates new subscription and sends elements to publish relay(s). + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + - parameter relays: Target publish relays for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer. + */ + private func bind(to relays: [PublishRelay]) -> Disposable { + subscribe { e in + switch e { + case let .next(element): + relays.forEach { + $0.accept(element) + } + case let .error(error): + rxFatalErrorInDebug("Binding error to publish relay: \(error)") + case .completed: + break + } + } + } + + /** + Creates new subscription and sends elements to behavior relay(s). + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + - parameter relays: Target behavior relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer. + */ + public func bind(to relays: BehaviorRelay...) -> Disposable { + self.bind(to: relays) + } + + /** + Creates new subscription and sends elements to behavior relay(s). + + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + + - parameter relays: Target behavior relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer. + */ + public func bind(to relays: BehaviorRelay...) -> Disposable { + self.map { $0 as Element? }.bind(to: relays) + } + + /** + Creates new subscription and sends elements to behavior relay(s). + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + - parameter relays: Target behavior relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer. + */ + private func bind(to relays: [BehaviorRelay]) -> Disposable { + subscribe { e in + switch e { + case let .next(element): + relays.forEach { + $0.accept(element) + } + case let .error(error): + rxFatalErrorInDebug("Binding error to behavior relay: \(error)") + case .completed: + break + } + } + } + + /** + Creates new subscription and sends elements to replay relay(s). + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + - parameter relays: Target replay relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer. + */ + public func bind(to relays: ReplayRelay...) -> Disposable { + self.bind(to: relays) + } + + /** + Creates new subscription and sends elements to replay relay(s). + + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + + - parameter relays: Target replay relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer. + */ + public func bind(to relays: ReplayRelay...) -> Disposable { + self.map { $0 as Element? }.bind(to: relays) + } + + /** + Creates new subscription and sends elements to replay relay(s). + In case error occurs in debug mode, `fatalError` will be raised. + In case error occurs in release mode, `error` will be logged. + - parameter relays: Target replay relay for sequence elements. + - returns: Disposable object that can be used to unsubscribe the observer. + */ + private func bind(to relays: [ReplayRelay]) -> Disposable { + subscribe { e in + switch e { + case let .next(element): + relays.forEach { + $0.accept(element) + } + case let .error(error): + rxFatalErrorInDebug("Binding error to behavior relay: \(error)") + case .completed: + break + } + } + } +} diff --git a/Pods/RxRelay/RxRelay/PublishRelay.swift b/Pods/RxRelay/RxRelay/PublishRelay.swift new file mode 100644 index 00000000..1d9f52a1 --- /dev/null +++ b/Pods/RxRelay/RxRelay/PublishRelay.swift @@ -0,0 +1,43 @@ +// +// PublishRelay.swift +// RxRelay +// +// Created by Krunoslav Zaher on 3/28/15. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// PublishRelay is a wrapper for `PublishSubject`. +/// +/// Unlike `PublishSubject` it can't terminate with error or completed. +public final class PublishRelay: ObservableType { + private let subject: PublishSubject + + // Accepts `event` and emits it to subscribers + public func accept(_ event: Element) { + self.subject.onNext(event) + } + + /// Initializes with internal empty subject. + public init() { + self.subject = PublishSubject() + } + + /// Subscribes observer + public func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.subject.subscribe(observer) + } + + /// - returns: Canonical interface for push style sequence + public func asObservable() -> Observable { + self.subject.asObservable() + } + + /// Convert to an `Infallible` + /// + /// - returns: `Infallible` + public func asInfallible() -> Infallible { + asInfallible(onErrorFallbackTo: .empty()) + } +} diff --git a/Pods/RxRelay/RxRelay/ReplayRelay.swift b/Pods/RxRelay/RxRelay/ReplayRelay.swift new file mode 100644 index 00000000..604942de --- /dev/null +++ b/Pods/RxRelay/RxRelay/ReplayRelay.swift @@ -0,0 +1,57 @@ +// +// ReplayRelay.swift +// RxRelay +// +// Created by Zsolt Kovacs on 12/22/19. +// Copyright © 2019 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// ReplayRelay is a wrapper for `ReplaySubject`. +/// +/// Unlike `ReplaySubject` it can't terminate with an error or complete. +public final class ReplayRelay: ObservableType { + private let subject: ReplaySubject + + // Accepts `event` and emits it to subscribers + public func accept(_ event: Element) { + self.subject.onNext(event) + } + + private init(subject: ReplaySubject) { + self.subject = subject + } + + /// Creates new instance of `ReplayRelay` that replays at most `bufferSize` last elements sent to it. + /// + /// - parameter bufferSize: Maximal number of elements to replay to observers after subscription. + /// - returns: New instance of replay relay. + public static func create(bufferSize: Int) -> ReplayRelay { + ReplayRelay(subject: ReplaySubject.create(bufferSize: bufferSize)) + } + + /// Creates a new instance of `ReplayRelay` that buffers all the sent to it. + /// To avoid filling up memory, developer needs to make sure that the use case will only ever store a 'reasonable' + /// number of elements. + public static func createUnbound() -> ReplayRelay { + ReplayRelay(subject: ReplaySubject.createUnbounded()) + } + + /// Subscribes observer + public func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.subject.subscribe(observer) + } + + /// - returns: Canonical interface for push style sequence + public func asObservable() -> Observable { + self.subject.asObserver() + } + + /// Convert to an `Infallible` + /// + /// - returns: `Infallible` + public func asInfallible() -> Infallible { + asInfallible(onErrorFallbackTo: .empty()) + } +} diff --git a/Pods/RxRelay/RxRelay/Utils.swift b/Pods/RxRelay/RxRelay/Utils.swift new file mode 100644 index 00000000..5954fb98 --- /dev/null +++ b/Pods/RxRelay/RxRelay/Utils.swift @@ -0,0 +1,17 @@ +// +// Utils.swift +// RxRelay +// +// Created by Shai Mishali on 09/04/2019. +// Copyright © 2019 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +func rxFatalErrorInDebug(_ lastMessage: @autoclosure () -> String, file: StaticString = #file, line: UInt = #line) { + #if DEBUG + fatalError(lastMessage(), file: file, line: line) + #else + print("\(file):\(line): \(lastMessage())") + #endif +} diff --git a/Pods/RxSwift/LICENSE.md b/Pods/RxSwift/LICENSE.md new file mode 100644 index 00000000..e32511b3 --- /dev/null +++ b/Pods/RxSwift/LICENSE.md @@ -0,0 +1,9 @@ +**The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Pods/RxSwift/Platform/AtomicInt.swift b/Pods/RxSwift/Platform/AtomicInt.swift new file mode 100644 index 00000000..98479fd2 --- /dev/null +++ b/Pods/RxSwift/Platform/AtomicInt.swift @@ -0,0 +1,71 @@ +// +// AtomicInt.swift +// Platform +// +// Created by Krunoslav Zaher on 10/28/18. +// Copyright © 2018 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +final class AtomicInt: NSLock { + fileprivate var value: Int32 + public init(_ value: Int32 = 0) { + self.value = value + } +} + +@discardableResult +@inline(__always) +func add(_ this: AtomicInt, _ value: Int32) -> Int32 { + this.lock() + let oldValue = this.value + this.value += value + this.unlock() + return oldValue +} + +@discardableResult +@inline(__always) +func sub(_ this: AtomicInt, _ value: Int32) -> Int32 { + this.lock() + let oldValue = this.value + this.value -= value + this.unlock() + return oldValue +} + +@discardableResult +@inline(__always) +func fetchOr(_ this: AtomicInt, _ mask: Int32) -> Int32 { + this.lock() + let oldValue = this.value + this.value |= mask + this.unlock() + return oldValue +} + +@inline(__always) +func load(_ this: AtomicInt) -> Int32 { + this.lock() + let oldValue = this.value + this.unlock() + return oldValue +} + +@discardableResult +@inline(__always) +func increment(_ this: AtomicInt) -> Int32 { + add(this, 1) +} + +@discardableResult +@inline(__always) +func decrement(_ this: AtomicInt) -> Int32 { + sub(this, 1) +} + +@inline(__always) +func isFlagSet(_ this: AtomicInt, _ mask: Int32) -> Bool { + (load(this) & mask) != 0 +} diff --git a/Pods/RxSwift/Platform/DataStructures/Bag.swift b/Pods/RxSwift/Platform/DataStructures/Bag.swift new file mode 100644 index 00000000..5720a3b4 --- /dev/null +++ b/Pods/RxSwift/Platform/DataStructures/Bag.swift @@ -0,0 +1,181 @@ +// +// Bag.swift +// Platform +// +// Created by Krunoslav Zaher on 2/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Swift + +let arrayDictionaryMaxSize = 30 + +struct BagKey { + /** + Unique identifier for object added to `Bag`. + + It's underlying type is UInt64. If we assume there in an idealized CPU that works at 4GHz, + it would take ~150 years of continuous running time for it to overflow. + */ + fileprivate let rawValue: UInt64 +} + +/** +Data structure that represents a bag of elements typed `T`. + +Single element can be stored multiple times. + +Time and space complexity of insertion and deletion is O(n). + +It is suitable for storing small number of elements. +*/ +struct Bag : CustomDebugStringConvertible { + /// Type of identifier for inserted elements. + typealias KeyType = BagKey + + typealias Entry = (key: BagKey, value: T) + + private var _nextKey: BagKey = BagKey(rawValue: 0) + + // data + + // first fill inline variables + var _key0: BagKey? + var _value0: T? + + // then fill "array dictionary" + var _pairs = ContiguousArray() + + // last is sparse dictionary + var _dictionary: [BagKey: T]? + + var _onlyFastPath = true + + /// Creates new empty `Bag`. + init() { + } + + /** + Inserts `value` into bag. + + - parameter element: Element to insert. + - returns: Key that can be used to remove element from bag. + */ + mutating func insert(_ element: T) -> BagKey { + let key = _nextKey + + _nextKey = BagKey(rawValue: _nextKey.rawValue &+ 1) + + if _key0 == nil { + _key0 = key + _value0 = element + return key + } + + _onlyFastPath = false + + if _dictionary != nil { + _dictionary![key] = element + return key + } + + if _pairs.count < arrayDictionaryMaxSize { + _pairs.append((key: key, value: element)) + return key + } + + _dictionary = [key: element] + + return key + } + + /// - returns: Number of elements in bag. + var count: Int { + let dictionaryCount: Int = _dictionary?.count ?? 0 + return (_value0 != nil ? 1 : 0) + _pairs.count + dictionaryCount + } + + /// Removes all elements from bag and clears capacity. + mutating func removeAll() { + _key0 = nil + _value0 = nil + + _pairs.removeAll(keepingCapacity: false) + _dictionary?.removeAll(keepingCapacity: false) + } + + /** + Removes element with a specific `key` from bag. + + - parameter key: Key that identifies element to remove from bag. + - returns: Element that bag contained, or nil in case element was already removed. + */ + mutating func removeKey(_ key: BagKey) -> T? { + if _key0 == key { + _key0 = nil + let value = _value0! + _value0 = nil + return value + } + + if let existingObject = _dictionary?.removeValue(forKey: key) { + return existingObject + } + + for i in 0 ..< _pairs.count where _pairs[i].key == key { + let value = _pairs[i].value + _pairs.remove(at: i) + return value + } + + return nil + } +} + +extension Bag { + /// A textual representation of `self`, suitable for debugging. + var debugDescription : String { + "\(self.count) elements in Bag" + } +} + +extension Bag { + /// Enumerates elements inside the bag. + /// + /// - parameter action: Enumeration closure. + func forEach(_ action: (T) -> Void) { + if _onlyFastPath { + if let value0 = _value0 { + action(value0) + } + return + } + + let value0 = _value0 + let dictionary = _dictionary + + if let value0 = value0 { + action(value0) + } + + for i in 0 ..< _pairs.count { + action(_pairs[i].value) + } + + if dictionary?.count ?? 0 > 0 { + for element in dictionary!.values { + action(element) + } + } + } +} + +extension BagKey: Hashable { + func hash(into hasher: inout Hasher) { + hasher.combine(rawValue) + } +} + +func ==(lhs: BagKey, rhs: BagKey) -> Bool { + lhs.rawValue == rhs.rawValue +} diff --git a/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift b/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift new file mode 100644 index 00000000..75d7bea7 --- /dev/null +++ b/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift @@ -0,0 +1,23 @@ +// +// InfiniteSequence.swift +// Platform +// +// Created by Krunoslav Zaher on 6/13/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Sequence that repeats `repeatedValue` infinite number of times. +struct InfiniteSequence : Sequence { + typealias Iterator = AnyIterator + + private let repeatedValue: Element + + init(repeatedValue: Element) { + self.repeatedValue = repeatedValue + } + + func makeIterator() -> Iterator { + let repeatedValue = self.repeatedValue + return AnyIterator { repeatedValue } + } +} diff --git a/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift b/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift new file mode 100644 index 00000000..9ed856b9 --- /dev/null +++ b/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift @@ -0,0 +1,111 @@ +// +// PriorityQueue.swift +// Platform +// +// Created by Krunoslav Zaher on 12/27/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +struct PriorityQueue { + private let hasHigherPriority: (Element, Element) -> Bool + private let isEqual: (Element, Element) -> Bool + + private var elements = [Element]() + + init(hasHigherPriority: @escaping (Element, Element) -> Bool, isEqual: @escaping (Element, Element) -> Bool) { + self.hasHigherPriority = hasHigherPriority + self.isEqual = isEqual + } + + mutating func enqueue(_ element: Element) { + elements.append(element) + bubbleToHigherPriority(elements.count - 1) + } + + func peek() -> Element? { + elements.first + } + + var isEmpty: Bool { + elements.count == 0 + } + + mutating func dequeue() -> Element? { + guard let front = peek() else { + return nil + } + + removeAt(0) + + return front + } + + mutating func remove(_ element: Element) { + for i in 0 ..< elements.count { + if self.isEqual(elements[i], element) { + removeAt(i) + return + } + } + } + + private mutating func removeAt(_ index: Int) { + let removingLast = index == elements.count - 1 + if !removingLast { + elements.swapAt(index, elements.count - 1) + } + + _ = elements.popLast() + + if !removingLast { + bubbleToHigherPriority(index) + bubbleToLowerPriority(index) + } + } + + private mutating func bubbleToHigherPriority(_ initialUnbalancedIndex: Int) { + precondition(initialUnbalancedIndex >= 0) + precondition(initialUnbalancedIndex < elements.count) + + var unbalancedIndex = initialUnbalancedIndex + + while unbalancedIndex > 0 { + let parentIndex = (unbalancedIndex - 1) / 2 + guard self.hasHigherPriority(elements[unbalancedIndex], elements[parentIndex]) else { break } + elements.swapAt(unbalancedIndex, parentIndex) + unbalancedIndex = parentIndex + } + } + + private mutating func bubbleToLowerPriority(_ initialUnbalancedIndex: Int) { + precondition(initialUnbalancedIndex >= 0) + precondition(initialUnbalancedIndex < elements.count) + + var unbalancedIndex = initialUnbalancedIndex + while true { + let leftChildIndex = unbalancedIndex * 2 + 1 + let rightChildIndex = unbalancedIndex * 2 + 2 + + var highestPriorityIndex = unbalancedIndex + + if leftChildIndex < elements.count && self.hasHigherPriority(elements[leftChildIndex], elements[highestPriorityIndex]) { + highestPriorityIndex = leftChildIndex + } + + if rightChildIndex < elements.count && self.hasHigherPriority(elements[rightChildIndex], elements[highestPriorityIndex]) { + highestPriorityIndex = rightChildIndex + } + + guard highestPriorityIndex != unbalancedIndex else { break } + elements.swapAt(highestPriorityIndex, unbalancedIndex) + + unbalancedIndex = highestPriorityIndex + } + } +} + +extension PriorityQueue : CustomDebugStringConvertible { + var debugDescription: String { + elements.debugDescription + } +} diff --git a/Pods/RxSwift/Platform/DataStructures/Queue.swift b/Pods/RxSwift/Platform/DataStructures/Queue.swift new file mode 100644 index 00000000..625d4733 --- /dev/null +++ b/Pods/RxSwift/Platform/DataStructures/Queue.swift @@ -0,0 +1,148 @@ +// +// Queue.swift +// Platform +// +// Created by Krunoslav Zaher on 3/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/** +Data structure that represents queue. + +Complexity of `enqueue`, `dequeue` is O(1) when number of operations is +averaged over N operations. + +Complexity of `peek` is O(1). +*/ +struct Queue: Sequence { + /// Type of generator. + typealias Generator = AnyIterator + + private let resizeFactor = 2 + + private var storage: ContiguousArray + private var innerCount = 0 + private var pushNextIndex = 0 + private let initialCapacity: Int + + /** + Creates new queue. + + - parameter capacity: Capacity of newly created queue. + */ + init(capacity: Int) { + initialCapacity = capacity + + storage = ContiguousArray(repeating: nil, count: capacity) + } + + private var dequeueIndex: Int { + let index = pushNextIndex - count + return index < 0 ? index + storage.count : index + } + + /// - returns: Is queue empty. + var isEmpty: Bool { count == 0 } + + /// - returns: Number of elements inside queue. + var count: Int { innerCount } + + /// - returns: Element in front of a list of elements to `dequeue`. + func peek() -> T { + precondition(count > 0) + + return storage[dequeueIndex]! + } + + mutating private func resizeTo(_ size: Int) { + var newStorage = ContiguousArray(repeating: nil, count: size) + + let count = self.count + + let dequeueIndex = self.dequeueIndex + let spaceToEndOfQueue = storage.count - dequeueIndex + + // first batch is from dequeue index to end of array + let countElementsInFirstBatch = Swift.min(count, spaceToEndOfQueue) + // second batch is wrapped from start of array to end of queue + let numberOfElementsInSecondBatch = count - countElementsInFirstBatch + + newStorage[0 ..< countElementsInFirstBatch] = storage[dequeueIndex ..< (dequeueIndex + countElementsInFirstBatch)] + newStorage[countElementsInFirstBatch ..< (countElementsInFirstBatch + numberOfElementsInSecondBatch)] = storage[0 ..< numberOfElementsInSecondBatch] + + self.innerCount = count + pushNextIndex = count + storage = newStorage + } + + /// Enqueues `element`. + /// + /// - parameter element: Element to enqueue. + mutating func enqueue(_ element: T) { + if count == storage.count { + resizeTo(Swift.max(storage.count, 1) * resizeFactor) + } + + storage[pushNextIndex] = element + pushNextIndex += 1 + innerCount += 1 + + if pushNextIndex >= storage.count { + pushNextIndex -= storage.count + } + } + + private mutating func dequeueElementOnly() -> T { + precondition(count > 0) + + let index = dequeueIndex + + defer { + storage[index] = nil + innerCount -= 1 + } + + return storage[index]! + } + + /// Dequeues element or throws an exception in case queue is empty. + /// + /// - returns: Dequeued element. + mutating func dequeue() -> T? { + if self.count == 0 { + return nil + } + + defer { + let downsizeLimit = storage.count / (resizeFactor * resizeFactor) + if count < downsizeLimit && downsizeLimit >= initialCapacity { + resizeTo(storage.count / resizeFactor) + } + } + + return dequeueElementOnly() + } + + /// - returns: Generator of contained elements. + func makeIterator() -> AnyIterator { + var i = dequeueIndex + var innerCount = count + + return AnyIterator { + if innerCount == 0 { + return nil + } + + defer { + innerCount -= 1 + i += 1 + } + + if i >= self.storage.count { + i -= self.storage.count + } + + return self.storage[i] + } + } +} diff --git a/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift b/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift new file mode 100644 index 00000000..aaf24cae --- /dev/null +++ b/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift @@ -0,0 +1,21 @@ +// +// DispatchQueue+Extensions.swift +// Platform +// +// Created by Krunoslav Zaher on 10/22/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import Dispatch + +extension DispatchQueue { + private static var token: DispatchSpecificKey<()> = { + let key = DispatchSpecificKey<()>() + DispatchQueue.main.setSpecific(key: key, value: ()) + return key + }() + + static var isMain: Bool { + DispatchQueue.getSpecific(key: token) != nil + } +} diff --git a/Pods/RxSwift/Platform/Platform.Darwin.swift b/Pods/RxSwift/Platform/Platform.Darwin.swift new file mode 100644 index 00000000..eacc1943 --- /dev/null +++ b/Pods/RxSwift/Platform/Platform.Darwin.swift @@ -0,0 +1,35 @@ +// +// Platform.Darwin.swift +// Platform +// +// Created by Krunoslav Zaher on 12/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(macOS) || os(iOS) || os(tvOS) || os(watchOS) + + import Darwin + import Foundation + + extension Thread { + static func setThreadLocalStorageValue(_ value: T?, forKey key: NSCopying) { + let currentThread = Thread.current + let threadDictionary = currentThread.threadDictionary + + if let newValue = value { + threadDictionary[key] = newValue + } + else { + threadDictionary[key] = nil + } + } + + static func getThreadLocalStorageValueForKey(_ key: NSCopying) -> T? { + let currentThread = Thread.current + let threadDictionary = currentThread.threadDictionary + + return threadDictionary[key] as? T + } + } + +#endif diff --git a/Pods/RxSwift/Platform/Platform.Linux.swift b/Pods/RxSwift/Platform/Platform.Linux.swift new file mode 100644 index 00000000..52a3e3af --- /dev/null +++ b/Pods/RxSwift/Platform/Platform.Linux.swift @@ -0,0 +1,32 @@ +// +// Platform.Linux.swift +// Platform +// +// Created by Krunoslav Zaher on 12/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(Linux) + + import Foundation + + extension Thread { + + static func setThreadLocalStorageValue(_ value: T?, forKey key: String) { + if let newValue = value { + Thread.current.threadDictionary[key] = newValue + } + else { + Thread.current.threadDictionary[key] = nil + } + } + + static func getThreadLocalStorageValueForKey(_ key: String) -> T? { + let currentThread = Thread.current + let threadDictionary = currentThread.threadDictionary + + return threadDictionary[key] as? T + } + } + +#endif diff --git a/Pods/RxSwift/Platform/RecursiveLock.swift b/Pods/RxSwift/Platform/RecursiveLock.swift new file mode 100644 index 00000000..10b9bbb0 --- /dev/null +++ b/Pods/RxSwift/Platform/RecursiveLock.swift @@ -0,0 +1,34 @@ +// +// RecursiveLock.swift +// Platform +// +// Created by Krunoslav Zaher on 12/18/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +#if TRACE_RESOURCES + class RecursiveLock: NSRecursiveLock { + override init() { + _ = Resources.incrementTotal() + super.init() + } + + override func lock() { + super.lock() + _ = Resources.incrementTotal() + } + + override func unlock() { + super.unlock() + _ = Resources.decrementTotal() + } + + deinit { + _ = Resources.decrementTotal() + } + } +#else + typealias RecursiveLock = NSRecursiveLock +#endif diff --git a/Pods/RxSwift/README.md b/Pods/RxSwift/README.md new file mode 100644 index 00000000..8181ef4c --- /dev/null +++ b/Pods/RxSwift/README.md @@ -0,0 +1,254 @@ +

+RxSwift Logo +
+Build Status +Supported Platforms: iOS, macOS, tvOS, watchOS & Linux +
+ + + +

+ +Rx is a [generic abstraction of computation](https://youtu.be/looJcaeboBY) expressed through `Observable` interface, which lets you broadcast and subscribe to values and other events from an `Observable` stream. + +RxSwift is the Swift-specific implementation of the [Reactive Extensions](http://reactivex.io) standard. + +

RxSwift Observable Example of a price constantly changing and updating the app's UI

+ +While this version aims to stay true to the original spirit and naming conventions of Rx, this project also aims to provide a true Swift-first API for Rx APIs. + +Cross platform documentation can be found on [ReactiveX.io](http://reactivex.io/). + +Like other Rx implementations, RxSwift's intention is to enable easy composition of asynchronous operations and streams of data in the form of `Observable` objects and a suite of methods to transform and compose these pieces of asynchronous work. + +KVO observation, async operations, UI Events and other streams of data are all unified under [abstraction of sequence](Documentation/GettingStarted.md#observables-aka-sequences). This is the reason why Rx is so simple, elegant and powerful. + +## I came here because I want to ... + +###### ... understand + +* [why use rx?](Documentation/Why.md) +* [the basics, getting started with RxSwift](Documentation/GettingStarted.md) +* [traits](Documentation/Traits.md) - what are `Single`, `Completable`, `Maybe`, `Driver`, and `ControlProperty` ... and why do they exist? +* [testing](Documentation/UnitTests.md) +* [tips and common errors](Documentation/Tips.md) +* [debugging](Documentation/GettingStarted.md#debugging) +* [the math behind Rx](Documentation/MathBehindRx.md) +* [what are hot and cold observable sequences?](Documentation/HotAndColdObservables.md) + +###### ... install + +* Integrate RxSwift/RxCocoa with my app. [Installation Guide](#installation) + +###### ... hack around + +* with the example app. [Running Example App](Documentation/ExampleApp.md) +* with operators in playgrounds. [Playgrounds](Documentation/Playgrounds.md) + +###### ... interact + +* All of this is great, but it would be nice to talk with other people using RxSwift and exchange experiences.
[Join Slack Channel](http://slack.rxswift.org) +* Report a problem using the library. [Open an Issue With Bug Template](.github/ISSUE_TEMPLATE.md) +* Request a new feature. [Open an Issue With Feature Request Template](Documentation/NewFeatureRequestTemplate.md) +* Help out [Check out contribution guide](CONTRIBUTING.md) + +###### ... compare + +* [with Combine and ReactiveSwift](Documentation/ComparisonWithOtherLibraries.md). + +###### ... understand the structure + +RxSwift is as compositional as the asynchronous work it drives. The core unit is RxSwift itself, while other dependencies can be added for UI Work, testing, and more. + +It comprises five separate components depending on each other in the following way: + +```none +┌──────────────┐ ┌──────────────┐ +│ RxCocoa ├────▶ RxRelay │ +└───────┬──────┘ └──────┬───────┘ + │ │ +┌───────▼──────────────────▼───────┐ +│ RxSwift │ +└───────▲──────────────────▲───────┘ + │ │ +┌───────┴──────┐ ┌──────┴───────┐ +│ RxTest │ │ RxBlocking │ +└──────────────┘ └──────────────┘ +``` + +* **RxSwift**: The core of RxSwift, providing the Rx standard as (mostly) defined by [ReactiveX](https://reactivex.io). It has no other dependencies. +* **RxCocoa**: Provides Cocoa-specific capabilities for general iOS/macOS/watchOS & tvOS app development, such as Shared Sequences, Traits, and much more. It depends on both `RxSwift` and `RxRelay`. +* **RxRelay**: Provides `PublishRelay`, `BehaviorRelay` and `ReplayRelay`, three [simple wrappers around Subjects](https://github.com/ReactiveX/RxSwift/blob/main/Documentation/Subjects.md#relays). It depends on `RxSwift`. +* **RxTest** and **RxBlocking**: Provides testing capabilities for Rx-based systems. It depends on `RxSwift`. + +## Usage + + + + + + + + + + + + + + + + + + + +
Here's an exampleIn Action
Define search for GitHub repositories ...
+let searchResults = searchBar.rx.text.orEmpty
+    .throttle(.milliseconds(300), scheduler: MainScheduler.instance)
+    .distinctUntilChanged()
+    .flatMapLatest { query -> Observable<[Repository]> in
+        if query.isEmpty {
+            return .just([])
+        }
+        return searchGitHub(query)
+            .catchAndReturn([])
+    }
+    .observe(on: MainScheduler.instance)
... then bind the results to your tableview
+searchResults
+    .bind(to: tableView.rx.items(cellIdentifier: "Cell")) {
+        (index, repository: Repository, cell) in
+        cell.textLabel?.text = repository.name
+        cell.detailTextLabel?.text = repository.url
+    }
+    .disposed(by: disposeBag)
+ + +## Requirements + +* Xcode 12.x +* Swift 5.x + +For Xcode 11 and below, [use RxSwift 5.x](https://github.com/ReactiveX/RxSwift/releases/tag/5.1.1). + +## Installation + +RxSwift doesn't contain any external dependencies. + +These are currently the supported installation options: + +### Manual + +Open Rx.xcworkspace, choose `RxExample` and hit run. This method will build everything and run the sample app + +### [CocoaPods](https://guides.cocoapods.org/using/using-cocoapods.html) + +```ruby +# Podfile +use_frameworks! + +target 'YOUR_TARGET_NAME' do + pod 'RxSwift', '6.6.0' + pod 'RxCocoa', '6.6.0' +end + +# RxTest and RxBlocking make the most sense in the context of unit/integration tests +target 'YOUR_TESTING_TARGET' do + pod 'RxBlocking', '6.6.0' + pod 'RxTest', '6.6.0' +end +``` + +Replace `YOUR_TARGET_NAME` and then, in the `Podfile` directory, type: + +```bash +$ pod install +``` + +### XCFrameworks + +Each release starting with RxSwift 6 includes `*.xcframework` framework binaries. + +Simply drag the needed framework binaries to your **Frameworks, Libraries, and Embedded Content** section under your target's **General** tab. + +> **Note**: If you're using `RxCocoa`, be sure to also drag **RxCocoaRuntime.xcframework** before importing `RxCocoa`. + +XCFrameworks instructions + +### [Carthage](https://github.com/Carthage/Carthage) + +Add this to `Cartfile` + +``` +github "ReactiveX/RxSwift" "6.6.0" +``` + +```bash +$ carthage update +``` + +#### Carthage as a Static Library + +Carthage defaults to building RxSwift as a Dynamic Library. + +If you wish to build RxSwift as a Static Library using Carthage you may use the script below to manually modify the framework type before building with Carthage: + +```bash +carthage update RxSwift --platform iOS --no-build +sed -i -e 's/MACH_O_TYPE = mh_dylib/MACH_O_TYPE = staticlib/g' Carthage/Checkouts/RxSwift/Rx.xcodeproj/project.pbxproj +carthage build RxSwift --platform iOS +``` + +### [Swift Package Manager](https://github.com/apple/swift-package-manager) + +> **Note**: There is a critical cross-dependency bug affecting many projects including RxSwift in Swift Package Manager. We've [filed a bug (SR-12303)](https://bugs.swift.org/browse/SR-12303) in early 2020 but have no answer yet. Your mileage may vary. A partial workaround can be found [here](https://github.com/ReactiveX/RxSwift/issues/2127#issuecomment-717830502). + +Create a `Package.swift` file. + +```swift +// swift-tools-version:5.0 + +import PackageDescription + +let package = Package( + name: "RxTestProject", + dependencies: [ + .package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.6.0")) + ], + targets: [ + .target(name: "RxTestProject", dependencies: ["RxSwift", "RxCocoa"]) + ] +) +``` + +```bash +$ swift build +``` + +To build or test a module with RxTest dependency, set `TEST=1`. + +```bash +$ TEST=1 swift test +``` + +### Manually using git submodules + +* Add RxSwift as a submodule + +```bash +$ git submodule add git@github.com:ReactiveX/RxSwift.git +``` + +* Drag `Rx.xcodeproj` into Project Navigator +* Go to `Project > Targets > Build Phases > Link Binary With Libraries`, click `+` and select `RxSwift`, `RxCocoa` and `RxRelay` targets + +## References + +* [http://reactivex.io/](http://reactivex.io/) +* [Reactive Extensions GitHub (GitHub)](https://github.com/Reactive-Extensions) +* [RxSwift RayWenderlich.com Book](https://store.raywenderlich.com/products/rxswift-reactive-programming-with-swift) +* [RxSwift: Debunking the myth of hard (YouTube)](https://www.youtube.com/watch?v=GdvLP0ZAhhc) +* [Boxue.io RxSwift Online Course](https://boxueio.com/series/rxswift-101) (Chinese 🇨🇳) +* [Expert to Expert: Brian Beckman and Erik Meijer - Inside the .NET Reactive Framework (Rx) (video)](https://youtu.be/looJcaeboBY) +* [Reactive Programming Overview (Jafar Husain from Netflix)](https://youtu.be/-8Y1-lE6NSA) +* [Subject/Observer is Dual to Iterator (paper)](http://csl.stanford.edu/~christos/pldi2010.fit/meijer.duality.pdf) +* [Rx standard sequence operators visualized (visualization tool)](http://rxmarbles.com/) +* [Haskell](https://www.haskell.org/) diff --git a/Pods/RxSwift/RxSwift/AnyObserver.swift b/Pods/RxSwift/RxSwift/AnyObserver.swift new file mode 100644 index 00000000..e92cc816 --- /dev/null +++ b/Pods/RxSwift/RxSwift/AnyObserver.swift @@ -0,0 +1,69 @@ +// +// AnyObserver.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// A type-erased `ObserverType`. +/// +/// Forwards operations to an arbitrary underlying observer with the same `Element` type, hiding the specifics of the underlying observer type. +public struct AnyObserver : ObserverType { + /// Anonymous event handler type. + public typealias EventHandler = (Event) -> Void + + private let observer: EventHandler + + /// Construct an instance whose `on(event)` calls `eventHandler(event)` + /// + /// - parameter eventHandler: Event handler that observes sequences events. + public init(eventHandler: @escaping EventHandler) { + self.observer = eventHandler + } + + /// Construct an instance whose `on(event)` calls `observer.on(event)` + /// + /// - parameter observer: Observer that receives sequence events. + public init(_ observer: Observer) where Observer.Element == Element { + self.observer = observer.on + } + + /// Send `event` to this observer. + /// + /// - parameter event: Event instance. + public func on(_ event: Event) { + self.observer(event) + } + + /// Erases type of observer and returns canonical observer. + /// + /// - returns: type erased observer. + public func asObserver() -> AnyObserver { + self + } +} + +extension AnyObserver { + /// Collection of `AnyObserver`s + typealias s = Bag<(Event) -> Void> +} + +extension ObserverType { + /// Erases type of observer and returns canonical observer. + /// + /// - returns: type erased observer. + public func asObserver() -> AnyObserver { + AnyObserver(self) + } + + /// Transforms observer of type R to type E using custom transform method. + /// Each event sent to result observer is transformed and sent to `self`. + /// + /// - returns: observer that transforms events. + public func mapObserver(_ transform: @escaping (Result) throws -> Element) -> AnyObserver { + AnyObserver { e in + self.on(e.map(transform)) + } + } +} diff --git a/Pods/RxSwift/RxSwift/Binder.swift b/Pods/RxSwift/RxSwift/Binder.swift new file mode 100644 index 00000000..1aae0959 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Binder.swift @@ -0,0 +1,59 @@ +// +// Binder.swift +// RxSwift +// +// Created by Krunoslav Zaher on 9/17/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +/** + Observer that enforces interface binding rules: + * can't bind errors (in debug builds binding of errors causes `fatalError` in release builds errors are being logged) + * ensures binding is performed on a specific scheduler + + `Binder` doesn't retain target and in case target is released, element isn't bound. + + By default it binds elements on main scheduler. + */ +public struct Binder: ObserverType { + public typealias Element = Value + + private let binding: (Event) -> Void + + /// Initializes `Binder` + /// + /// - parameter target: Target object. + /// - parameter scheduler: Scheduler used to bind the events. + /// - parameter binding: Binding logic. + public init(_ target: Target, scheduler: ImmediateSchedulerType = MainScheduler(), binding: @escaping (Target, Value) -> Void) { + weak var weakTarget = target + + self.binding = { event in + switch event { + case .next(let element): + _ = scheduler.schedule(element) { element in + if let target = weakTarget { + binding(target, element) + } + return Disposables.create() + } + case .error(let error): + rxFatalErrorInDebug("Binding error: \(error)") + case .completed: + break + } + } + } + + /// Binds next element to owner view as described in `binding`. + public func on(_ event: Event) { + self.binding(event) + } + + /// Erases type of observer. + /// + /// - returns: type erased observer. + public func asObserver() -> AnyObserver { + AnyObserver(eventHandler: self.on) + } +} diff --git a/Pods/RxSwift/RxSwift/Cancelable.swift b/Pods/RxSwift/RxSwift/Cancelable.swift new file mode 100644 index 00000000..1fa7a677 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Cancelable.swift @@ -0,0 +1,13 @@ +// +// Cancelable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents disposable resource with state tracking. +public protocol Cancelable : Disposable { + /// Was resource disposed. + var isDisposed: Bool { get } +} diff --git a/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift b/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift new file mode 100644 index 00000000..502597e9 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift @@ -0,0 +1,100 @@ +// +// AsyncLock.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/** +In case nobody holds this lock, the work will be queued and executed immediately +on thread that is requesting lock. + +In case there is somebody currently holding that lock, action will be enqueued. +When owned of the lock finishes with it's processing, it will also execute +and pending work. + +That means that enqueued work could possibly be executed later on a different thread. +*/ +final class AsyncLock + : Disposable + , Lock + , SynchronizedDisposeType { + typealias Action = () -> Void + + private var _lock = SpinLock() + + private var queue: Queue = Queue(capacity: 0) + + private var isExecuting: Bool = false + private var hasFaulted: Bool = false + + // lock { + func lock() { + self._lock.lock() + } + + func unlock() { + self._lock.unlock() + } + // } + + private func enqueue(_ action: I) -> I? { + self.lock(); defer { self.unlock() } + if self.hasFaulted { + return nil + } + + if self.isExecuting { + self.queue.enqueue(action) + return nil + } + + self.isExecuting = true + + return action + } + + private func dequeue() -> I? { + self.lock(); defer { self.unlock() } + if !self.queue.isEmpty { + return self.queue.dequeue() + } + else { + self.isExecuting = false + return nil + } + } + + func invoke(_ action: I) { + let firstEnqueuedAction = self.enqueue(action) + + if let firstEnqueuedAction = firstEnqueuedAction { + firstEnqueuedAction.invoke() + } + else { + // action is enqueued, it's somebody else's concern now + return + } + + while true { + let nextAction = self.dequeue() + + if let nextAction = nextAction { + nextAction.invoke() + } + else { + return + } + } + } + + func dispose() { + self.synchronizedDispose() + } + + func synchronized_dispose() { + self.queue = Queue(capacity: 0) + self.hasFaulted = true + } +} diff --git a/Pods/RxSwift/RxSwift/Concurrency/Lock.swift b/Pods/RxSwift/RxSwift/Concurrency/Lock.swift new file mode 100644 index 00000000..7232f23f --- /dev/null +++ b/Pods/RxSwift/RxSwift/Concurrency/Lock.swift @@ -0,0 +1,23 @@ +// +// Lock.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/31/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +protocol Lock { + func lock() + func unlock() +} + +// https://lists.swift.org/pipermail/swift-dev/Week-of-Mon-20151214/000321.html +typealias SpinLock = RecursiveLock + +extension RecursiveLock : Lock { + @inline(__always) + final func performLocked(_ action: () -> T) -> T { + self.lock(); defer { self.unlock() } + return action() + } +} diff --git a/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift b/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift new file mode 100644 index 00000000..8a98007d --- /dev/null +++ b/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift @@ -0,0 +1,16 @@ +// +// LockOwnerType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 10/25/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +protocol LockOwnerType: AnyObject, Lock { + var lock: RecursiveLock { get } +} + +extension LockOwnerType { + func lock() { self.lock.lock() } + func unlock() { self.lock.unlock() } +} diff --git a/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift b/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift new file mode 100644 index 00000000..527a2fbe --- /dev/null +++ b/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift @@ -0,0 +1,18 @@ +// +// SynchronizedDisposeType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 10/25/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +protocol SynchronizedDisposeType: AnyObject, Disposable, Lock { + func synchronized_dispose() +} + +extension SynchronizedDisposeType { + func synchronizedDispose() { + self.lock(); defer { self.unlock() } + self.synchronized_dispose() + } +} diff --git a/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift b/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift new file mode 100644 index 00000000..19168d77 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift @@ -0,0 +1,18 @@ +// +// SynchronizedOnType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 10/25/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +protocol SynchronizedOnType: AnyObject, ObserverType, Lock { + func synchronized_on(_ event: Event) +} + +extension SynchronizedOnType { + func synchronizedOn(_ event: Event) { + self.lock(); defer { self.unlock() } + self.synchronized_on(event) + } +} diff --git a/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift b/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift new file mode 100644 index 00000000..988b86f4 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift @@ -0,0 +1,13 @@ +// +// SynchronizedUnsubscribeType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 10/25/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +protocol SynchronizedUnsubscribeType: AnyObject { + associatedtype DisposeKey + + func synchronizedUnsubscribe(_ disposeKey: DisposeKey) +} diff --git a/Pods/RxSwift/RxSwift/ConnectableObservableType.swift b/Pods/RxSwift/RxSwift/ConnectableObservableType.swift new file mode 100644 index 00000000..52bf93c5 --- /dev/null +++ b/Pods/RxSwift/RxSwift/ConnectableObservableType.swift @@ -0,0 +1,19 @@ +// +// ConnectableObservableType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/1/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/** +Represents an observable sequence wrapper that can be connected and disconnected from its underlying observable sequence. +*/ +public protocol ConnectableObservableType : ObservableType { + /** + Connects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established. + + - returns: Disposable used to disconnect the observable wrapper from its source, causing subscribed observer to stop receiving values from the underlying observable sequence. + */ + func connect() -> Disposable +} diff --git a/Pods/RxSwift/RxSwift/Date+Dispatch.swift b/Pods/RxSwift/RxSwift/Date+Dispatch.swift new file mode 100644 index 00000000..90f70c56 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Date+Dispatch.swift @@ -0,0 +1,64 @@ +// +// Date+Dispatch.swift +// RxSwift +// +// Created by Krunoslav Zaher on 4/14/19. +// Copyright © 2019 Krunoslav Zaher. All rights reserved. +// + +import Dispatch +import Foundation + +extension DispatchTimeInterval { + var convertToSecondsFactor: Double { + switch self { + case .nanoseconds: return 1_000_000_000.0 + case .microseconds: return 1_000_000.0 + case .milliseconds: return 1_000.0 + case .seconds: return 1.0 + case .never: fatalError() + @unknown default: fatalError() + } + } + + func map(_ transform: (Int, Double) -> Int) -> DispatchTimeInterval { + switch self { + case .nanoseconds(let value): return .nanoseconds(transform(value, 1_000_000_000.0)) + case .microseconds(let value): return .microseconds(transform(value, 1_000_000.0)) + case .milliseconds(let value): return .milliseconds(transform(value, 1_000.0)) + case .seconds(let value): return .seconds(transform(value, 1.0)) + case .never: return .never + @unknown default: fatalError() + } + } + + var isNow: Bool { + switch self { + case .nanoseconds(let value), .microseconds(let value), .milliseconds(let value), .seconds(let value): return value == 0 + case .never: return false + @unknown default: fatalError() + } + } + + internal func reduceWithSpanBetween(earlierDate: Date, laterDate: Date) -> DispatchTimeInterval { + return self.map { value, factor in + let interval = laterDate.timeIntervalSince(earlierDate) + let remainder = Double(value) - interval * factor + guard remainder > 0 else { return 0 } + return Int(remainder.rounded(.toNearestOrAwayFromZero)) + } + } +} + +extension Date { + + internal func addingDispatchInterval(_ dispatchInterval: DispatchTimeInterval) -> Date { + switch dispatchInterval { + case .nanoseconds(let value), .microseconds(let value), .milliseconds(let value), .seconds(let value): + return self.addingTimeInterval(TimeInterval(value) / dispatchInterval.convertToSecondsFactor) + case .never: return Date.distantFuture + @unknown default: fatalError() + } + } + +} diff --git a/Pods/RxSwift/RxSwift/Disposable.swift b/Pods/RxSwift/RxSwift/Disposable.swift new file mode 100644 index 00000000..b79c77a7 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposable.swift @@ -0,0 +1,13 @@ +// +// Disposable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents a disposable resource. +public protocol Disposable { + /// Dispose resource. + func dispose() +} diff --git a/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift b/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift new file mode 100644 index 00000000..591aafa5 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift @@ -0,0 +1,59 @@ +// +// AnonymousDisposable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents an Action-based disposable. +/// +/// When dispose method is called, disposal action will be dereferenced. +private final class AnonymousDisposable : DisposeBase, Cancelable { + public typealias DisposeAction = () -> Void + + private let disposed = AtomicInt(0) + private var disposeAction: DisposeAction? + + /// - returns: Was resource disposed. + public var isDisposed: Bool { + isFlagSet(self.disposed, 1) + } + + /// Constructs a new disposable with the given action used for disposal. + /// + /// - parameter disposeAction: Disposal action which will be run upon calling `dispose`. + private init(_ disposeAction: @escaping DisposeAction) { + self.disposeAction = disposeAction + super.init() + } + + // Non-deprecated version of the constructor, used by `Disposables.create(with:)` + fileprivate init(disposeAction: @escaping DisposeAction) { + self.disposeAction = disposeAction + super.init() + } + + /// Calls the disposal action if and only if the current instance hasn't been disposed yet. + /// + /// After invoking disposal action, disposal action will be dereferenced. + fileprivate func dispose() { + if fetchOr(self.disposed, 1) == 0 { + if let action = self.disposeAction { + self.disposeAction = nil + action() + } + } + } +} + +extension Disposables { + + /// Constructs a new disposable with the given action used for disposal. + /// + /// - parameter dispose: Disposal action which will be run upon calling `dispose`. + public static func create(with dispose: @escaping () -> Void) -> Cancelable { + AnonymousDisposable(disposeAction: dispose) + } + +} diff --git a/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift b/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift new file mode 100644 index 00000000..a3d49370 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift @@ -0,0 +1,53 @@ +// +// BinaryDisposable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents two disposable resources that are disposed together. +private final class BinaryDisposable : DisposeBase, Cancelable { + + private let disposed = AtomicInt(0) + + // state + private var disposable1: Disposable? + private var disposable2: Disposable? + + /// - returns: Was resource disposed. + var isDisposed: Bool { + isFlagSet(self.disposed, 1) + } + + /// Constructs new binary disposable from two disposables. + /// + /// - parameter disposable1: First disposable + /// - parameter disposable2: Second disposable + init(_ disposable1: Disposable, _ disposable2: Disposable) { + self.disposable1 = disposable1 + self.disposable2 = disposable2 + super.init() + } + + /// Calls the disposal action if and only if the current instance hasn't been disposed yet. + /// + /// After invoking disposal action, disposal action will be dereferenced. + func dispose() { + if fetchOr(self.disposed, 1) == 0 { + self.disposable1?.dispose() + self.disposable2?.dispose() + self.disposable1 = nil + self.disposable2 = nil + } + } +} + +extension Disposables { + + /// Creates a disposable with the given disposables. + public static func create(_ disposable1: Disposable, _ disposable2: Disposable) -> Cancelable { + BinaryDisposable(disposable1, disposable2) + } + +} diff --git a/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift b/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift new file mode 100644 index 00000000..5efcbea2 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift @@ -0,0 +1,34 @@ +// +// BooleanDisposable.swift +// RxSwift +// +// Created by Junior B. on 10/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents a disposable resource that can be checked for disposal status. +public final class BooleanDisposable : Cancelable { + + internal static let BooleanDisposableTrue = BooleanDisposable(isDisposed: true) + private let disposed: AtomicInt + + /// Initializes a new instance of the `BooleanDisposable` class + public init() { + disposed = AtomicInt(0) + } + + /// Initializes a new instance of the `BooleanDisposable` class with given value + public init(isDisposed: Bool) { + self.disposed = AtomicInt(isDisposed ? 1 : 0) + } + + /// - returns: Was resource disposed. + public var isDisposed: Bool { + isFlagSet(self.disposed, 1) + } + + /// Sets the status to disposed, which can be observer through the `isDisposed` property. + public func dispose() { + fetchOr(self.disposed, 1) + } +} diff --git a/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift b/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift new file mode 100644 index 00000000..bb4efe6a --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift @@ -0,0 +1,147 @@ +// +// CompositeDisposable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/20/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents a group of disposable resources that are disposed together. +public final class CompositeDisposable : DisposeBase, Cancelable { + /// Key used to remove disposable from composite disposable + public struct DisposeKey { + fileprivate let key: BagKey + fileprivate init(key: BagKey) { + self.key = key + } + } + + private var lock = SpinLock() + + // state + private var disposables: Bag? = Bag() + + public var isDisposed: Bool { + self.lock.performLocked { self.disposables == nil } + } + + public override init() { + } + + /// Initializes a new instance of composite disposable with the specified number of disposables. + public init(_ disposable1: Disposable, _ disposable2: Disposable) { + // This overload is here to make sure we are using optimized version up to 4 arguments. + _ = self.disposables!.insert(disposable1) + _ = self.disposables!.insert(disposable2) + } + + /// Initializes a new instance of composite disposable with the specified number of disposables. + public init(_ disposable1: Disposable, _ disposable2: Disposable, _ disposable3: Disposable) { + // This overload is here to make sure we are using optimized version up to 4 arguments. + _ = self.disposables!.insert(disposable1) + _ = self.disposables!.insert(disposable2) + _ = self.disposables!.insert(disposable3) + } + + /// Initializes a new instance of composite disposable with the specified number of disposables. + public init(_ disposable1: Disposable, _ disposable2: Disposable, _ disposable3: Disposable, _ disposable4: Disposable, _ disposables: Disposable...) { + // This overload is here to make sure we are using optimized version up to 4 arguments. + _ = self.disposables!.insert(disposable1) + _ = self.disposables!.insert(disposable2) + _ = self.disposables!.insert(disposable3) + _ = self.disposables!.insert(disposable4) + + for disposable in disposables { + _ = self.disposables!.insert(disposable) + } + } + + /// Initializes a new instance of composite disposable with the specified number of disposables. + public init(disposables: [Disposable]) { + for disposable in disposables { + _ = self.disposables!.insert(disposable) + } + } + + /** + Adds a disposable to the CompositeDisposable or disposes the disposable if the CompositeDisposable is disposed. + + - parameter disposable: Disposable to add. + - returns: Key that can be used to remove disposable from composite disposable. In case dispose bag was already + disposed `nil` will be returned. + */ + public func insert(_ disposable: Disposable) -> DisposeKey? { + let key = self._insert(disposable) + + if key == nil { + disposable.dispose() + } + + return key + } + + private func _insert(_ disposable: Disposable) -> DisposeKey? { + self.lock.performLocked { + let bagKey = self.disposables?.insert(disposable) + return bagKey.map(DisposeKey.init) + } + } + + /// - returns: Gets the number of disposables contained in the `CompositeDisposable`. + public var count: Int { + self.lock.performLocked { self.disposables?.count ?? 0 } + } + + /// Removes and disposes the disposable identified by `disposeKey` from the CompositeDisposable. + /// + /// - parameter disposeKey: Key used to identify disposable to be removed. + public func remove(for disposeKey: DisposeKey) { + self._remove(for: disposeKey)?.dispose() + } + + private func _remove(for disposeKey: DisposeKey) -> Disposable? { + self.lock.performLocked { self.disposables?.removeKey(disposeKey.key) } + } + + /// Disposes all disposables in the group and removes them from the group. + public func dispose() { + if let disposables = self._dispose() { + disposeAll(in: disposables) + } + } + + private func _dispose() -> Bag? { + self.lock.performLocked { + let current = self.disposables + self.disposables = nil + return current + } + } +} + +extension Disposables { + + /// Creates a disposable with the given disposables. + public static func create(_ disposable1: Disposable, _ disposable2: Disposable, _ disposable3: Disposable) -> Cancelable { + CompositeDisposable(disposable1, disposable2, disposable3) + } + + /// Creates a disposable with the given disposables. + public static func create(_ disposable1: Disposable, _ disposable2: Disposable, _ disposable3: Disposable, _ disposables: Disposable ...) -> Cancelable { + var disposables = disposables + disposables.append(disposable1) + disposables.append(disposable2) + disposables.append(disposable3) + return CompositeDisposable(disposables: disposables) + } + + /// Creates a disposable with the given disposables. + public static func create(_ disposables: [Disposable]) -> Cancelable { + switch disposables.count { + case 2: + return Disposables.create(disposables[0], disposables[1]) + default: + return CompositeDisposable(disposables: disposables) + } + } +} diff --git a/Pods/RxSwift/RxSwift/Disposables/Disposables.swift b/Pods/RxSwift/RxSwift/Disposables/Disposables.swift new file mode 100644 index 00000000..8cd6e28c --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/Disposables.swift @@ -0,0 +1,13 @@ +// +// Disposables.swift +// RxSwift +// +// Created by Mohsen Ramezanpoor on 01/08/2016. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +/// A collection of utility methods for common disposable operations. +public struct Disposables { + private init() {} +} + diff --git a/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift b/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift new file mode 100644 index 00000000..1a673bcc --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift @@ -0,0 +1,144 @@ +// +// DisposeBag.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/25/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension Disposable { + /// Adds `self` to `bag` + /// + /// - parameter bag: `DisposeBag` to add `self` to. + public func disposed(by bag: DisposeBag) { + bag.insert(self) + } +} + +/** +Thread safe bag that disposes added disposables on `deinit`. + +This returns ARC (RAII) like resource management to `RxSwift`. + +In case contained disposables need to be disposed, just put a different dispose bag +or create a new one in its place. + + self.existingDisposeBag = DisposeBag() + +In case explicit disposal is necessary, there is also `CompositeDisposable`. +*/ +public final class DisposeBag: DisposeBase { + + private var lock = SpinLock() + + // state + private var disposables = [Disposable]() + private var isDisposed = false + + /// Constructs new empty dispose bag. + public override init() { + super.init() + } + + /// Adds `disposable` to be disposed when dispose bag is being deinited. + /// + /// - parameter disposable: Disposable to add. + public func insert(_ disposable: Disposable) { + self._insert(disposable)?.dispose() + } + + private func _insert(_ disposable: Disposable) -> Disposable? { + self.lock.performLocked { + if self.isDisposed { + return disposable + } + + self.disposables.append(disposable) + + return nil + } + } + + /// This is internal on purpose, take a look at `CompositeDisposable` instead. + private func dispose() { + let oldDisposables = self._dispose() + + for disposable in oldDisposables { + disposable.dispose() + } + } + + private func _dispose() -> [Disposable] { + self.lock.performLocked { + let disposables = self.disposables + + self.disposables.removeAll(keepingCapacity: false) + self.isDisposed = true + + return disposables + } + } + + deinit { + self.dispose() + } +} + +extension DisposeBag { + /// Convenience init allows a list of disposables to be gathered for disposal. + public convenience init(disposing disposables: Disposable...) { + self.init() + self.disposables += disposables + } + + /// Convenience init which utilizes a function builder to let you pass in a list of + /// disposables to make a DisposeBag of. + public convenience init(@DisposableBuilder builder: () -> [Disposable]) { + self.init(disposing: builder()) + } + + /// Convenience init allows an array of disposables to be gathered for disposal. + public convenience init(disposing disposables: [Disposable]) { + self.init() + self.disposables += disposables + } + + /// Convenience function allows a list of disposables to be gathered for disposal. + public func insert(_ disposables: Disposable...) { + self.insert(disposables) + } + + /// Convenience function allows a list of disposables to be gathered for disposal. + public func insert(@DisposableBuilder builder: () -> [Disposable]) { + self.insert(builder()) + } + + /// Convenience function allows an array of disposables to be gathered for disposal. + public func insert(_ disposables: [Disposable]) { + self.lock.performLocked { + if self.isDisposed { + disposables.forEach { $0.dispose() } + } else { + self.disposables += disposables + } + } + } + + /// A function builder accepting a list of Disposables and returning them as an array. + #if swift(>=5.4) + @resultBuilder + public struct DisposableBuilder { + public static func buildBlock(_ disposables: Disposable...) -> [Disposable] { + return disposables + } + } + #else + @_functionBuilder + public struct DisposableBuilder { + public static func buildBlock(_ disposables: Disposable...) -> [Disposable] { + return disposables + } + } + #endif + +} diff --git a/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift b/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift new file mode 100644 index 00000000..0d4b2fb7 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift @@ -0,0 +1,22 @@ +// +// DisposeBase.swift +// RxSwift +// +// Created by Krunoslav Zaher on 4/4/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Base class for all disposables. +public class DisposeBase { + init() { +#if TRACE_RESOURCES + _ = Resources.incrementTotal() +#endif + } + + deinit { +#if TRACE_RESOURCES + _ = Resources.decrementTotal() +#endif + } +} diff --git a/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift b/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift new file mode 100644 index 00000000..dd436ba9 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift @@ -0,0 +1,30 @@ +// +// NopDisposable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents a disposable that does nothing on disposal. +/// +/// Nop = No Operation +private struct NopDisposable : Disposable { + + fileprivate static let noOp: Disposable = NopDisposable() + + private init() { + + } + + /// Does nothing. + public func dispose() { + } +} + +extension Disposables { + /** + Creates a disposable that does nothing on disposal. + */ + static public func create() -> Disposable { NopDisposable.noOp } +} diff --git a/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift b/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift new file mode 100644 index 00000000..a59f7789 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift @@ -0,0 +1,112 @@ +// +// RefCountDisposable.swift +// RxSwift +// +// Created by Junior B. on 10/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents a disposable resource that only disposes its underlying disposable resource when all dependent disposable objects have been disposed. +public final class RefCountDisposable : DisposeBase, Cancelable { + private var lock = SpinLock() + private var disposable = nil as Disposable? + private var primaryDisposed = false + private var count = 0 + + /// - returns: Was resource disposed. + public var isDisposed: Bool { + self.lock.performLocked { self.disposable == nil } + } + + /// Initializes a new instance of the `RefCountDisposable`. + public init(disposable: Disposable) { + self.disposable = disposable + super.init() + } + + /** + Holds a dependent disposable that when disposed decreases the refcount on the underlying disposable. + + When getter is called, a dependent disposable contributing to the reference count that manages the underlying disposable's lifetime is returned. + */ + public func retain() -> Disposable { + self.lock.performLocked { + if self.disposable != nil { + do { + _ = try incrementChecked(&self.count) + } catch { + rxFatalError("RefCountDisposable increment failed") + } + + return RefCountInnerDisposable(self) + } else { + return Disposables.create() + } + } + } + + /// Disposes the underlying disposable only when all dependent disposables have been disposed. + public func dispose() { + let oldDisposable: Disposable? = self.lock.performLocked { + if let oldDisposable = self.disposable, !self.primaryDisposed { + self.primaryDisposed = true + + if self.count == 0 { + self.disposable = nil + return oldDisposable + } + } + + return nil + } + + if let disposable = oldDisposable { + disposable.dispose() + } + } + + fileprivate func release() { + let oldDisposable: Disposable? = self.lock.performLocked { + if let oldDisposable = self.disposable { + do { + _ = try decrementChecked(&self.count) + } catch { + rxFatalError("RefCountDisposable decrement on release failed") + } + + guard self.count >= 0 else { + rxFatalError("RefCountDisposable counter is lower than 0") + } + + if self.primaryDisposed && self.count == 0 { + self.disposable = nil + return oldDisposable + } + } + + return nil + } + + if let disposable = oldDisposable { + disposable.dispose() + } + } +} + +internal final class RefCountInnerDisposable: DisposeBase, Disposable +{ + private let parent: RefCountDisposable + private let isDisposed = AtomicInt(0) + + init(_ parent: RefCountDisposable) { + self.parent = parent + super.init() + } + + internal func dispose() + { + if fetchOr(self.isDisposed, 1) == 0 { + self.parent.release() + } + } +} diff --git a/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift b/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift new file mode 100644 index 00000000..2cf997bc --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift @@ -0,0 +1,50 @@ +// +// ScheduledDisposable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/13/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +private let disposeScheduledDisposable: (ScheduledDisposable) -> Disposable = { sd in + sd.disposeInner() + return Disposables.create() +} + +/// Represents a disposable resource whose disposal invocation will be scheduled on the specified scheduler. +public final class ScheduledDisposable : Cancelable { + public let scheduler: ImmediateSchedulerType + + private let disposed = AtomicInt(0) + + // state + private var disposable: Disposable? + + /// - returns: Was resource disposed. + public var isDisposed: Bool { + isFlagSet(self.disposed, 1) + } + + /** + Initializes a new instance of the `ScheduledDisposable` that uses a `scheduler` on which to dispose the `disposable`. + + - parameter scheduler: Scheduler where the disposable resource will be disposed on. + - parameter disposable: Disposable resource to dispose on the given scheduler. + */ + public init(scheduler: ImmediateSchedulerType, disposable: Disposable) { + self.scheduler = scheduler + self.disposable = disposable + } + + /// Disposes the wrapped disposable on the provided scheduler. + public func dispose() { + _ = self.scheduler.schedule(self, action: disposeScheduledDisposable) + } + + func disposeInner() { + if fetchOr(self.disposed, 1) == 0 { + self.disposable!.dispose() + self.disposable = nil + } + } +} diff --git a/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift b/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift new file mode 100644 index 00000000..ef4690d3 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift @@ -0,0 +1,73 @@ +// +// SerialDisposable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents a disposable resource whose underlying disposable resource can be replaced by another disposable resource, causing automatic disposal of the previous underlying disposable resource. +public final class SerialDisposable : DisposeBase, Cancelable { + private var lock = SpinLock() + + // state + private var current = nil as Disposable? + private var disposed = false + + /// - returns: Was resource disposed. + public var isDisposed: Bool { + self.disposed + } + + /// Initializes a new instance of the `SerialDisposable`. + override public init() { + super.init() + } + + /** + Gets or sets the underlying disposable. + + Assigning this property disposes the previous disposable object. + + If the `SerialDisposable` has already been disposed, assignment to this property causes immediate disposal of the given disposable object. + */ + public var disposable: Disposable { + get { + self.lock.performLocked { + self.current ?? Disposables.create() + } + } + set (newDisposable) { + let disposable: Disposable? = self.lock.performLocked { + if self.isDisposed { + return newDisposable + } + else { + let toDispose = self.current + self.current = newDisposable + return toDispose + } + } + + if let disposable = disposable { + disposable.dispose() + } + } + } + + /// Disposes the underlying disposable as well as all future replacements. + public func dispose() { + self._dispose()?.dispose() + } + + private func _dispose() -> Disposable? { + self.lock.performLocked { + guard !self.isDisposed else { return nil } + + self.disposed = true + let current = self.current + self.current = nil + return current + } + } +} diff --git a/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift b/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift new file mode 100644 index 00000000..4a5fb866 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift @@ -0,0 +1,72 @@ +// +// SingleAssignmentDisposable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/** +Represents a disposable resource which only allows a single assignment of its underlying disposable resource. + +If an underlying disposable resource has already been set, future attempts to set the underlying disposable resource will throw an exception. +*/ +public final class SingleAssignmentDisposable : DisposeBase, Cancelable { + + private struct DisposeState: OptionSet { + let rawValue: Int32 + + static let disposed = DisposeState(rawValue: 1 << 0) + static let disposableSet = DisposeState(rawValue: 1 << 1) + } + + // state + private let state = AtomicInt(0) + private var disposable = nil as Disposable? + + /// - returns: A value that indicates whether the object is disposed. + public var isDisposed: Bool { + isFlagSet(self.state, DisposeState.disposed.rawValue) + } + + /// Initializes a new instance of the `SingleAssignmentDisposable`. + public override init() { + super.init() + } + + /// Gets or sets the underlying disposable. After disposal, the result of getting this property is undefined. + /// + /// **Throws exception if the `SingleAssignmentDisposable` has already been assigned to.** + public func setDisposable(_ disposable: Disposable) { + self.disposable = disposable + + let previousState = fetchOr(self.state, DisposeState.disposableSet.rawValue) + + if (previousState & DisposeState.disposableSet.rawValue) != 0 { + rxFatalError("oldState.disposable != nil") + } + + if (previousState & DisposeState.disposed.rawValue) != 0 { + disposable.dispose() + self.disposable = nil + } + } + + /// Disposes the underlying disposable. + public func dispose() { + let previousState = fetchOr(self.state, DisposeState.disposed.rawValue) + + if (previousState & DisposeState.disposed.rawValue) != 0 { + return + } + + if (previousState & DisposeState.disposableSet.rawValue) != 0 { + guard let disposable = self.disposable else { + rxFatalError("Disposable not set") + } + disposable.dispose() + self.disposable = nil + } + } + +} diff --git a/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift b/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift new file mode 100644 index 00000000..a406c84c --- /dev/null +++ b/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift @@ -0,0 +1,21 @@ +// +// SubscriptionDisposable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 10/25/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +struct SubscriptionDisposable : Disposable { + private let key: T.DisposeKey + private weak var owner: T? + + init(owner: T, key: T.DisposeKey) { + self.owner = owner + self.key = key + } + + func dispose() { + self.owner?.synchronizedUnsubscribe(self.key) + } +} diff --git a/Pods/RxSwift/RxSwift/Errors.swift b/Pods/RxSwift/RxSwift/Errors.swift new file mode 100644 index 00000000..d2d2917e --- /dev/null +++ b/Pods/RxSwift/RxSwift/Errors.swift @@ -0,0 +1,52 @@ +// +// Errors.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +let RxErrorDomain = "RxErrorDomain" +let RxCompositeFailures = "RxCompositeFailures" + +/// Generic Rx error codes. +public enum RxError + : Swift.Error + , CustomDebugStringConvertible { + /// Unknown error occurred. + case unknown + /// Performing an action on disposed object. + case disposed(object: AnyObject) + /// Arithmetic overflow error. + case overflow + /// Argument out of range error. + case argumentOutOfRange + /// Sequence doesn't contain any elements. + case noElements + /// Sequence contains more than one element. + case moreThanOneElement + /// Timeout error. + case timeout +} + +extension RxError { + /// A textual representation of `self`, suitable for debugging. + public var debugDescription: String { + switch self { + case .unknown: + return "Unknown error occurred." + case .disposed(let object): + return "Object `\(object)` was already disposed." + case .overflow: + return "Arithmetic overflow occurred." + case .argumentOutOfRange: + return "Argument out of range." + case .noElements: + return "Sequence doesn't contain any elements." + case .moreThanOneElement: + return "Sequence contains more than one element." + case .timeout: + return "Sequence timeout." + } + } +} diff --git a/Pods/RxSwift/RxSwift/Event.swift b/Pods/RxSwift/RxSwift/Event.swift new file mode 100644 index 00000000..01861a85 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Event.swift @@ -0,0 +1,104 @@ +// +// Event.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents a sequence event. +/// +/// Sequence grammar: +/// **next\* (error | completed)** +@frozen public enum Event { + /// Next element is produced. + case next(Element) + + /// Sequence terminated with an error. + case error(Swift.Error) + + /// Sequence completed successfully. + case completed +} + +extension Event: CustomDebugStringConvertible { + /// Description of event. + public var debugDescription: String { + switch self { + case .next(let value): + return "next(\(value))" + case .error(let error): + return "error(\(error))" + case .completed: + return "completed" + } + } +} + +extension Event { + /// Is `completed` or `error` event. + public var isStopEvent: Bool { + switch self { + case .next: return false + case .error, .completed: return true + } + } + + /// If `next` event, returns element value. + public var element: Element? { + if case .next(let value) = self { + return value + } + return nil + } + + /// If `error` event, returns error. + public var error: Swift.Error? { + if case .error(let error) = self { + return error + } + return nil + } + + /// If `completed` event, returns `true`. + public var isCompleted: Bool { + if case .completed = self { + return true + } + return false + } +} + +extension Event { + /// Maps sequence elements using transform. If error happens during the transform, `.error` + /// will be returned as value. + public func map(_ transform: (Element) throws -> Result) -> Event { + do { + switch self { + case let .next(element): + return .next(try transform(element)) + case let .error(error): + return .error(error) + case .completed: + return .completed + } + } + catch let e { + return .error(e) + } + } +} + +/// A type that can be converted to `Event`. +public protocol EventConvertible { + /// Type of element in event + associatedtype Element + + /// Event representation of this instance + var event: Event { get } +} + +extension Event: EventConvertible { + /// Event representation of this instance + public var event: Event { self } +} diff --git a/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift b/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift new file mode 100644 index 00000000..97946837 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift @@ -0,0 +1,50 @@ +// +// Bag+Rx.swift +// RxSwift +// +// Created by Krunoslav Zaher on 10/19/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + + +// MARK: forEach + +@inline(__always) +func dispatch(_ bag: Bag<(Event) -> Void>, _ event: Event) { + bag._value0?(event) + + if bag._onlyFastPath { + return + } + + let pairs = bag._pairs + for i in 0 ..< pairs.count { + pairs[i].value(event) + } + + if let dictionary = bag._dictionary { + for element in dictionary.values { + element(event) + } + } +} + +/// Dispatches `dispose` to all disposables contained inside bag. +func disposeAll(in bag: Bag) { + bag._value0?.dispose() + + if bag._onlyFastPath { + return + } + + let pairs = bag._pairs + for i in 0 ..< pairs.count { + pairs[i].value.dispose() + } + + if let dictionary = bag._dictionary { + for element in dictionary.values { + element.dispose() + } + } +} diff --git a/Pods/RxSwift/RxSwift/GroupedObservable.swift b/Pods/RxSwift/RxSwift/GroupedObservable.swift new file mode 100644 index 00000000..189a8c46 --- /dev/null +++ b/Pods/RxSwift/RxSwift/GroupedObservable.swift @@ -0,0 +1,35 @@ +// +// GroupedObservable.swift +// RxSwift +// +// Created by Tomi Koskinen on 01/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents an observable sequence of elements that have a common key. +public struct GroupedObservable : ObservableType { + /// Gets the common key. + public let key: Key + + private let source: Observable + + /// Initializes grouped observable sequence with key and source observable sequence. + /// + /// - parameter key: Grouped observable sequence key + /// - parameter source: Observable sequence that represents sequence of elements for the key + /// - returns: Grouped observable sequence of elements for the specific key + public init(key: Key, source: Observable) { + self.key = key + self.source = source + } + + /// Subscribes `observer` to receive events for this sequence. + public func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.source.subscribe(observer) + } + + /// Converts `self` to `Observable` sequence. + public func asObservable() -> Observable { + self.source + } +} diff --git a/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift b/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift new file mode 100644 index 00000000..954fbf04 --- /dev/null +++ b/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift @@ -0,0 +1,36 @@ +// +// ImmediateSchedulerType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 5/31/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents an object that immediately schedules units of work. +public protocol ImmediateSchedulerType { + /** + Schedules an action to be executed immediately. + + - parameter state: State passed to the action to be executed. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + func schedule(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable +} + +extension ImmediateSchedulerType { + /** + Schedules an action to be executed recursively. + + - parameter state: State passed to the action to be executed. + - parameter action: Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in recursive invocation state. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func scheduleRecursive(_ state: State, action: @escaping (_ state: State, _ recurse: (State) -> Void) -> Void) -> Disposable { + let recursiveScheduler = RecursiveImmediateScheduler(action: action, scheduler: self) + + recursiveScheduler.schedule(state) + + return Disposables.create(with: recursiveScheduler.dispose) + } +} diff --git a/Pods/RxSwift/RxSwift/Observable+Concurrency.swift b/Pods/RxSwift/RxSwift/Observable+Concurrency.swift new file mode 100644 index 00000000..45ad05ed --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observable+Concurrency.swift @@ -0,0 +1,79 @@ +// +// Observable+Concurrency.swift +// RxSwift +// +// Created by Shai Mishali on 22/09/2021. +// Copyright © 2021 Krunoslav Zaher. All rights reserved. +// + +#if swift(>=5.6) && canImport(_Concurrency) +import Foundation + +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public extension ObservableConvertibleType { + /// Allows iterating over the values of an Observable + /// asynchronously via Swift's concurrency features (`async/await`) + /// + /// A sample usage would look like so: + /// + /// ```swift + /// do { + /// for try await value in observable.values { + /// // Handle emitted values + /// } + /// } catch { + /// // Handle error + /// } + /// ``` + var values: AsyncThrowingStream { + AsyncThrowingStream { continuation in + var isFinished = false + let disposable = asObservable().subscribe( + onNext: { value in continuation.yield(value) }, + onError: { error in + isFinished = true + continuation.finish(throwing: error) + }, + onCompleted: { + isFinished = true + continuation.finish() + }, + onDisposed: { + guard !isFinished else { return } + continuation.finish(throwing: CancellationError() ) + } + ) + continuation.onTermination = { @Sendable termination in + if case .cancelled = termination { + disposable.dispose() + } + } + } + } +} + +@available(macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, *) +public extension AsyncSequence { + /// Convert an `AsyncSequence` to an `Observable` emitting + /// values of the asynchronous sequence's type + /// + /// - returns: An `Observable` of the async sequence's type + func asObservable() -> Observable { + Observable.create { observer in + let task = Task { + do { + for try await value in self { + observer.onNext(value) + } + + observer.onCompleted() + } catch { + observer.onError(error) + } + } + + return Disposables.create { task.cancel() } + } + } +} +#endif diff --git a/Pods/RxSwift/RxSwift/Observable.swift b/Pods/RxSwift/RxSwift/Observable.swift new file mode 100644 index 00000000..93a3ed78 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observable.swift @@ -0,0 +1,31 @@ +// +// Observable.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// A type-erased `ObservableType`. +/// +/// It represents a push style sequence. +public class Observable : ObservableType { + init() { +#if TRACE_RESOURCES + _ = Resources.incrementTotal() +#endif + } + + public func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + rxAbstractMethod() + } + + public func asObservable() -> Observable { self } + + deinit { +#if TRACE_RESOURCES + _ = Resources.decrementTotal() +#endif + } +} + diff --git a/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift b/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift new file mode 100644 index 00000000..0f56a816 --- /dev/null +++ b/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift @@ -0,0 +1,18 @@ +// +// ObservableConvertibleType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 9/17/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Type that can be converted to observable sequence (`Observable`). +public protocol ObservableConvertibleType { + /// Type of elements in sequence. + associatedtype Element + + /// Converts `self` to `Observable` sequence. + /// + /// - returns: Observable sequence that represents `self`. + func asObservable() -> Observable +} diff --git a/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift b/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift new file mode 100644 index 00000000..ac850c3b --- /dev/null +++ b/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift @@ -0,0 +1,174 @@ +// +// ObservableType+Extensions.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if DEBUG + import Foundation +#endif + +extension ObservableType { + /** + Subscribes an event handler to an observable sequence. + + - parameter on: Action to invoke for each event in the observable sequence. + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func subscribe(_ on: @escaping (Event) -> Void) -> Disposable { + let observer = AnonymousObserver { e in + on(e) + } + return self.asObservable().subscribe(observer) + } + + /** + Subscribes an element handler, an error handler, a completion handler and disposed handler to an observable sequence. + + Also, take in an object and provide an unretained, safe to use (i.e. not implicitly unwrapped), reference to it along with the events emitted by the sequence. + + - Note: If `object` can't be retained, none of the other closures will be invoked. + + - parameter object: The object to provide an unretained reference on. + - parameter onNext: Action to invoke for each element in the observable sequence. + - parameter onError: Action to invoke upon errored termination of the observable sequence. + - parameter onCompleted: Action to invoke upon graceful termination of the observable sequence. + - parameter onDisposed: Action to invoke upon any type of termination of sequence (if the sequence has + gracefully completed, errored, or if the generation is canceled by disposing subscription). + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func subscribe( + with object: Object, + onNext: ((Object, Element) -> Void)? = nil, + onError: ((Object, Swift.Error) -> Void)? = nil, + onCompleted: ((Object) -> Void)? = nil, + onDisposed: ((Object) -> Void)? = nil + ) -> Disposable { + subscribe( + onNext: { [weak object] in + guard let object = object else { return } + onNext?(object, $0) + }, + onError: { [weak object] in + guard let object = object else { return } + onError?(object, $0) + }, + onCompleted: { [weak object] in + guard let object = object else { return } + onCompleted?(object) + }, + onDisposed: { [weak object] in + guard let object = object else { return } + onDisposed?(object) + } + ) + } + + /** + Subscribes an element handler, an error handler, a completion handler and disposed handler to an observable sequence. + + - parameter onNext: Action to invoke for each element in the observable sequence. + - parameter onError: Action to invoke upon errored termination of the observable sequence. + - parameter onCompleted: Action to invoke upon graceful termination of the observable sequence. + - parameter onDisposed: Action to invoke upon any type of termination of sequence (if the sequence has + gracefully completed, errored, or if the generation is canceled by disposing subscription). + - returns: Subscription object used to unsubscribe from the observable sequence. + */ + public func subscribe( + onNext: ((Element) -> Void)? = nil, + onError: ((Swift.Error) -> Void)? = nil, + onCompleted: (() -> Void)? = nil, + onDisposed: (() -> Void)? = nil + ) -> Disposable { + let disposable: Disposable + + if let disposed = onDisposed { + disposable = Disposables.create(with: disposed) + } + else { + disposable = Disposables.create() + } + + #if DEBUG + let synchronizationTracker = SynchronizationTracker() + #endif + + let callStack = Hooks.recordCallStackOnError ? Hooks.customCaptureSubscriptionCallstack() : [] + + let observer = AnonymousObserver { event in + + #if DEBUG + synchronizationTracker.register(synchronizationErrorMessage: .default) + defer { synchronizationTracker.unregister() } + #endif + + switch event { + case .next(let value): + onNext?(value) + case .error(let error): + if let onError = onError { + onError(error) + } + else { + Hooks.defaultErrorHandler(callStack, error) + } + disposable.dispose() + case .completed: + onCompleted?() + disposable.dispose() + } + } + return Disposables.create( + self.asObservable().subscribe(observer), + disposable + ) + } +} + +import Foundation + +extension Hooks { + public typealias DefaultErrorHandler = (_ subscriptionCallStack: [String], _ error: Error) -> Void + public typealias CustomCaptureSubscriptionCallstack = () -> [String] + + private static let lock = RecursiveLock() + private static var _defaultErrorHandler: DefaultErrorHandler = { subscriptionCallStack, error in + #if DEBUG + let serializedCallStack = subscriptionCallStack.joined(separator: "\n") + print("Unhandled error happened: \(error)") + if !serializedCallStack.isEmpty { + print("subscription called from:\n\(serializedCallStack)") + } + #endif + } + private static var _customCaptureSubscriptionCallstack: CustomCaptureSubscriptionCallstack = { + #if DEBUG + return Thread.callStackSymbols + #else + return [] + #endif + } + + /// Error handler called in case onError handler wasn't provided. + public static var defaultErrorHandler: DefaultErrorHandler { + get { + lock.performLocked { _defaultErrorHandler } + } + set { + lock.performLocked { _defaultErrorHandler = newValue } + } + } + + /// Subscription callstack block to fetch custom callstack information. + public static var customCaptureSubscriptionCallstack: CustomCaptureSubscriptionCallstack { + get { + lock.performLocked { _customCaptureSubscriptionCallstack } + } + set { + lock.performLocked { _customCaptureSubscriptionCallstack = newValue } + } + } +} + diff --git a/Pods/RxSwift/RxSwift/ObservableType.swift b/Pods/RxSwift/RxSwift/ObservableType.swift new file mode 100644 index 00000000..279bf7f4 --- /dev/null +++ b/Pods/RxSwift/RxSwift/ObservableType.swift @@ -0,0 +1,45 @@ +// +// ObservableType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 8/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Represents a push style sequence. +public protocol ObservableType: ObservableConvertibleType { + /** + Subscribes `observer` to receive events for this sequence. + + ### Grammar + + **Next\* (Error | Completed)?** + + * sequences can produce zero or more elements so zero or more `Next` events can be sent to `observer` + * once an `Error` or `Completed` event is sent, the sequence terminates and can't produce any other elements + + It is possible that events are sent from different threads, but no two events can be sent concurrently to + `observer`. + + ### Resource Management + + When sequence sends `Complete` or `Error` event all internal resources that compute sequence elements + will be freed. + + To cancel production of sequence elements and free resources immediately, call `dispose` on returned + subscription. + + - returns: Subscription for `observer` that can be used to cancel production of sequence elements and free resources. + */ + func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element +} + +extension ObservableType { + + /// Default implementation of converting `ObservableType` to `Observable`. + public func asObservable() -> Observable { + // temporary workaround + //return Observable.create(subscribe: self.subscribe) + Observable.create { o in self.subscribe(o) } + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/AddRef.swift b/Pods/RxSwift/RxSwift/Observables/AddRef.swift new file mode 100644 index 00000000..a96dfcb0 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/AddRef.swift @@ -0,0 +1,44 @@ +// +// AddRef.swift +// RxSwift +// +// Created by Junior B. on 30/10/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +final class AddRefSink : Sink, ObserverType { + typealias Element = Observer.Element + + override init(observer: Observer, cancel: Cancelable) { + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next: + self.forwardOn(event) + case .completed, .error: + self.forwardOn(event) + self.dispose() + } + } +} + +final class AddRef : Producer { + + private let source: Observable + private let refCount: RefCountDisposable + + init(source: Observable, refCount: RefCountDisposable) { + self.source = source + self.refCount = refCount + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let releaseDisposable = self.refCount.retain() + let sink = AddRefSink(observer: observer, cancel: cancel) + let subscription = Disposables.create(releaseDisposable, self.source.subscribe(sink)) + + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Amb.swift b/Pods/RxSwift/RxSwift/Observables/Amb.swift new file mode 100644 index 00000000..efc17a8d --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Amb.swift @@ -0,0 +1,157 @@ +// +// Amb.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Propagates the observable sequence that reacts first. + + - seealso: [amb operator on reactivex.io](http://reactivex.io/documentation/operators/amb.html) + + - returns: An observable sequence that surfaces any of the given sequences, whichever reacted first. + */ + public static func amb(_ sequence: Sequence) -> Observable + where Sequence.Element == Observable { + sequence.reduce(Observable.never()) { a, o in + a.amb(o.asObservable()) + } + } +} + +extension ObservableType { + + /** + Propagates the observable sequence that reacts first. + + - seealso: [amb operator on reactivex.io](http://reactivex.io/documentation/operators/amb.html) + + - parameter right: Second observable sequence. + - returns: An observable sequence that surfaces either of the given sequences, whichever reacted first. + */ + public func amb + (_ right: O2) + -> Observable where O2.Element == Element { + Amb(left: self.asObservable(), right: right.asObservable()) + } +} + +private enum AmbState { + case neither + case left + case right +} + +final private class AmbObserver: ObserverType { + typealias Element = Observer.Element + typealias Parent = AmbSink + typealias This = AmbObserver + typealias Sink = (This, Event) -> Void + + private let parent: Parent + fileprivate var sink: Sink + fileprivate var cancel: Disposable + + init(parent: Parent, cancel: Disposable, sink: @escaping Sink) { +#if TRACE_RESOURCES + _ = Resources.incrementTotal() +#endif + + self.parent = parent + self.sink = sink + self.cancel = cancel + } + + func on(_ event: Event) { + self.sink(self, event) + if event.isStopEvent { + self.cancel.dispose() + } + } + + deinit { +#if TRACE_RESOURCES + _ = Resources.decrementTotal() +#endif + } +} + +final private class AmbSink: Sink { + typealias Element = Observer.Element + typealias Parent = Amb + typealias AmbObserverType = AmbObserver + + private let parent: Parent + + private let lock = RecursiveLock() + // state + private var choice = AmbState.neither + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let disposeAll = Disposables.create(subscription1, subscription2) + + let forwardEvent = { (o: AmbObserverType, event: Event) -> Void in + self.forwardOn(event) + if event.isStopEvent { + self.dispose() + } + } + + let decide = { (o: AmbObserverType, event: Event, me: AmbState, otherSubscription: Disposable) in + self.lock.performLocked { + if self.choice == .neither { + self.choice = me + o.sink = forwardEvent + o.cancel = disposeAll + otherSubscription.dispose() + } + + if self.choice == me { + self.forwardOn(event) + if event.isStopEvent { + self.dispose() + } + } + } + } + + let sink1 = AmbObserver(parent: self, cancel: subscription1) { o, e in + decide(o, e, .left, subscription2) + } + + let sink2 = AmbObserver(parent: self, cancel: subscription1) { o, e in + decide(o, e, .right, subscription1) + } + + subscription1.setDisposable(self.parent.left.subscribe(sink1)) + subscription2.setDisposable(self.parent.right.subscribe(sink2)) + + return disposeAll + } +} + +final private class Amb: Producer { + fileprivate let left: Observable + fileprivate let right: Observable + + init(left: Observable, right: Observable) { + self.left = left + self.right = right + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = AmbSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift b/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift new file mode 100644 index 00000000..6fa62578 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift @@ -0,0 +1,48 @@ +// +// AsMaybe.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/12/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +private final class AsMaybeSink : Sink, ObserverType { + typealias Element = Observer.Element + + private var element: Event? + + func on(_ event: Event) { + switch event { + case .next: + if self.element != nil { + self.forwardOn(.error(RxError.moreThanOneElement)) + self.dispose() + } + + self.element = event + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + if let element = self.element { + self.forwardOn(element) + } + self.forwardOn(.completed) + self.dispose() + } + } +} + +final class AsMaybe: Producer { + private let source: Observable + + init(source: Observable) { + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = AsMaybeSink(observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/AsSingle.swift b/Pods/RxSwift/RxSwift/Observables/AsSingle.swift new file mode 100644 index 00000000..b39932f1 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/AsSingle.swift @@ -0,0 +1,51 @@ +// +// AsSingle.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/12/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +private final class AsSingleSink : Sink, ObserverType { + typealias Element = Observer.Element + + private var element: Event? + + func on(_ event: Event) { + switch event { + case .next: + if self.element != nil { + self.forwardOn(.error(RxError.moreThanOneElement)) + self.dispose() + } + + self.element = event + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + if let element = self.element { + self.forwardOn(element) + self.forwardOn(.completed) + } + else { + self.forwardOn(.error(RxError.noElements)) + } + self.dispose() + } + } +} + +final class AsSingle: Producer { + private let source: Observable + + init(source: Observable) { + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = AsSingleSink(observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Buffer.swift b/Pods/RxSwift/RxSwift/Observables/Buffer.swift new file mode 100644 index 00000000..087c4cf5 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Buffer.swift @@ -0,0 +1,138 @@ +// +// Buffer.swift +// RxSwift +// +// Created by Krunoslav Zaher on 9/13/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Projects each element of an observable sequence into a buffer that's sent out when either it's full or a given amount of time has elapsed, using the specified scheduler to run timers. + + A useful real-world analogy of this overload is the behavior of a ferry leaving the dock when all seats are taken, or at the scheduled time of departure, whichever event occurs first. + + - seealso: [buffer operator on reactivex.io](http://reactivex.io/documentation/operators/buffer.html) + + - parameter timeSpan: Maximum time length of a buffer. + - parameter count: Maximum element count of a buffer. + - parameter scheduler: Scheduler to run buffering timers on. + - returns: An observable sequence of buffers. + */ + public func buffer(timeSpan: RxTimeInterval, count: Int, scheduler: SchedulerType) + -> Observable<[Element]> { + BufferTimeCount(source: self.asObservable(), timeSpan: timeSpan, count: count, scheduler: scheduler) + } +} + +final private class BufferTimeCount: Producer<[Element]> { + + fileprivate let timeSpan: RxTimeInterval + fileprivate let count: Int + fileprivate let scheduler: SchedulerType + fileprivate let source: Observable + + init(source: Observable, timeSpan: RxTimeInterval, count: Int, scheduler: SchedulerType) { + self.source = source + self.timeSpan = timeSpan + self.count = count + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == [Element] { + let sink = BufferTimeCountSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + +final private class BufferTimeCountSink + : Sink + , LockOwnerType + , ObserverType + , SynchronizedOnType where Observer.Element == [Element] { + typealias Parent = BufferTimeCount + + private let parent: Parent + + let lock = RecursiveLock() + + // state + private let timerD = SerialDisposable() + private var buffer = [Element]() + private var windowID = 0 + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + self.createTimer(self.windowID) + return Disposables.create(timerD, parent.source.subscribe(self)) + } + + func startNewWindowAndSendCurrentOne() { + self.windowID = self.windowID &+ 1 + let windowID = self.windowID + + let buffer = self.buffer + self.buffer = [] + self.forwardOn(.next(buffer)) + + self.createTimer(windowID) + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next(let element): + self.buffer.append(element) + + if self.buffer.count == self.parent.count { + self.startNewWindowAndSendCurrentOne() + } + + case .error(let error): + self.buffer = [] + self.forwardOn(.error(error)) + self.dispose() + case .completed: + self.forwardOn(.next(self.buffer)) + self.forwardOn(.completed) + self.dispose() + } + } + + func createTimer(_ windowID: Int) { + if self.timerD.isDisposed { + return + } + + if self.windowID != windowID { + return + } + + let nextTimer = SingleAssignmentDisposable() + + self.timerD.disposable = nextTimer + + let disposable = self.parent.scheduler.scheduleRelative(windowID, dueTime: self.parent.timeSpan) { previousWindowID in + self.lock.performLocked { + if previousWindowID != self.windowID { + return + } + + self.startNewWindowAndSendCurrentOne() + } + + return Disposables.create() + } + + nextTimer.setDisposable(disposable) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Catch.swift b/Pods/RxSwift/RxSwift/Observables/Catch.swift new file mode 100644 index 00000000..2efd6606 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Catch.swift @@ -0,0 +1,275 @@ +// +// Catch.swift +// RxSwift +// +// Created by Krunoslav Zaher on 4/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Continues an observable sequence that is terminated by an error with the observable sequence produced by the handler. + + - seealso: [catch operator on reactivex.io](http://reactivex.io/documentation/operators/catch.html) + + - parameter handler: Error handler function, producing another observable sequence. + - returns: An observable sequence containing the source sequence's elements, followed by the elements produced by the handler's resulting observable sequence in case an error occurred. + */ + public func `catch`(_ handler: @escaping (Swift.Error) throws -> Observable) + -> Observable { + Catch(source: self.asObservable(), handler: handler) + } + + /** + Continues an observable sequence that is terminated by an error with the observable sequence produced by the handler. + + - seealso: [catch operator on reactivex.io](http://reactivex.io/documentation/operators/catch.html) + + - parameter handler: Error handler function, producing another observable sequence. + - returns: An observable sequence containing the source sequence's elements, followed by the elements produced by the handler's resulting observable sequence in case an error occurred. + */ + @available(*, deprecated, renamed: "catch(_:)") + public func catchError(_ handler: @escaping (Swift.Error) throws -> Observable) + -> Observable { + `catch`(handler) + } + + /** + Continues an observable sequence that is terminated by an error with a single element. + + - seealso: [catch operator on reactivex.io](http://reactivex.io/documentation/operators/catch.html) + + - parameter element: Last element in an observable sequence in case error occurs. + - returns: An observable sequence containing the source sequence's elements, followed by the `element` in case an error occurred. + */ + public func catchAndReturn(_ element: Element) + -> Observable { + Catch(source: self.asObservable(), handler: { _ in Observable.just(element) }) + } + + /** + Continues an observable sequence that is terminated by an error with a single element. + + - seealso: [catch operator on reactivex.io](http://reactivex.io/documentation/operators/catch.html) + + - parameter element: Last element in an observable sequence in case error occurs. + - returns: An observable sequence containing the source sequence's elements, followed by the `element` in case an error occurred. + */ + @available(*, deprecated, renamed: "catchAndReturn(_:)") + public func catchErrorJustReturn(_ element: Element) + -> Observable { + catchAndReturn(element) + } +} + +extension ObservableType { + /** + Continues an observable sequence that is terminated by an error with the next observable sequence. + + - seealso: [catch operator on reactivex.io](http://reactivex.io/documentation/operators/catch.html) + + - returns: An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully. + */ + @available(*, deprecated, renamed: "catch(onSuccess:onFailure:onDisposed:)") + public static func catchError(_ sequence: Sequence) -> Observable + where Sequence.Element == Observable { + `catch`(sequence: sequence) + } + + /** + Continues an observable sequence that is terminated by an error with the next observable sequence. + + - seealso: [catch operator on reactivex.io](http://reactivex.io/documentation/operators/catch.html) + + - returns: An observable sequence containing elements from consecutive source sequences until a source sequence terminates successfully. + */ + public static func `catch`(sequence: Sequence) -> Observable + where Sequence.Element == Observable { + CatchSequence(sources: sequence) + } +} + +extension ObservableType { + + /** + Repeats the source observable sequence until it successfully terminates. + + **This could potentially create an infinite sequence.** + + - seealso: [retry operator on reactivex.io](http://reactivex.io/documentation/operators/retry.html) + + - returns: Observable sequence to repeat until it successfully terminates. + */ + public func retry() -> Observable { + CatchSequence(sources: InfiniteSequence(repeatedValue: self.asObservable())) + } + + /** + Repeats the source observable sequence the specified number of times in case of an error or until it successfully terminates. + + If you encounter an error and want it to retry once, then you must use `retry(2)` + + - seealso: [retry operator on reactivex.io](http://reactivex.io/documentation/operators/retry.html) + + - parameter maxAttemptCount: Maximum number of times to repeat the sequence. + - returns: An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully. + */ + public func retry(_ maxAttemptCount: Int) + -> Observable { + CatchSequence(sources: Swift.repeatElement(self.asObservable(), count: maxAttemptCount)) + } +} + +// catch with callback + +final private class CatchSinkProxy: ObserverType { + typealias Element = Observer.Element + typealias Parent = CatchSink + + private let parent: Parent + + init(parent: Parent) { + self.parent = parent + } + + func on(_ event: Event) { + self.parent.forwardOn(event) + + switch event { + case .next: + break + case .error, .completed: + self.parent.dispose() + } + } +} + +final private class CatchSink: Sink, ObserverType { + typealias Element = Observer.Element + typealias Parent = Catch + + private let parent: Parent + private let subscription = SerialDisposable() + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let d1 = SingleAssignmentDisposable() + self.subscription.disposable = d1 + d1.setDisposable(self.parent.source.subscribe(self)) + + return self.subscription + } + + func on(_ event: Event) { + switch event { + case .next: + self.forwardOn(event) + case .completed: + self.forwardOn(event) + self.dispose() + case .error(let error): + do { + let catchSequence = try self.parent.handler(error) + + let observer = CatchSinkProxy(parent: self) + + self.subscription.disposable = catchSequence.subscribe(observer) + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + } + } + } +} + +final private class Catch: Producer { + typealias Handler = (Swift.Error) throws -> Observable + + fileprivate let source: Observable + fileprivate let handler: Handler + + init(source: Observable, handler: @escaping Handler) { + self.source = source + self.handler = handler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = CatchSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + +// catch enumerable + +final private class CatchSequenceSink + : TailRecursiveSink + , ObserverType where Sequence.Element: ObservableConvertibleType, Sequence.Element.Element == Observer.Element { + typealias Element = Observer.Element + typealias Parent = CatchSequence + + private var lastError: Swift.Error? + + override init(observer: Observer, cancel: Cancelable) { + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next: + self.forwardOn(event) + case .error(let error): + self.lastError = error + self.schedule(.moveNext) + case .completed: + self.forwardOn(event) + self.dispose() + } + } + + override func subscribeToNext(_ source: Observable) -> Disposable { + source.subscribe(self) + } + + override func done() { + if let lastError = self.lastError { + self.forwardOn(.error(lastError)) + } + else { + self.forwardOn(.completed) + } + + self.dispose() + } + + override func extract(_ observable: Observable) -> SequenceGenerator? { + if let onError = observable as? CatchSequence { + return (onError.sources.makeIterator(), nil) + } + else { + return nil + } + } +} + +final private class CatchSequence: Producer where Sequence.Element: ObservableConvertibleType { + typealias Element = Sequence.Element.Element + + let sources: Sequence + + init(sources: Sequence) { + self.sources = sources + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = CatchSequenceSink(observer: observer, cancel: cancel) + let subscription = sink.run((self.sources.makeIterator(), nil)) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift b/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift new file mode 100644 index 00000000..b56d050b --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift @@ -0,0 +1,165 @@ +// +// CombineLatest+Collection.swift +// RxSwift +// +// Created by Krunoslav Zaher on 8/29/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - seealso: [combinelatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest(_ collection: Collection, resultSelector: @escaping ([Collection.Element.Element]) throws -> Element) -> Observable + where Collection.Element: ObservableType { + CombineLatestCollectionType(sources: collection, resultSelector: resultSelector) + } + + /** + Merges the specified observable sequences into one observable sequence whenever any of the observable sequences produces an element. + + - seealso: [combinelatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest(_ collection: Collection) -> Observable<[Element]> + where Collection.Element: ObservableType, Collection.Element.Element == Element { + CombineLatestCollectionType(sources: collection, resultSelector: { $0 }) + } +} + +final class CombineLatestCollectionTypeSink + : Sink where Collection.Element: ObservableConvertibleType { + typealias Result = Observer.Element + typealias Parent = CombineLatestCollectionType + typealias SourceElement = Collection.Element.Element + + let parent: Parent + + let lock = RecursiveLock() + + // state + var numberOfValues = 0 + var values: [SourceElement?] + var isDone: [Bool] + var numberOfDone = 0 + var subscriptions: [SingleAssignmentDisposable] + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.values = [SourceElement?](repeating: nil, count: parent.count) + self.isDone = [Bool](repeating: false, count: parent.count) + self.subscriptions = [SingleAssignmentDisposable]() + self.subscriptions.reserveCapacity(parent.count) + + for _ in 0 ..< parent.count { + self.subscriptions.append(SingleAssignmentDisposable()) + } + + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event, atIndex: Int) { + self.lock.lock(); defer { self.lock.unlock() } + switch event { + case .next(let element): + if self.values[atIndex] == nil { + self.numberOfValues += 1 + } + + self.values[atIndex] = element + + if self.numberOfValues < self.parent.count { + let numberOfOthersThatAreDone = self.numberOfDone - (self.isDone[atIndex] ? 1 : 0) + if numberOfOthersThatAreDone == self.parent.count - 1 { + self.forwardOn(.completed) + self.dispose() + } + return + } + + do { + let result = try self.parent.resultSelector(self.values.map { $0! }) + self.forwardOn(.next(result)) + } + catch let error { + self.forwardOn(.error(error)) + self.dispose() + } + + case .error(let error): + self.forwardOn(.error(error)) + self.dispose() + case .completed: + if self.isDone[atIndex] { + return + } + + self.isDone[atIndex] = true + self.numberOfDone += 1 + + if self.numberOfDone == self.parent.count { + self.forwardOn(.completed) + self.dispose() + } + else { + self.subscriptions[atIndex].dispose() + } + } + } + + func run() -> Disposable { + var j = 0 + for i in self.parent.sources { + let index = j + let source = i.asObservable() + let disposable = source.subscribe(AnyObserver { event in + self.on(event, atIndex: index) + }) + + self.subscriptions[j].setDisposable(disposable) + + j += 1 + } + + if self.parent.sources.isEmpty { + do { + let result = try self.parent.resultSelector([]) + self.forwardOn(.next(result)) + self.forwardOn(.completed) + self.dispose() + } + catch let error { + self.forwardOn(.error(error)) + self.dispose() + } + } + + return Disposables.create(subscriptions) + } +} + +final class CombineLatestCollectionType: Producer where Collection.Element: ObservableConvertibleType { + typealias ResultSelector = ([Collection.Element.Element]) throws -> Result + + let sources: Collection + let resultSelector: ResultSelector + let count: Int + + init(sources: Collection, resultSelector: @escaping ResultSelector) { + self.sources = sources + self.resultSelector = resultSelector + self.count = self.sources.count + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = CombineLatestCollectionTypeSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift b/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift new file mode 100644 index 00000000..e69bbab4 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift @@ -0,0 +1,843 @@ +// This file is autogenerated. Take a look at `Preprocessor` target in RxSwift project +// +// CombineLatest+arity.swift +// RxSwift +// +// Created by Krunoslav Zaher on 4/22/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + + + +// 2 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, resultSelector: @escaping (O1.Element, O2.Element) throws -> Element) + -> Observable { + return CombineLatest2( + source1: source1.asObservable(), source2: source2.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2) + -> Observable<(O1.Element, O2.Element)> { + return CombineLatest2( + source1: source1.asObservable(), source2: source2.asObservable(), + resultSelector: { ($0, $1) } + ) + } +} + +final class CombineLatestSink2_ : CombineLatestSink { + typealias Result = Observer.Element + typealias Parent = CombineLatest2 + + let parent: Parent + + var latestElement1: E1! = nil + var latestElement2: E2! = nil + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 2, observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + + let observer1 = CombineLatestObserver(lock: self.lock, parent: self, index: 0, setLatestValue: { (e: E1) -> Void in self.latestElement1 = e }, this: subscription1) + let observer2 = CombineLatestObserver(lock: self.lock, parent: self, index: 1, setLatestValue: { (e: E2) -> Void in self.latestElement2 = e }, this: subscription2) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + + return Disposables.create([ + subscription1, + subscription2 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.latestElement1, self.latestElement2) + } +} + +final class CombineLatest2 : Producer { + typealias ResultSelector = (E1, E2) throws -> Result + + let source1: Observable + let source2: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = CombineLatestSink2_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 3 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, resultSelector: @escaping (O1.Element, O2.Element, O3.Element) throws -> Element) + -> Observable { + return CombineLatest3( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3) + -> Observable<(O1.Element, O2.Element, O3.Element)> { + return CombineLatest3( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), + resultSelector: { ($0, $1, $2) } + ) + } +} + +final class CombineLatestSink3_ : CombineLatestSink { + typealias Result = Observer.Element + typealias Parent = CombineLatest3 + + let parent: Parent + + var latestElement1: E1! = nil + var latestElement2: E2! = nil + var latestElement3: E3! = nil + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 3, observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + + let observer1 = CombineLatestObserver(lock: self.lock, parent: self, index: 0, setLatestValue: { (e: E1) -> Void in self.latestElement1 = e }, this: subscription1) + let observer2 = CombineLatestObserver(lock: self.lock, parent: self, index: 1, setLatestValue: { (e: E2) -> Void in self.latestElement2 = e }, this: subscription2) + let observer3 = CombineLatestObserver(lock: self.lock, parent: self, index: 2, setLatestValue: { (e: E3) -> Void in self.latestElement3 = e }, this: subscription3) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.latestElement1, self.latestElement2, self.latestElement3) + } +} + +final class CombineLatest3 : Producer { + typealias ResultSelector = (E1, E2, E3) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = CombineLatestSink3_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 4 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element) throws -> Element) + -> Observable { + return CombineLatest4( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4) + -> Observable<(O1.Element, O2.Element, O3.Element, O4.Element)> { + return CombineLatest4( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), + resultSelector: { ($0, $1, $2, $3) } + ) + } +} + +final class CombineLatestSink4_ : CombineLatestSink { + typealias Result = Observer.Element + typealias Parent = CombineLatest4 + + let parent: Parent + + var latestElement1: E1! = nil + var latestElement2: E2! = nil + var latestElement3: E3! = nil + var latestElement4: E4! = nil + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 4, observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + let subscription4 = SingleAssignmentDisposable() + + let observer1 = CombineLatestObserver(lock: self.lock, parent: self, index: 0, setLatestValue: { (e: E1) -> Void in self.latestElement1 = e }, this: subscription1) + let observer2 = CombineLatestObserver(lock: self.lock, parent: self, index: 1, setLatestValue: { (e: E2) -> Void in self.latestElement2 = e }, this: subscription2) + let observer3 = CombineLatestObserver(lock: self.lock, parent: self, index: 2, setLatestValue: { (e: E3) -> Void in self.latestElement3 = e }, this: subscription3) + let observer4 = CombineLatestObserver(lock: self.lock, parent: self, index: 3, setLatestValue: { (e: E4) -> Void in self.latestElement4 = e }, this: subscription4) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + subscription4.setDisposable(self.parent.source4.subscribe(observer4)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3, + subscription4 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.latestElement1, self.latestElement2, self.latestElement3, self.latestElement4) + } +} + +final class CombineLatest4 : Producer { + typealias ResultSelector = (E1, E2, E3, E4) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + let source4: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, source4: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + self.source4 = source4 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = CombineLatestSink4_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 5 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element) throws -> Element) + -> Observable { + return CombineLatest5( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5) + -> Observable<(O1.Element, O2.Element, O3.Element, O4.Element, O5.Element)> { + return CombineLatest5( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), + resultSelector: { ($0, $1, $2, $3, $4) } + ) + } +} + +final class CombineLatestSink5_ : CombineLatestSink { + typealias Result = Observer.Element + typealias Parent = CombineLatest5 + + let parent: Parent + + var latestElement1: E1! = nil + var latestElement2: E2! = nil + var latestElement3: E3! = nil + var latestElement4: E4! = nil + var latestElement5: E5! = nil + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 5, observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + let subscription4 = SingleAssignmentDisposable() + let subscription5 = SingleAssignmentDisposable() + + let observer1 = CombineLatestObserver(lock: self.lock, parent: self, index: 0, setLatestValue: { (e: E1) -> Void in self.latestElement1 = e }, this: subscription1) + let observer2 = CombineLatestObserver(lock: self.lock, parent: self, index: 1, setLatestValue: { (e: E2) -> Void in self.latestElement2 = e }, this: subscription2) + let observer3 = CombineLatestObserver(lock: self.lock, parent: self, index: 2, setLatestValue: { (e: E3) -> Void in self.latestElement3 = e }, this: subscription3) + let observer4 = CombineLatestObserver(lock: self.lock, parent: self, index: 3, setLatestValue: { (e: E4) -> Void in self.latestElement4 = e }, this: subscription4) + let observer5 = CombineLatestObserver(lock: self.lock, parent: self, index: 4, setLatestValue: { (e: E5) -> Void in self.latestElement5 = e }, this: subscription5) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + subscription4.setDisposable(self.parent.source4.subscribe(observer4)) + subscription5.setDisposable(self.parent.source5.subscribe(observer5)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3, + subscription4, + subscription5 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.latestElement1, self.latestElement2, self.latestElement3, self.latestElement4, self.latestElement5) + } +} + +final class CombineLatest5 : Producer { + typealias ResultSelector = (E1, E2, E3, E4, E5) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + let source4: Observable + let source5: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, source4: Observable, source5: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + self.source4 = source4 + self.source5 = source5 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = CombineLatestSink5_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 6 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element) throws -> Element) + -> Observable { + return CombineLatest6( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6) + -> Observable<(O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element)> { + return CombineLatest6( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), + resultSelector: { ($0, $1, $2, $3, $4, $5) } + ) + } +} + +final class CombineLatestSink6_ : CombineLatestSink { + typealias Result = Observer.Element + typealias Parent = CombineLatest6 + + let parent: Parent + + var latestElement1: E1! = nil + var latestElement2: E2! = nil + var latestElement3: E3! = nil + var latestElement4: E4! = nil + var latestElement5: E5! = nil + var latestElement6: E6! = nil + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 6, observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + let subscription4 = SingleAssignmentDisposable() + let subscription5 = SingleAssignmentDisposable() + let subscription6 = SingleAssignmentDisposable() + + let observer1 = CombineLatestObserver(lock: self.lock, parent: self, index: 0, setLatestValue: { (e: E1) -> Void in self.latestElement1 = e }, this: subscription1) + let observer2 = CombineLatestObserver(lock: self.lock, parent: self, index: 1, setLatestValue: { (e: E2) -> Void in self.latestElement2 = e }, this: subscription2) + let observer3 = CombineLatestObserver(lock: self.lock, parent: self, index: 2, setLatestValue: { (e: E3) -> Void in self.latestElement3 = e }, this: subscription3) + let observer4 = CombineLatestObserver(lock: self.lock, parent: self, index: 3, setLatestValue: { (e: E4) -> Void in self.latestElement4 = e }, this: subscription4) + let observer5 = CombineLatestObserver(lock: self.lock, parent: self, index: 4, setLatestValue: { (e: E5) -> Void in self.latestElement5 = e }, this: subscription5) + let observer6 = CombineLatestObserver(lock: self.lock, parent: self, index: 5, setLatestValue: { (e: E6) -> Void in self.latestElement6 = e }, this: subscription6) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + subscription4.setDisposable(self.parent.source4.subscribe(observer4)) + subscription5.setDisposable(self.parent.source5.subscribe(observer5)) + subscription6.setDisposable(self.parent.source6.subscribe(observer6)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3, + subscription4, + subscription5, + subscription6 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.latestElement1, self.latestElement2, self.latestElement3, self.latestElement4, self.latestElement5, self.latestElement6) + } +} + +final class CombineLatest6 : Producer { + typealias ResultSelector = (E1, E2, E3, E4, E5, E6) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + let source4: Observable + let source5: Observable + let source6: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, source4: Observable, source5: Observable, source6: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + self.source4 = source4 + self.source5 = source5 + self.source6 = source6 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = CombineLatestSink6_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 7 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element) throws -> Element) + -> Observable { + return CombineLatest7( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), source7: source7.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7) + -> Observable<(O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element)> { + return CombineLatest7( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), source7: source7.asObservable(), + resultSelector: { ($0, $1, $2, $3, $4, $5, $6) } + ) + } +} + +final class CombineLatestSink7_ : CombineLatestSink { + typealias Result = Observer.Element + typealias Parent = CombineLatest7 + + let parent: Parent + + var latestElement1: E1! = nil + var latestElement2: E2! = nil + var latestElement3: E3! = nil + var latestElement4: E4! = nil + var latestElement5: E5! = nil + var latestElement6: E6! = nil + var latestElement7: E7! = nil + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 7, observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + let subscription4 = SingleAssignmentDisposable() + let subscription5 = SingleAssignmentDisposable() + let subscription6 = SingleAssignmentDisposable() + let subscription7 = SingleAssignmentDisposable() + + let observer1 = CombineLatestObserver(lock: self.lock, parent: self, index: 0, setLatestValue: { (e: E1) -> Void in self.latestElement1 = e }, this: subscription1) + let observer2 = CombineLatestObserver(lock: self.lock, parent: self, index: 1, setLatestValue: { (e: E2) -> Void in self.latestElement2 = e }, this: subscription2) + let observer3 = CombineLatestObserver(lock: self.lock, parent: self, index: 2, setLatestValue: { (e: E3) -> Void in self.latestElement3 = e }, this: subscription3) + let observer4 = CombineLatestObserver(lock: self.lock, parent: self, index: 3, setLatestValue: { (e: E4) -> Void in self.latestElement4 = e }, this: subscription4) + let observer5 = CombineLatestObserver(lock: self.lock, parent: self, index: 4, setLatestValue: { (e: E5) -> Void in self.latestElement5 = e }, this: subscription5) + let observer6 = CombineLatestObserver(lock: self.lock, parent: self, index: 5, setLatestValue: { (e: E6) -> Void in self.latestElement6 = e }, this: subscription6) + let observer7 = CombineLatestObserver(lock: self.lock, parent: self, index: 6, setLatestValue: { (e: E7) -> Void in self.latestElement7 = e }, this: subscription7) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + subscription4.setDisposable(self.parent.source4.subscribe(observer4)) + subscription5.setDisposable(self.parent.source5.subscribe(observer5)) + subscription6.setDisposable(self.parent.source6.subscribe(observer6)) + subscription7.setDisposable(self.parent.source7.subscribe(observer7)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3, + subscription4, + subscription5, + subscription6, + subscription7 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.latestElement1, self.latestElement2, self.latestElement3, self.latestElement4, self.latestElement5, self.latestElement6, self.latestElement7) + } +} + +final class CombineLatest7 : Producer { + typealias ResultSelector = (E1, E2, E3, E4, E5, E6, E7) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + let source4: Observable + let source5: Observable + let source6: Observable + let source7: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, source4: Observable, source5: Observable, source6: Observable, source7: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + self.source4 = source4 + self.source5 = source5 + self.source6 = source6 + self.source7 = source7 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = CombineLatestSink7_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 8 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - parameter resultSelector: Function to invoke whenever any of the sources produces an element. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, _ source8: O8, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element, O8.Element) throws -> Element) + -> Observable { + return CombineLatest8( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), source7: source7.asObservable(), source8: source8.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever any of the observable sequences produces an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func combineLatest + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, _ source8: O8) + -> Observable<(O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element, O8.Element)> { + return CombineLatest8( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), source7: source7.asObservable(), source8: source8.asObservable(), + resultSelector: { ($0, $1, $2, $3, $4, $5, $6, $7) } + ) + } +} + +final class CombineLatestSink8_ : CombineLatestSink { + typealias Result = Observer.Element + typealias Parent = CombineLatest8 + + let parent: Parent + + var latestElement1: E1! = nil + var latestElement2: E2! = nil + var latestElement3: E3! = nil + var latestElement4: E4! = nil + var latestElement5: E5! = nil + var latestElement6: E6! = nil + var latestElement7: E7! = nil + var latestElement8: E8! = nil + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 8, observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + let subscription4 = SingleAssignmentDisposable() + let subscription5 = SingleAssignmentDisposable() + let subscription6 = SingleAssignmentDisposable() + let subscription7 = SingleAssignmentDisposable() + let subscription8 = SingleAssignmentDisposable() + + let observer1 = CombineLatestObserver(lock: self.lock, parent: self, index: 0, setLatestValue: { (e: E1) -> Void in self.latestElement1 = e }, this: subscription1) + let observer2 = CombineLatestObserver(lock: self.lock, parent: self, index: 1, setLatestValue: { (e: E2) -> Void in self.latestElement2 = e }, this: subscription2) + let observer3 = CombineLatestObserver(lock: self.lock, parent: self, index: 2, setLatestValue: { (e: E3) -> Void in self.latestElement3 = e }, this: subscription3) + let observer4 = CombineLatestObserver(lock: self.lock, parent: self, index: 3, setLatestValue: { (e: E4) -> Void in self.latestElement4 = e }, this: subscription4) + let observer5 = CombineLatestObserver(lock: self.lock, parent: self, index: 4, setLatestValue: { (e: E5) -> Void in self.latestElement5 = e }, this: subscription5) + let observer6 = CombineLatestObserver(lock: self.lock, parent: self, index: 5, setLatestValue: { (e: E6) -> Void in self.latestElement6 = e }, this: subscription6) + let observer7 = CombineLatestObserver(lock: self.lock, parent: self, index: 6, setLatestValue: { (e: E7) -> Void in self.latestElement7 = e }, this: subscription7) + let observer8 = CombineLatestObserver(lock: self.lock, parent: self, index: 7, setLatestValue: { (e: E8) -> Void in self.latestElement8 = e }, this: subscription8) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + subscription4.setDisposable(self.parent.source4.subscribe(observer4)) + subscription5.setDisposable(self.parent.source5.subscribe(observer5)) + subscription6.setDisposable(self.parent.source6.subscribe(observer6)) + subscription7.setDisposable(self.parent.source7.subscribe(observer7)) + subscription8.setDisposable(self.parent.source8.subscribe(observer8)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3, + subscription4, + subscription5, + subscription6, + subscription7, + subscription8 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.latestElement1, self.latestElement2, self.latestElement3, self.latestElement4, self.latestElement5, self.latestElement6, self.latestElement7, self.latestElement8) + } +} + +final class CombineLatest8 : Producer { + typealias ResultSelector = (E1, E2, E3, E4, E5, E6, E7, E8) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + let source4: Observable + let source5: Observable + let source6: Observable + let source7: Observable + let source8: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, source4: Observable, source5: Observable, source6: Observable, source7: Observable, source8: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + self.source4 = source4 + self.source5 = source5 + self.source6 = source6 + self.source7 = source7 + self.source8 = source8 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = CombineLatestSink8_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + diff --git a/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift b/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift new file mode 100644 index 00000000..caa02564 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift @@ -0,0 +1,131 @@ +// +// CombineLatest.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +protocol CombineLatestProtocol: AnyObject { + func next(_ index: Int) + func fail(_ error: Swift.Error) + func done(_ index: Int) +} + +class CombineLatestSink + : Sink + , CombineLatestProtocol { + typealias Element = Observer.Element + + let lock = RecursiveLock() + + private let arity: Int + private var numberOfValues = 0 + private var numberOfDone = 0 + private var hasValue: [Bool] + private var isDone: [Bool] + + init(arity: Int, observer: Observer, cancel: Cancelable) { + self.arity = arity + self.hasValue = [Bool](repeating: false, count: arity) + self.isDone = [Bool](repeating: false, count: arity) + + super.init(observer: observer, cancel: cancel) + } + + func getResult() throws -> Element { + rxAbstractMethod() + } + + func next(_ index: Int) { + if !self.hasValue[index] { + self.hasValue[index] = true + self.numberOfValues += 1 + } + + if self.numberOfValues == self.arity { + do { + let result = try self.getResult() + self.forwardOn(.next(result)) + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + } + } + else { + var allOthersDone = true + + for i in 0 ..< self.arity { + if i != index && !self.isDone[i] { + allOthersDone = false + break + } + } + + if allOthersDone { + self.forwardOn(.completed) + self.dispose() + } + } + } + + func fail(_ error: Swift.Error) { + self.forwardOn(.error(error)) + self.dispose() + } + + func done(_ index: Int) { + if self.isDone[index] { + return + } + + self.isDone[index] = true + self.numberOfDone += 1 + + if self.numberOfDone == self.arity { + self.forwardOn(.completed) + self.dispose() + } + } +} + +final class CombineLatestObserver + : ObserverType + , LockOwnerType + , SynchronizedOnType { + typealias ValueSetter = (Element) -> Void + + private let parent: CombineLatestProtocol + + let lock: RecursiveLock + private let index: Int + private let this: Disposable + private let setLatestValue: ValueSetter + + init(lock: RecursiveLock, parent: CombineLatestProtocol, index: Int, setLatestValue: @escaping ValueSetter, this: Disposable) { + self.lock = lock + self.parent = parent + self.index = index + self.this = this + self.setLatestValue = setLatestValue + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next(let value): + self.setLatestValue(value) + self.parent.next(self.index) + case .error(let error): + self.this.dispose() + self.parent.fail(error) + case .completed: + self.this.dispose() + self.parent.done(self.index) + } + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/CompactMap.swift b/Pods/RxSwift/RxSwift/Observables/CompactMap.swift new file mode 100644 index 00000000..7dbcdfbe --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/CompactMap.swift @@ -0,0 +1,76 @@ +// +// CompactMap.swift +// RxSwift +// +// Created by Michael Long on 04/09/2019. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Projects each element of an observable sequence into an optional form and filters all optional results. + + - parameter transform: A transform function to apply to each source element and which returns an element or nil. + - returns: An observable sequence whose elements are the result of filtering the transform function for each element of the source. + + */ + public func compactMap(_ transform: @escaping (Element) throws -> Result?) + -> Observable { + CompactMap(source: self.asObservable(), transform: transform) + } +} + +final private class CompactMapSink: Sink, ObserverType { + typealias Transform = (SourceType) throws -> ResultType? + + typealias ResultType = Observer.Element + typealias Element = SourceType + + private let transform: Transform + + init(transform: @escaping Transform, observer: Observer, cancel: Cancelable) { + self.transform = transform + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let element): + do { + if let mappedElement = try self.transform(element) { + self.forwardOn(.next(mappedElement)) + } + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + } + case .error(let error): + self.forwardOn(.error(error)) + self.dispose() + case .completed: + self.forwardOn(.completed) + self.dispose() + } + } +} + +final private class CompactMap: Producer { + typealias Transform = (SourceType) throws -> ResultType? + + private let source: Observable + + private let transform: Transform + + init(source: Observable, transform: @escaping Transform) { + self.source = source + self.transform = transform + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == ResultType { + let sink = CompactMapSink(transform: self.transform, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Concat.swift b/Pods/RxSwift/RxSwift/Observables/Concat.swift new file mode 100644 index 00000000..b2fb1a2e --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Concat.swift @@ -0,0 +1,131 @@ +// +// Concat.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Concatenates the second observable sequence to `self` upon successful termination of `self`. + + - seealso: [concat operator on reactivex.io](http://reactivex.io/documentation/operators/concat.html) + + - parameter second: Second observable sequence. + - returns: An observable sequence that contains the elements of `self`, followed by those of the second sequence. + */ + public func concat(_ second: Source) -> Observable where Source.Element == Element { + Observable.concat([self.asObservable(), second.asObservable()]) + } +} + +extension ObservableType { + /** + Concatenates all observable sequences in the given sequence, as long as the previous observable sequence terminated successfully. + + This operator has tail recursive optimizations that will prevent stack overflow. + + Optimizations will be performed in cases equivalent to following: + + [1, [2, [3, .....].concat()].concat].concat() + + - seealso: [concat operator on reactivex.io](http://reactivex.io/documentation/operators/concat.html) + + - returns: An observable sequence that contains the elements of each given sequence, in sequential order. + */ + public static func concat(_ sequence: Sequence) -> Observable + where Sequence.Element == Observable { + return Concat(sources: sequence, count: nil) + } + + /** + Concatenates all observable sequences in the given collection, as long as the previous observable sequence terminated successfully. + + This operator has tail recursive optimizations that will prevent stack overflow. + + Optimizations will be performed in cases equivalent to following: + + [1, [2, [3, .....].concat()].concat].concat() + + - seealso: [concat operator on reactivex.io](http://reactivex.io/documentation/operators/concat.html) + + - returns: An observable sequence that contains the elements of each given sequence, in sequential order. + */ + public static func concat(_ collection: Collection) -> Observable + where Collection.Element == Observable { + return Concat(sources: collection, count: Int64(collection.count)) + } + + /** + Concatenates all observable sequences in the given collection, as long as the previous observable sequence terminated successfully. + + This operator has tail recursive optimizations that will prevent stack overflow. + + Optimizations will be performed in cases equivalent to following: + + [1, [2, [3, .....].concat()].concat].concat() + + - seealso: [concat operator on reactivex.io](http://reactivex.io/documentation/operators/concat.html) + + - returns: An observable sequence that contains the elements of each given sequence, in sequential order. + */ + public static func concat(_ sources: Observable ...) -> Observable { + Concat(sources: sources, count: Int64(sources.count)) + } +} + +final private class ConcatSink + : TailRecursiveSink + , ObserverType where Sequence.Element: ObservableConvertibleType, Sequence.Element.Element == Observer.Element { + typealias Element = Observer.Element + + override init(observer: Observer, cancel: Cancelable) { + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event){ + switch event { + case .next: + self.forwardOn(event) + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + self.schedule(.moveNext) + } + } + + override func subscribeToNext(_ source: Observable) -> Disposable { + source.subscribe(self) + } + + override func extract(_ observable: Observable) -> SequenceGenerator? { + if let source = observable as? Concat { + return (source.sources.makeIterator(), source.count) + } + else { + return nil + } + } +} + +final private class Concat: Producer where Sequence.Element: ObservableConvertibleType { + typealias Element = Sequence.Element.Element + + fileprivate let sources: Sequence + fileprivate let count: IntMax? + + init(sources: Sequence, count: IntMax?) { + self.sources = sources + self.count = count + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = ConcatSink(observer: observer, cancel: cancel) + let subscription = sink.run((self.sources.makeIterator(), self.count)) + return (sink: sink, subscription: subscription) + } +} + diff --git a/Pods/RxSwift/RxSwift/Observables/Create.swift b/Pods/RxSwift/RxSwift/Observables/Create.swift new file mode 100644 index 00000000..ca81442c --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Create.swift @@ -0,0 +1,78 @@ +// +// Create.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + // MARK: create + + /** + Creates an observable sequence from a specified subscribe method implementation. + + - seealso: [create operator on reactivex.io](http://reactivex.io/documentation/operators/create.html) + + - parameter subscribe: Implementation of the resulting observable sequence's `subscribe` method. + - returns: The observable sequence with the specified implementation for the `subscribe` method. + */ + public static func create(_ subscribe: @escaping (AnyObserver) -> Disposable) -> Observable { + AnonymousObservable(subscribe) + } +} + +final private class AnonymousObservableSink: Sink, ObserverType { + typealias Element = Observer.Element + typealias Parent = AnonymousObservable + + // state + private let isStopped = AtomicInt(0) + + #if DEBUG + private let synchronizationTracker = SynchronizationTracker() + #endif + + override init(observer: Observer, cancel: Cancelable) { + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + #if DEBUG + self.synchronizationTracker.register(synchronizationErrorMessage: .default) + defer { self.synchronizationTracker.unregister() } + #endif + switch event { + case .next: + if load(self.isStopped) == 1 { + return + } + self.forwardOn(event) + case .error, .completed: + if fetchOr(self.isStopped, 1) == 0 { + self.forwardOn(event) + self.dispose() + } + } + } + + func run(_ parent: Parent) -> Disposable { + parent.subscribeHandler(AnyObserver(self)) + } +} + +final private class AnonymousObservable: Producer { + typealias SubscribeHandler = (AnyObserver) -> Disposable + + let subscribeHandler: SubscribeHandler + + init(_ subscribeHandler: @escaping SubscribeHandler) { + self.subscribeHandler = subscribeHandler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = AnonymousObservableSink(observer: observer, cancel: cancel) + let subscription = sink.run(self) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Debounce.swift b/Pods/RxSwift/RxSwift/Observables/Debounce.swift new file mode 100644 index 00000000..dfab0045 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Debounce.swift @@ -0,0 +1,119 @@ +// +// Debounce.swift +// RxSwift +// +// Created by Krunoslav Zaher on 9/11/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Ignores elements from an observable sequence which are followed by another element within a specified relative time duration, using the specified scheduler to run throttling timers. + + - seealso: [debounce operator on reactivex.io](http://reactivex.io/documentation/operators/debounce.html) + + - parameter dueTime: Throttling duration for each element. + - parameter scheduler: Scheduler to run the throttle timers on. + - returns: The throttled sequence. + */ + public func debounce(_ dueTime: RxTimeInterval, scheduler: SchedulerType) + -> Observable { + return Debounce(source: self.asObservable(), dueTime: dueTime, scheduler: scheduler) + } +} + +final private class DebounceSink + : Sink + , ObserverType + , LockOwnerType + , SynchronizedOnType { + typealias Element = Observer.Element + typealias ParentType = Debounce + + private let parent: ParentType + + let lock = RecursiveLock() + + // state + private var id = 0 as UInt64 + private var value: Element? + + let cancellable = SerialDisposable() + + init(parent: ParentType, observer: Observer, cancel: Cancelable) { + self.parent = parent + + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription = self.parent.source.subscribe(self) + + return Disposables.create(subscription, cancellable) + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next(let element): + self.id = self.id &+ 1 + let currentId = self.id + self.value = element + + + let scheduler = self.parent.scheduler + let dueTime = self.parent.dueTime + + let d = SingleAssignmentDisposable() + self.cancellable.disposable = d + d.setDisposable(scheduler.scheduleRelative(currentId, dueTime: dueTime, action: self.propagate)) + case .error: + self.value = nil + self.forwardOn(event) + self.dispose() + case .completed: + if let value = self.value { + self.value = nil + self.forwardOn(.next(value)) + } + self.forwardOn(.completed) + self.dispose() + } + } + + func propagate(_ currentId: UInt64) -> Disposable { + self.lock.performLocked { + let originalValue = self.value + + if let value = originalValue, self.id == currentId { + self.value = nil + self.forwardOn(.next(value)) + } + + return Disposables.create() + } + } +} + +final private class Debounce: Producer { + fileprivate let source: Observable + fileprivate let dueTime: RxTimeInterval + fileprivate let scheduler: SchedulerType + + init(source: Observable, dueTime: RxTimeInterval, scheduler: SchedulerType) { + self.source = source + self.dueTime = dueTime + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = DebounceSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } + +} diff --git a/Pods/RxSwift/RxSwift/Observables/Debug.swift b/Pods/RxSwift/RxSwift/Observables/Debug.swift new file mode 100644 index 00000000..762e394f --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Debug.swift @@ -0,0 +1,102 @@ +// +// Debug.swift +// RxSwift +// +// Created by Krunoslav Zaher on 5/2/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +extension ObservableType { + + /** + Prints received events for all observers on standard output. + + - seealso: [do operator on reactivex.io](http://reactivex.io/documentation/operators/do.html) + + - parameter identifier: Identifier that is printed together with event description to standard output. + - parameter trimOutput: Should output be trimmed to max 40 characters. + - returns: An observable sequence whose events are printed to standard output. + */ + public func debug(_ identifier: String? = nil, trimOutput: Bool = false, file: String = #file, line: UInt = #line, function: String = #function) + -> Observable { + return Debug(source: self, identifier: identifier, trimOutput: trimOutput, file: file, line: line, function: function) + } +} + +private let dateFormat = "yyyy-MM-dd HH:mm:ss.SSS" + +private func logEvent(_ identifier: String, dateFormat: DateFormatter, content: String) { + print("\(dateFormat.string(from: Date())): \(identifier) -> \(content)") +} + +final private class DebugSink: Sink, ObserverType where Observer.Element == Source.Element { + typealias Element = Observer.Element + typealias Parent = Debug + + private let parent: Parent + private let timestampFormatter = DateFormatter() + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.timestampFormatter.dateFormat = dateFormat + + logEvent(self.parent.identifier, dateFormat: self.timestampFormatter, content: "subscribed") + + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + let maxEventTextLength = 40 + let eventText = "\(event)" + + let eventNormalized = (eventText.count > maxEventTextLength) && self.parent.trimOutput + ? String(eventText.prefix(maxEventTextLength / 2)) + "..." + String(eventText.suffix(maxEventTextLength / 2)) + : eventText + + logEvent(self.parent.identifier, dateFormat: self.timestampFormatter, content: "Event \(eventNormalized)") + + self.forwardOn(event) + if event.isStopEvent { + self.dispose() + } + } + + override func dispose() { + if !self.isDisposed { + logEvent(self.parent.identifier, dateFormat: self.timestampFormatter, content: "isDisposed") + } + super.dispose() + } +} + +final private class Debug: Producer { + fileprivate let identifier: String + fileprivate let trimOutput: Bool + private let source: Source + + init(source: Source, identifier: String?, trimOutput: Bool, file: String, line: UInt, function: String) { + self.trimOutput = trimOutput + if let identifier = identifier { + self.identifier = identifier + } + else { + let trimmedFile: String + if let lastIndex = file.lastIndex(of: "/") { + trimmedFile = String(file[file.index(after: lastIndex) ..< file.endIndex]) + } + else { + trimmedFile = file + } + self.identifier = "\(trimmedFile):\(line) (\(function))" + } + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Source.Element { + let sink = DebugSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Decode.swift b/Pods/RxSwift/RxSwift/Observables/Decode.swift new file mode 100644 index 00000000..8bc73425 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Decode.swift @@ -0,0 +1,34 @@ +// +// Decode.swift +// RxSwift +// +// Created by Shai Mishali on 24/07/2020. +// Copyright © 2020 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +public extension ObservableType where Element == Data { + /// Attempt to decode the emitted `Data` using a provided decoder. + /// + /// - parameter type: A `Decodable`-conforming type to attempt to decode to + /// - parameter decoder: A capable decoder, e.g. `JSONDecoder` or `PropertyListDecoder` + /// + /// - note: If using a custom decoder, it must conform to the `DataDecoder` protocol. + /// + /// - returns: An `Observable` of the decoded type + func decode(type: Item.Type, + decoder: Decoder) -> Observable { + map { try decoder.decode(type, from: $0) } + } +} + +/// Represents an entity capable of decoding raw `Data` +/// into a concrete `Decodable` type +public protocol DataDecoder { + func decode(_ type: Item.Type, from data: Data) throws -> Item +} + +extension JSONDecoder: DataDecoder {} +extension PropertyListDecoder: DataDecoder {} diff --git a/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift b/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift new file mode 100644 index 00000000..8d133d8f --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift @@ -0,0 +1,66 @@ +// +// DefaultIfEmpty.swift +// RxSwift +// +// Created by sergdort on 23/12/2016. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Emits elements from the source observable sequence, or a default element if the source observable sequence is empty. + + - seealso: [DefaultIfEmpty operator on reactivex.io](http://reactivex.io/documentation/operators/defaultifempty.html) + + - parameter default: Default element to be sent if the source does not emit any elements + - returns: An observable sequence which emits default element end completes in case the original sequence is empty + */ + public func ifEmpty(default: Element) -> Observable { + DefaultIfEmpty(source: self.asObservable(), default: `default`) + } +} + +final private class DefaultIfEmptySink: Sink, ObserverType { + typealias Element = Observer.Element + private let `default`: Element + private var isEmpty = true + + init(default: Element, observer: Observer, cancel: Cancelable) { + self.default = `default` + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next: + self.isEmpty = false + self.forwardOn(event) + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + if self.isEmpty { + self.forwardOn(.next(self.default)) + } + self.forwardOn(.completed) + self.dispose() + } + } +} + +final private class DefaultIfEmpty: Producer { + private let source: Observable + private let `default`: SourceType + + init(source: Observable, `default`: SourceType) { + self.source = source + self.default = `default` + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == SourceType { + let sink = DefaultIfEmptySink(default: self.default, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Deferred.swift b/Pods/RxSwift/RxSwift/Observables/Deferred.swift new file mode 100644 index 00000000..b81cb166 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Deferred.swift @@ -0,0 +1,75 @@ +// +// Deferred.swift +// RxSwift +// +// Created by Krunoslav Zaher on 4/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Returns an observable sequence that invokes the specified factory function whenever a new observer subscribes. + + - seealso: [defer operator on reactivex.io](http://reactivex.io/documentation/operators/defer.html) + + - parameter observableFactory: Observable factory function to invoke for each observer that subscribes to the resulting sequence. + - returns: An observable sequence whose observers trigger an invocation of the given observable factory function. + */ + public static func deferred(_ observableFactory: @escaping () throws -> Observable) + -> Observable { + Deferred(observableFactory: observableFactory) + } +} + +final private class DeferredSink: Sink, ObserverType where Source.Element == Observer.Element { + typealias Element = Observer.Element + + private let observableFactory: () throws -> Source + + init(observableFactory: @escaping () throws -> Source, observer: Observer, cancel: Cancelable) { + self.observableFactory = observableFactory + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + do { + let result = try self.observableFactory() + return result.subscribe(self) + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + return Disposables.create() + } + } + + func on(_ event: Event) { + self.forwardOn(event) + + switch event { + case .next: + break + case .error: + self.dispose() + case .completed: + self.dispose() + } + } +} + +final private class Deferred: Producer { + typealias Factory = () throws -> Source + + private let observableFactory : Factory + + init(observableFactory: @escaping Factory) { + self.observableFactory = observableFactory + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) + where Observer.Element == Source.Element { + let sink = DeferredSink(observableFactory: self.observableFactory, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Delay.swift b/Pods/RxSwift/RxSwift/Observables/Delay.swift new file mode 100644 index 00000000..9f71c32d --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Delay.swift @@ -0,0 +1,174 @@ +// +// Delay.swift +// RxSwift +// +// Created by tarunon on 2016/02/09. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +extension ObservableType { + + /** + Returns an observable sequence by the source observable sequence shifted forward in time by a specified delay. Error events from the source observable sequence are not delayed. + + - seealso: [delay operator on reactivex.io](http://reactivex.io/documentation/operators/delay.html) + + - parameter dueTime: Relative time shift of the source by. + - parameter scheduler: Scheduler to run the subscription delay timer on. + - returns: the source Observable shifted in time by the specified delay. + */ + public func delay(_ dueTime: RxTimeInterval, scheduler: SchedulerType) + -> Observable { + return Delay(source: self.asObservable(), dueTime: dueTime, scheduler: scheduler) + } +} + +final private class DelaySink + : Sink + , ObserverType { + typealias Element = Observer.Element + typealias Source = Observable + typealias DisposeKey = Bag.KeyType + + private let lock = RecursiveLock() + + private let dueTime: RxTimeInterval + private let scheduler: SchedulerType + + private let sourceSubscription = SingleAssignmentDisposable() + private let cancelable = SerialDisposable() + + // is scheduled some action + private var active = false + // is "run loop" on different scheduler running + private var running = false + private var errorEvent: Event? + + // state + private var queue = Queue<(eventTime: RxTime, event: Event)>(capacity: 0) + + init(observer: Observer, dueTime: RxTimeInterval, scheduler: SchedulerType, cancel: Cancelable) { + self.dueTime = dueTime + self.scheduler = scheduler + super.init(observer: observer, cancel: cancel) + } + + // All of these complications in this method are caused by the fact that + // error should be propagated immediately. Error can be potentially received on different + // scheduler so this process needs to be synchronized somehow. + // + // Another complication is that scheduler is potentially concurrent so internal queue is used. + func drainQueue(state: (), scheduler: AnyRecursiveScheduler<()>) { + self.lock.lock() + let hasFailed = self.errorEvent != nil + if !hasFailed { + self.running = true + } + self.lock.unlock() + + if hasFailed { + return + } + + var ranAtLeastOnce = false + + while true { + self.lock.lock() + let errorEvent = self.errorEvent + + let eventToForwardImmediately = ranAtLeastOnce ? nil : self.queue.dequeue()?.event + let nextEventToScheduleOriginalTime: Date? = ranAtLeastOnce && !self.queue.isEmpty ? self.queue.peek().eventTime : nil + + if errorEvent == nil { + if eventToForwardImmediately != nil { + } + else if nextEventToScheduleOriginalTime != nil { + self.running = false + } + else { + self.running = false + self.active = false + } + } + self.lock.unlock() + + if let errorEvent = errorEvent { + self.forwardOn(errorEvent) + self.dispose() + return + } + else { + if let eventToForwardImmediately = eventToForwardImmediately { + ranAtLeastOnce = true + self.forwardOn(eventToForwardImmediately) + if case .completed = eventToForwardImmediately { + self.dispose() + return + } + } + else if let nextEventToScheduleOriginalTime = nextEventToScheduleOriginalTime { + scheduler.schedule((), dueTime: self.dueTime.reduceWithSpanBetween(earlierDate: nextEventToScheduleOriginalTime, laterDate: self.scheduler.now)) + return + } + else { + return + } + } + } + } + + func on(_ event: Event) { + if event.isStopEvent { + self.sourceSubscription.dispose() + } + + switch event { + case .error: + self.lock.lock() + let shouldSendImmediately = !self.running + self.queue = Queue(capacity: 0) + self.errorEvent = event + self.lock.unlock() + + if shouldSendImmediately { + self.forwardOn(event) + self.dispose() + } + default: + self.lock.lock() + let shouldSchedule = !self.active + self.active = true + self.queue.enqueue((self.scheduler.now, event)) + self.lock.unlock() + + if shouldSchedule { + self.cancelable.disposable = self.scheduler.scheduleRecursive((), dueTime: self.dueTime, action: self.drainQueue) + } + } + } + + func run(source: Observable) -> Disposable { + self.sourceSubscription.setDisposable(source.subscribe(self)) + return Disposables.create(sourceSubscription, cancelable) + } +} + +final private class Delay: Producer { + private let source: Observable + private let dueTime: RxTimeInterval + private let scheduler: SchedulerType + + init(source: Observable, dueTime: RxTimeInterval, scheduler: SchedulerType) { + self.source = source + self.dueTime = dueTime + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = DelaySink(observer: observer, dueTime: self.dueTime, scheduler: self.scheduler, cancel: cancel) + let subscription = sink.run(source: self.source) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift b/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift new file mode 100644 index 00000000..fd8c4951 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift @@ -0,0 +1,58 @@ +// +// DelaySubscription.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Time shifts the observable sequence by delaying the subscription with the specified relative time duration, using the specified scheduler to run timers. + + - seealso: [delay operator on reactivex.io](http://reactivex.io/documentation/operators/delay.html) + + - parameter dueTime: Relative time shift of the subscription. + - parameter scheduler: Scheduler to run the subscription delay timer on. + - returns: Time-shifted sequence. + */ + public func delaySubscription(_ dueTime: RxTimeInterval, scheduler: SchedulerType) + -> Observable { + DelaySubscription(source: self.asObservable(), dueTime: dueTime, scheduler: scheduler) + } +} + +final private class DelaySubscriptionSink + : Sink, ObserverType { + typealias Element = Observer.Element + + func on(_ event: Event) { + self.forwardOn(event) + if event.isStopEvent { + self.dispose() + } + } + +} + +final private class DelaySubscription: Producer { + private let source: Observable + private let dueTime: RxTimeInterval + private let scheduler: SchedulerType + + init(source: Observable, dueTime: RxTimeInterval, scheduler: SchedulerType) { + self.source = source + self.dueTime = dueTime + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = DelaySubscriptionSink(observer: observer, cancel: cancel) + let subscription = self.scheduler.scheduleRelative((), dueTime: self.dueTime) { _ in + return self.source.subscribe(sink) + } + + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift b/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift new file mode 100644 index 00000000..2ccd5462 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift @@ -0,0 +1,51 @@ +// +// Dematerialize.swift +// RxSwift +// +// Created by Jamie Pinkham on 3/13/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType where Element: EventConvertible { + /** + Convert any previously materialized Observable into it's original form. + - seealso: [materialize operator on reactivex.io](http://reactivex.io/documentation/operators/materialize-dematerialize.html) + - returns: The dematerialized observable sequence. + */ + public func dematerialize() -> Observable { + Dematerialize(source: self.asObservable()) + } + +} + +private final class DematerializeSink: Sink, ObserverType where Observer.Element == T.Element { + fileprivate func on(_ event: Event) { + switch event { + case .next(let element): + self.forwardOn(element.event) + if element.event.isStopEvent { + self.dispose() + } + case .completed: + self.forwardOn(.completed) + self.dispose() + case .error(let error): + self.forwardOn(.error(error)) + self.dispose() + } + } +} + +final private class Dematerialize: Producer { + private let source: Observable + + init(source: Observable) { + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == T.Element { + let sink = DematerializeSink(observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift b/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift new file mode 100644 index 00000000..c127b5aa --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift @@ -0,0 +1,137 @@ +// +// DistinctUntilChanged.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType where Element: Equatable { + + /** + Returns an observable sequence that contains only distinct contiguous elements according to equality operator. + + - seealso: [distinct operator on reactivex.io](http://reactivex.io/documentation/operators/distinct.html) + + - returns: An observable sequence only containing the distinct contiguous elements, based on equality operator, from the source sequence. + */ + public func distinctUntilChanged() + -> Observable { + self.distinctUntilChanged({ $0 }, comparer: { ($0 == $1) }) + } +} + +extension ObservableType { + /** + Returns an observable sequence that contains only distinct contiguous elements according to the `keySelector`. + + - seealso: [distinct operator on reactivex.io](http://reactivex.io/documentation/operators/distinct.html) + + - parameter keySelector: A function to compute the comparison key for each element. + - returns: An observable sequence only containing the distinct contiguous elements, based on a computed key value, from the source sequence. + */ + public func distinctUntilChanged(_ keySelector: @escaping (Element) throws -> Key) + -> Observable { + self.distinctUntilChanged(keySelector, comparer: { $0 == $1 }) + } + + /** + Returns an observable sequence that contains only distinct contiguous elements according to the `comparer`. + + - seealso: [distinct operator on reactivex.io](http://reactivex.io/documentation/operators/distinct.html) + + - parameter comparer: Equality comparer for computed key values. + - returns: An observable sequence only containing the distinct contiguous elements, based on `comparer`, from the source sequence. + */ + public func distinctUntilChanged(_ comparer: @escaping (Element, Element) throws -> Bool) + -> Observable { + self.distinctUntilChanged({ $0 }, comparer: comparer) + } + + /** + Returns an observable sequence that contains only distinct contiguous elements according to the keySelector and the comparer. + + - seealso: [distinct operator on reactivex.io](http://reactivex.io/documentation/operators/distinct.html) + + - parameter keySelector: A function to compute the comparison key for each element. + - parameter comparer: Equality comparer for computed key values. + - returns: An observable sequence only containing the distinct contiguous elements, based on a computed key value and the comparer, from the source sequence. + */ + public func distinctUntilChanged(_ keySelector: @escaping (Element) throws -> K, comparer: @escaping (K, K) throws -> Bool) + -> Observable { + return DistinctUntilChanged(source: self.asObservable(), selector: keySelector, comparer: comparer) + } + + /** + Returns an observable sequence that contains only contiguous elements with distinct values in the provided key path on each object. + + - seealso: [distinct operator on reactivex.io](http://reactivex.io/documentation/operators/distinct.html) + + - returns: An observable sequence only containing the distinct contiguous elements, based on equality operator on the provided key path + */ + public func distinctUntilChanged(at keyPath: KeyPath) -> + Observable { + self.distinctUntilChanged { $0[keyPath: keyPath] == $1[keyPath: keyPath] } + } +} + +final private class DistinctUntilChangedSink: Sink, ObserverType { + typealias Element = Observer.Element + + private let parent: DistinctUntilChanged + private var currentKey: Key? + + init(parent: DistinctUntilChanged, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + do { + let key = try self.parent.selector(value) + var areEqual = false + if let currentKey = self.currentKey { + areEqual = try self.parent.comparer(currentKey, key) + } + + if areEqual { + return + } + + self.currentKey = key + + self.forwardOn(event) + } + catch let error { + self.forwardOn(.error(error)) + self.dispose() + } + case .error, .completed: + self.forwardOn(event) + self.dispose() + } + } +} + +final private class DistinctUntilChanged: Producer { + typealias KeySelector = (Element) throws -> Key + typealias EqualityComparer = (Key, Key) throws -> Bool + + private let source: Observable + fileprivate let selector: KeySelector + fileprivate let comparer: EqualityComparer + + init(source: Observable, selector: @escaping KeySelector, comparer: @escaping EqualityComparer) { + self.source = source + self.selector = selector + self.comparer = comparer + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = DistinctUntilChangedSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Do.swift b/Pods/RxSwift/RxSwift/Observables/Do.swift new file mode 100644 index 00000000..3c8c68b3 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Do.swift @@ -0,0 +1,112 @@ +// +// Do.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Invokes an action for each event in the observable sequence, and propagates all observer messages through the result sequence. + + - seealso: [do operator on reactivex.io](http://reactivex.io/documentation/operators/do.html) + + - parameter onNext: Action to invoke for each element in the observable sequence. + - parameter afterNext: Action to invoke for each element after the observable has passed an onNext event along to its downstream. + - parameter onError: Action to invoke upon errored termination of the observable sequence. + - parameter afterError: Action to invoke after errored termination of the observable sequence. + - parameter onCompleted: Action to invoke upon graceful termination of the observable sequence. + - parameter afterCompleted: Action to invoke after graceful termination of the observable sequence. + - parameter onSubscribe: Action to invoke before subscribing to source observable sequence. + - parameter onSubscribed: Action to invoke after subscribing to source observable sequence. + - parameter onDispose: Action to invoke after subscription to source observable has been disposed for any reason. It can be either because sequence terminates for some reason or observer subscription being disposed. + - returns: The source sequence with the side-effecting behavior applied. + */ + public func `do`(onNext: ((Element) throws -> Void)? = nil, afterNext: ((Element) throws -> Void)? = nil, onError: ((Swift.Error) throws -> Void)? = nil, afterError: ((Swift.Error) throws -> Void)? = nil, onCompleted: (() throws -> Void)? = nil, afterCompleted: (() throws -> Void)? = nil, onSubscribe: (() -> Void)? = nil, onSubscribed: (() -> Void)? = nil, onDispose: (() -> Void)? = nil) + -> Observable { + return Do(source: self.asObservable(), eventHandler: { e in + switch e { + case .next(let element): + try onNext?(element) + case .error(let e): + try onError?(e) + case .completed: + try onCompleted?() + } + }, afterEventHandler: { e in + switch e { + case .next(let element): + try afterNext?(element) + case .error(let e): + try afterError?(e) + case .completed: + try afterCompleted?() + } + }, onSubscribe: onSubscribe, onSubscribed: onSubscribed, onDispose: onDispose) + } +} + +final private class DoSink: Sink, ObserverType { + typealias Element = Observer.Element + typealias EventHandler = (Event) throws -> Void + typealias AfterEventHandler = (Event) throws -> Void + + private let eventHandler: EventHandler + private let afterEventHandler: AfterEventHandler + + init(eventHandler: @escaping EventHandler, afterEventHandler: @escaping AfterEventHandler, observer: Observer, cancel: Cancelable) { + self.eventHandler = eventHandler + self.afterEventHandler = afterEventHandler + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + do { + try self.eventHandler(event) + self.forwardOn(event) + try self.afterEventHandler(event) + if event.isStopEvent { + self.dispose() + } + } + catch let error { + self.forwardOn(.error(error)) + self.dispose() + } + } +} + +final private class Do: Producer { + typealias EventHandler = (Event) throws -> Void + typealias AfterEventHandler = (Event) throws -> Void + + private let source: Observable + private let eventHandler: EventHandler + private let afterEventHandler: AfterEventHandler + private let onSubscribe: (() -> Void)? + private let onSubscribed: (() -> Void)? + private let onDispose: (() -> Void)? + + init(source: Observable, eventHandler: @escaping EventHandler, afterEventHandler: @escaping AfterEventHandler, onSubscribe: (() -> Void)?, onSubscribed: (() -> Void)?, onDispose: (() -> Void)?) { + self.source = source + self.eventHandler = eventHandler + self.afterEventHandler = afterEventHandler + self.onSubscribe = onSubscribe + self.onSubscribed = onSubscribed + self.onDispose = onDispose + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + self.onSubscribe?() + let sink = DoSink(eventHandler: self.eventHandler, afterEventHandler: self.afterEventHandler, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + self.onSubscribed?() + let onDispose = self.onDispose + let allSubscriptions = Disposables.create { + subscription.dispose() + onDispose?() + } + return (sink: sink, subscription: allSubscriptions) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/ElementAt.swift b/Pods/RxSwift/RxSwift/Observables/ElementAt.swift new file mode 100644 index 00000000..3f09c708 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/ElementAt.swift @@ -0,0 +1,105 @@ +// +// ElementAt.swift +// RxSwift +// +// Created by Junior B. on 21/10/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Returns a sequence emitting only element _n_ emitted by an Observable + + - seealso: [elementAt operator on reactivex.io](http://reactivex.io/documentation/operators/elementat.html) + + - parameter index: The index of the required element (starting from 0). + - returns: An observable sequence that emits the desired element as its own sole emission. + */ + @available(*, deprecated, renamed: "element(at:)") + public func elementAt(_ index: Int) + -> Observable { + element(at: index) + } + + /** + Returns a sequence emitting only element _n_ emitted by an Observable + + - seealso: [elementAt operator on reactivex.io](http://reactivex.io/documentation/operators/elementat.html) + + - parameter index: The index of the required element (starting from 0). + - returns: An observable sequence that emits the desired element as its own sole emission. + */ + public func element(at index: Int) + -> Observable { + ElementAt(source: self.asObservable(), index: index, throwOnEmpty: true) + } +} + +final private class ElementAtSink: Sink, ObserverType { + typealias SourceType = Observer.Element + typealias Parent = ElementAt + + let parent: Parent + var i: Int + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.i = parent.index + + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next: + + if self.i == 0 { + self.forwardOn(event) + self.forwardOn(.completed) + self.dispose() + } + + do { + _ = try decrementChecked(&self.i) + } catch let e { + self.forwardOn(.error(e)) + self.dispose() + return + } + + case .error(let e): + self.forwardOn(.error(e)) + self.dispose() + case .completed: + if self.parent.throwOnEmpty { + self.forwardOn(.error(RxError.argumentOutOfRange)) + } else { + self.forwardOn(.completed) + } + + self.dispose() + } + } +} + +final private class ElementAt: Producer { + let source: Observable + let throwOnEmpty: Bool + let index: Int + + init(source: Observable, index: Int, throwOnEmpty: Bool) { + if index < 0 { + rxFatalError("index can't be negative") + } + + self.source = source + self.index = index + self.throwOnEmpty = throwOnEmpty + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == SourceType { + let sink = ElementAtSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Empty.swift b/Pods/RxSwift/RxSwift/Observables/Empty.swift new file mode 100644 index 00000000..9ca59659 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Empty.swift @@ -0,0 +1,27 @@ +// +// Empty.swift +// RxSwift +// +// Created by Krunoslav Zaher on 8/30/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Returns an empty observable sequence, using the specified scheduler to send out the single `Completed` message. + + - seealso: [empty operator on reactivex.io](http://reactivex.io/documentation/operators/empty-never-throw.html) + + - returns: An observable sequence with no elements. + */ + public static func empty() -> Observable { + EmptyProducer() + } +} + +final private class EmptyProducer: Producer { + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + observer.on(.completed) + return Disposables.create() + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Enumerated.swift b/Pods/RxSwift/RxSwift/Observables/Enumerated.swift new file mode 100644 index 00000000..ef8a0ff0 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Enumerated.swift @@ -0,0 +1,61 @@ +// +// Enumerated.swift +// RxSwift +// +// Created by Krunoslav Zaher on 8/6/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Enumerates the elements of an observable sequence. + + - seealso: [map operator on reactivex.io](http://reactivex.io/documentation/operators/map.html) + + - returns: An observable sequence that contains tuples of source sequence elements and their indexes. + */ + public func enumerated() + -> Observable<(index: Int, element: Element)> { + Enumerated(source: self.asObservable()) + } +} + +final private class EnumeratedSink: Sink, ObserverType where Observer.Element == (index: Int, element: Element) { + var index = 0 + + func on(_ event: Event) { + switch event { + case .next(let value): + do { + let nextIndex = try incrementChecked(&self.index) + let next = (index: nextIndex, element: value) + self.forwardOn(.next(next)) + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + } + case .completed: + self.forwardOn(.completed) + self.dispose() + case .error(let error): + self.forwardOn(.error(error)) + self.dispose() + } + } +} + +final private class Enumerated: Producer<(index: Int, element: Element)> { + private let source: Observable + + init(source: Observable) { + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == (index: Int, element: Element) { + let sink = EnumeratedSink(observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Error.swift b/Pods/RxSwift/RxSwift/Observables/Error.swift new file mode 100644 index 00000000..2e722d67 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Error.swift @@ -0,0 +1,33 @@ +// +// Error.swift +// RxSwift +// +// Created by Krunoslav Zaher on 8/30/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Returns an observable sequence that terminates with an `error`. + + - seealso: [throw operator on reactivex.io](http://reactivex.io/documentation/operators/empty-never-throw.html) + + - returns: The observable sequence that terminates with specified error. + */ + public static func error(_ error: Swift.Error) -> Observable { + ErrorProducer(error: error) + } +} + +final private class ErrorProducer: Producer { + private let error: Swift.Error + + init(error: Swift.Error) { + self.error = error + } + + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + observer.on(.error(self.error)) + return Disposables.create() + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Filter.swift b/Pods/RxSwift/RxSwift/Observables/Filter.swift new file mode 100644 index 00000000..61d3ce79 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Filter.swift @@ -0,0 +1,86 @@ +// +// Filter.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/17/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Filters the elements of an observable sequence based on a predicate. + + - seealso: [filter operator on reactivex.io](http://reactivex.io/documentation/operators/filter.html) + + - parameter predicate: A function to test each source element for a condition. + - returns: An observable sequence that contains elements from the input sequence that satisfy the condition. + */ + public func filter(_ predicate: @escaping (Element) throws -> Bool) + -> Observable { + Filter(source: self.asObservable(), predicate: predicate) + } +} + +extension ObservableType { + /** + Skips elements and completes (or errors) when the observable sequence completes (or errors). Equivalent to filter that always returns false. + + - seealso: [ignoreElements operator on reactivex.io](http://reactivex.io/documentation/operators/ignoreelements.html) + + - returns: An observable sequence that skips all elements of the source sequence. + */ + public func ignoreElements() + -> Observable { + self.flatMap { _ in Observable.empty() } + } +} + +final private class FilterSink: Sink, ObserverType { + typealias Predicate = (Element) throws -> Bool + typealias Element = Observer.Element + + private let predicate: Predicate + + init(predicate: @escaping Predicate, observer: Observer, cancel: Cancelable) { + self.predicate = predicate + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + do { + let satisfies = try self.predicate(value) + if satisfies { + self.forwardOn(.next(value)) + } + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + } + case .completed, .error: + self.forwardOn(event) + self.dispose() + } + } +} + +final private class Filter: Producer { + typealias Predicate = (Element) throws -> Bool + + private let source: Observable + private let predicate: Predicate + + init(source: Observable, predicate: @escaping Predicate) { + self.source = source + self.predicate = predicate + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = FilterSink(predicate: self.predicate, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/First.swift b/Pods/RxSwift/RxSwift/Observables/First.swift new file mode 100644 index 00000000..00141148 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/First.swift @@ -0,0 +1,41 @@ +// +// First.swift +// RxSwift +// +// Created by Krunoslav Zaher on 7/31/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +private final class FirstSink : Sink, ObserverType where Observer.Element == Element? { + typealias Parent = First + + func on(_ event: Event) { + switch event { + case .next(let value): + self.forwardOn(.next(value)) + self.forwardOn(.completed) + self.dispose() + case .error(let error): + self.forwardOn(.error(error)) + self.dispose() + case .completed: + self.forwardOn(.next(nil)) + self.forwardOn(.completed) + self.dispose() + } + } +} + +final class First: Producer { + private let source: Observable + + init(source: Observable) { + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element? { + let sink = FirstSink(observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Generate.swift b/Pods/RxSwift/RxSwift/Observables/Generate.swift new file mode 100644 index 00000000..7b924b38 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Generate.swift @@ -0,0 +1,87 @@ +// +// Generate.swift +// RxSwift +// +// Created by Krunoslav Zaher on 9/2/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler + to run the loop send out observer messages. + + - seealso: [create operator on reactivex.io](http://reactivex.io/documentation/operators/create.html) + + - parameter initialState: Initial state. + - parameter condition: Condition to terminate generation (upon returning `false`). + - parameter iterate: Iteration step function. + - parameter scheduler: Scheduler on which to run the generator loop. + - returns: The generated sequence. + */ + public static func generate(initialState: Element, condition: @escaping (Element) throws -> Bool, scheduler: ImmediateSchedulerType = CurrentThreadScheduler.instance, iterate: @escaping (Element) throws -> Element) -> Observable { + Generate(initialState: initialState, condition: condition, iterate: iterate, resultSelector: { $0 }, scheduler: scheduler) + } +} + +final private class GenerateSink: Sink { + typealias Parent = Generate + + private let parent: Parent + + private var state: Sequence + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.state = parent.initialState + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + return self.parent.scheduler.scheduleRecursive(true) { isFirst, recurse -> Void in + do { + if !isFirst { + self.state = try self.parent.iterate(self.state) + } + + if try self.parent.condition(self.state) { + let result = try self.parent.resultSelector(self.state) + self.forwardOn(.next(result)) + + recurse(false) + } + else { + self.forwardOn(.completed) + self.dispose() + } + } + catch let error { + self.forwardOn(.error(error)) + self.dispose() + } + } + } +} + +final private class Generate: Producer { + fileprivate let initialState: Sequence + fileprivate let condition: (Sequence) throws -> Bool + fileprivate let iterate: (Sequence) throws -> Sequence + fileprivate let resultSelector: (Sequence) throws -> Element + fileprivate let scheduler: ImmediateSchedulerType + + init(initialState: Sequence, condition: @escaping (Sequence) throws -> Bool, iterate: @escaping (Sequence) throws -> Sequence, resultSelector: @escaping (Sequence) throws -> Element, scheduler: ImmediateSchedulerType) { + self.initialState = initialState + self.condition = condition + self.iterate = iterate + self.resultSelector = resultSelector + self.scheduler = scheduler + super.init() + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = GenerateSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/GroupBy.swift b/Pods/RxSwift/RxSwift/Observables/GroupBy.swift new file mode 100644 index 00000000..88cbda76 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/GroupBy.swift @@ -0,0 +1,133 @@ +// +// GroupBy.swift +// RxSwift +// +// Created by Tomi Koskinen on 01/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /* + Groups the elements of an observable sequence according to a specified key selector function. + + - seealso: [groupBy operator on reactivex.io](http://reactivex.io/documentation/operators/groupby.html) + + - parameter keySelector: A function to extract the key for each element. + - returns: A sequence of observable groups, each of which corresponds to a unique key value, containing all elements that share that same key value. + */ + public func groupBy(keySelector: @escaping (Element) throws -> Key) + -> Observable> { + GroupBy(source: self.asObservable(), selector: keySelector) + } +} + +final private class GroupedObservableImpl: Observable { + private var subject: PublishSubject + private var refCount: RefCountDisposable + + init(subject: PublishSubject, refCount: RefCountDisposable) { + self.subject = subject + self.refCount = refCount + } + + override public func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + let release = self.refCount.retain() + let subscription = self.subject.subscribe(observer) + return Disposables.create(release, subscription) + } +} + + +final private class GroupBySink + : Sink + , ObserverType where Observer.Element == GroupedObservable { + typealias ResultType = Observer.Element + typealias Parent = GroupBy + + private let parent: Parent + private let subscription = SingleAssignmentDisposable() + private var refCountDisposable: RefCountDisposable! + private var groupedSubjectTable: [Key: PublishSubject] + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.groupedSubjectTable = [Key: PublishSubject]() + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + self.refCountDisposable = RefCountDisposable(disposable: self.subscription) + + self.subscription.setDisposable(self.parent.source.subscribe(self)) + + return self.refCountDisposable + } + + private func onGroupEvent(key: Key, value: Element) { + if let writer = self.groupedSubjectTable[key] { + writer.on(.next(value)) + } else { + let writer = PublishSubject() + self.groupedSubjectTable[key] = writer + + let group = GroupedObservable( + key: key, + source: GroupedObservableImpl(subject: writer, refCount: refCountDisposable) + ) + + self.forwardOn(.next(group)) + writer.on(.next(value)) + } + } + + final func on(_ event: Event) { + switch event { + case let .next(value): + do { + let groupKey = try self.parent.selector(value) + self.onGroupEvent(key: groupKey, value: value) + } + catch let e { + self.error(e) + return + } + case let .error(e): + self.error(e) + case .completed: + self.forwardOnGroups(event: .completed) + self.forwardOn(.completed) + self.subscription.dispose() + self.dispose() + } + } + + final func error(_ error: Swift.Error) { + self.forwardOnGroups(event: .error(error)) + self.forwardOn(.error(error)) + self.subscription.dispose() + self.dispose() + } + + final func forwardOnGroups(event: Event) { + for writer in self.groupedSubjectTable.values { + writer.on(event) + } + } +} + +final private class GroupBy: Producer> { + typealias KeySelector = (Element) throws -> Key + + fileprivate let source: Observable + fileprivate let selector: KeySelector + + init(source: Observable, selector: @escaping KeySelector) { + self.source = source + self.selector = selector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == GroupedObservable { + let sink = GroupBySink(parent: self, observer: observer, cancel: cancel) + return (sink: sink, subscription: sink.run()) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Just.swift b/Pods/RxSwift/RxSwift/Observables/Just.swift new file mode 100644 index 00000000..93490837 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Just.swift @@ -0,0 +1,87 @@ +// +// Just.swift +// RxSwift +// +// Created by Krunoslav Zaher on 8/30/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Returns an observable sequence that contains a single element. + + - seealso: [just operator on reactivex.io](http://reactivex.io/documentation/operators/just.html) + + - parameter element: Single element in the resulting observable sequence. + - returns: An observable sequence containing the single specified element. + */ + public static func just(_ element: Element) -> Observable { + Just(element: element) + } + + /** + Returns an observable sequence that contains a single element. + + - seealso: [just operator on reactivex.io](http://reactivex.io/documentation/operators/just.html) + + - parameter element: Single element in the resulting observable sequence. + - parameter scheduler: Scheduler to send the single element on. + - returns: An observable sequence containing the single specified element. + */ + public static func just(_ element: Element, scheduler: ImmediateSchedulerType) -> Observable { + JustScheduled(element: element, scheduler: scheduler) + } +} + +final private class JustScheduledSink: Sink { + typealias Parent = JustScheduled + + private let parent: Parent + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let scheduler = self.parent.scheduler + return scheduler.schedule(self.parent.element) { element in + self.forwardOn(.next(element)) + return scheduler.schedule(()) { _ in + self.forwardOn(.completed) + self.dispose() + return Disposables.create() + } + } + } +} + +final private class JustScheduled: Producer { + fileprivate let scheduler: ImmediateSchedulerType + fileprivate let element: Element + + init(element: Element, scheduler: ImmediateSchedulerType) { + self.scheduler = scheduler + self.element = element + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = JustScheduledSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + +final private class Just: Producer { + private let element: Element + + init(element: Element) { + self.element = element + } + + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + observer.on(.next(self.element)) + observer.on(.completed) + return Disposables.create() + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Map.swift b/Pods/RxSwift/RxSwift/Observables/Map.swift new file mode 100644 index 00000000..69379443 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Map.swift @@ -0,0 +1,76 @@ +// +// Map.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Projects each element of an observable sequence into a new form. + + - seealso: [map operator on reactivex.io](http://reactivex.io/documentation/operators/map.html) + + - parameter transform: A transform function to apply to each source element. + - returns: An observable sequence whose elements are the result of invoking the transform function on each element of source. + + */ + public func map(_ transform: @escaping (Element) throws -> Result) + -> Observable { + Map(source: self.asObservable(), transform: transform) + } +} + +final private class MapSink: Sink, ObserverType { + typealias Transform = (SourceType) throws -> ResultType + + typealias ResultType = Observer.Element + + private let transform: Transform + + init(transform: @escaping Transform, observer: Observer, cancel: Cancelable) { + self.transform = transform + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let element): + do { + let mappedElement = try self.transform(element) + self.forwardOn(.next(mappedElement)) + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + } + case .error(let error): + self.forwardOn(.error(error)) + self.dispose() + case .completed: + self.forwardOn(.completed) + self.dispose() + } + } +} + +final private class Map: Producer { + typealias Transform = (SourceType) throws -> ResultType + + private let source: Observable + + private let transform: Transform + + init(source: Observable, transform: @escaping Transform) { + self.source = source + self.transform = transform + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == ResultType { + let sink = MapSink(transform: self.transform, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Materialize.swift b/Pods/RxSwift/RxSwift/Observables/Materialize.swift new file mode 100644 index 00000000..e2577be5 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Materialize.swift @@ -0,0 +1,44 @@ +// +// Materialize.swift +// RxSwift +// +// Created by sergdort on 08/03/2017. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Convert any Observable into an Observable of its events. + - seealso: [materialize operator on reactivex.io](http://reactivex.io/documentation/operators/materialize-dematerialize.html) + - returns: An observable sequence that wraps events in an Event. The returned Observable never errors, but it does complete after observing all of the events of the underlying Observable. + */ + public func materialize() -> Observable> { + Materialize(source: self.asObservable()) + } +} + +private final class MaterializeSink: Sink, ObserverType where Observer.Element == Event { + + func on(_ event: Event) { + self.forwardOn(.next(event)) + if event.isStopEvent { + self.forwardOn(.completed) + self.dispose() + } + } +} + +final private class Materialize: Producer> { + private let source: Observable + + init(source: Observable) { + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = MaterializeSink(observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Merge.swift b/Pods/RxSwift/RxSwift/Observables/Merge.swift new file mode 100644 index 00000000..51a64629 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Merge.swift @@ -0,0 +1,600 @@ +// +// Merge.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. + + - seealso: [flatMap operator on reactivex.io](http://reactivex.io/documentation/operators/flatmap.html) + + - parameter selector: A transform function to apply to each element. + - returns: An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence. + */ + public func flatMap(_ selector: @escaping (Element) throws -> Source) + -> Observable { + return FlatMap(source: self.asObservable(), selector: selector) + } + +} + +extension ObservableType { + + /** + Projects each element of an observable sequence to an observable sequence and merges the resulting observable sequences into one observable sequence. + If element is received while there is some projected observable sequence being merged it will simply be ignored. + + - seealso: [flatMapFirst operator on reactivex.io](http://reactivex.io/documentation/operators/flatmap.html) + + - parameter selector: A transform function to apply to element that was observed while no observable is executing in parallel. + - returns: An observable sequence whose elements are the result of invoking the one-to-many transform function on each element of the input sequence that was received while no other sequence was being calculated. + */ + public func flatMapFirst(_ selector: @escaping (Element) throws -> Source) + -> Observable { + return FlatMapFirst(source: self.asObservable(), selector: selector) + } +} + +extension ObservableType where Element: ObservableConvertibleType { + + /** + Merges elements from all observable sequences in the given enumerable sequence into a single observable sequence. + + - seealso: [merge operator on reactivex.io](http://reactivex.io/documentation/operators/merge.html) + + - returns: The observable sequence that merges the elements of the observable sequences. + */ + public func merge() -> Observable { + Merge(source: self.asObservable()) + } + + /** + Merges elements from all inner observable sequences into a single observable sequence, limiting the number of concurrent subscriptions to inner sequences. + + - seealso: [merge operator on reactivex.io](http://reactivex.io/documentation/operators/merge.html) + + - parameter maxConcurrent: Maximum number of inner observable sequences being subscribed to concurrently. + - returns: The observable sequence that merges the elements of the inner sequences. + */ + public func merge(maxConcurrent: Int) + -> Observable { + MergeLimited(source: self.asObservable(), maxConcurrent: maxConcurrent) + } +} + +extension ObservableType where Element: ObservableConvertibleType { + + /** + Concatenates all inner observable sequences, as long as the previous observable sequence terminated successfully. + + - seealso: [concat operator on reactivex.io](http://reactivex.io/documentation/operators/concat.html) + + - returns: An observable sequence that contains the elements of each observed inner sequence, in sequential order. + */ + public func concat() -> Observable { + self.merge(maxConcurrent: 1) + } +} + +extension ObservableType { + /** + Merges elements from all observable sequences from collection into a single observable sequence. + + - seealso: [merge operator on reactivex.io](http://reactivex.io/documentation/operators/merge.html) + + - parameter sources: Collection of observable sequences to merge. + - returns: The observable sequence that merges the elements of the observable sequences. + */ + public static func merge(_ sources: Collection) -> Observable where Collection.Element == Observable { + MergeArray(sources: Array(sources)) + } + + /** + Merges elements from all observable sequences from array into a single observable sequence. + + - seealso: [merge operator on reactivex.io](http://reactivex.io/documentation/operators/merge.html) + + - parameter sources: Array of observable sequences to merge. + - returns: The observable sequence that merges the elements of the observable sequences. + */ + public static func merge(_ sources: [Observable]) -> Observable { + MergeArray(sources: sources) + } + + /** + Merges elements from all observable sequences into a single observable sequence. + + - seealso: [merge operator on reactivex.io](http://reactivex.io/documentation/operators/merge.html) + + - parameter sources: Collection of observable sequences to merge. + - returns: The observable sequence that merges the elements of the observable sequences. + */ + public static func merge(_ sources: Observable...) -> Observable { + MergeArray(sources: sources) + } +} + +// MARK: concatMap + +extension ObservableType { + /** + Projects each element of an observable sequence to an observable sequence and concatenates the resulting observable sequences into one observable sequence. + + - seealso: [concat operator on reactivex.io](http://reactivex.io/documentation/operators/concat.html) + + - returns: An observable sequence that contains the elements of each observed inner sequence, in sequential order. + */ + + public func concatMap(_ selector: @escaping (Element) throws -> Source) + -> Observable { + return ConcatMap(source: self.asObservable(), selector: selector) + } +} + +private final class MergeLimitedSinkIter + : ObserverType + , LockOwnerType + , SynchronizedOnType where SourceSequence.Element == Observer.Element { + typealias Element = Observer.Element + typealias DisposeKey = CompositeDisposable.DisposeKey + typealias Parent = MergeLimitedSink + + private let parent: Parent + private let disposeKey: DisposeKey + + var lock: RecursiveLock { + self.parent.lock + } + + init(parent: Parent, disposeKey: DisposeKey) { + self.parent = parent + self.disposeKey = disposeKey + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next: + self.parent.forwardOn(event) + case .error: + self.parent.forwardOn(event) + self.parent.dispose() + case .completed: + self.parent.group.remove(for: self.disposeKey) + if let next = self.parent.queue.dequeue() { + self.parent.subscribe(next, group: self.parent.group) + } + else { + self.parent.activeCount -= 1 + + if self.parent.stopped && self.parent.activeCount == 0 { + self.parent.forwardOn(.completed) + self.parent.dispose() + } + } + } + } +} + +private final class ConcatMapSink: MergeLimitedSink where Observer.Element == SourceSequence.Element { + typealias Selector = (SourceElement) throws -> SourceSequence + + private let selector: Selector + + init(selector: @escaping Selector, observer: Observer, cancel: Cancelable) { + self.selector = selector + super.init(maxConcurrent: 1, observer: observer, cancel: cancel) + } + + override func performMap(_ element: SourceElement) throws -> SourceSequence { + try self.selector(element) + } +} + +private final class MergeLimitedBasicSink: MergeLimitedSink where Observer.Element == SourceSequence.Element { + + override func performMap(_ element: SourceSequence) throws -> SourceSequence { + element + } +} + +private class MergeLimitedSink + : Sink + , ObserverType where Observer.Element == SourceSequence.Element { + typealias QueueType = Queue + + let maxConcurrent: Int + + let lock = RecursiveLock() + + // state + var stopped = false + var activeCount = 0 + var queue = QueueType(capacity: 2) + + let sourceSubscription = SingleAssignmentDisposable() + let group = CompositeDisposable() + + init(maxConcurrent: Int, observer: Observer, cancel: Cancelable) { + self.maxConcurrent = maxConcurrent + super.init(observer: observer, cancel: cancel) + } + + func run(_ source: Observable) -> Disposable { + _ = self.group.insert(self.sourceSubscription) + + let disposable = source.subscribe(self) + self.sourceSubscription.setDisposable(disposable) + return self.group + } + + func subscribe(_ innerSource: SourceSequence, group: CompositeDisposable) { + let subscription = SingleAssignmentDisposable() + + let key = group.insert(subscription) + + if let key = key { + let observer = MergeLimitedSinkIter(parent: self, disposeKey: key) + + let disposable = innerSource.asObservable().subscribe(observer) + subscription.setDisposable(disposable) + } + } + + func performMap(_ element: SourceElement) throws -> SourceSequence { + rxAbstractMethod() + } + + @inline(__always) + final private func nextElementArrived(element: SourceElement) -> SourceSequence? { + self.lock.performLocked { + let subscribe: Bool + if self.activeCount < self.maxConcurrent { + self.activeCount += 1 + subscribe = true + } + else { + do { + let value = try self.performMap(element) + self.queue.enqueue(value) + } catch { + self.forwardOn(.error(error)) + self.dispose() + } + subscribe = false + } + + if subscribe { + do { + return try self.performMap(element) + } catch { + self.forwardOn(.error(error)) + self.dispose() + } + } + + return nil + } + } + + func on(_ event: Event) { + switch event { + case .next(let element): + if let sequence = self.nextElementArrived(element: element) { + self.subscribe(sequence, group: self.group) + } + case .error(let error): + self.lock.performLocked { + self.forwardOn(.error(error)) + self.dispose() + } + case .completed: + self.lock.performLocked { + if self.activeCount == 0 { + self.forwardOn(.completed) + self.dispose() + } + else { + self.sourceSubscription.dispose() + } + + self.stopped = true + } + } + } +} + +final private class MergeLimited: Producer { + private let source: Observable + private let maxConcurrent: Int + + init(source: Observable, maxConcurrent: Int) { + self.source = source + self.maxConcurrent = maxConcurrent + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == SourceSequence.Element { + let sink = MergeLimitedBasicSink(maxConcurrent: self.maxConcurrent, observer: observer, cancel: cancel) + let subscription = sink.run(self.source) + return (sink: sink, subscription: subscription) + } +} + +// MARK: Merge + +private final class MergeBasicSink : MergeSink where Observer.Element == Source.Element { + override func performMap(_ element: Source) throws -> Source { + element + } +} + +// MARK: flatMap + +private final class FlatMapSink : MergeSink where Observer.Element == SourceSequence.Element { + typealias Selector = (SourceElement) throws -> SourceSequence + + private let selector: Selector + + init(selector: @escaping Selector, observer: Observer, cancel: Cancelable) { + self.selector = selector + super.init(observer: observer, cancel: cancel) + } + + override func performMap(_ element: SourceElement) throws -> SourceSequence { + try self.selector(element) + } +} + +// MARK: FlatMapFirst + +private final class FlatMapFirstSink : MergeSink where Observer.Element == SourceSequence.Element { + typealias Selector = (SourceElement) throws -> SourceSequence + + private let selector: Selector + + override var subscribeNext: Bool { + self.activeCount == 0 + } + + init(selector: @escaping Selector, observer: Observer, cancel: Cancelable) { + self.selector = selector + super.init(observer: observer, cancel: cancel) + } + + override func performMap(_ element: SourceElement) throws -> SourceSequence { + try self.selector(element) + } +} + +private final class MergeSinkIter : ObserverType where Observer.Element == SourceSequence.Element { + typealias Parent = MergeSink + typealias DisposeKey = CompositeDisposable.DisposeKey + typealias Element = Observer.Element + + private let parent: Parent + private let disposeKey: DisposeKey + + init(parent: Parent, disposeKey: DisposeKey) { + self.parent = parent + self.disposeKey = disposeKey + } + + func on(_ event: Event) { + self.parent.lock.performLocked { + switch event { + case .next(let value): + self.parent.forwardOn(.next(value)) + case .error(let error): + self.parent.forwardOn(.error(error)) + self.parent.dispose() + case .completed: + self.parent.group.remove(for: self.disposeKey) + self.parent.activeCount -= 1 + self.parent.checkCompleted() + } + } + } +} + + +private class MergeSink + : Sink + , ObserverType where Observer.Element == SourceSequence.Element { + typealias ResultType = Observer.Element + typealias Element = SourceElement + + let lock = RecursiveLock() + + var subscribeNext: Bool { + true + } + + // state + let group = CompositeDisposable() + let sourceSubscription = SingleAssignmentDisposable() + + var activeCount = 0 + var stopped = false + + override init(observer: Observer, cancel: Cancelable) { + super.init(observer: observer, cancel: cancel) + } + + func performMap(_ element: SourceElement) throws -> SourceSequence { + rxAbstractMethod() + } + + @inline(__always) + final private func nextElementArrived(element: SourceElement) -> SourceSequence? { + self.lock.performLocked { + if !self.subscribeNext { + return nil + } + + do { + let value = try self.performMap(element) + self.activeCount += 1 + return value + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + return nil + } + } + } + + func on(_ event: Event) { + switch event { + case .next(let element): + if let value = self.nextElementArrived(element: element) { + self.subscribeInner(value.asObservable()) + } + case .error(let error): + self.lock.performLocked { + self.forwardOn(.error(error)) + self.dispose() + } + case .completed: + self.lock.performLocked { + self.stopped = true + self.sourceSubscription.dispose() + self.checkCompleted() + } + } + } + + func subscribeInner(_ source: Observable) { + let iterDisposable = SingleAssignmentDisposable() + if let disposeKey = self.group.insert(iterDisposable) { + let iter = MergeSinkIter(parent: self, disposeKey: disposeKey) + let subscription = source.subscribe(iter) + iterDisposable.setDisposable(subscription) + } + } + + func run(_ sources: [Observable]) -> Disposable { + self.activeCount += sources.count + + for source in sources { + self.subscribeInner(source) + } + + self.stopped = true + + self.checkCompleted() + + return self.group + } + + @inline(__always) + func checkCompleted() { + if self.stopped && self.activeCount == 0 { + self.forwardOn(.completed) + self.dispose() + } + } + + func run(_ source: Observable) -> Disposable { + _ = self.group.insert(self.sourceSubscription) + + let subscription = source.subscribe(self) + self.sourceSubscription.setDisposable(subscription) + + return self.group + } +} + +// MARK: Producers + +final private class FlatMap: Producer { + typealias Selector = (SourceElement) throws -> SourceSequence + + private let source: Observable + + private let selector: Selector + + init(source: Observable, selector: @escaping Selector) { + self.source = source + self.selector = selector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == SourceSequence.Element { + let sink = FlatMapSink(selector: self.selector, observer: observer, cancel: cancel) + let subscription = sink.run(self.source) + return (sink: sink, subscription: subscription) + } +} + +final private class FlatMapFirst: Producer { + typealias Selector = (SourceElement) throws -> SourceSequence + + private let source: Observable + + private let selector: Selector + + init(source: Observable, selector: @escaping Selector) { + self.source = source + self.selector = selector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == SourceSequence.Element { + let sink = FlatMapFirstSink(selector: self.selector, observer: observer, cancel: cancel) + let subscription = sink.run(self.source) + return (sink: sink, subscription: subscription) + } +} + +final class ConcatMap: Producer { + typealias Selector = (SourceElement) throws -> SourceSequence + + private let source: Observable + private let selector: Selector + + init(source: Observable, selector: @escaping Selector) { + self.source = source + self.selector = selector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == SourceSequence.Element { + let sink = ConcatMapSink(selector: self.selector, observer: observer, cancel: cancel) + let subscription = sink.run(self.source) + return (sink: sink, subscription: subscription) + } +} + +final class Merge : Producer { + private let source: Observable + + init(source: Observable) { + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == SourceSequence.Element { + let sink = MergeBasicSink(observer: observer, cancel: cancel) + let subscription = sink.run(self.source) + return (sink: sink, subscription: subscription) + } +} + +final private class MergeArray: Producer { + private let sources: [Observable] + + init(sources: [Observable]) { + self.sources = sources + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = MergeBasicSink, Observer>(observer: observer, cancel: cancel) + let subscription = sink.run(self.sources) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Multicast.swift b/Pods/RxSwift/RxSwift/Observables/Multicast.swift new file mode 100644 index 00000000..1ebcf021 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Multicast.swift @@ -0,0 +1,405 @@ +// +// Multicast.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/27/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/** + Represents an observable wrapper that can be connected and disconnected from its underlying observable sequence. + */ +public class ConnectableObservable + : Observable + , ConnectableObservableType { + + /** + Connects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established. + + - returns: Disposable used to disconnect the observable wrapper from its source, causing subscribed observer to stop receiving values from the underlying observable sequence. + */ + public func connect() -> Disposable { + rxAbstractMethod() + } +} + +extension ObservableType { + + /** + Multicasts the source sequence notifications through an instantiated subject into all uses of the sequence within a selector function. + + Each subscription to the resulting sequence causes a separate multicast invocation, exposing the sequence resulting from the selector function's invocation. + + For specializations with fixed subject types, see `publish` and `replay`. + + - seealso: [multicast operator on reactivex.io](http://reactivex.io/documentation/operators/publish.html) + + - parameter subjectSelector: Factory function to create an intermediate subject through which the source sequence's elements will be multicast to the selector function. + - parameter selector: Selector function which can use the multicasted source sequence subject to the policies enforced by the created subject. + - returns: An observable sequence that contains the elements of a sequence produced by multicasting the source sequence within a selector function. + */ + public func multicast(_ subjectSelector: @escaping () throws -> Subject, selector: @escaping (Observable) throws -> Observable) + -> Observable where Subject.Observer.Element == Element { + return Multicast( + source: self.asObservable(), + subjectSelector: subjectSelector, + selector: selector + ) + } +} + +extension ObservableType { + + /** + Returns a connectable observable sequence that shares a single subscription to the underlying sequence. + + This operator is a specialization of `multicast` using a `PublishSubject`. + + - seealso: [publish operator on reactivex.io](http://reactivex.io/documentation/operators/publish.html) + + - returns: A connectable observable sequence that shares a single subscription to the underlying sequence. + */ + public func publish() -> ConnectableObservable { + self.multicast { PublishSubject() } + } +} + +extension ObservableType { + + /** + Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying bufferSize elements. + + This operator is a specialization of `multicast` using a `ReplaySubject`. + + - seealso: [replay operator on reactivex.io](http://reactivex.io/documentation/operators/replay.html) + + - parameter bufferSize: Maximum element count of the replay buffer. + - returns: A connectable observable sequence that shares a single subscription to the underlying sequence. + */ + public func replay(_ bufferSize: Int) + -> ConnectableObservable { + self.multicast { ReplaySubject.create(bufferSize: bufferSize) } + } + + /** + Returns a connectable observable sequence that shares a single subscription to the underlying sequence replaying all elements. + + This operator is a specialization of `multicast` using a `ReplaySubject`. + + - seealso: [replay operator on reactivex.io](http://reactivex.io/documentation/operators/replay.html) + + - returns: A connectable observable sequence that shares a single subscription to the underlying sequence. + */ + public func replayAll() + -> ConnectableObservable { + self.multicast { ReplaySubject.createUnbounded() } + } +} + +extension ConnectableObservableType { + + /** + Returns an observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence. + + - seealso: [refCount operator on reactivex.io](http://reactivex.io/documentation/operators/refcount.html) + + - returns: An observable sequence that stays connected to the source as long as there is at least one subscription to the observable sequence. + */ + public func refCount() -> Observable { + RefCount(source: self) + } +} + +extension ObservableType { + + /** + Multicasts the source sequence notifications through the specified subject to the resulting connectable observable. + + Upon connection of the connectable observable, the subject is subscribed to the source exactly one, and messages are forwarded to the observers registered with the connectable observable. + + For specializations with fixed subject types, see `publish` and `replay`. + + - seealso: [multicast operator on reactivex.io](http://reactivex.io/documentation/operators/publish.html) + + - parameter subject: Subject to push source elements into. + - returns: A connectable observable sequence that upon connection causes the source sequence to push results into the specified subject. + */ + public func multicast(_ subject: Subject) + -> ConnectableObservable where Subject.Observer.Element == Element { + ConnectableObservableAdapter(source: self.asObservable(), makeSubject: { subject }) + } + + /** + Multicasts the source sequence notifications through an instantiated subject to the resulting connectable observable. + + Upon connection of the connectable observable, the subject is subscribed to the source exactly one, and messages are forwarded to the observers registered with the connectable observable. + + Subject is cleared on connection disposal or in case source sequence produces terminal event. + + - seealso: [multicast operator on reactivex.io](http://reactivex.io/documentation/operators/publish.html) + + - parameter makeSubject: Factory function used to instantiate a subject for each connection. + - returns: A connectable observable sequence that upon connection causes the source sequence to push results into the specified subject. + */ + public func multicast(makeSubject: @escaping () -> Subject) + -> ConnectableObservable where Subject.Observer.Element == Element { + ConnectableObservableAdapter(source: self.asObservable(), makeSubject: makeSubject) + } +} + +final private class Connection: ObserverType, Disposable { + typealias Element = Subject.Observer.Element + + private var lock: RecursiveLock + // state + private var parent: ConnectableObservableAdapter? + private var subscription : Disposable? + private var subjectObserver: Subject.Observer + + private let disposed = AtomicInt(0) + + init(parent: ConnectableObservableAdapter, subjectObserver: Subject.Observer, lock: RecursiveLock, subscription: Disposable) { + self.parent = parent + self.subscription = subscription + self.lock = lock + self.subjectObserver = subjectObserver + } + + func on(_ event: Event) { + if isFlagSet(self.disposed, 1) { + return + } + if event.isStopEvent { + self.dispose() + } + self.subjectObserver.on(event) + } + + func dispose() { + lock.lock(); defer { lock.unlock() } + fetchOr(self.disposed, 1) + guard let parent = self.parent else { + return + } + + if parent.connection === self { + parent.connection = nil + parent.subject = nil + } + self.parent = nil + + self.subscription?.dispose() + self.subscription = nil + } +} + +final private class ConnectableObservableAdapter + : ConnectableObservable { + typealias ConnectionType = Connection + + private let source: Observable + private let makeSubject: () -> Subject + + fileprivate let lock = RecursiveLock() + fileprivate var subject: Subject? + + // state + fileprivate var connection: ConnectionType? + + init(source: Observable, makeSubject: @escaping () -> Subject) { + self.source = source + self.makeSubject = makeSubject + self.subject = nil + self.connection = nil + } + + override func connect() -> Disposable { + return self.lock.performLocked { + if let connection = self.connection { + return connection + } + + let singleAssignmentDisposable = SingleAssignmentDisposable() + let connection = Connection(parent: self, subjectObserver: self.lazySubject.asObserver(), lock: self.lock, subscription: singleAssignmentDisposable) + self.connection = connection + let subscription = self.source.subscribe(connection) + singleAssignmentDisposable.setDisposable(subscription) + return connection + } + } + + private var lazySubject: Subject { + if let subject = self.subject { + return subject + } + + let subject = self.makeSubject() + self.subject = subject + return subject + } + + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Subject.Element { + self.lazySubject.subscribe(observer) + } +} + +final private class RefCountSink + : Sink + , ObserverType where ConnectableSource.Element == Observer.Element { + typealias Element = Observer.Element + typealias Parent = RefCount + + private let parent: Parent + + private var connectionIdSnapshot: Int64 = -1 + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription = self.parent.source.subscribe(self) + self.parent.lock.lock(); defer { self.parent.lock.unlock() } + + self.connectionIdSnapshot = self.parent.connectionId + + if self.isDisposed { + return Disposables.create() + } + + if self.parent.count == 0 { + self.parent.count = 1 + self.parent.connectableSubscription = self.parent.source.connect() + } + else { + self.parent.count += 1 + } + + return Disposables.create { + subscription.dispose() + self.parent.lock.lock(); defer { self.parent.lock.unlock() } + if self.parent.connectionId != self.connectionIdSnapshot { + return + } + if self.parent.count == 1 { + self.parent.count = 0 + guard let connectableSubscription = self.parent.connectableSubscription else { + return + } + + connectableSubscription.dispose() + self.parent.connectableSubscription = nil + } + else if self.parent.count > 1 { + self.parent.count -= 1 + } + else { + rxFatalError("Something went wrong with RefCount disposing mechanism") + } + } + } + + func on(_ event: Event) { + switch event { + case .next: + self.forwardOn(event) + case .error, .completed: + self.parent.lock.lock() + if self.parent.connectionId == self.connectionIdSnapshot { + let connection = self.parent.connectableSubscription + defer { connection?.dispose() } + self.parent.count = 0 + self.parent.connectionId = self.parent.connectionId &+ 1 + self.parent.connectableSubscription = nil + } + self.parent.lock.unlock() + self.forwardOn(event) + self.dispose() + } + } +} + +final private class RefCount: Producer { + fileprivate let lock = RecursiveLock() + + // state + fileprivate var count = 0 + fileprivate var connectionId: Int64 = 0 + fileprivate var connectableSubscription = nil as Disposable? + + fileprivate let source: ConnectableSource + + init(source: ConnectableSource) { + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) + where Observer.Element == ConnectableSource.Element { + let sink = RefCountSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + +final private class MulticastSink: Sink, ObserverType { + typealias Element = Observer.Element + typealias ResultType = Element + typealias MutlicastType = Multicast + + private let parent: MutlicastType + + init(parent: MutlicastType, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + do { + let subject = try self.parent.subjectSelector() + let connectable = ConnectableObservableAdapter(source: self.parent.source, makeSubject: { subject }) + + let observable = try self.parent.selector(connectable) + + let subscription = observable.subscribe(self) + let connection = connectable.connect() + + return Disposables.create(subscription, connection) + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + return Disposables.create() + } + } + + func on(_ event: Event) { + self.forwardOn(event) + switch event { + case .next: break + case .error, .completed: + self.dispose() + } + } +} + +final private class Multicast: Producer { + typealias SubjectSelectorType = () throws -> Subject + typealias SelectorType = (Observable) throws -> Observable + + fileprivate let source: Observable + fileprivate let subjectSelector: SubjectSelectorType + fileprivate let selector: SelectorType + + init(source: Observable, subjectSelector: @escaping SubjectSelectorType, selector: @escaping SelectorType) { + self.source = source + self.subjectSelector = subjectSelector + self.selector = selector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = MulticastSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Never.swift b/Pods/RxSwift/RxSwift/Observables/Never.swift new file mode 100644 index 00000000..7b456eed --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Never.swift @@ -0,0 +1,27 @@ +// +// Never.swift +// RxSwift +// +// Created by Krunoslav Zaher on 8/30/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Returns a non-terminating observable sequence, which can be used to denote an infinite duration. + + - seealso: [never operator on reactivex.io](http://reactivex.io/documentation/operators/empty-never-throw.html) + + - returns: An observable sequence whose observers will never get called. + */ + public static func never() -> Observable { + NeverProducer() + } +} + +final private class NeverProducer: Producer { + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + Disposables.create() + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift b/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift new file mode 100644 index 00000000..6b8689e1 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift @@ -0,0 +1,243 @@ +// +// ObserveOn.swift +// RxSwift +// +// Created by Krunoslav Zaher on 7/25/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Wraps the source sequence in order to run its observer callbacks on the specified scheduler. + + This only invokes observer callbacks on a `scheduler`. In case the subscription and/or unsubscription + actions have side-effects that require to be run on a scheduler, use `subscribeOn`. + + - seealso: [observeOn operator on reactivex.io](http://reactivex.io/documentation/operators/observeon.html) + + - parameter scheduler: Scheduler to notify observers on. + - returns: The source sequence whose observations happen on the specified scheduler. + */ + public func observe(on scheduler: ImmediateSchedulerType) + -> Observable { + guard let serialScheduler = scheduler as? SerialDispatchQueueScheduler else { + return ObserveOn(source: self.asObservable(), scheduler: scheduler) + } + + return ObserveOnSerialDispatchQueue(source: self.asObservable(), + scheduler: serialScheduler) + } + + /** + Wraps the source sequence in order to run its observer callbacks on the specified scheduler. + + This only invokes observer callbacks on a `scheduler`. In case the subscription and/or unsubscription + actions have side-effects that require to be run on a scheduler, use `subscribeOn`. + + - seealso: [observeOn operator on reactivex.io](http://reactivex.io/documentation/operators/observeon.html) + + - parameter scheduler: Scheduler to notify observers on. + - returns: The source sequence whose observations happen on the specified scheduler. + */ + @available(*, deprecated, renamed: "observe(on:)") + public func observeOn(_ scheduler: ImmediateSchedulerType) + -> Observable { + observe(on: scheduler) + } +} + +final private class ObserveOn: Producer { + let scheduler: ImmediateSchedulerType + let source: Observable + + init(source: Observable, scheduler: ImmediateSchedulerType) { + self.scheduler = scheduler + self.source = source + +#if TRACE_RESOURCES + _ = Resources.incrementTotal() +#endif + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = ObserveOnSink(scheduler: self.scheduler, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } + +#if TRACE_RESOURCES + deinit { + _ = Resources.decrementTotal() + } +#endif +} + +enum ObserveOnState : Int32 { + // pump is not running + case stopped = 0 + // pump is running + case running = 1 +} + +final private class ObserveOnSink: ObserverBase { + typealias Element = Observer.Element + + let scheduler: ImmediateSchedulerType + + var lock = SpinLock() + let observer: Observer + + // state + var state = ObserveOnState.stopped + var queue = Queue>(capacity: 10) + + let scheduleDisposable = SerialDisposable() + let cancel: Cancelable + + init(scheduler: ImmediateSchedulerType, observer: Observer, cancel: Cancelable) { + self.scheduler = scheduler + self.observer = observer + self.cancel = cancel + } + + override func onCore(_ event: Event) { + let shouldStart = self.lock.performLocked { () -> Bool in + self.queue.enqueue(event) + + switch self.state { + case .stopped: + self.state = .running + return true + case .running: + return false + } + } + + if shouldStart { + self.scheduleDisposable.disposable = self.scheduler.scheduleRecursive((), action: self.run) + } + } + + func run(_ state: (), _ recurse: (()) -> Void) { + let (nextEvent, observer) = self.lock.performLocked { () -> (Event?, Observer) in + if !self.queue.isEmpty { + return (self.queue.dequeue(), self.observer) + } + else { + self.state = .stopped + return (nil, self.observer) + } + } + + if let nextEvent = nextEvent, !self.cancel.isDisposed { + observer.on(nextEvent) + if nextEvent.isStopEvent { + self.dispose() + } + } + else { + return + } + + let shouldContinue = self.shouldContinue_synchronized() + + if shouldContinue { + recurse(()) + } + } + + func shouldContinue_synchronized() -> Bool { + self.lock.performLocked { + let isEmpty = self.queue.isEmpty + if isEmpty { self.state = .stopped } + return !isEmpty + } + } + + override func dispose() { + super.dispose() + + self.cancel.dispose() + self.scheduleDisposable.dispose() + } +} + +#if TRACE_RESOURCES + private let numberOfSerialDispatchObservables = AtomicInt(0) + extension Resources { + /** + Counts number of `SerialDispatchQueueObservables`. + + Purposed for unit tests. + */ + public static var numberOfSerialDispatchQueueObservables: Int32 { + return load(numberOfSerialDispatchObservables) + } + } +#endif + +final private class ObserveOnSerialDispatchQueueSink: ObserverBase { + let scheduler: SerialDispatchQueueScheduler + let observer: Observer + + let cancel: Cancelable + + var cachedScheduleLambda: (((sink: ObserveOnSerialDispatchQueueSink, event: Event)) -> Disposable)! + + init(scheduler: SerialDispatchQueueScheduler, observer: Observer, cancel: Cancelable) { + self.scheduler = scheduler + self.observer = observer + self.cancel = cancel + super.init() + + self.cachedScheduleLambda = { pair in + guard !cancel.isDisposed else { return Disposables.create() } + + pair.sink.observer.on(pair.event) + + if pair.event.isStopEvent { + pair.sink.dispose() + } + + return Disposables.create() + } + } + + override func onCore(_ event: Event) { + _ = self.scheduler.schedule((self, event), action: self.cachedScheduleLambda!) + } + + override func dispose() { + super.dispose() + + self.cancel.dispose() + } +} + +final private class ObserveOnSerialDispatchQueue: Producer { + let scheduler: SerialDispatchQueueScheduler + let source: Observable + + init(source: Observable, scheduler: SerialDispatchQueueScheduler) { + self.scheduler = scheduler + self.source = source + + #if TRACE_RESOURCES + _ = Resources.incrementTotal() + _ = increment(numberOfSerialDispatchObservables) + #endif + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = ObserveOnSerialDispatchQueueSink(scheduler: self.scheduler, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } + + #if TRACE_RESOURCES + deinit { + _ = Resources.decrementTotal() + _ = decrement(numberOfSerialDispatchObservables) + } + #endif +} diff --git a/Pods/RxSwift/RxSwift/Observables/Optional.swift b/Pods/RxSwift/RxSwift/Observables/Optional.swift new file mode 100644 index 00000000..64f8f1fd --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Optional.swift @@ -0,0 +1,95 @@ +// +// Optional.swift +// RxSwift +// +// Created by tarunon on 2016/12/13. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Converts a optional to an observable sequence. + + - seealso: [from operator on reactivex.io](http://reactivex.io/documentation/operators/from.html) + + - parameter optional: Optional element in the resulting observable sequence. + - returns: An observable sequence containing the wrapped value or not from given optional. + */ + public static func from(optional: Element?) -> Observable { + ObservableOptional(optional: optional) + } + + /** + Converts a optional to an observable sequence. + + - seealso: [from operator on reactivex.io](http://reactivex.io/documentation/operators/from.html) + + - parameter optional: Optional element in the resulting observable sequence. + - parameter scheduler: Scheduler to send the optional element on. + - returns: An observable sequence containing the wrapped value or not from given optional. + */ + public static func from(optional: Element?, scheduler: ImmediateSchedulerType) -> Observable { + ObservableOptionalScheduled(optional: optional, scheduler: scheduler) + } +} + +final private class ObservableOptionalScheduledSink: Sink { + typealias Element = Observer.Element + typealias Parent = ObservableOptionalScheduled + + private let parent: Parent + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + return self.parent.scheduler.schedule(self.parent.optional) { (optional: Element?) -> Disposable in + if let next = optional { + self.forwardOn(.next(next)) + return self.parent.scheduler.schedule(()) { _ in + self.forwardOn(.completed) + self.dispose() + return Disposables.create() + } + } else { + self.forwardOn(.completed) + self.dispose() + return Disposables.create() + } + } + } +} + +final private class ObservableOptionalScheduled: Producer { + fileprivate let optional: Element? + fileprivate let scheduler: ImmediateSchedulerType + + init(optional: Element?, scheduler: ImmediateSchedulerType) { + self.optional = optional + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = ObservableOptionalScheduledSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + +final private class ObservableOptional: Producer { + private let optional: Element? + + init(optional: Element?) { + self.optional = optional + } + + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + if let element = self.optional { + observer.on(.next(element)) + } + observer.on(.completed) + return Disposables.create() + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Producer.swift b/Pods/RxSwift/RxSwift/Observables/Producer.swift new file mode 100644 index 00000000..e611930a --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Producer.swift @@ -0,0 +1,92 @@ +// +// Producer.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/20/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +class Producer: Observable { + override init() { + super.init() + } + + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + if !CurrentThreadScheduler.isScheduleRequired { + // The returned disposable needs to release all references once it was disposed. + let disposer = SinkDisposer() + let sinkAndSubscription = self.run(observer, cancel: disposer) + disposer.setSinkAndSubscription(sink: sinkAndSubscription.sink, subscription: sinkAndSubscription.subscription) + + return disposer + } + else { + return CurrentThreadScheduler.instance.schedule(()) { _ in + let disposer = SinkDisposer() + let sinkAndSubscription = self.run(observer, cancel: disposer) + disposer.setSinkAndSubscription(sink: sinkAndSubscription.sink, subscription: sinkAndSubscription.subscription) + + return disposer + } + } + } + + func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + rxAbstractMethod() + } +} + +private final class SinkDisposer: Cancelable { + private enum DisposeState: Int32 { + case disposed = 1 + case sinkAndSubscriptionSet = 2 + } + + private let state = AtomicInt(0) + private var sink: Disposable? + private var subscription: Disposable? + + var isDisposed: Bool { + isFlagSet(self.state, DisposeState.disposed.rawValue) + } + + func setSinkAndSubscription(sink: Disposable, subscription: Disposable) { + self.sink = sink + self.subscription = subscription + + let previousState = fetchOr(self.state, DisposeState.sinkAndSubscriptionSet.rawValue) + if (previousState & DisposeState.sinkAndSubscriptionSet.rawValue) != 0 { + rxFatalError("Sink and subscription were already set") + } + + if (previousState & DisposeState.disposed.rawValue) != 0 { + sink.dispose() + subscription.dispose() + self.sink = nil + self.subscription = nil + } + } + + func dispose() { + let previousState = fetchOr(self.state, DisposeState.disposed.rawValue) + + if (previousState & DisposeState.disposed.rawValue) != 0 { + return + } + + if (previousState & DisposeState.sinkAndSubscriptionSet.rawValue) != 0 { + guard let sink = self.sink else { + rxFatalError("Sink not set") + } + guard let subscription = self.subscription else { + rxFatalError("Subscription not set") + } + + sink.dispose() + subscription.dispose() + + self.sink = nil + self.subscription = nil + } + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Range.swift b/Pods/RxSwift/RxSwift/Observables/Range.swift new file mode 100644 index 00000000..24535324 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Range.swift @@ -0,0 +1,73 @@ +// +// Range.swift +// RxSwift +// +// Created by Krunoslav Zaher on 9/13/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType where Element: RxAbstractInteger { + /** + Generates an observable sequence of integral numbers within a specified range, using the specified scheduler to generate and send out observer messages. + + - seealso: [range operator on reactivex.io](http://reactivex.io/documentation/operators/range.html) + + - parameter start: The value of the first integer in the sequence. + - parameter count: The number of sequential integers to generate. + - parameter scheduler: Scheduler to run the generator loop on. + - returns: An observable sequence that contains a range of sequential integral numbers. + */ + public static func range(start: Element, count: Element, scheduler: ImmediateSchedulerType = CurrentThreadScheduler.instance) -> Observable { + RangeProducer(start: start, count: count, scheduler: scheduler) + } +} + +final private class RangeProducer: Producer { + fileprivate let start: Element + fileprivate let count: Element + fileprivate let scheduler: ImmediateSchedulerType + + init(start: Element, count: Element, scheduler: ImmediateSchedulerType) { + guard count >= 0 else { + rxFatalError("count can't be negative") + } + + guard start &+ (count - 1) >= start || count == 0 else { + rxFatalError("overflow of count") + } + + self.start = start + self.count = count + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = RangeSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + +final private class RangeSink: Sink where Observer.Element: RxAbstractInteger { + typealias Parent = RangeProducer + + private let parent: Parent + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + return self.parent.scheduler.scheduleRecursive(0 as Observer.Element) { i, recurse in + if i < self.parent.count { + self.forwardOn(.next(self.parent.start + i)) + recurse(i + 1) + } + else { + self.forwardOn(.completed) + self.dispose() + } + } + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Reduce.swift b/Pods/RxSwift/RxSwift/Observables/Reduce.swift new file mode 100644 index 00000000..d5fab347 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Reduce.swift @@ -0,0 +1,109 @@ +// +// Reduce.swift +// RxSwift +// +// Created by Krunoslav Zaher on 4/1/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + + +extension ObservableType { + /** + Applies an `accumulator` function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified `seed` value is used as the initial accumulator value. + + For aggregation behavior with incremental intermediate results, see `scan`. + + - seealso: [reduce operator on reactivex.io](http://reactivex.io/documentation/operators/reduce.html) + + - parameter seed: The initial accumulator value. + - parameter accumulator: A accumulator function to be invoked on each element. + - parameter mapResult: A function to transform the final accumulator value into the result value. + - returns: An observable sequence containing a single element with the final accumulator value. + */ + public func reduce(_ seed: A, accumulator: @escaping (A, Element) throws -> A, mapResult: @escaping (A) throws -> Result) + -> Observable { + Reduce(source: self.asObservable(), seed: seed, accumulator: accumulator, mapResult: mapResult) + } + + /** + Applies an `accumulator` function over an observable sequence, returning the result of the aggregation as a single element in the result sequence. The specified `seed` value is used as the initial accumulator value. + + For aggregation behavior with incremental intermediate results, see `scan`. + + - seealso: [reduce operator on reactivex.io](http://reactivex.io/documentation/operators/reduce.html) + + - parameter seed: The initial accumulator value. + - parameter accumulator: A accumulator function to be invoked on each element. + - returns: An observable sequence containing a single element with the final accumulator value. + */ + public func reduce(_ seed: A, accumulator: @escaping (A, Element) throws -> A) + -> Observable { + Reduce(source: self.asObservable(), seed: seed, accumulator: accumulator, mapResult: { $0 }) + } +} + +final private class ReduceSink: Sink, ObserverType { + typealias ResultType = Observer.Element + typealias Parent = Reduce + + private let parent: Parent + private var accumulation: AccumulateType + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.accumulation = parent.seed + + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + do { + self.accumulation = try self.parent.accumulator(self.accumulation, value) + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + } + case .error(let e): + self.forwardOn(.error(e)) + self.dispose() + case .completed: + do { + let result = try self.parent.mapResult(self.accumulation) + self.forwardOn(.next(result)) + self.forwardOn(.completed) + self.dispose() + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + } + } + } +} + +final private class Reduce: Producer { + typealias AccumulatorType = (AccumulateType, SourceType) throws -> AccumulateType + typealias ResultSelectorType = (AccumulateType) throws -> ResultType + + private let source: Observable + fileprivate let seed: AccumulateType + fileprivate let accumulator: AccumulatorType + fileprivate let mapResult: ResultSelectorType + + init(source: Observable, seed: AccumulateType, accumulator: @escaping AccumulatorType, mapResult: @escaping ResultSelectorType) { + self.source = source + self.seed = seed + self.accumulator = accumulator + self.mapResult = mapResult + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == ResultType { + let sink = ReduceSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} + diff --git a/Pods/RxSwift/RxSwift/Observables/Repeat.swift b/Pods/RxSwift/RxSwift/Observables/Repeat.swift new file mode 100644 index 00000000..69a3ba02 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Repeat.swift @@ -0,0 +1,57 @@ +// +// Repeat.swift +// RxSwift +// +// Created by Krunoslav Zaher on 9/13/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Generates an observable sequence that repeats the given element infinitely, using the specified scheduler to send out observer messages. + + - seealso: [repeat operator on reactivex.io](http://reactivex.io/documentation/operators/repeat.html) + + - parameter element: Element to repeat. + - parameter scheduler: Scheduler to run the producer loop on. + - returns: An observable sequence that repeats the given element infinitely. + */ + public static func repeatElement(_ element: Element, scheduler: ImmediateSchedulerType = CurrentThreadScheduler.instance) -> Observable { + RepeatElement(element: element, scheduler: scheduler) + } +} + +final private class RepeatElement: Producer { + fileprivate let element: Element + fileprivate let scheduler: ImmediateSchedulerType + + init(element: Element, scheduler: ImmediateSchedulerType) { + self.element = element + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = RepeatElementSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + + return (sink: sink, subscription: subscription) + } +} + +final private class RepeatElementSink: Sink { + typealias Parent = RepeatElement + + private let parent: Parent + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + return self.parent.scheduler.scheduleRecursive(self.parent.element) { e, recurse in + self.forwardOn(.next(e)) + recurse(e) + } + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift b/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift new file mode 100644 index 00000000..1b2a6f13 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift @@ -0,0 +1,211 @@ +// +// RetryWhen.swift +// RxSwift +// +// Created by Junior B. on 06/10/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Repeats the source observable sequence on error when the notifier emits a next value. + If the source observable errors and the notifier completes, it will complete the source sequence. + + - seealso: [retry operator on reactivex.io](http://reactivex.io/documentation/operators/retry.html) + + - parameter notificationHandler: A handler that is passed an observable sequence of errors raised by the source observable and returns and observable that either continues, completes or errors. This behavior is then applied to the source observable. + - returns: An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully or is notified to error or complete. + */ + public func retry(when notificationHandler: @escaping (Observable) -> TriggerObservable) + -> Observable { + RetryWhenSequence(sources: InfiniteSequence(repeatedValue: self.asObservable()), notificationHandler: notificationHandler) + } + + /** + Repeats the source observable sequence on error when the notifier emits a next value. + If the source observable errors and the notifier completes, it will complete the source sequence. + + - seealso: [retry operator on reactivex.io](http://reactivex.io/documentation/operators/retry.html) + + - parameter notificationHandler: A handler that is passed an observable sequence of errors raised by the source observable and returns and observable that either continues, completes or errors. This behavior is then applied to the source observable. + - returns: An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully or is notified to error or complete. + */ + @available(*, deprecated, renamed: "retry(when:)") + public func retryWhen(_ notificationHandler: @escaping (Observable) -> TriggerObservable) + -> Observable { + retry(when: notificationHandler) + } + + /** + Repeats the source observable sequence on error when the notifier emits a next value. + If the source observable errors and the notifier completes, it will complete the source sequence. + + - seealso: [retry operator on reactivex.io](http://reactivex.io/documentation/operators/retry.html) + + - parameter notificationHandler: A handler that is passed an observable sequence of errors raised by the source observable and returns and observable that either continues, completes or errors. This behavior is then applied to the source observable. + - returns: An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully or is notified to error or complete. + */ + public func retry(when notificationHandler: @escaping (Observable) -> TriggerObservable) + -> Observable { + RetryWhenSequence(sources: InfiniteSequence(repeatedValue: self.asObservable()), notificationHandler: notificationHandler) + } + + /** + Repeats the source observable sequence on error when the notifier emits a next value. + If the source observable errors and the notifier completes, it will complete the source sequence. + + - seealso: [retry operator on reactivex.io](http://reactivex.io/documentation/operators/retry.html) + + - parameter notificationHandler: A handler that is passed an observable sequence of errors raised by the source observable and returns and observable that either continues, completes or errors. This behavior is then applied to the source observable. + - returns: An observable sequence producing the elements of the given sequence repeatedly until it terminates successfully or is notified to error or complete. + */ + @available(*, deprecated, renamed: "retry(when:)") + public func retryWhen(_ notificationHandler: @escaping (Observable) -> TriggerObservable) + -> Observable { + RetryWhenSequence(sources: InfiniteSequence(repeatedValue: self.asObservable()), notificationHandler: notificationHandler) + } +} + +final private class RetryTriggerSink + : ObserverType where Sequence.Element: ObservableType, Sequence.Element.Element == Observer.Element { + typealias Element = TriggerObservable.Element + + typealias Parent = RetryWhenSequenceSinkIter + + private let parent: Parent + + init(parent: Parent) { + self.parent = parent + } + + func on(_ event: Event) { + switch event { + case .next: + self.parent.parent.lastError = nil + self.parent.parent.schedule(.moveNext) + case .error(let e): + self.parent.parent.forwardOn(.error(e)) + self.parent.parent.dispose() + case .completed: + self.parent.parent.forwardOn(.completed) + self.parent.parent.dispose() + } + } +} + +final private class RetryWhenSequenceSinkIter + : ObserverType + , Disposable where Sequence.Element: ObservableType, Sequence.Element.Element == Observer.Element { + typealias Element = Observer.Element + typealias Parent = RetryWhenSequenceSink + + fileprivate let parent: Parent + private let errorHandlerSubscription = SingleAssignmentDisposable() + private let subscription: Disposable + + init(parent: Parent, subscription: Disposable) { + self.parent = parent + self.subscription = subscription + } + + func on(_ event: Event) { + switch event { + case .next: + self.parent.forwardOn(event) + case .error(let error): + self.parent.lastError = error + + if let failedWith = error as? Error { + // dispose current subscription + self.subscription.dispose() + + let errorHandlerSubscription = self.parent.notifier.subscribe(RetryTriggerSink(parent: self)) + self.errorHandlerSubscription.setDisposable(errorHandlerSubscription) + self.parent.errorSubject.on(.next(failedWith)) + } + else { + self.parent.forwardOn(.error(error)) + self.parent.dispose() + } + case .completed: + self.parent.forwardOn(event) + self.parent.dispose() + } + } + + final func dispose() { + self.subscription.dispose() + self.errorHandlerSubscription.dispose() + } +} + +final private class RetryWhenSequenceSink + : TailRecursiveSink where Sequence.Element: ObservableType, Sequence.Element.Element == Observer.Element { + typealias Element = Observer.Element + typealias Parent = RetryWhenSequence + + let lock = RecursiveLock() + + private let parent: Parent + + fileprivate var lastError: Swift.Error? + fileprivate let errorSubject = PublishSubject() + private let handler: Observable + fileprivate let notifier = PublishSubject() + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.handler = parent.notificationHandler(self.errorSubject).asObservable() + super.init(observer: observer, cancel: cancel) + } + + override func done() { + if let lastError = self.lastError { + self.forwardOn(.error(lastError)) + self.lastError = nil + } + else { + self.forwardOn(.completed) + } + + self.dispose() + } + + override func extract(_ observable: Observable) -> SequenceGenerator? { + // It is important to always return `nil` here because there are side effects in the `run` method + // that are dependant on particular `retryWhen` operator so single operator stack can't be reused in this + // case. + return nil + } + + override func subscribeToNext(_ source: Observable) -> Disposable { + let subscription = SingleAssignmentDisposable() + let iter = RetryWhenSequenceSinkIter(parent: self, subscription: subscription) + subscription.setDisposable(source.subscribe(iter)) + return iter + } + + override func run(_ sources: SequenceGenerator) -> Disposable { + let triggerSubscription = self.handler.subscribe(self.notifier.asObserver()) + let superSubscription = super.run(sources) + return Disposables.create(superSubscription, triggerSubscription) + } +} + +final private class RetryWhenSequence: Producer where Sequence.Element: ObservableType { + typealias Element = Sequence.Element.Element + + private let sources: Sequence + fileprivate let notificationHandler: (Observable) -> TriggerObservable + + init(sources: Sequence, notificationHandler: @escaping (Observable) -> TriggerObservable) { + self.sources = sources + self.notificationHandler = notificationHandler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = RetryWhenSequenceSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run((self.sources.makeIterator(), nil)) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Sample.swift b/Pods/RxSwift/RxSwift/Observables/Sample.swift new file mode 100644 index 00000000..9301c9af --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Sample.swift @@ -0,0 +1,139 @@ +// +// Sample.swift +// RxSwift +// +// Created by Krunoslav Zaher on 5/1/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Samples the source observable sequence using a sampler observable sequence producing sampling ticks. + + Upon each sampling tick, the latest element (if any) in the source sequence during the last sampling interval is sent to the resulting sequence. + + **In case there were no new elements between sampler ticks, you may provide a default value to be emitted, instead + to the resulting sequence otherwise no element is sent.** + + - seealso: [sample operator on reactivex.io](http://reactivex.io/documentation/operators/sample.html) + + - parameter sampler: Sampling tick sequence. + - parameter defaultValue: a value to return if there are no new elements between sampler ticks + - returns: Sampled observable sequence. + */ + public func sample(_ sampler: Source, defaultValue: Element? = nil) + -> Observable { + return Sample(source: self.asObservable(), sampler: sampler.asObservable(), defaultValue: defaultValue) + } +} + +final private class SamplerSink + : ObserverType + , LockOwnerType + , SynchronizedOnType { + typealias Element = SampleType + + typealias Parent = SampleSequenceSink + + private let parent: Parent + + var lock: RecursiveLock { + self.parent.lock + } + + init(parent: Parent) { + self.parent = parent + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next, .completed: + if let element = parent.element ?? self.parent.defaultValue { + self.parent.element = nil + self.parent.forwardOn(.next(element)) + } + + if self.parent.atEnd { + self.parent.forwardOn(.completed) + self.parent.dispose() + } + case .error(let e): + self.parent.forwardOn(.error(e)) + self.parent.dispose() + } + } +} + +final private class SampleSequenceSink + : Sink + , ObserverType + , LockOwnerType + , SynchronizedOnType { + typealias Element = Observer.Element + typealias Parent = Sample + + fileprivate let parent: Parent + fileprivate let defaultValue: Element? + + let lock = RecursiveLock() + + // state + fileprivate var element = nil as Element? + fileprivate var atEnd = false + + private let sourceSubscription = SingleAssignmentDisposable() + + init(parent: Parent, observer: Observer, cancel: Cancelable, defaultValue: Element? = nil) { + self.parent = parent + self.defaultValue = defaultValue + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + self.sourceSubscription.setDisposable(self.parent.source.subscribe(self)) + let samplerSubscription = self.parent.sampler.subscribe(SamplerSink(parent: self)) + + return Disposables.create(sourceSubscription, samplerSubscription) + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next(let element): + self.element = element + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + self.atEnd = true + self.sourceSubscription.dispose() + } + } + +} + +final private class Sample: Producer { + fileprivate let source: Observable + fileprivate let sampler: Observable + fileprivate let defaultValue: Element? + + init(source: Observable, sampler: Observable, defaultValue: Element? = nil) { + self.source = source + self.sampler = sampler + self.defaultValue = defaultValue + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = SampleSequenceSink(parent: self, observer: observer, cancel: cancel, defaultValue: self.defaultValue) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Scan.swift b/Pods/RxSwift/RxSwift/Observables/Scan.swift new file mode 100644 index 00000000..ecf69c80 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Scan.swift @@ -0,0 +1,100 @@ +// +// Scan.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Applies an accumulator function over an observable sequence and returns each intermediate result. The specified seed value is used as the initial accumulator value. + + For aggregation behavior with no intermediate results, see `reduce`. + + - seealso: [scan operator on reactivex.io](http://reactivex.io/documentation/operators/scan.html) + + - parameter seed: The initial accumulator value. + - parameter accumulator: An accumulator function to be invoked on each element. + - returns: An observable sequence containing the accumulated values. + */ + public func scan(into seed: A, accumulator: @escaping (inout A, Element) throws -> Void) + -> Observable { + Scan(source: self.asObservable(), seed: seed, accumulator: accumulator) + } + + /** + Applies an accumulator function over an observable sequence and returns each intermediate result. The specified seed value is used as the initial accumulator value. + + For aggregation behavior with no intermediate results, see `reduce`. + + - seealso: [scan operator on reactivex.io](http://reactivex.io/documentation/operators/scan.html) + + - parameter seed: The initial accumulator value. + - parameter accumulator: An accumulator function to be invoked on each element. + - returns: An observable sequence containing the accumulated values. + */ + public func scan(_ seed: A, accumulator: @escaping (A, Element) throws -> A) + -> Observable { + return Scan(source: self.asObservable(), seed: seed) { acc, element in + let currentAcc = acc + acc = try accumulator(currentAcc, element) + } + } +} + +final private class ScanSink: Sink, ObserverType { + typealias Accumulate = Observer.Element + typealias Parent = Scan + + private let parent: Parent + private var accumulate: Accumulate + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.accumulate = parent.seed + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let element): + do { + try self.parent.accumulator(&self.accumulate, element) + self.forwardOn(.next(self.accumulate)) + } + catch let error { + self.forwardOn(.error(error)) + self.dispose() + } + case .error(let error): + self.forwardOn(.error(error)) + self.dispose() + case .completed: + self.forwardOn(.completed) + self.dispose() + } + } + +} + +final private class Scan: Producer { + typealias Accumulator = (inout Accumulate, Element) throws -> Void + + private let source: Observable + fileprivate let seed: Accumulate + fileprivate let accumulator: Accumulator + + init(source: Observable, seed: Accumulate, accumulator: @escaping Accumulator) { + self.source = source + self.seed = seed + self.accumulator = accumulator + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Accumulate { + let sink = ScanSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Sequence.swift b/Pods/RxSwift/RxSwift/Observables/Sequence.swift new file mode 100644 index 00000000..c6d10896 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Sequence.swift @@ -0,0 +1,89 @@ +// +// Sequence.swift +// RxSwift +// +// Created by Krunoslav Zaher on 11/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + // MARK: of + + /** + This method creates a new Observable instance with a variable number of elements. + + - seealso: [from operator on reactivex.io](http://reactivex.io/documentation/operators/from.html) + + - parameter elements: Elements to generate. + - parameter scheduler: Scheduler to send elements on. If `nil`, elements are sent immediately on subscription. + - returns: The observable sequence whose elements are pulled from the given arguments. + */ + public static func of(_ elements: Element ..., scheduler: ImmediateSchedulerType = CurrentThreadScheduler.instance) -> Observable { + ObservableSequence(elements: elements, scheduler: scheduler) + } +} + +extension ObservableType { + /** + Converts an array to an observable sequence. + + - seealso: [from operator on reactivex.io](http://reactivex.io/documentation/operators/from.html) + + - returns: The observable sequence whose elements are pulled from the given enumerable sequence. + */ + public static func from(_ array: [Element], scheduler: ImmediateSchedulerType = CurrentThreadScheduler.instance) -> Observable { + ObservableSequence(elements: array, scheduler: scheduler) + } + + /** + Converts a sequence to an observable sequence. + + - seealso: [from operator on reactivex.io](http://reactivex.io/documentation/operators/from.html) + + - returns: The observable sequence whose elements are pulled from the given enumerable sequence. + */ + public static func from(_ sequence: Sequence, scheduler: ImmediateSchedulerType = CurrentThreadScheduler.instance) -> Observable where Sequence.Element == Element { + ObservableSequence(elements: sequence, scheduler: scheduler) + } +} + +final private class ObservableSequenceSink: Sink where Sequence.Element == Observer.Element { + typealias Parent = ObservableSequence + + private let parent: Parent + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + return self.parent.scheduler.scheduleRecursive(self.parent.elements.makeIterator()) { iterator, recurse in + var mutableIterator = iterator + if let next = mutableIterator.next() { + self.forwardOn(.next(next)) + recurse(mutableIterator) + } + else { + self.forwardOn(.completed) + self.dispose() + } + } + } +} + +final private class ObservableSequence: Producer { + fileprivate let elements: Sequence + fileprivate let scheduler: ImmediateSchedulerType + + init(elements: Sequence, scheduler: ImmediateSchedulerType) { + self.elements = elements + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = ObservableSequenceSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift b/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift new file mode 100644 index 00000000..59d440dc --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift @@ -0,0 +1,443 @@ +// +// ShareReplayScope.swift +// RxSwift +// +// Created by Krunoslav Zaher on 5/28/17. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +/// Subject lifetime scope +public enum SubjectLifetimeScope { + /** + **Each connection will have it's own subject instance to store replay events.** + **Connections will be isolated from each another.** + + Configures the underlying implementation to behave equivalent to. + + ``` + source.multicast(makeSubject: { MySubject() }).refCount() + ``` + + **This is the recommended default.** + + This has the following consequences: + * `retry` or `concat` operators will function as expected because terminating the sequence will clear internal state. + * Each connection to source observable sequence will use it's own subject. + * When the number of subscribers drops from 1 to 0 and connection to source sequence is disposed, subject will be cleared. + + + ``` + let xs = Observable.deferred { () -> Observable in + print("Performing work ...") + return Observable.just(Date().timeIntervalSince1970) + } + .share(replay: 1, scope: .whileConnected) + + _ = xs.subscribe(onNext: { print("next \($0)") }, onCompleted: { print("completed\n") }) + _ = xs.subscribe(onNext: { print("next \($0)") }, onCompleted: { print("completed\n") }) + _ = xs.subscribe(onNext: { print("next \($0)") }, onCompleted: { print("completed\n") }) + + ``` + + Notice how time interval is different and `Performing work ...` is printed each time) + + ``` + Performing work ... + next 1495998900.82141 + completed + + Performing work ... + next 1495998900.82359 + completed + + Performing work ... + next 1495998900.82444 + completed + + + ``` + + */ + case whileConnected + + /** + **One subject will store replay events for all connections to source.** + **Connections won't be isolated from each another.** + + Configures the underlying implementation behave equivalent to. + + ``` + source.multicast(MySubject()).refCount() + ``` + + This has the following consequences: + * Using `retry` or `concat` operators after this operator usually isn't advised. + * Each connection to source observable sequence will share the same subject. + * After number of subscribers drops from 1 to 0 and connection to source observable sequence is dispose, this operator will + continue holding a reference to the same subject. + If at some later moment a new observer initiates a new connection to source it can potentially receive + some of the stale events received during previous connection. + * After source sequence terminates any new observer will always immediately receive replayed elements and terminal event. + No new subscriptions to source observable sequence will be attempted. + + ``` + let xs = Observable.deferred { () -> Observable in + print("Performing work ...") + return Observable.just(Date().timeIntervalSince1970) + } + .share(replay: 1, scope: .forever) + + _ = xs.subscribe(onNext: { print("next \($0)") }, onCompleted: { print("completed\n") }) + _ = xs.subscribe(onNext: { print("next \($0)") }, onCompleted: { print("completed\n") }) + _ = xs.subscribe(onNext: { print("next \($0)") }, onCompleted: { print("completed\n") }) + ``` + + Notice how time interval is the same, replayed, and `Performing work ...` is printed only once + + ``` + Performing work ... + next 1495999013.76356 + completed + + next 1495999013.76356 + completed + + next 1495999013.76356 + completed + ``` + + */ + case forever +} + +extension ObservableType { + + /** + Returns an observable sequence that **shares a single subscription to the underlying sequence**, and immediately upon subscription replays elements in buffer. + + This operator is equivalent to: + * `.whileConnected` + ``` + // Each connection will have it's own subject instance to store replay events. + // Connections will be isolated from each another. + source.multicast(makeSubject: { Replay.create(bufferSize: replay) }).refCount() + ``` + * `.forever` + ``` + // One subject will store replay events for all connections to source. + // Connections won't be isolated from each another. + source.multicast(Replay.create(bufferSize: replay)).refCount() + ``` + + It uses optimized versions of the operators for most common operations. + + - parameter replay: Maximum element count of the replay buffer. + - parameter scope: Lifetime scope of sharing subject. For more information see `SubjectLifetimeScope` enum. + + - seealso: [shareReplay operator on reactivex.io](http://reactivex.io/documentation/operators/replay.html) + + - returns: An observable sequence that contains the elements of a sequence produced by multicasting the source sequence. + */ + public func share(replay: Int = 0, scope: SubjectLifetimeScope = .whileConnected) + -> Observable { + switch scope { + case .forever: + switch replay { + case 0: return self.multicast(PublishSubject()).refCount() + default: return self.multicast(ReplaySubject.create(bufferSize: replay)).refCount() + } + case .whileConnected: + switch replay { + case 0: return ShareWhileConnected(source: self.asObservable()) + case 1: return ShareReplay1WhileConnected(source: self.asObservable()) + default: return self.multicast(makeSubject: { ReplaySubject.create(bufferSize: replay) }).refCount() + } + } + } +} + +private final class ShareReplay1WhileConnectedConnection + : ObserverType + , SynchronizedUnsubscribeType { + typealias Observers = AnyObserver.s + typealias DisposeKey = Observers.KeyType + + typealias Parent = ShareReplay1WhileConnected + private let parent: Parent + private let subscription = SingleAssignmentDisposable() + + private let lock: RecursiveLock + private var disposed: Bool = false + fileprivate var observers = Observers() + private var element: Element? + + init(parent: Parent, lock: RecursiveLock) { + self.parent = parent + self.lock = lock + + #if TRACE_RESOURCES + _ = Resources.incrementTotal() + #endif + } + + final func on(_ event: Event) { + let observers = self.lock.performLocked { self.synchronized_on(event) } + dispatch(observers, event) + } + + final private func synchronized_on(_ event: Event) -> Observers { + if self.disposed { + return Observers() + } + + switch event { + case .next(let element): + self.element = element + return self.observers + case .error, .completed: + let observers = self.observers + self.synchronized_dispose() + return observers + } + } + + final func connect() { + self.subscription.setDisposable(self.parent.source.subscribe(self)) + } + + final func synchronized_subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.lock.performLocked { + if let element = self.element { + observer.on(.next(element)) + } + + let disposeKey = self.observers.insert(observer.on) + + return SubscriptionDisposable(owner: self, key: disposeKey) + } + } + + final private func synchronized_dispose() { + self.disposed = true + if self.parent.connection === self { + self.parent.connection = nil + } + self.observers = Observers() + } + + final func synchronizedUnsubscribe(_ disposeKey: DisposeKey) { + if self.lock.performLocked({ self.synchronized_unsubscribe(disposeKey) }) { + self.subscription.dispose() + } + } + + @inline(__always) + final private func synchronized_unsubscribe(_ disposeKey: DisposeKey) -> Bool { + // if already unsubscribed, just return + if self.observers.removeKey(disposeKey) == nil { + return false + } + + if self.observers.count == 0 { + self.synchronized_dispose() + return true + } + + return false + } + + #if TRACE_RESOURCES + deinit { + _ = Resources.decrementTotal() + } + #endif +} + +// optimized version of share replay for most common case +final private class ShareReplay1WhileConnected + : Observable { + + fileprivate typealias Connection = ShareReplay1WhileConnectedConnection + + fileprivate let source: Observable + + private let lock = RecursiveLock() + + fileprivate var connection: Connection? + + init(source: Observable) { + self.source = source + } + + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.lock.lock() + let connection = self.synchronized_subscribe(observer) + let count = connection.observers.count + + let disposable = connection.synchronized_subscribe(observer) + self.lock.unlock() + + if count == 0 { + connection.connect() + } + + return disposable + } + + @inline(__always) + private func synchronized_subscribe(_ observer: Observer) -> Connection where Observer.Element == Element { + let connection: Connection + + if let existingConnection = self.connection { + connection = existingConnection + } + else { + connection = ShareReplay1WhileConnectedConnection( + parent: self, + lock: self.lock) + self.connection = connection + } + + return connection + } +} + +private final class ShareWhileConnectedConnection + : ObserverType + , SynchronizedUnsubscribeType { + typealias Observers = AnyObserver.s + typealias DisposeKey = Observers.KeyType + + typealias Parent = ShareWhileConnected + private let parent: Parent + private let subscription = SingleAssignmentDisposable() + + private let lock: RecursiveLock + private var disposed: Bool = false + fileprivate var observers = Observers() + + init(parent: Parent, lock: RecursiveLock) { + self.parent = parent + self.lock = lock + + #if TRACE_RESOURCES + _ = Resources.incrementTotal() + #endif + } + + final func on(_ event: Event) { + let observers = self.lock.performLocked { self.synchronized_on(event) } + dispatch(observers, event) + } + + final private func synchronized_on(_ event: Event) -> Observers { + if self.disposed { + return Observers() + } + + switch event { + case .next: + return self.observers + case .error, .completed: + let observers = self.observers + self.synchronized_dispose() + return observers + } + } + + final func connect() { + self.subscription.setDisposable(self.parent.source.subscribe(self)) + } + + final func synchronized_subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.lock.performLocked { + let disposeKey = self.observers.insert(observer.on) + + return SubscriptionDisposable(owner: self, key: disposeKey) + } + } + + final private func synchronized_dispose() { + self.disposed = true + if self.parent.connection === self { + self.parent.connection = nil + } + self.observers = Observers() + } + + final func synchronizedUnsubscribe(_ disposeKey: DisposeKey) { + if self.lock.performLocked({ self.synchronized_unsubscribe(disposeKey) }) { + self.subscription.dispose() + } + } + + @inline(__always) + final private func synchronized_unsubscribe(_ disposeKey: DisposeKey) -> Bool { + // if already unsubscribed, just return + if self.observers.removeKey(disposeKey) == nil { + return false + } + + if self.observers.count == 0 { + self.synchronized_dispose() + return true + } + + return false + } + + #if TRACE_RESOURCES + deinit { + _ = Resources.decrementTotal() + } + #endif +} + +// optimized version of share replay for most common case +final private class ShareWhileConnected + : Observable { + + fileprivate typealias Connection = ShareWhileConnectedConnection + + fileprivate let source: Observable + + private let lock = RecursiveLock() + + fileprivate var connection: Connection? + + init(source: Observable) { + self.source = source + } + + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.lock.lock() + let connection = self.synchronized_subscribe(observer) + let count = connection.observers.count + + let disposable = connection.synchronized_subscribe(observer) + self.lock.unlock() + + if count == 0 { + connection.connect() + } + + return disposable + } + + @inline(__always) + private func synchronized_subscribe(_ observer: Observer) -> Connection where Observer.Element == Element { + let connection: Connection + + if let existingConnection = self.connection { + connection = existingConnection + } + else { + connection = ShareWhileConnectedConnection( + parent: self, + lock: self.lock) + self.connection = connection + } + + return connection + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift b/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift new file mode 100644 index 00000000..04e22176 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift @@ -0,0 +1,104 @@ +// +// SingleAsync.swift +// RxSwift +// +// Created by Junior B. on 09/11/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + The single operator is similar to first, but throws a `RxError.noElements` or `RxError.moreThanOneElement` + if the source Observable does not emit exactly one element before successfully completing. + + - seealso: [single operator on reactivex.io](http://reactivex.io/documentation/operators/first.html) + + - returns: An observable sequence that emits a single element or throws an exception if more (or none) of them are emitted. + */ + public func single() + -> Observable { + SingleAsync(source: self.asObservable()) + } + + /** + The single operator is similar to first, but throws a `RxError.NoElements` or `RxError.MoreThanOneElement` + if the source Observable does not emit exactly one element before successfully completing. + + - seealso: [single operator on reactivex.io](http://reactivex.io/documentation/operators/first.html) + + - parameter predicate: A function to test each source element for a condition. + - returns: An observable sequence that emits a single element or throws an exception if more (or none) of them are emitted. + */ + public func single(_ predicate: @escaping (Element) throws -> Bool) + -> Observable { + SingleAsync(source: self.asObservable(), predicate: predicate) + } +} + +private final class SingleAsyncSink : Sink, ObserverType { + typealias Element = Observer.Element + typealias Parent = SingleAsync + + private let parent: Parent + private var seenValue: Bool = false + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + do { + let forward = try self.parent.predicate?(value) ?? true + if !forward { + return + } + } + catch let error { + self.forwardOn(.error(error as Swift.Error)) + self.dispose() + return + } + + if self.seenValue { + self.forwardOn(.error(RxError.moreThanOneElement)) + self.dispose() + return + } + + self.seenValue = true + self.forwardOn(.next(value)) + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + if self.seenValue { + self.forwardOn(.completed) + } else { + self.forwardOn(.error(RxError.noElements)) + } + self.dispose() + } + } +} + +final class SingleAsync: Producer { + typealias Predicate = (Element) throws -> Bool + + private let source: Observable + fileprivate let predicate: Predicate? + + init(source: Observable, predicate: Predicate? = nil) { + self.source = source + self.predicate = predicate + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = SingleAsyncSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Sink.swift b/Pods/RxSwift/RxSwift/Observables/Sink.swift new file mode 100644 index 00000000..ed4fec01 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Sink.swift @@ -0,0 +1,75 @@ +// +// Sink.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +class Sink: Disposable { + fileprivate let observer: Observer + fileprivate let cancel: Cancelable + private let disposed = AtomicInt(0) + + #if DEBUG + private let synchronizationTracker = SynchronizationTracker() + #endif + + init(observer: Observer, cancel: Cancelable) { +#if TRACE_RESOURCES + _ = Resources.incrementTotal() +#endif + self.observer = observer + self.cancel = cancel + } + + final func forwardOn(_ event: Event) { + #if DEBUG + self.synchronizationTracker.register(synchronizationErrorMessage: .default) + defer { self.synchronizationTracker.unregister() } + #endif + if isFlagSet(self.disposed, 1) { + return + } + self.observer.on(event) + } + + final func forwarder() -> SinkForward { + SinkForward(forward: self) + } + + final var isDisposed: Bool { + isFlagSet(self.disposed, 1) + } + + func dispose() { + fetchOr(self.disposed, 1) + self.cancel.dispose() + } + + deinit { +#if TRACE_RESOURCES + _ = Resources.decrementTotal() +#endif + } +} + +final class SinkForward: ObserverType { + typealias Element = Observer.Element + + private let forward: Sink + + init(forward: Sink) { + self.forward = forward + } + + final func on(_ event: Event) { + switch event { + case .next: + self.forward.observer.on(event) + case .error, .completed: + self.forward.observer.on(event) + self.forward.cancel.dispose() + } + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Skip.swift b/Pods/RxSwift/RxSwift/Observables/Skip.swift new file mode 100644 index 00000000..5856f374 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Skip.swift @@ -0,0 +1,158 @@ +// +// Skip.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/25/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Bypasses a specified number of elements in an observable sequence and then returns the remaining elements. + + - seealso: [skip operator on reactivex.io](http://reactivex.io/documentation/operators/skip.html) + + - parameter count: The number of elements to skip before returning the remaining elements. + - returns: An observable sequence that contains the elements that occur after the specified index in the input sequence. + */ + public func skip(_ count: Int) + -> Observable { + SkipCount(source: self.asObservable(), count: count) + } +} + +extension ObservableType { + + /** + Skips elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers. + + - seealso: [skip operator on reactivex.io](http://reactivex.io/documentation/operators/skip.html) + + - parameter duration: Duration for skipping elements from the start of the sequence. + - parameter scheduler: Scheduler to run the timer on. + - returns: An observable sequence with the elements skipped during the specified duration from the start of the source sequence. + */ + public func skip(_ duration: RxTimeInterval, scheduler: SchedulerType) + -> Observable { + SkipTime(source: self.asObservable(), duration: duration, scheduler: scheduler) + } +} + +// count version + +final private class SkipCountSink: Sink, ObserverType { + typealias Element = Observer.Element + typealias Parent = SkipCount + + let parent: Parent + + var remaining: Int + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.remaining = parent.count + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + + if self.remaining <= 0 { + self.forwardOn(.next(value)) + } + else { + self.remaining -= 1 + } + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + self.forwardOn(event) + self.dispose() + } + } + +} + +final private class SkipCount: Producer { + let source: Observable + let count: Int + + init(source: Observable, count: Int) { + self.source = source + self.count = count + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = SkipCountSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + + return (sink: sink, subscription: subscription) + } +} + +// time version + +final private class SkipTimeSink: Sink, ObserverType where Observer.Element == Element { + typealias Parent = SkipTime + + let parent: Parent + + // state + var open = false + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + if self.open { + self.forwardOn(.next(value)) + } + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + self.forwardOn(event) + self.dispose() + } + } + + func tick() { + self.open = true + } + + func run() -> Disposable { + let disposeTimer = self.parent.scheduler.scheduleRelative((), dueTime: self.parent.duration) { _ in + self.tick() + return Disposables.create() + } + + let disposeSubscription = self.parent.source.subscribe(self) + + return Disposables.create(disposeTimer, disposeSubscription) + } +} + +final private class SkipTime: Producer { + let source: Observable + let duration: RxTimeInterval + let scheduler: SchedulerType + + init(source: Observable, duration: RxTimeInterval, scheduler: SchedulerType) { + self.source = source + self.scheduler = scheduler + self.duration = duration + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = SkipTimeSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift b/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift new file mode 100644 index 00000000..c8fe1934 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift @@ -0,0 +1,152 @@ +// +// SkipUntil.swift +// RxSwift +// +// Created by Yury Korolev on 10/3/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Returns the elements from the source observable sequence that are emitted after the other observable sequence produces an element. + + - seealso: [skipUntil operator on reactivex.io](http://reactivex.io/documentation/operators/skipuntil.html) + + - parameter other: Observable sequence that starts propagation of elements of the source sequence. + - returns: An observable sequence containing the elements of the source sequence that are emitted after the other sequence emits an item. + */ + public func skip(until other: Source) + -> Observable { + SkipUntil(source: self.asObservable(), other: other.asObservable()) + } + + /** + Returns the elements from the source observable sequence that are emitted after the other observable sequence produces an element. + + - seealso: [skipUntil operator on reactivex.io](http://reactivex.io/documentation/operators/skipuntil.html) + + - parameter other: Observable sequence that starts propagation of elements of the source sequence. + - returns: An observable sequence containing the elements of the source sequence that are emitted after the other sequence emits an item. + */ + @available(*, deprecated, renamed: "skip(until:)") + public func skipUntil(_ other: Source) + -> Observable { + skip(until: other) + } +} + +final private class SkipUntilSinkOther + : ObserverType + , LockOwnerType + , SynchronizedOnType { + typealias Parent = SkipUntilSink + typealias Element = Other + + private let parent: Parent + + var lock: RecursiveLock { + self.parent.lock + } + + let subscription = SingleAssignmentDisposable() + + init(parent: Parent) { + self.parent = parent + #if TRACE_RESOURCES + _ = Resources.incrementTotal() + #endif + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next: + self.parent.forwardElements = true + self.subscription.dispose() + case .error(let e): + self.parent.forwardOn(.error(e)) + self.parent.dispose() + case .completed: + self.subscription.dispose() + } + } + + #if TRACE_RESOURCES + deinit { + _ = Resources.decrementTotal() + } + #endif + +} + + +final private class SkipUntilSink + : Sink + , ObserverType + , LockOwnerType + , SynchronizedOnType { + typealias Element = Observer.Element + typealias Parent = SkipUntil + + let lock = RecursiveLock() + private let parent: Parent + fileprivate var forwardElements = false + + private let sourceSubscription = SingleAssignmentDisposable() + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next: + if self.forwardElements { + self.forwardOn(event) + } + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + if self.forwardElements { + self.forwardOn(event) + } + self.dispose() + } + } + + func run() -> Disposable { + let sourceSubscription = self.parent.source.subscribe(self) + let otherObserver = SkipUntilSinkOther(parent: self) + let otherSubscription = self.parent.other.subscribe(otherObserver) + self.sourceSubscription.setDisposable(sourceSubscription) + otherObserver.subscription.setDisposable(otherSubscription) + + return Disposables.create(sourceSubscription, otherObserver.subscription) + } +} + +final private class SkipUntil: Producer { + + fileprivate let source: Observable + fileprivate let other: Observable + + init(source: Observable, other: Observable) { + self.source = source + self.other = other + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = SkipUntilSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift b/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift new file mode 100644 index 00000000..a62f88dd --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift @@ -0,0 +1,87 @@ +// +// SkipWhile.swift +// RxSwift +// +// Created by Yury Korolev on 10/9/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements. + + - seealso: [skipWhile operator on reactivex.io](http://reactivex.io/documentation/operators/skipwhile.html) + + - parameter predicate: A function to test each element for a condition. + - returns: An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate. + */ + public func skip(while predicate: @escaping (Element) throws -> Bool) -> Observable { + SkipWhile(source: self.asObservable(), predicate: predicate) + } + + /** + Bypasses elements in an observable sequence as long as a specified condition is true and then returns the remaining elements. + + - seealso: [skipWhile operator on reactivex.io](http://reactivex.io/documentation/operators/skipwhile.html) + + - parameter predicate: A function to test each element for a condition. + - returns: An observable sequence that contains the elements from the input sequence starting at the first element in the linear series that does not pass the test specified by predicate. + */ + @available(*, deprecated, renamed: "skip(while:)") + public func skipWhile(_ predicate: @escaping (Element) throws -> Bool) -> Observable { + SkipWhile(source: self.asObservable(), predicate: predicate) + } +} + +final private class SkipWhileSink: Sink, ObserverType { + typealias Element = Observer.Element + typealias Parent = SkipWhile + + private let parent: Parent + private var running = false + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + if !self.running { + do { + self.running = try !self.parent.predicate(value) + } catch let e { + self.forwardOn(.error(e)) + self.dispose() + return + } + } + + if self.running { + self.forwardOn(.next(value)) + } + case .error, .completed: + self.forwardOn(event) + self.dispose() + } + } +} + +final private class SkipWhile: Producer { + typealias Predicate = (Element) throws -> Bool + + private let source: Observable + fileprivate let predicate: Predicate + + init(source: Observable, predicate: @escaping Predicate) { + self.source = source + self.predicate = predicate + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = SkipWhileSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/StartWith.swift b/Pods/RxSwift/RxSwift/Observables/StartWith.swift new file mode 100644 index 00000000..13fb31d3 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/StartWith.swift @@ -0,0 +1,42 @@ +// +// StartWith.swift +// RxSwift +// +// Created by Krunoslav Zaher on 4/6/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Prepends a sequence of values to an observable sequence. + + - seealso: [startWith operator on reactivex.io](http://reactivex.io/documentation/operators/startwith.html) + + - parameter elements: Elements to prepend to the specified sequence. + - returns: The source sequence prepended with the specified values. + */ + public func startWith(_ elements: Element ...) + -> Observable { + return StartWith(source: self.asObservable(), elements: elements) + } +} + +final private class StartWith: Producer { + let elements: [Element] + let source: Observable + + init(source: Observable, elements: [Element]) { + self.source = source + self.elements = elements + super.init() + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + for e in self.elements { + observer.on(.next(e)) + } + + return (sink: Disposables.create(), subscription: self.source.subscribe(observer)) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift b/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift new file mode 100644 index 00000000..e8e41d9c --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift @@ -0,0 +1,103 @@ +// +// SubscribeOn.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Wraps the source sequence in order to run its subscription and unsubscription logic on the specified + scheduler. + + This operation is not commonly used. + + This only performs the side-effects of subscription and unsubscription on the specified scheduler. + + In order to invoke observer callbacks on a `scheduler`, use `observeOn`. + + - seealso: [subscribeOn operator on reactivex.io](http://reactivex.io/documentation/operators/subscribeon.html) + + - parameter scheduler: Scheduler to perform subscription and unsubscription actions on. + - returns: The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler. + */ + public func subscribe(on scheduler: ImmediateSchedulerType) + -> Observable { + SubscribeOn(source: self, scheduler: scheduler) + } + + /** + Wraps the source sequence in order to run its subscription and unsubscription logic on the specified + scheduler. + + This operation is not commonly used. + + This only performs the side-effects of subscription and unsubscription on the specified scheduler. + + In order to invoke observer callbacks on a `scheduler`, use `observeOn`. + + - seealso: [subscribeOn operator on reactivex.io](http://reactivex.io/documentation/operators/subscribeon.html) + + - parameter scheduler: Scheduler to perform subscription and unsubscription actions on. + - returns: The source sequence whose subscriptions and unsubscriptions happen on the specified scheduler. + */ + @available(*, deprecated, renamed: "subscribe(on:)") + public func subscribeOn(_ scheduler: ImmediateSchedulerType) + -> Observable { + subscribe(on: scheduler) + } +} + +final private class SubscribeOnSink: Sink, ObserverType where Ob.Element == Observer.Element { + typealias Element = Observer.Element + typealias Parent = SubscribeOn + + let parent: Parent + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + self.forwardOn(event) + + if event.isStopEvent { + self.dispose() + } + } + + func run() -> Disposable { + let disposeEverything = SerialDisposable() + let cancelSchedule = SingleAssignmentDisposable() + + disposeEverything.disposable = cancelSchedule + + let disposeSchedule = self.parent.scheduler.schedule(()) { _ -> Disposable in + let subscription = self.parent.source.subscribe(self) + disposeEverything.disposable = ScheduledDisposable(scheduler: self.parent.scheduler, disposable: subscription) + return Disposables.create() + } + + cancelSchedule.setDisposable(disposeSchedule) + + return disposeEverything + } +} + +final private class SubscribeOn: Producer { + let source: Ob + let scheduler: ImmediateSchedulerType + + init(source: Ob, scheduler: ImmediateSchedulerType) { + self.source = source + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Ob.Element { + let sink = SubscribeOnSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Switch.swift b/Pods/RxSwift/RxSwift/Observables/Switch.swift new file mode 100644 index 00000000..5aa60b97 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Switch.swift @@ -0,0 +1,251 @@ +// +// Switch.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Projects each element of an observable sequence into a new sequence of observable sequences and then + transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence. + + It is a combination of `map` + `switchLatest` operator + + - seealso: [flatMapLatest operator on reactivex.io](http://reactivex.io/documentation/operators/flatmap.html) + + - parameter selector: A transform function to apply to each element. + - returns: An observable sequence whose elements are the result of invoking the transform function on each element of source producing an + Observable of Observable sequences and that at any point in time produces the elements of the most recent inner observable sequence that has been received. + */ + public func flatMapLatest(_ selector: @escaping (Element) throws -> Source) + -> Observable { + return FlatMapLatest(source: self.asObservable(), selector: selector) + } + + /** + Projects each element of an observable sequence into a new sequence of observable sequences and then + transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence. + + It is a combination of `map` + `switchLatest` operator + + - seealso: [flatMapLatest operator on reactivex.io](http://reactivex.io/documentation/operators/flatmap.html) + + - parameter selector: A transform function to apply to each element. + - returns: An observable sequence whose elements are the result of invoking the transform function on each element of source producing an + Observable of Observable sequences and that at any point in time produces the elements of the most recent inner observable sequence that has been received. + */ + public func flatMapLatest(_ selector: @escaping (Element) throws -> Source) + -> Infallible { + return Infallible(flatMapLatest(selector)) + } +} + +extension ObservableType where Element: ObservableConvertibleType { + + /** + Transforms an observable sequence of observable sequences into an observable sequence + producing values only from the most recent observable sequence. + + Each time a new inner observable sequence is received, unsubscribe from the + previous inner observable sequence. + + - seealso: [switch operator on reactivex.io](http://reactivex.io/documentation/operators/switch.html) + + - returns: The observable sequence that at any point in time produces the elements of the most recent inner observable sequence that has been received. + */ + public func switchLatest() -> Observable { + Switch(source: self.asObservable()) + } +} + +private class SwitchSink + : Sink + , ObserverType where Source.Element == Observer.Element { + typealias Element = SourceType + + private let subscriptions: SingleAssignmentDisposable = SingleAssignmentDisposable() + private let innerSubscription: SerialDisposable = SerialDisposable() + + let lock = RecursiveLock() + + // state + fileprivate var stopped = false + fileprivate var latest = 0 + fileprivate var hasLatest = false + + override init(observer: Observer, cancel: Cancelable) { + super.init(observer: observer, cancel: cancel) + } + + func run(_ source: Observable) -> Disposable { + let subscription = source.subscribe(self) + self.subscriptions.setDisposable(subscription) + return Disposables.create(subscriptions, innerSubscription) + } + + func performMap(_ element: SourceType) throws -> Source { + rxAbstractMethod() + } + + @inline(__always) + final private func nextElementArrived(element: Element) -> (Int, Observable)? { + self.lock.lock(); defer { self.lock.unlock() } + + do { + let observable = try self.performMap(element).asObservable() + self.hasLatest = true + self.latest = self.latest &+ 1 + return (self.latest, observable) + } + catch let error { + self.forwardOn(.error(error)) + self.dispose() + } + + return nil + } + + func on(_ event: Event) { + switch event { + case .next(let element): + if let (latest, observable) = self.nextElementArrived(element: element) { + let d = SingleAssignmentDisposable() + self.innerSubscription.disposable = d + + let observer = SwitchSinkIter(parent: self, id: latest, this: d) + let disposable = observable.subscribe(observer) + d.setDisposable(disposable) + } + case .error(let error): + self.lock.lock(); defer { self.lock.unlock() } + self.forwardOn(.error(error)) + self.dispose() + case .completed: + self.lock.lock(); defer { self.lock.unlock() } + self.stopped = true + + self.subscriptions.dispose() + + if !self.hasLatest { + self.forwardOn(.completed) + self.dispose() + } + } + } +} + +final private class SwitchSinkIter + : ObserverType + , LockOwnerType + , SynchronizedOnType where Source.Element == Observer.Element { + typealias Element = Source.Element + typealias Parent = SwitchSink + + private let parent: Parent + private let id: Int + private let this: Disposable + + var lock: RecursiveLock { + self.parent.lock + } + + init(parent: Parent, id: Int, this: Disposable) { + self.parent = parent + self.id = id + self.this = this + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next: break + case .error, .completed: + self.this.dispose() + } + + if self.parent.latest != self.id { + return + } + + switch event { + case .next: + self.parent.forwardOn(event) + case .error: + self.parent.forwardOn(event) + self.parent.dispose() + case .completed: + self.parent.hasLatest = false + if self.parent.stopped { + self.parent.forwardOn(event) + self.parent.dispose() + } + } + } +} + +// MARK: Specializations + +final private class SwitchIdentitySink: SwitchSink + where Observer.Element == Source.Element { + override init(observer: Observer, cancel: Cancelable) { + super.init(observer: observer, cancel: cancel) + } + + override func performMap(_ element: Source) throws -> Source { + element + } +} + +final private class MapSwitchSink: SwitchSink where Observer.Element == Source.Element { + typealias Selector = (SourceType) throws -> Source + + private let selector: Selector + + init(selector: @escaping Selector, observer: Observer, cancel: Cancelable) { + self.selector = selector + super.init(observer: observer, cancel: cancel) + } + + override func performMap(_ element: SourceType) throws -> Source { + try self.selector(element) + } +} + +// MARK: Producers + +final private class Switch: Producer { + private let source: Observable + + init(source: Observable) { + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Source.Element { + let sink = SwitchIdentitySink(observer: observer, cancel: cancel) + let subscription = sink.run(self.source) + return (sink: sink, subscription: subscription) + } +} + +final private class FlatMapLatest: Producer { + typealias Selector = (SourceType) throws -> Source + + private let source: Observable + private let selector: Selector + + init(source: Observable, selector: @escaping Selector) { + self.source = source + self.selector = selector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Source.Element { + let sink = MapSwitchSink(selector: self.selector, observer: observer, cancel: cancel) + let subscription = sink.run(self.source) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift b/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift new file mode 100644 index 00000000..037bf697 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift @@ -0,0 +1,104 @@ +// +// SwitchIfEmpty.swift +// RxSwift +// +// Created by sergdort on 23/12/2016. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Returns the elements of the specified sequence or `switchTo` sequence if the sequence is empty. + + - seealso: [DefaultIfEmpty operator on reactivex.io](http://reactivex.io/documentation/operators/defaultifempty.html) + + - parameter other: Observable sequence being returned when source sequence is empty. + - returns: Observable sequence that contains elements from switchTo sequence if source is empty, otherwise returns source sequence elements. + */ + public func ifEmpty(switchTo other: Observable) -> Observable { + SwitchIfEmpty(source: self.asObservable(), ifEmpty: other) + } +} + +final private class SwitchIfEmpty: Producer { + + private let source: Observable + private let ifEmpty: Observable + + init(source: Observable, ifEmpty: Observable) { + self.source = source + self.ifEmpty = ifEmpty + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = SwitchIfEmptySink(ifEmpty: self.ifEmpty, + observer: observer, + cancel: cancel) + let subscription = sink.run(self.source.asObservable()) + + return (sink: sink, subscription: subscription) + } +} + +final private class SwitchIfEmptySink: Sink + , ObserverType { + typealias Element = Observer.Element + + private let ifEmpty: Observable + private var isEmpty = true + private let ifEmptySubscription = SingleAssignmentDisposable() + + init(ifEmpty: Observable, observer: Observer, cancel: Cancelable) { + self.ifEmpty = ifEmpty + super.init(observer: observer, cancel: cancel) + } + + func run(_ source: Observable) -> Disposable { + let subscription = source.subscribe(self) + return Disposables.create(subscription, ifEmptySubscription) + } + + func on(_ event: Event) { + switch event { + case .next: + self.isEmpty = false + self.forwardOn(event) + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + guard self.isEmpty else { + self.forwardOn(.completed) + self.dispose() + return + } + let ifEmptySink = SwitchIfEmptySinkIter(parent: self) + self.ifEmptySubscription.setDisposable(self.ifEmpty.subscribe(ifEmptySink)) + } + } +} + +final private class SwitchIfEmptySinkIter + : ObserverType { + typealias Element = Observer.Element + typealias Parent = SwitchIfEmptySink + + private let parent: Parent + + init(parent: Parent) { + self.parent = parent + } + + func on(_ event: Event) { + switch event { + case .next: + self.parent.forwardOn(event) + case .error: + self.parent.forwardOn(event) + self.parent.dispose() + case .completed: + self.parent.forwardOn(event) + self.parent.dispose() + } + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Take.swift b/Pods/RxSwift/RxSwift/Observables/Take.swift new file mode 100644 index 00000000..e5746880 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Take.swift @@ -0,0 +1,193 @@ +// +// Take.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/12/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Returns a specified number of contiguous elements from the start of an observable sequence. + + - seealso: [take operator on reactivex.io](http://reactivex.io/documentation/operators/take.html) + + - parameter count: The number of elements to return. + - returns: An observable sequence that contains the specified number of elements from the start of the input sequence. + */ + public func take(_ count: Int) + -> Observable { + if count == 0 { + return Observable.empty() + } + else { + return TakeCount(source: self.asObservable(), count: count) + } + } +} + +extension ObservableType { + /** + Takes elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers. + + - seealso: [take operator on reactivex.io](http://reactivex.io/documentation/operators/take.html) + + - parameter duration: Duration for taking elements from the start of the sequence. + - parameter scheduler: Scheduler to run the timer on. + - returns: An observable sequence with the elements taken during the specified duration from the start of the source sequence. + */ + public func take(for duration: RxTimeInterval, scheduler: SchedulerType) + -> Observable { + TakeTime(source: self.asObservable(), duration: duration, scheduler: scheduler) + } + + /** + Takes elements for the specified duration from the start of the observable source sequence, using the specified scheduler to run timers. + + - seealso: [take operator on reactivex.io](http://reactivex.io/documentation/operators/take.html) + + - parameter duration: Duration for taking elements from the start of the sequence. + - parameter scheduler: Scheduler to run the timer on. + - returns: An observable sequence with the elements taken during the specified duration from the start of the source sequence. + */ + @available(*, deprecated, renamed: "take(for:scheduler:)") + public func take(_ duration: RxTimeInterval, scheduler: SchedulerType) + -> Observable { + take(for: duration, scheduler: scheduler) + } +} + +// count version + +final private class TakeCountSink: Sink, ObserverType { + typealias Element = Observer.Element + typealias Parent = TakeCount + + private let parent: Parent + + private var remaining: Int + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.remaining = parent.count + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + + if self.remaining > 0 { + self.remaining -= 1 + + self.forwardOn(.next(value)) + + if self.remaining == 0 { + self.forwardOn(.completed) + self.dispose() + } + } + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + self.forwardOn(event) + self.dispose() + } + } + +} + +final private class TakeCount: Producer { + private let source: Observable + fileprivate let count: Int + + init(source: Observable, count: Int) { + if count < 0 { + rxFatalError("count can't be negative") + } + self.source = source + self.count = count + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = TakeCountSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} + +// time version + +final private class TakeTimeSink + : Sink + , LockOwnerType + , ObserverType + , SynchronizedOnType where Observer.Element == Element { + typealias Parent = TakeTime + + private let parent: Parent + + let lock = RecursiveLock() + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next(let value): + self.forwardOn(.next(value)) + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + self.forwardOn(event) + self.dispose() + } + } + + func tick() { + self.lock.performLocked { + self.forwardOn(.completed) + self.dispose() + } + } + + func run() -> Disposable { + let disposeTimer = self.parent.scheduler.scheduleRelative((), dueTime: self.parent.duration) { _ in + self.tick() + return Disposables.create() + } + + let disposeSubscription = self.parent.source.subscribe(self) + + return Disposables.create(disposeTimer, disposeSubscription) + } +} + +final private class TakeTime: Producer { + typealias TimeInterval = RxTimeInterval + + fileprivate let source: Observable + fileprivate let duration: TimeInterval + fileprivate let scheduler: SchedulerType + + init(source: Observable, duration: TimeInterval, scheduler: SchedulerType) { + self.source = source + self.scheduler = scheduler + self.duration = duration + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = TakeTimeSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/TakeLast.swift b/Pods/RxSwift/RxSwift/Observables/TakeLast.swift new file mode 100644 index 00000000..91833872 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/TakeLast.swift @@ -0,0 +1,78 @@ +// +// TakeLast.swift +// RxSwift +// +// Created by Tomi Koskinen on 25/10/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Returns a specified number of contiguous elements from the end of an observable sequence. + + This operator accumulates a buffer with a length enough to store elements count elements. Upon completion of the source sequence, this buffer is drained on the result sequence. This causes the elements to be delayed. + + - seealso: [takeLast operator on reactivex.io](http://reactivex.io/documentation/operators/takelast.html) + + - parameter count: Number of elements to take from the end of the source sequence. + - returns: An observable sequence containing the specified number of elements from the end of the source sequence. + */ + public func takeLast(_ count: Int) + -> Observable { + TakeLast(source: self.asObservable(), count: count) + } +} + +final private class TakeLastSink: Sink, ObserverType { + typealias Element = Observer.Element + typealias Parent = TakeLast + + private let parent: Parent + + private var elements: Queue + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.elements = Queue(capacity: parent.count + 1) + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + self.elements.enqueue(value) + if self.elements.count > self.parent.count { + _ = self.elements.dequeue() + } + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + for e in self.elements { + self.forwardOn(.next(e)) + } + self.forwardOn(.completed) + self.dispose() + } + } +} + +final private class TakeLast: Producer { + private let source: Observable + fileprivate let count: Int + + init(source: Observable, count: Int) { + if count < 0 { + rxFatalError("count can't be negative") + } + self.source = source + self.count = count + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = TakeLastSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/TakeWithPredicate.swift b/Pods/RxSwift/RxSwift/Observables/TakeWithPredicate.swift new file mode 100644 index 00000000..6c28d19b --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/TakeWithPredicate.swift @@ -0,0 +1,285 @@ +// +// TakeWithPredicate.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/7/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Returns the elements from the source observable sequence until the other observable sequence produces an element. + + - seealso: [takeUntil operator on reactivex.io](http://reactivex.io/documentation/operators/takeuntil.html) + + - parameter other: Observable sequence that terminates propagation of elements of the source sequence. + - returns: An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation. + */ + public func take(until other: Source) + -> Observable { + TakeUntil(source: self.asObservable(), other: other.asObservable()) + } + + /** + Returns elements from an observable sequence until the specified condition is true. + + - seealso: [takeUntil operator on reactivex.io](http://reactivex.io/documentation/operators/takeuntil.html) + + - parameter predicate: A function to test each element for a condition. + - parameter behavior: Whether or not to include the last element matching the predicate. Defaults to `exclusive`. + + - returns: An observable sequence that contains the elements from the input sequence that occur before the element at which the test passes. + */ + public func take(until predicate: @escaping (Element) throws -> Bool, + behavior: TakeBehavior = .exclusive) + -> Observable { + TakeUntilPredicate(source: self.asObservable(), + behavior: behavior, + predicate: predicate) + } + + /** + Returns elements from an observable sequence as long as a specified condition is true. + + - seealso: [takeWhile operator on reactivex.io](http://reactivex.io/documentation/operators/takewhile.html) + + - parameter predicate: A function to test each element for a condition. + - returns: An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes. + */ + public func take(while predicate: @escaping (Element) throws -> Bool, + behavior: TakeBehavior = .exclusive) + -> Observable { + take(until: { try !predicate($0) }, behavior: behavior) + } + + /** + Returns the elements from the source observable sequence until the other observable sequence produces an element. + + - seealso: [takeUntil operator on reactivex.io](http://reactivex.io/documentation/operators/takeuntil.html) + + - parameter other: Observable sequence that terminates propagation of elements of the source sequence. + - returns: An observable sequence containing the elements of the source sequence up to the point the other sequence interrupted further propagation. + */ + @available(*, deprecated, renamed: "take(until:)") + public func takeUntil(_ other: Source) + -> Observable { + take(until: other) + } + + /** + Returns elements from an observable sequence until the specified condition is true. + + - seealso: [takeUntil operator on reactivex.io](http://reactivex.io/documentation/operators/takeuntil.html) + + - parameter behavior: Whether or not to include the last element matching the predicate. + - parameter predicate: A function to test each element for a condition. + - returns: An observable sequence that contains the elements from the input sequence that occur before the element at which the test passes. + */ + @available(*, deprecated, renamed: "take(until:behavior:)") + public func takeUntil(_ behavior: TakeBehavior, + predicate: @escaping (Element) throws -> Bool) + -> Observable { + take(until: predicate, behavior: behavior) + } + + /** + Returns elements from an observable sequence as long as a specified condition is true. + + - seealso: [takeWhile operator on reactivex.io](http://reactivex.io/documentation/operators/takewhile.html) + + - parameter predicate: A function to test each element for a condition. + - returns: An observable sequence that contains the elements from the input sequence that occur before the element at which the test no longer passes. + */ + @available(*, deprecated, renamed: "take(while:)") + public func takeWhile(_ predicate: @escaping (Element) throws -> Bool) + -> Observable { + take(until: { try !predicate($0) }, behavior: .exclusive) + } +} + +/// Behaviors for the take operator family. +public enum TakeBehavior { + /// Include the last element matching the predicate. + case inclusive + + /// Exclude the last element matching the predicate. + case exclusive +} + +// MARK: - TakeUntil Observable +final private class TakeUntilSinkOther + : ObserverType + , LockOwnerType + , SynchronizedOnType { + typealias Parent = TakeUntilSink + typealias Element = Other + + private let parent: Parent + + var lock: RecursiveLock { + self.parent.lock + } + + fileprivate let subscription = SingleAssignmentDisposable() + + init(parent: Parent) { + self.parent = parent +#if TRACE_RESOURCES + _ = Resources.incrementTotal() +#endif + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next: + self.parent.forwardOn(.completed) + self.parent.dispose() + case .error(let e): + self.parent.forwardOn(.error(e)) + self.parent.dispose() + case .completed: + self.subscription.dispose() + } + } + +#if TRACE_RESOURCES + deinit { + _ = Resources.decrementTotal() + } +#endif +} + +final private class TakeUntilSink + : Sink + , LockOwnerType + , ObserverType + , SynchronizedOnType { + typealias Element = Observer.Element + typealias Parent = TakeUntil + + private let parent: Parent + + let lock = RecursiveLock() + + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next: + self.forwardOn(event) + case .error: + self.forwardOn(event) + self.dispose() + case .completed: + self.forwardOn(event) + self.dispose() + } + } + + func run() -> Disposable { + let otherObserver = TakeUntilSinkOther(parent: self) + let otherSubscription = self.parent.other.subscribe(otherObserver) + otherObserver.subscription.setDisposable(otherSubscription) + let sourceSubscription = self.parent.source.subscribe(self) + + return Disposables.create(sourceSubscription, otherObserver.subscription) + } +} + +final private class TakeUntil: Producer { + + fileprivate let source: Observable + fileprivate let other: Observable + + init(source: Observable, other: Observable) { + self.source = source + self.other = other + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = TakeUntilSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + +// MARK: - TakeUntil Predicate +final private class TakeUntilPredicateSink + : Sink, ObserverType { + typealias Element = Observer.Element + typealias Parent = TakeUntilPredicate + + private let parent: Parent + private var running = true + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + if !self.running { + return + } + + do { + self.running = try !self.parent.predicate(value) + } catch let e { + self.forwardOn(.error(e)) + self.dispose() + return + } + + if self.running { + self.forwardOn(.next(value)) + } else { + if self.parent.behavior == .inclusive { + self.forwardOn(.next(value)) + } + + self.forwardOn(.completed) + self.dispose() + } + case .error, .completed: + self.forwardOn(event) + self.dispose() + } + } + +} + +final private class TakeUntilPredicate: Producer { + typealias Predicate = (Element) throws -> Bool + + private let source: Observable + fileprivate let predicate: Predicate + fileprivate let behavior: TakeBehavior + + init(source: Observable, + behavior: TakeBehavior, + predicate: @escaping Predicate) { + self.source = source + self.behavior = behavior + self.predicate = predicate + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = TakeUntilPredicateSink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Throttle.swift b/Pods/RxSwift/RxSwift/Observables/Throttle.swift new file mode 100644 index 00000000..86152a83 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Throttle.swift @@ -0,0 +1,160 @@ +// +// Throttle.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/22/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +extension ObservableType { + + /** + Returns an Observable that emits the first and the latest item emitted by the source Observable during sequential time windows of a specified duration. + + This operator makes sure that no two elements are emitted in less then dueTime. + + - seealso: [debounce operator on reactivex.io](http://reactivex.io/documentation/operators/debounce.html) + + - parameter dueTime: Throttling duration for each element. + - parameter latest: Should latest element received in a dueTime wide time window since last element emission be emitted. + - parameter scheduler: Scheduler to run the throttle timers on. + - returns: The throttled sequence. + */ + public func throttle(_ dueTime: RxTimeInterval, latest: Bool = true, scheduler: SchedulerType) + -> Observable { + Throttle(source: self.asObservable(), dueTime: dueTime, latest: latest, scheduler: scheduler) + } +} + +final private class ThrottleSink + : Sink + , ObserverType + , LockOwnerType + , SynchronizedOnType { + typealias Element = Observer.Element + typealias ParentType = Throttle + + private let parent: ParentType + + let lock = RecursiveLock() + + // state + private var lastUnsentElement: Element? + private var lastSentTime: Date? + private var completed: Bool = false + + let cancellable = SerialDisposable() + + init(parent: ParentType, observer: Observer, cancel: Cancelable) { + self.parent = parent + + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let subscription = self.parent.source.subscribe(self) + + return Disposables.create(subscription, cancellable) + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case .next(let element): + let now = self.parent.scheduler.now + + let reducedScheduledTime: RxTimeInterval + + if let lastSendingTime = self.lastSentTime { + reducedScheduledTime = self.parent.dueTime.reduceWithSpanBetween(earlierDate: lastSendingTime, laterDate: now) + } + else { + reducedScheduledTime = .nanoseconds(0) + } + + if reducedScheduledTime.isNow { + self.sendNow(element: element) + return + } + + if !self.parent.latest { + return + } + + let isThereAlreadyInFlightRequest = self.lastUnsentElement != nil + + self.lastUnsentElement = element + + if isThereAlreadyInFlightRequest { + return + } + + let scheduler = self.parent.scheduler + + let d = SingleAssignmentDisposable() + self.cancellable.disposable = d + + d.setDisposable(scheduler.scheduleRelative(0, dueTime: reducedScheduledTime, action: self.propagate)) + case .error: + self.lastUnsentElement = nil + self.forwardOn(event) + self.dispose() + case .completed: + if self.lastUnsentElement != nil { + self.completed = true + } + else { + self.forwardOn(.completed) + self.dispose() + } + } + } + + private func sendNow(element: Element) { + self.lastUnsentElement = nil + self.forwardOn(.next(element)) + // in case element processing takes a while, this should give some more room + self.lastSentTime = self.parent.scheduler.now + } + + func propagate(_: Int) -> Disposable { + self.lock.performLocked { + if let lastUnsentElement = self.lastUnsentElement { + self.sendNow(element: lastUnsentElement) + } + + if self.completed { + self.forwardOn(.completed) + self.dispose() + } + } + + return Disposables.create() + } +} + +final private class Throttle: Producer { + fileprivate let source: Observable + fileprivate let dueTime: RxTimeInterval + fileprivate let latest: Bool + fileprivate let scheduler: SchedulerType + + init(source: Observable, dueTime: RxTimeInterval, latest: Bool, scheduler: SchedulerType) { + self.source = source + self.dueTime = dueTime + self.latest = latest + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = ThrottleSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } + +} diff --git a/Pods/RxSwift/RxSwift/Observables/Timeout.swift b/Pods/RxSwift/RxSwift/Observables/Timeout.swift new file mode 100644 index 00000000..efcc7917 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Timeout.swift @@ -0,0 +1,151 @@ +// +// Timeout.swift +// RxSwift +// +// Created by Tomi Koskinen on 13/11/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Applies a timeout policy for each element in the observable sequence. If the next element isn't received within the specified timeout duration starting from its predecessor, a TimeoutError is propagated to the observer. + + - seealso: [timeout operator on reactivex.io](http://reactivex.io/documentation/operators/timeout.html) + + - parameter dueTime: Maximum duration between values before a timeout occurs. + - parameter scheduler: Scheduler to run the timeout timer on. + - returns: An observable sequence with a `RxError.timeout` in case of a timeout. + */ + public func timeout(_ dueTime: RxTimeInterval, scheduler: SchedulerType) + -> Observable { + return Timeout(source: self.asObservable(), dueTime: dueTime, other: Observable.error(RxError.timeout), scheduler: scheduler) + } + + /** + Applies a timeout policy for each element in the observable sequence, using the specified scheduler to run timeout timers. If the next element isn't received within the specified timeout duration starting from its predecessor, the other observable sequence is used to produce future messages from that point on. + + - seealso: [timeout operator on reactivex.io](http://reactivex.io/documentation/operators/timeout.html) + + - parameter dueTime: Maximum duration between values before a timeout occurs. + - parameter other: Sequence to return in case of a timeout. + - parameter scheduler: Scheduler to run the timeout timer on. + - returns: The source sequence switching to the other sequence in case of a timeout. + */ + public func timeout(_ dueTime: RxTimeInterval, other: Source, scheduler: SchedulerType) + -> Observable where Element == Source.Element { + return Timeout(source: self.asObservable(), dueTime: dueTime, other: other.asObservable(), scheduler: scheduler) + } +} + +final private class TimeoutSink: Sink, LockOwnerType, ObserverType { + typealias Element = Observer.Element + typealias Parent = Timeout + + private let parent: Parent + + let lock = RecursiveLock() + + private let timerD = SerialDisposable() + private let subscription = SerialDisposable() + + private var id = 0 + private var switched = false + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let original = SingleAssignmentDisposable() + self.subscription.disposable = original + + self.createTimeoutTimer() + + original.setDisposable(self.parent.source.subscribe(self)) + + return Disposables.create(subscription, timerD) + } + + func on(_ event: Event) { + switch event { + case .next: + var onNextWins = false + + self.lock.performLocked { + onNextWins = !self.switched + if onNextWins { + self.id = self.id &+ 1 + } + } + + if onNextWins { + self.forwardOn(event) + self.createTimeoutTimer() + } + case .error, .completed: + var onEventWins = false + + self.lock.performLocked { + onEventWins = !self.switched + if onEventWins { + self.id = self.id &+ 1 + } + } + + if onEventWins { + self.forwardOn(event) + self.dispose() + } + } + } + + private func createTimeoutTimer() { + if self.timerD.isDisposed { + return + } + + let nextTimer = SingleAssignmentDisposable() + self.timerD.disposable = nextTimer + + let disposeSchedule = self.parent.scheduler.scheduleRelative(self.id, dueTime: self.parent.dueTime) { state in + + var timerWins = false + + self.lock.performLocked { + self.switched = (state == self.id) + timerWins = self.switched + } + + if timerWins { + self.subscription.disposable = self.parent.other.subscribe(self.forwarder()) + } + + return Disposables.create() + } + + nextTimer.setDisposable(disposeSchedule) + } +} + + +final private class Timeout: Producer { + fileprivate let source: Observable + fileprivate let dueTime: RxTimeInterval + fileprivate let other: Observable + fileprivate let scheduler: SchedulerType + + init(source: Observable, dueTime: RxTimeInterval, other: Observable, scheduler: SchedulerType) { + self.source = source + self.dueTime = dueTime + self.other = other + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = TimeoutSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Timer.swift b/Pods/RxSwift/RxSwift/Observables/Timer.swift new file mode 100644 index 00000000..30bbdf67 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Timer.swift @@ -0,0 +1,117 @@ +// +// Timer.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/7/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType where Element: RxAbstractInteger { + /** + Returns an observable sequence that produces a value after each period, using the specified scheduler to run timers and to send out observer messages. + + - seealso: [interval operator on reactivex.io](http://reactivex.io/documentation/operators/interval.html) + + - parameter period: Period for producing the values in the resulting sequence. + - parameter scheduler: Scheduler to run the timer on. + - returns: An observable sequence that produces a value after each period. + */ + public static func interval(_ period: RxTimeInterval, scheduler: SchedulerType) + -> Observable { + return Timer( + dueTime: period, + period: period, + scheduler: scheduler + ) + } +} + +extension ObservableType where Element: RxAbstractInteger { + /** + Returns an observable sequence that periodically produces a value after the specified initial relative due time has elapsed, using the specified scheduler to run timers. + + - seealso: [timer operator on reactivex.io](http://reactivex.io/documentation/operators/timer.html) + + - parameter dueTime: Relative time at which to produce the first value. + - parameter period: Period to produce subsequent values. + - parameter scheduler: Scheduler to run timers on. + - returns: An observable sequence that produces a value after due time has elapsed and then each period. + */ + public static func timer(_ dueTime: RxTimeInterval, period: RxTimeInterval? = nil, scheduler: SchedulerType) + -> Observable { + return Timer( + dueTime: dueTime, + period: period, + scheduler: scheduler + ) + } +} + +import Foundation + +final private class TimerSink : Sink where Observer.Element : RxAbstractInteger { + typealias Parent = Timer + + private let parent: Parent + private let lock = RecursiveLock() + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + return self.parent.scheduler.schedulePeriodic(0 as Observer.Element, startAfter: self.parent.dueTime, period: self.parent.period!) { state in + self.lock.performLocked { + self.forwardOn(.next(state)) + return state &+ 1 + } + } + } +} + +final private class TimerOneOffSink: Sink where Observer.Element: RxAbstractInteger { + typealias Parent = Timer + + private let parent: Parent + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + return self.parent.scheduler.scheduleRelative(self, dueTime: self.parent.dueTime) { [unowned self] _ -> Disposable in + self.forwardOn(.next(0)) + self.forwardOn(.completed) + self.dispose() + + return Disposables.create() + } + } +} + +final private class Timer: Producer { + fileprivate let scheduler: SchedulerType + fileprivate let dueTime: RxTimeInterval + fileprivate let period: RxTimeInterval? + + init(dueTime: RxTimeInterval, period: RxTimeInterval?, scheduler: SchedulerType) { + self.scheduler = scheduler + self.dueTime = dueTime + self.period = period + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + if self.period != nil { + let sink = TimerSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } + else { + let sink = TimerOneOffSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/ToArray.swift b/Pods/RxSwift/RxSwift/Observables/ToArray.swift new file mode 100644 index 00000000..76c7370a --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/ToArray.swift @@ -0,0 +1,64 @@ +// +// ToArray.swift +// RxSwift +// +// Created by Junior B. on 20/10/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Converts an Observable into a Single that emits the whole sequence as a single array and then terminates. + + For aggregation behavior see `reduce`. + + - seealso: [toArray operator on reactivex.io](http://reactivex.io/documentation/operators/to.html) + + - returns: A Single sequence containing all the emitted elements as array. + */ + public func toArray() + -> Single<[Element]> { + PrimitiveSequence(raw: ToArray(source: self.asObservable())) + } +} + +final private class ToArraySink: Sink, ObserverType where Observer.Element == [SourceType] { + typealias Parent = ToArray + + let parent: Parent + var list = [SourceType]() + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event) { + switch event { + case .next(let value): + self.list.append(value) + case .error(let e): + self.forwardOn(.error(e)) + self.dispose() + case .completed: + self.forwardOn(.next(self.list)) + self.forwardOn(.completed) + self.dispose() + } + } +} + +final private class ToArray: Producer<[SourceType]> { + let source: Observable + + init(source: Observable) { + self.source = source + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == [SourceType] { + let sink = ToArraySink(parent: self, observer: observer, cancel: cancel) + let subscription = self.source.subscribe(sink) + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Using.swift b/Pods/RxSwift/RxSwift/Observables/Using.swift new file mode 100644 index 00000000..ca48d2fb --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Using.swift @@ -0,0 +1,90 @@ +// +// Using.swift +// RxSwift +// +// Created by Yury Korolev on 10/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Constructs an observable sequence that depends on a resource object, whose lifetime is tied to the resulting observable sequence's lifetime. + + - seealso: [using operator on reactivex.io](http://reactivex.io/documentation/operators/using.html) + + - parameter resourceFactory: Factory function to obtain a resource object. + - parameter observableFactory: Factory function to obtain an observable sequence that depends on the obtained resource. + - returns: An observable sequence whose lifetime controls the lifetime of the dependent resource object. + */ + public static func using(_ resourceFactory: @escaping () throws -> Resource, observableFactory: @escaping (Resource) throws -> Observable) -> Observable { + Using(resourceFactory: resourceFactory, observableFactory: observableFactory) + } +} + +final private class UsingSink: Sink, ObserverType { + typealias SourceType = Observer.Element + typealias Parent = Using + + private let parent: Parent + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + var disposable = Disposables.create() + + do { + let resource = try self.parent.resourceFactory() + disposable = resource + let source = try self.parent.observableFactory(resource) + + return Disposables.create( + source.subscribe(self), + disposable + ) + } catch let error { + return Disposables.create( + Observable.error(error).subscribe(self), + disposable + ) + } + } + + func on(_ event: Event) { + switch event { + case let .next(value): + self.forwardOn(.next(value)) + case let .error(error): + self.forwardOn(.error(error)) + self.dispose() + case .completed: + self.forwardOn(.completed) + self.dispose() + } + } +} + +final private class Using: Producer { + + typealias Element = SourceType + + typealias ResourceFactory = () throws -> ResourceType + typealias ObservableFactory = (ResourceType) throws -> Observable + + fileprivate let resourceFactory: ResourceFactory + fileprivate let observableFactory: ObservableFactory + + + init(resourceFactory: @escaping ResourceFactory, observableFactory: @escaping ObservableFactory) { + self.resourceFactory = resourceFactory + self.observableFactory = observableFactory + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Element { + let sink = UsingSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Window.swift b/Pods/RxSwift/RxSwift/Observables/Window.swift new file mode 100644 index 00000000..b2a37a5c --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Window.swift @@ -0,0 +1,168 @@ +// +// Window.swift +// RxSwift +// +// Created by Junior B. on 29/10/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Projects each element of an observable sequence into a window that is completed when either it’s full or a given amount of time has elapsed. + + - seealso: [window operator on reactivex.io](http://reactivex.io/documentation/operators/window.html) + + - parameter timeSpan: Maximum time length of a window. + - parameter count: Maximum element count of a window. + - parameter scheduler: Scheduler to run windowing timers on. + - returns: An observable sequence of windows (instances of `Observable`). + */ + public func window(timeSpan: RxTimeInterval, count: Int, scheduler: SchedulerType) + -> Observable> { + return WindowTimeCount(source: self.asObservable(), timeSpan: timeSpan, count: count, scheduler: scheduler) + } +} + +final private class WindowTimeCountSink + : Sink + , ObserverType + , LockOwnerType + , SynchronizedOnType where Observer.Element == Observable { + typealias Parent = WindowTimeCount + + private let parent: Parent + + let lock = RecursiveLock() + + private var subject = PublishSubject() + private var count = 0 + private var windowId = 0 + + private let timerD = SerialDisposable() + private let refCountDisposable: RefCountDisposable + private let groupDisposable = CompositeDisposable() + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + + _ = self.groupDisposable.insert(self.timerD) + + self.refCountDisposable = RefCountDisposable(disposable: self.groupDisposable) + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + + self.forwardOn(.next(AddRef(source: self.subject, refCount: self.refCountDisposable).asObservable())) + self.createTimer(self.windowId) + + _ = self.groupDisposable.insert(self.parent.source.subscribe(self)) + return self.refCountDisposable + } + + func startNewWindowAndCompleteCurrentOne() { + self.subject.on(.completed) + self.subject = PublishSubject() + + self.forwardOn(.next(AddRef(source: self.subject, refCount: self.refCountDisposable).asObservable())) + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + var newWindow = false + var newId = 0 + + switch event { + case .next(let element): + self.subject.on(.next(element)) + + do { + _ = try incrementChecked(&self.count) + } catch let e { + self.subject.on(.error(e as Swift.Error)) + self.dispose() + } + + if self.count == self.parent.count { + newWindow = true + self.count = 0 + self.windowId += 1 + newId = self.windowId + self.startNewWindowAndCompleteCurrentOne() + } + + case .error(let error): + self.subject.on(.error(error)) + self.forwardOn(.error(error)) + self.dispose() + case .completed: + self.subject.on(.completed) + self.forwardOn(.completed) + self.dispose() + } + + if newWindow { + self.createTimer(newId) + } + } + + func createTimer(_ windowId: Int) { + if self.timerD.isDisposed { + return + } + + if self.windowId != windowId { + return + } + + let nextTimer = SingleAssignmentDisposable() + + self.timerD.disposable = nextTimer + + let scheduledRelative = self.parent.scheduler.scheduleRelative(windowId, dueTime: self.parent.timeSpan) { previousWindowId in + + var newId = 0 + + self.lock.performLocked { + if previousWindowId != self.windowId { + return + } + + self.count = 0 + self.windowId = self.windowId &+ 1 + newId = self.windowId + self.startNewWindowAndCompleteCurrentOne() + } + + self.createTimer(newId) + + return Disposables.create() + } + + nextTimer.setDisposable(scheduledRelative) + } +} + +final private class WindowTimeCount: Producer> { + fileprivate let timeSpan: RxTimeInterval + fileprivate let count: Int + fileprivate let scheduler: SchedulerType + fileprivate let source: Observable + + init(source: Observable, timeSpan: RxTimeInterval, count: Int, scheduler: SchedulerType) { + self.source = source + self.timeSpan = timeSpan + self.count = count + self.scheduler = scheduler + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Observable { + let sink = WindowTimeCountSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift b/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift new file mode 100644 index 00000000..d2868121 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift @@ -0,0 +1,151 @@ +// +// WithLatestFrom.swift +// RxSwift +// +// Created by Yury Korolev on 10/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + + /** + Merges two observable sequences into one observable sequence by combining each element from self with the latest element from the second source, if any. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + - note: Elements emitted by self before the second source has emitted any values will be omitted. + + - parameter second: Second observable source. + - parameter resultSelector: Function to invoke for each element from the self combined with the latest element from the second source, if any. + - returns: An observable sequence containing the result of combining each element of the self with the latest element from the second source, if any, using the specified result selector function. + */ + public func withLatestFrom(_ second: Source, resultSelector: @escaping (Element, Source.Element) throws -> ResultType) -> Observable { + WithLatestFrom(first: self.asObservable(), second: second.asObservable(), resultSelector: resultSelector) + } + + /** + Merges two observable sequences into one observable sequence by using latest element from the second sequence every time when `self` emits an element. + + - seealso: [combineLatest operator on reactivex.io](http://reactivex.io/documentation/operators/combinelatest.html) + - note: Elements emitted by self before the second source has emitted any values will be omitted. + + - parameter second: Second observable source. + - returns: An observable sequence containing the result of combining each element of the self with the latest element from the second source, if any, using the specified result selector function. + */ + public func withLatestFrom(_ second: Source) -> Observable { + WithLatestFrom(first: self.asObservable(), second: second.asObservable(), resultSelector: { $1 }) + } +} + +final private class WithLatestFromSink + : Sink + , ObserverType + , LockOwnerType + , SynchronizedOnType { + typealias ResultType = Observer.Element + typealias Parent = WithLatestFrom + typealias Element = FirstType + + private let parent: Parent + + fileprivate var lock = RecursiveLock() + fileprivate var latest: SecondType? + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + + super.init(observer: observer, cancel: cancel) + } + + func run() -> Disposable { + let sndSubscription = SingleAssignmentDisposable() + let sndO = WithLatestFromSecond(parent: self, disposable: sndSubscription) + + sndSubscription.setDisposable(self.parent.second.subscribe(sndO)) + let fstSubscription = self.parent.first.subscribe(self) + + return Disposables.create(fstSubscription, sndSubscription) + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case let .next(value): + guard let latest = self.latest else { return } + do { + let res = try self.parent.resultSelector(value, latest) + + self.forwardOn(.next(res)) + } catch let e { + self.forwardOn(.error(e)) + self.dispose() + } + case .completed: + self.forwardOn(.completed) + self.dispose() + case let .error(error): + self.forwardOn(.error(error)) + self.dispose() + } + } +} + +final private class WithLatestFromSecond + : ObserverType + , LockOwnerType + , SynchronizedOnType { + + typealias ResultType = Observer.Element + typealias Parent = WithLatestFromSink + typealias Element = SecondType + + private let parent: Parent + private let disposable: Disposable + + var lock: RecursiveLock { + self.parent.lock + } + + init(parent: Parent, disposable: Disposable) { + self.parent = parent + self.disposable = disposable + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + switch event { + case let .next(value): + self.parent.latest = value + case .completed: + self.disposable.dispose() + case let .error(error): + self.parent.forwardOn(.error(error)) + self.parent.dispose() + } + } +} + +final private class WithLatestFrom: Producer { + typealias ResultSelector = (FirstType, SecondType) throws -> ResultType + + fileprivate let first: Observable + fileprivate let second: Observable + fileprivate let resultSelector: ResultSelector + + init(first: Observable, second: Observable, resultSelector: @escaping ResultSelector) { + self.first = first + self.second = second + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == ResultType { + let sink = WithLatestFromSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/WithUnretained.swift b/Pods/RxSwift/RxSwift/Observables/WithUnretained.swift new file mode 100644 index 00000000..076f6de8 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/WithUnretained.swift @@ -0,0 +1,58 @@ +// +// WithUnretained.swift +// RxSwift +// +// Created by Vincent Pradeilles on 01/01/2021. +// Copyright © 2020 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Provides an unretained, safe to use (i.e. not implicitly unwrapped), reference to an object along with the events emitted by the sequence. + + In the case the provided object cannot be retained successfully, the sequence will complete. + + - note: Be careful when using this operator in a sequence that has a buffer or replay, for example `share(replay: 1)`, as the sharing buffer will also include the provided object, which could potentially cause a retain cycle. + + - parameter obj: The object to provide an unretained reference on. + - parameter resultSelector: A function to combine the unretained referenced on `obj` and the value of the observable sequence. + - returns: An observable sequence that contains the result of `resultSelector` being called with an unretained reference on `obj` and the values of the original sequence. + */ + public func withUnretained( + _ obj: Object, + resultSelector: @escaping (Object, Element) -> Out + ) -> Observable { + map { [weak obj] element -> Out in + guard let obj = obj else { throw UnretainedError.failedRetaining } + + return resultSelector(obj, element) + } + .catch{ error -> Observable in + guard let unretainedError = error as? UnretainedError, + unretainedError == .failedRetaining else { + return .error(error) + } + + return .empty() + } + } + + + /** + Provides an unretained, safe to use (i.e. not implicitly unwrapped), reference to an object along with the events emitted by the sequence. + + In the case the provided object cannot be retained successfully, the sequence will complete. + + - note: Be careful when using this operator in a sequence that has a buffer or replay, for example `share(replay: 1)`, as the sharing buffer will also include the provided object, which could potentially cause a retain cycle. + + - parameter obj: The object to provide an unretained reference on. + - returns: An observable sequence of tuples that contains both an unretained reference on `obj` and the values of the original sequence. + */ + public func withUnretained(_ obj: Object) -> Observable<(Object, Element)> { + return withUnretained(obj) { ($0, $1) } + } +} + +private enum UnretainedError: Swift.Error { + case failedRetaining +} diff --git a/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift b/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift new file mode 100644 index 00000000..2d7f8877 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift @@ -0,0 +1,168 @@ +// +// Zip+Collection.swift +// RxSwift +// +// Created by Krunoslav Zaher on 8/30/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip(_ collection: Collection, resultSelector: @escaping ([Collection.Element.Element]) throws -> Element) -> Observable + where Collection.Element: ObservableType { + ZipCollectionType(sources: collection, resultSelector: resultSelector) + } + + /** + Merges the specified observable sequences into one observable sequence whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip(_ collection: Collection) -> Observable<[Element]> + where Collection.Element: ObservableType, Collection.Element.Element == Element { + ZipCollectionType(sources: collection, resultSelector: { $0 }) + } + +} + +final private class ZipCollectionTypeSink + : Sink where Collection.Element: ObservableConvertibleType { + typealias Result = Observer.Element + typealias Parent = ZipCollectionType + typealias SourceElement = Collection.Element.Element + + private let parent: Parent + + private let lock = RecursiveLock() + + // state + private var numberOfValues = 0 + private var values: [Queue] + private var isDone: [Bool] + private var numberOfDone = 0 + private var subscriptions: [SingleAssignmentDisposable] + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + self.values = [Queue](repeating: Queue(capacity: 4), count: parent.count) + self.isDone = [Bool](repeating: false, count: parent.count) + self.subscriptions = [SingleAssignmentDisposable]() + self.subscriptions.reserveCapacity(parent.count) + + for _ in 0 ..< parent.count { + self.subscriptions.append(SingleAssignmentDisposable()) + } + + super.init(observer: observer, cancel: cancel) + } + + func on(_ event: Event, atIndex: Int) { + self.lock.lock(); defer { self.lock.unlock() } + switch event { + case .next(let element): + self.values[atIndex].enqueue(element) + + if self.values[atIndex].count == 1 { + self.numberOfValues += 1 + } + + if self.numberOfValues < self.parent.count { + if self.numberOfDone == self.parent.count - 1 { + self.forwardOn(.completed) + self.dispose() + } + return + } + + do { + var arguments = [SourceElement]() + arguments.reserveCapacity(self.parent.count) + + // recalculate number of values + self.numberOfValues = 0 + + for i in 0 ..< self.values.count { + arguments.append(self.values[i].dequeue()!) + if !self.values[i].isEmpty { + self.numberOfValues += 1 + } + } + + let result = try self.parent.resultSelector(arguments) + self.forwardOn(.next(result)) + } + catch let error { + self.forwardOn(.error(error)) + self.dispose() + } + + case .error(let error): + self.forwardOn(.error(error)) + self.dispose() + case .completed: + if self.isDone[atIndex] { + return + } + + self.isDone[atIndex] = true + self.numberOfDone += 1 + + if self.numberOfDone == self.parent.count { + self.forwardOn(.completed) + self.dispose() + } + else { + self.subscriptions[atIndex].dispose() + } + } + } + + func run() -> Disposable { + var j = 0 + for i in self.parent.sources { + let index = j + let source = i.asObservable() + + let disposable = source.subscribe(AnyObserver { event in + self.on(event, atIndex: index) + }) + self.subscriptions[j].setDisposable(disposable) + j += 1 + } + + if self.parent.sources.isEmpty { + self.forwardOn(.completed) + } + + return Disposables.create(subscriptions) + } +} + +final private class ZipCollectionType: Producer where Collection.Element: ObservableConvertibleType { + typealias ResultSelector = ([Collection.Element.Element]) throws -> Result + + let sources: Collection + let resultSelector: ResultSelector + let count: Int + + init(sources: Collection, resultSelector: @escaping ResultSelector) { + self.sources = sources + self.resultSelector = resultSelector + self.count = self.sources.count + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = ZipCollectionTypeSink(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} diff --git a/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift b/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift new file mode 100644 index 00000000..b6d876d1 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift @@ -0,0 +1,934 @@ +// This file is autogenerated. Take a look at `Preprocessor` target in RxSwift project +// +// Zip+arity.swift +// RxSwift +// +// Created by Krunoslav Zaher on 5/23/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + + + +// 2 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, resultSelector: @escaping (O1.Element, O2.Element) throws -> Element) + -> Observable { + return Zip2( + source1: source1.asObservable(), source2: source2.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2) + -> Observable<(O1.Element, O2.Element)> { + return Zip2( + source1: source1.asObservable(), source2: source2.asObservable(), + resultSelector: { ($0, $1) } + ) + } +} + +final class ZipSink2_ : ZipSink { + typealias Result = Observer.Element + typealias Parent = Zip2 + + let parent: Parent + + var values1: Queue = Queue(capacity: 2) + var values2: Queue = Queue(capacity: 2) + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 2, observer: observer, cancel: cancel) + } + + override func hasElements(_ index: Int) -> Bool { + switch index { + case 0: return !self.values1.isEmpty + case 1: return !self.values2.isEmpty + + default: + rxFatalError("Unhandled case (Function)") + } + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + + let observer1 = ZipObserver(lock: self.lock, parent: self, index: 0, setNextValue: { self.values1.enqueue($0) }, this: subscription1) + let observer2 = ZipObserver(lock: self.lock, parent: self, index: 1, setNextValue: { self.values2.enqueue($0) }, this: subscription2) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + + return Disposables.create([ + subscription1, + subscription2 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.values1.dequeue()!, self.values2.dequeue()!) + } +} + +final class Zip2 : Producer { + typealias ResultSelector = (E1, E2) throws -> Result + + let source1: Observable + let source2: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = ZipSink2_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 3 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, resultSelector: @escaping (O1.Element, O2.Element, O3.Element) throws -> Element) + -> Observable { + return Zip3( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3) + -> Observable<(O1.Element, O2.Element, O3.Element)> { + return Zip3( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), + resultSelector: { ($0, $1, $2) } + ) + } +} + +final class ZipSink3_ : ZipSink { + typealias Result = Observer.Element + typealias Parent = Zip3 + + let parent: Parent + + var values1: Queue = Queue(capacity: 2) + var values2: Queue = Queue(capacity: 2) + var values3: Queue = Queue(capacity: 2) + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 3, observer: observer, cancel: cancel) + } + + override func hasElements(_ index: Int) -> Bool { + switch index { + case 0: return !self.values1.isEmpty + case 1: return !self.values2.isEmpty + case 2: return !self.values3.isEmpty + + default: + rxFatalError("Unhandled case (Function)") + } + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + + let observer1 = ZipObserver(lock: self.lock, parent: self, index: 0, setNextValue: { self.values1.enqueue($0) }, this: subscription1) + let observer2 = ZipObserver(lock: self.lock, parent: self, index: 1, setNextValue: { self.values2.enqueue($0) }, this: subscription2) + let observer3 = ZipObserver(lock: self.lock, parent: self, index: 2, setNextValue: { self.values3.enqueue($0) }, this: subscription3) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.values1.dequeue()!, self.values2.dequeue()!, self.values3.dequeue()!) + } +} + +final class Zip3 : Producer { + typealias ResultSelector = (E1, E2, E3) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = ZipSink3_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 4 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element) throws -> Element) + -> Observable { + return Zip4( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4) + -> Observable<(O1.Element, O2.Element, O3.Element, O4.Element)> { + return Zip4( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), + resultSelector: { ($0, $1, $2, $3) } + ) + } +} + +final class ZipSink4_ : ZipSink { + typealias Result = Observer.Element + typealias Parent = Zip4 + + let parent: Parent + + var values1: Queue = Queue(capacity: 2) + var values2: Queue = Queue(capacity: 2) + var values3: Queue = Queue(capacity: 2) + var values4: Queue = Queue(capacity: 2) + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 4, observer: observer, cancel: cancel) + } + + override func hasElements(_ index: Int) -> Bool { + switch index { + case 0: return !self.values1.isEmpty + case 1: return !self.values2.isEmpty + case 2: return !self.values3.isEmpty + case 3: return !self.values4.isEmpty + + default: + rxFatalError("Unhandled case (Function)") + } + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + let subscription4 = SingleAssignmentDisposable() + + let observer1 = ZipObserver(lock: self.lock, parent: self, index: 0, setNextValue: { self.values1.enqueue($0) }, this: subscription1) + let observer2 = ZipObserver(lock: self.lock, parent: self, index: 1, setNextValue: { self.values2.enqueue($0) }, this: subscription2) + let observer3 = ZipObserver(lock: self.lock, parent: self, index: 2, setNextValue: { self.values3.enqueue($0) }, this: subscription3) + let observer4 = ZipObserver(lock: self.lock, parent: self, index: 3, setNextValue: { self.values4.enqueue($0) }, this: subscription4) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + subscription4.setDisposable(self.parent.source4.subscribe(observer4)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3, + subscription4 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.values1.dequeue()!, self.values2.dequeue()!, self.values3.dequeue()!, self.values4.dequeue()!) + } +} + +final class Zip4 : Producer { + typealias ResultSelector = (E1, E2, E3, E4) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + let source4: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, source4: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + self.source4 = source4 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = ZipSink4_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 5 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element) throws -> Element) + -> Observable { + return Zip5( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5) + -> Observable<(O1.Element, O2.Element, O3.Element, O4.Element, O5.Element)> { + return Zip5( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), + resultSelector: { ($0, $1, $2, $3, $4) } + ) + } +} + +final class ZipSink5_ : ZipSink { + typealias Result = Observer.Element + typealias Parent = Zip5 + + let parent: Parent + + var values1: Queue = Queue(capacity: 2) + var values2: Queue = Queue(capacity: 2) + var values3: Queue = Queue(capacity: 2) + var values4: Queue = Queue(capacity: 2) + var values5: Queue = Queue(capacity: 2) + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 5, observer: observer, cancel: cancel) + } + + override func hasElements(_ index: Int) -> Bool { + switch index { + case 0: return !self.values1.isEmpty + case 1: return !self.values2.isEmpty + case 2: return !self.values3.isEmpty + case 3: return !self.values4.isEmpty + case 4: return !self.values5.isEmpty + + default: + rxFatalError("Unhandled case (Function)") + } + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + let subscription4 = SingleAssignmentDisposable() + let subscription5 = SingleAssignmentDisposable() + + let observer1 = ZipObserver(lock: self.lock, parent: self, index: 0, setNextValue: { self.values1.enqueue($0) }, this: subscription1) + let observer2 = ZipObserver(lock: self.lock, parent: self, index: 1, setNextValue: { self.values2.enqueue($0) }, this: subscription2) + let observer3 = ZipObserver(lock: self.lock, parent: self, index: 2, setNextValue: { self.values3.enqueue($0) }, this: subscription3) + let observer4 = ZipObserver(lock: self.lock, parent: self, index: 3, setNextValue: { self.values4.enqueue($0) }, this: subscription4) + let observer5 = ZipObserver(lock: self.lock, parent: self, index: 4, setNextValue: { self.values5.enqueue($0) }, this: subscription5) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + subscription4.setDisposable(self.parent.source4.subscribe(observer4)) + subscription5.setDisposable(self.parent.source5.subscribe(observer5)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3, + subscription4, + subscription5 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.values1.dequeue()!, self.values2.dequeue()!, self.values3.dequeue()!, self.values4.dequeue()!, self.values5.dequeue()!) + } +} + +final class Zip5 : Producer { + typealias ResultSelector = (E1, E2, E3, E4, E5) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + let source4: Observable + let source5: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, source4: Observable, source5: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + self.source4 = source4 + self.source5 = source5 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = ZipSink5_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 6 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element) throws -> Element) + -> Observable { + return Zip6( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6) + -> Observable<(O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element)> { + return Zip6( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), + resultSelector: { ($0, $1, $2, $3, $4, $5) } + ) + } +} + +final class ZipSink6_ : ZipSink { + typealias Result = Observer.Element + typealias Parent = Zip6 + + let parent: Parent + + var values1: Queue = Queue(capacity: 2) + var values2: Queue = Queue(capacity: 2) + var values3: Queue = Queue(capacity: 2) + var values4: Queue = Queue(capacity: 2) + var values5: Queue = Queue(capacity: 2) + var values6: Queue = Queue(capacity: 2) + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 6, observer: observer, cancel: cancel) + } + + override func hasElements(_ index: Int) -> Bool { + switch index { + case 0: return !self.values1.isEmpty + case 1: return !self.values2.isEmpty + case 2: return !self.values3.isEmpty + case 3: return !self.values4.isEmpty + case 4: return !self.values5.isEmpty + case 5: return !self.values6.isEmpty + + default: + rxFatalError("Unhandled case (Function)") + } + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + let subscription4 = SingleAssignmentDisposable() + let subscription5 = SingleAssignmentDisposable() + let subscription6 = SingleAssignmentDisposable() + + let observer1 = ZipObserver(lock: self.lock, parent: self, index: 0, setNextValue: { self.values1.enqueue($0) }, this: subscription1) + let observer2 = ZipObserver(lock: self.lock, parent: self, index: 1, setNextValue: { self.values2.enqueue($0) }, this: subscription2) + let observer3 = ZipObserver(lock: self.lock, parent: self, index: 2, setNextValue: { self.values3.enqueue($0) }, this: subscription3) + let observer4 = ZipObserver(lock: self.lock, parent: self, index: 3, setNextValue: { self.values4.enqueue($0) }, this: subscription4) + let observer5 = ZipObserver(lock: self.lock, parent: self, index: 4, setNextValue: { self.values5.enqueue($0) }, this: subscription5) + let observer6 = ZipObserver(lock: self.lock, parent: self, index: 5, setNextValue: { self.values6.enqueue($0) }, this: subscription6) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + subscription4.setDisposable(self.parent.source4.subscribe(observer4)) + subscription5.setDisposable(self.parent.source5.subscribe(observer5)) + subscription6.setDisposable(self.parent.source6.subscribe(observer6)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3, + subscription4, + subscription5, + subscription6 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.values1.dequeue()!, self.values2.dequeue()!, self.values3.dequeue()!, self.values4.dequeue()!, self.values5.dequeue()!, self.values6.dequeue()!) + } +} + +final class Zip6 : Producer { + typealias ResultSelector = (E1, E2, E3, E4, E5, E6) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + let source4: Observable + let source5: Observable + let source6: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, source4: Observable, source5: Observable, source6: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + self.source4 = source4 + self.source5 = source5 + self.source6 = source6 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = ZipSink6_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 7 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element) throws -> Element) + -> Observable { + return Zip7( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), source7: source7.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7) + -> Observable<(O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element)> { + return Zip7( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), source7: source7.asObservable(), + resultSelector: { ($0, $1, $2, $3, $4, $5, $6) } + ) + } +} + +final class ZipSink7_ : ZipSink { + typealias Result = Observer.Element + typealias Parent = Zip7 + + let parent: Parent + + var values1: Queue = Queue(capacity: 2) + var values2: Queue = Queue(capacity: 2) + var values3: Queue = Queue(capacity: 2) + var values4: Queue = Queue(capacity: 2) + var values5: Queue = Queue(capacity: 2) + var values6: Queue = Queue(capacity: 2) + var values7: Queue = Queue(capacity: 2) + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 7, observer: observer, cancel: cancel) + } + + override func hasElements(_ index: Int) -> Bool { + switch index { + case 0: return !self.values1.isEmpty + case 1: return !self.values2.isEmpty + case 2: return !self.values3.isEmpty + case 3: return !self.values4.isEmpty + case 4: return !self.values5.isEmpty + case 5: return !self.values6.isEmpty + case 6: return !self.values7.isEmpty + + default: + rxFatalError("Unhandled case (Function)") + } + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + let subscription4 = SingleAssignmentDisposable() + let subscription5 = SingleAssignmentDisposable() + let subscription6 = SingleAssignmentDisposable() + let subscription7 = SingleAssignmentDisposable() + + let observer1 = ZipObserver(lock: self.lock, parent: self, index: 0, setNextValue: { self.values1.enqueue($0) }, this: subscription1) + let observer2 = ZipObserver(lock: self.lock, parent: self, index: 1, setNextValue: { self.values2.enqueue($0) }, this: subscription2) + let observer3 = ZipObserver(lock: self.lock, parent: self, index: 2, setNextValue: { self.values3.enqueue($0) }, this: subscription3) + let observer4 = ZipObserver(lock: self.lock, parent: self, index: 3, setNextValue: { self.values4.enqueue($0) }, this: subscription4) + let observer5 = ZipObserver(lock: self.lock, parent: self, index: 4, setNextValue: { self.values5.enqueue($0) }, this: subscription5) + let observer6 = ZipObserver(lock: self.lock, parent: self, index: 5, setNextValue: { self.values6.enqueue($0) }, this: subscription6) + let observer7 = ZipObserver(lock: self.lock, parent: self, index: 6, setNextValue: { self.values7.enqueue($0) }, this: subscription7) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + subscription4.setDisposable(self.parent.source4.subscribe(observer4)) + subscription5.setDisposable(self.parent.source5.subscribe(observer5)) + subscription6.setDisposable(self.parent.source6.subscribe(observer6)) + subscription7.setDisposable(self.parent.source7.subscribe(observer7)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3, + subscription4, + subscription5, + subscription6, + subscription7 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.values1.dequeue()!, self.values2.dequeue()!, self.values3.dequeue()!, self.values4.dequeue()!, self.values5.dequeue()!, self.values6.dequeue()!, self.values7.dequeue()!) + } +} + +final class Zip7 : Producer { + typealias ResultSelector = (E1, E2, E3, E4, E5, E6, E7) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + let source4: Observable + let source5: Observable + let source6: Observable + let source7: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, source4: Observable, source5: Observable, source6: Observable, source7: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + self.source4 = source4 + self.source5 = source5 + self.source6 = source6 + self.source7 = source7 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = ZipSink7_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + + +// 8 + +extension ObservableType { + /** + Merges the specified observable sequences into one observable sequence by using the selector function whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - parameter resultSelector: Function to invoke for each series of elements at corresponding indexes in the sources. + - returns: An observable sequence containing the result of combining elements of the sources using the specified result selector function. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, _ source8: O8, resultSelector: @escaping (O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element, O8.Element) throws -> Element) + -> Observable { + return Zip8( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), source7: source7.asObservable(), source8: source8.asObservable(), + resultSelector: resultSelector + ) + } +} + +extension ObservableType where Element == Any { + /** + Merges the specified observable sequences into one observable sequence of tuples whenever all of the observable sequences have produced an element at a corresponding index. + + - seealso: [zip operator on reactivex.io](http://reactivex.io/documentation/operators/zip.html) + + - returns: An observable sequence containing the result of combining elements of the sources. + */ + public static func zip + (_ source1: O1, _ source2: O2, _ source3: O3, _ source4: O4, _ source5: O5, _ source6: O6, _ source7: O7, _ source8: O8) + -> Observable<(O1.Element, O2.Element, O3.Element, O4.Element, O5.Element, O6.Element, O7.Element, O8.Element)> { + return Zip8( + source1: source1.asObservable(), source2: source2.asObservable(), source3: source3.asObservable(), source4: source4.asObservable(), source5: source5.asObservable(), source6: source6.asObservable(), source7: source7.asObservable(), source8: source8.asObservable(), + resultSelector: { ($0, $1, $2, $3, $4, $5, $6, $7) } + ) + } +} + +final class ZipSink8_ : ZipSink { + typealias Result = Observer.Element + typealias Parent = Zip8 + + let parent: Parent + + var values1: Queue = Queue(capacity: 2) + var values2: Queue = Queue(capacity: 2) + var values3: Queue = Queue(capacity: 2) + var values4: Queue = Queue(capacity: 2) + var values5: Queue = Queue(capacity: 2) + var values6: Queue = Queue(capacity: 2) + var values7: Queue = Queue(capacity: 2) + var values8: Queue = Queue(capacity: 2) + + init(parent: Parent, observer: Observer, cancel: Cancelable) { + self.parent = parent + super.init(arity: 8, observer: observer, cancel: cancel) + } + + override func hasElements(_ index: Int) -> Bool { + switch index { + case 0: return !self.values1.isEmpty + case 1: return !self.values2.isEmpty + case 2: return !self.values3.isEmpty + case 3: return !self.values4.isEmpty + case 4: return !self.values5.isEmpty + case 5: return !self.values6.isEmpty + case 6: return !self.values7.isEmpty + case 7: return !self.values8.isEmpty + + default: + rxFatalError("Unhandled case (Function)") + } + } + + func run() -> Disposable { + let subscription1 = SingleAssignmentDisposable() + let subscription2 = SingleAssignmentDisposable() + let subscription3 = SingleAssignmentDisposable() + let subscription4 = SingleAssignmentDisposable() + let subscription5 = SingleAssignmentDisposable() + let subscription6 = SingleAssignmentDisposable() + let subscription7 = SingleAssignmentDisposable() + let subscription8 = SingleAssignmentDisposable() + + let observer1 = ZipObserver(lock: self.lock, parent: self, index: 0, setNextValue: { self.values1.enqueue($0) }, this: subscription1) + let observer2 = ZipObserver(lock: self.lock, parent: self, index: 1, setNextValue: { self.values2.enqueue($0) }, this: subscription2) + let observer3 = ZipObserver(lock: self.lock, parent: self, index: 2, setNextValue: { self.values3.enqueue($0) }, this: subscription3) + let observer4 = ZipObserver(lock: self.lock, parent: self, index: 3, setNextValue: { self.values4.enqueue($0) }, this: subscription4) + let observer5 = ZipObserver(lock: self.lock, parent: self, index: 4, setNextValue: { self.values5.enqueue($0) }, this: subscription5) + let observer6 = ZipObserver(lock: self.lock, parent: self, index: 5, setNextValue: { self.values6.enqueue($0) }, this: subscription6) + let observer7 = ZipObserver(lock: self.lock, parent: self, index: 6, setNextValue: { self.values7.enqueue($0) }, this: subscription7) + let observer8 = ZipObserver(lock: self.lock, parent: self, index: 7, setNextValue: { self.values8.enqueue($0) }, this: subscription8) + + subscription1.setDisposable(self.parent.source1.subscribe(observer1)) + subscription2.setDisposable(self.parent.source2.subscribe(observer2)) + subscription3.setDisposable(self.parent.source3.subscribe(observer3)) + subscription4.setDisposable(self.parent.source4.subscribe(observer4)) + subscription5.setDisposable(self.parent.source5.subscribe(observer5)) + subscription6.setDisposable(self.parent.source6.subscribe(observer6)) + subscription7.setDisposable(self.parent.source7.subscribe(observer7)) + subscription8.setDisposable(self.parent.source8.subscribe(observer8)) + + return Disposables.create([ + subscription1, + subscription2, + subscription3, + subscription4, + subscription5, + subscription6, + subscription7, + subscription8 + ]) + } + + override func getResult() throws -> Result { + try self.parent.resultSelector(self.values1.dequeue()!, self.values2.dequeue()!, self.values3.dequeue()!, self.values4.dequeue()!, self.values5.dequeue()!, self.values6.dequeue()!, self.values7.dequeue()!, self.values8.dequeue()!) + } +} + +final class Zip8 : Producer { + typealias ResultSelector = (E1, E2, E3, E4, E5, E6, E7, E8) throws -> Result + + let source1: Observable + let source2: Observable + let source3: Observable + let source4: Observable + let source5: Observable + let source6: Observable + let source7: Observable + let source8: Observable + + let resultSelector: ResultSelector + + init(source1: Observable, source2: Observable, source3: Observable, source4: Observable, source5: Observable, source6: Observable, source7: Observable, source8: Observable, resultSelector: @escaping ResultSelector) { + self.source1 = source1 + self.source2 = source2 + self.source3 = source3 + self.source4 = source4 + self.source5 = source5 + self.source6 = source6 + self.source7 = source7 + self.source8 = source8 + + self.resultSelector = resultSelector + } + + override func run(_ observer: Observer, cancel: Cancelable) -> (sink: Disposable, subscription: Disposable) where Observer.Element == Result { + let sink = ZipSink8_(parent: self, observer: observer, cancel: cancel) + let subscription = sink.run() + return (sink: sink, subscription: subscription) + } +} + + diff --git a/Pods/RxSwift/RxSwift/Observables/Zip.swift b/Pods/RxSwift/RxSwift/Observables/Zip.swift new file mode 100644 index 00000000..328a40ef --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observables/Zip.swift @@ -0,0 +1,135 @@ +// +// Zip.swift +// RxSwift +// +// Created by Krunoslav Zaher on 5/23/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +protocol ZipSinkProtocol: AnyObject { + func next(_ index: Int) + func fail(_ error: Swift.Error) + func done(_ index: Int) +} + +class ZipSink : Sink, ZipSinkProtocol { + typealias Element = Observer.Element + + let arity: Int + + let lock = RecursiveLock() + + // state + private var isDone: [Bool] + + init(arity: Int, observer: Observer, cancel: Cancelable) { + self.isDone = [Bool](repeating: false, count: arity) + self.arity = arity + + super.init(observer: observer, cancel: cancel) + } + + func getResult() throws -> Element { + rxAbstractMethod() + } + + func hasElements(_ index: Int) -> Bool { + rxAbstractMethod() + } + + func next(_ index: Int) { + var hasValueAll = true + + for i in 0 ..< self.arity { + if !self.hasElements(i) { + hasValueAll = false + break + } + } + + if hasValueAll { + do { + let result = try self.getResult() + self.forwardOn(.next(result)) + } + catch let e { + self.forwardOn(.error(e)) + self.dispose() + } + } + } + + func fail(_ error: Swift.Error) { + self.forwardOn(.error(error)) + self.dispose() + } + + func done(_ index: Int) { + self.isDone[index] = true + + var allDone = true + + for done in self.isDone where !done { + allDone = false + break + } + + if allDone { + self.forwardOn(.completed) + self.dispose() + } + } +} + +final class ZipObserver + : ObserverType + , LockOwnerType + , SynchronizedOnType { + typealias ValueSetter = (Element) -> Void + + private var parent: ZipSinkProtocol? + + let lock: RecursiveLock + + // state + private let index: Int + private let this: Disposable + private let setNextValue: ValueSetter + + init(lock: RecursiveLock, parent: ZipSinkProtocol, index: Int, setNextValue: @escaping ValueSetter, this: Disposable) { + self.lock = lock + self.parent = parent + self.index = index + self.this = this + self.setNextValue = setNextValue + } + + func on(_ event: Event) { + self.synchronizedOn(event) + } + + func synchronized_on(_ event: Event) { + if self.parent != nil { + switch event { + case .next: + break + case .error: + self.this.dispose() + case .completed: + self.this.dispose() + } + } + + if let parent = self.parent { + switch event { + case .next(let value): + self.setNextValue(value) + parent.next(self.index) + case .error(let error): + parent.fail(error) + case .completed: + parent.done(self.index) + } + } + } +} diff --git a/Pods/RxSwift/RxSwift/ObserverType.swift b/Pods/RxSwift/RxSwift/ObserverType.swift new file mode 100644 index 00000000..b7a66480 --- /dev/null +++ b/Pods/RxSwift/RxSwift/ObserverType.swift @@ -0,0 +1,40 @@ +// +// ObserverType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Supports push-style iteration over an observable sequence. +public protocol ObserverType { + /// The type of elements in sequence that observer can observe. + associatedtype Element + + /// Notify observer about sequence event. + /// + /// - parameter event: Event that occurred. + func on(_ event: Event) +} + +/// Convenience API extensions to provide alternate next, error, completed events +extension ObserverType { + + /// Convenience method equivalent to `on(.next(element: Element))` + /// + /// - parameter element: Next element to send to observer(s) + public func onNext(_ element: Element) { + self.on(.next(element)) + } + + /// Convenience method equivalent to `on(.completed)` + public func onCompleted() { + self.on(.completed) + } + + /// Convenience method equivalent to `on(.error(Swift.Error))` + /// - parameter error: Swift.Error to send to observer(s) + public func onError(_ error: Swift.Error) { + self.on(.error(error)) + } +} diff --git a/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift b/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift new file mode 100644 index 00000000..cbb42dc8 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift @@ -0,0 +1,30 @@ +// +// AnonymousObserver.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +final class AnonymousObserver: ObserverBase { + typealias EventHandler = (Event) -> Void + + private let eventHandler : EventHandler + + init(_ eventHandler: @escaping EventHandler) { +#if TRACE_RESOURCES + _ = Resources.incrementTotal() +#endif + self.eventHandler = eventHandler + } + + override func onCore(_ event: Event) { + self.eventHandler(event) + } + +#if TRACE_RESOURCES + deinit { + _ = Resources.decrementTotal() + } +#endif +} diff --git a/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift b/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift new file mode 100644 index 00000000..48e09868 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift @@ -0,0 +1,32 @@ +// +// ObserverBase.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +class ObserverBase : Disposable, ObserverType { + private let isStopped = AtomicInt(0) + + func on(_ event: Event) { + switch event { + case .next: + if load(self.isStopped) == 0 { + self.onCore(event) + } + case .error, .completed: + if fetchOr(self.isStopped, 1) == 0 { + self.onCore(event) + } + } + } + + func onCore(_ event: Event) { + rxAbstractMethod() + } + + func dispose() { + fetchOr(self.isStopped, 1) + } +} diff --git a/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift b/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift new file mode 100644 index 00000000..fd527001 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift @@ -0,0 +1,151 @@ +// +// TailRecursiveSink.swift +// RxSwift +// +// Created by Krunoslav Zaher on 3/21/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +enum TailRecursiveSinkCommand { + case moveNext + case dispose +} + +#if DEBUG || TRACE_RESOURCES + public var maxTailRecursiveSinkStackSize = 0 +#endif + +/// This class is usually used with `Generator` version of the operators. +class TailRecursiveSink + : Sink + , InvocableWithValueType where Sequence.Element: ObservableConvertibleType, Sequence.Element.Element == Observer.Element { + typealias Value = TailRecursiveSinkCommand + typealias Element = Observer.Element + typealias SequenceGenerator = (generator: Sequence.Iterator, remaining: IntMax?) + + var generators: [SequenceGenerator] = [] + var disposed = false + var subscription = SerialDisposable() + + // this is thread safe object + var gate = AsyncLock>>() + + override init(observer: Observer, cancel: Cancelable) { + super.init(observer: observer, cancel: cancel) + } + + func run(_ sources: SequenceGenerator) -> Disposable { + self.generators.append(sources) + + self.schedule(.moveNext) + + return self.subscription + } + + func invoke(_ command: TailRecursiveSinkCommand) { + switch command { + case .dispose: + self.disposeCommand() + case .moveNext: + self.moveNextCommand() + } + } + + // simple implementation for now + func schedule(_ command: TailRecursiveSinkCommand) { + self.gate.invoke(InvocableScheduledItem(invocable: self, state: command)) + } + + func done() { + self.forwardOn(.completed) + self.dispose() + } + + func extract(_ observable: Observable) -> SequenceGenerator? { + rxAbstractMethod() + } + + // should be done on gate locked + + private func moveNextCommand() { + var next: Observable? + + repeat { + guard let (g, left) = self.generators.last else { + break + } + + if self.isDisposed { + return + } + + self.generators.removeLast() + + var e = g + + guard let nextCandidate = e.next()?.asObservable() else { + continue + } + + // `left` is a hint of how many elements are left in generator. + // In case this is the last element, then there is no need to push + // that generator on stack. + // + // This is an optimization used to make sure in tail recursive case + // there is no memory leak in case this operator is used to generate non terminating + // sequence. + + if let knownOriginalLeft = left { + // `- 1` because generator.next() has just been called + if knownOriginalLeft - 1 >= 1 { + self.generators.append((e, knownOriginalLeft - 1)) + } + } + else { + self.generators.append((e, nil)) + } + + let nextGenerator = self.extract(nextCandidate) + + if let nextGenerator = nextGenerator { + self.generators.append(nextGenerator) + #if DEBUG || TRACE_RESOURCES + if maxTailRecursiveSinkStackSize < self.generators.count { + maxTailRecursiveSinkStackSize = self.generators.count + } + #endif + } + else { + next = nextCandidate + } + } while next == nil + + guard let existingNext = next else { + self.done() + return + } + + let disposable = SingleAssignmentDisposable() + self.subscription.disposable = disposable + disposable.setDisposable(self.subscribeToNext(existingNext)) + } + + func subscribeToNext(_ source: Observable) -> Disposable { + rxAbstractMethod() + } + + func disposeCommand() { + self.disposed = true + self.generators.removeAll(keepingCapacity: false) + } + + override func dispose() { + super.dispose() + + self.subscription.dispose() + self.gate.dispose() + + self.schedule(.dispose) + } +} + diff --git a/Pods/RxSwift/RxSwift/Reactive.swift b/Pods/RxSwift/RxSwift/Reactive.swift new file mode 100644 index 00000000..1bf390dc --- /dev/null +++ b/Pods/RxSwift/RxSwift/Reactive.swift @@ -0,0 +1,80 @@ +// +// Reactive.swift +// RxSwift +// +// Created by Yury Korolev on 5/2/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +/** + Use `Reactive` proxy as customization point for constrained protocol extensions. + + General pattern would be: + + // 1. Extend Reactive protocol with constrain on Base + // Read as: Reactive Extension where Base is a SomeType + extension Reactive where Base: SomeType { + // 2. Put any specific reactive extension for SomeType here + } + + With this approach we can have more specialized methods and properties using + `Base` and not just specialized on common base type. + + `Binder`s are also automatically synthesized using `@dynamicMemberLookup` for writable reference properties of the reactive base. + */ + +@dynamicMemberLookup +public struct Reactive { + /// Base object to extend. + public let base: Base + + /// Creates extensions with base object. + /// + /// - parameter base: Base object. + public init(_ base: Base) { + self.base = base + } + + /// Automatically synthesized binder for a key path between the reactive + /// base and one of its properties + public subscript(dynamicMember keyPath: ReferenceWritableKeyPath) -> Binder where Base: AnyObject { + Binder(self.base) { base, value in + base[keyPath: keyPath] = value + } + } +} + +/// A type that has reactive extensions. +public protocol ReactiveCompatible { + /// Extended type + associatedtype ReactiveBase + + /// Reactive extensions. + static var rx: Reactive.Type { get set } + + /// Reactive extensions. + var rx: Reactive { get set } +} + +extension ReactiveCompatible { + /// Reactive extensions. + public static var rx: Reactive.Type { + get { Reactive.self } + // this enables using Reactive to "mutate" base type + // swiftlint:disable:next unused_setter_value + set { } + } + + /// Reactive extensions. + public var rx: Reactive { + get { Reactive(self) } + // this enables using Reactive to "mutate" base object + // swiftlint:disable:next unused_setter_value + set { } + } +} + +import Foundation + +/// Extend NSObject with `rx` proxy. +extension NSObject: ReactiveCompatible { } diff --git a/Pods/RxSwift/RxSwift/Rx.swift b/Pods/RxSwift/RxSwift/Rx.swift new file mode 100644 index 00000000..bcdd2794 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Rx.swift @@ -0,0 +1,142 @@ +// +// Rx.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if TRACE_RESOURCES + private let resourceCount = AtomicInt(0) + + /// Resource utilization information + public struct Resources { + /// Counts internal Rx resource allocations (Observables, Observers, Disposables, etc.). This provides a simple way to detect leaks during development. + public static var total: Int32 { + load(resourceCount) + } + + /// Increments `Resources.total` resource count. + /// + /// - returns: New resource count + public static func incrementTotal() -> Int32 { + increment(resourceCount) + } + + /// Decrements `Resources.total` resource count + /// + /// - returns: New resource count + public static func decrementTotal() -> Int32 { + decrement(resourceCount) + } + } +#endif + +/// Swift does not implement abstract methods. This method is used as a runtime check to ensure that methods which intended to be abstract (i.e., they should be implemented in subclasses) are not called directly on the superclass. +func rxAbstractMethod(file: StaticString = #file, line: UInt = #line) -> Swift.Never { + rxFatalError("Abstract method", file: file, line: line) +} + +func rxFatalError(_ lastMessage: @autoclosure () -> String, file: StaticString = #file, line: UInt = #line) -> Swift.Never { + fatalError(lastMessage(), file: file, line: line) +} + +func rxFatalErrorInDebug(_ lastMessage: @autoclosure () -> String, file: StaticString = #file, line: UInt = #line) { + #if DEBUG + fatalError(lastMessage(), file: file, line: line) + #else + print("\(file):\(line): \(lastMessage())") + #endif +} + +func incrementChecked(_ i: inout Int) throws -> Int { + if i == Int.max { + throw RxError.overflow + } + defer { i += 1 } + return i +} + +func decrementChecked(_ i: inout Int) throws -> Int { + if i == Int.min { + throw RxError.overflow + } + defer { i -= 1 } + return i +} + +#if DEBUG + import Foundation + final class SynchronizationTracker { + private let lock = RecursiveLock() + + public enum SynchronizationErrorMessages: String { + case variable = "Two different threads are trying to assign the same `Variable.value` unsynchronized.\n This is undefined behavior because the end result (variable value) is nondeterministic and depends on the \n operating system thread scheduler. This will cause random behavior of your program.\n" + case `default` = "Two different unsynchronized threads are trying to send some event simultaneously.\n This is undefined behavior because the ordering of the effects caused by these events is nondeterministic and depends on the \n operating system thread scheduler. This will result in a random behavior of your program.\n" + } + + private var threads = [UnsafeMutableRawPointer: Int]() + + private func synchronizationError(_ message: String) { + #if FATAL_SYNCHRONIZATION + rxFatalError(message) + #else + print(message) + #endif + } + + func register(synchronizationErrorMessage: SynchronizationErrorMessages) { + self.lock.lock(); defer { self.lock.unlock() } + let pointer = Unmanaged.passUnretained(Thread.current).toOpaque() + let count = (self.threads[pointer] ?? 0) + 1 + + if count > 1 { + self.synchronizationError( + "⚠️ Reentrancy anomaly was detected.\n" + + " > Debugging: To debug this issue you can set a breakpoint in \(#file):\(#line) and observe the call stack.\n" + + " > Problem: This behavior is breaking the observable sequence grammar. `next (error | completed)?`\n" + + " This behavior breaks the grammar because there is overlapping between sequence events.\n" + + " Observable sequence is trying to send an event before sending of previous event has finished.\n" + + " > Interpretation: This could mean that there is some kind of unexpected cyclic dependency in your code,\n" + + " or that the system is not behaving in the expected way.\n" + + " > Remedy: If this is the expected behavior this message can be suppressed by adding `.observe(on:MainScheduler.asyncInstance)`\n" + + " or by enqueuing sequence events in some other way.\n" + ) + } + + self.threads[pointer] = count + + if self.threads.count > 1 { + self.synchronizationError( + "⚠️ Synchronization anomaly was detected.\n" + + " > Debugging: To debug this issue you can set a breakpoint in \(#file):\(#line) and observe the call stack.\n" + + " > Problem: This behavior is breaking the observable sequence grammar. `next (error | completed)?`\n" + + " This behavior breaks the grammar because there is overlapping between sequence events.\n" + + " Observable sequence is trying to send an event before sending of previous event has finished.\n" + + " > Interpretation: " + synchronizationErrorMessage.rawValue + + " > Remedy: If this is the expected behavior this message can be suppressed by adding `.observe(on:MainScheduler.asyncInstance)`\n" + + " or by synchronizing sequence events in some other way.\n" + ) + } + } + + func unregister() { + self.lock.performLocked { + let pointer = Unmanaged.passUnretained(Thread.current).toOpaque() + self.threads[pointer] = (self.threads[pointer] ?? 1) - 1 + if self.threads[pointer] == 0 { + self.threads[pointer] = nil + } + } + } + } + +#endif + +/// RxSwift global hooks +public enum Hooks { + + // Should capture call stack + public static var recordCallStackOnError: Bool = false + +} diff --git a/Pods/RxSwift/RxSwift/RxMutableBox.swift b/Pods/RxSwift/RxSwift/RxMutableBox.swift new file mode 100644 index 00000000..73476c36 --- /dev/null +++ b/Pods/RxSwift/RxSwift/RxMutableBox.swift @@ -0,0 +1,53 @@ +// +// RxMutableBox.swift +// RxSwift +// +// Created by Krunoslav Zaher on 5/22/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if os(Linux) +/// As Swift 5 was released, A patch to `Thread` for Linux +/// changed `threadDictionary` to a `NSMutableDictionary` instead of +/// a `Dictionary`: https://github.com/apple/swift-corelibs-foundation/pull/1762/files +/// +/// This means that on Linux specifically, `RxMutableBox` must be a `NSObject` +/// or it won't be possible to store it in `Thread.threadDictionary`. +/// +/// For more information, read the discussion at: +/// https://github.com/ReactiveX/RxSwift/issues/1911#issuecomment-479723298 +import Foundation + +/// Creates mutable reference wrapper for any type. +final class RxMutableBox: NSObject { + /// Wrapped value + var value: T + + /// Creates reference wrapper for `value`. + /// + /// - parameter value: Value to wrap. + init (_ value: T) { + self.value = value + } +} +#else +/// Creates mutable reference wrapper for any type. +final class RxMutableBox: CustomDebugStringConvertible { + /// Wrapped value + var value: T + + /// Creates reference wrapper for `value`. + /// + /// - parameter value: Value to wrap. + init (_ value: T) { + self.value = value + } +} + +extension RxMutableBox { + /// - returns: Box description. + var debugDescription: String { + "MutatingBox(\(self.value))" + } +} +#endif diff --git a/Pods/RxSwift/RxSwift/SchedulerType.swift b/Pods/RxSwift/RxSwift/SchedulerType.swift new file mode 100644 index 00000000..6c8fe4a3 --- /dev/null +++ b/Pods/RxSwift/RxSwift/SchedulerType.swift @@ -0,0 +1,71 @@ +// +// SchedulerType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Dispatch +import Foundation + +// Type that represents time interval in the context of RxSwift. +public typealias RxTimeInterval = DispatchTimeInterval + +/// Type that represents absolute time in the context of RxSwift. +public typealias RxTime = Date + +/// Represents an object that schedules units of work. +public protocol SchedulerType: ImmediateSchedulerType { + + /// - returns: Current time. + var now : RxTime { + get + } + + /** + Schedules an action to be executed. + + - parameter state: State passed to the action to be executed. + - parameter dueTime: Relative time after which to execute the action. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + func scheduleRelative(_ state: StateType, dueTime: RxTimeInterval, action: @escaping (StateType) -> Disposable) -> Disposable + + /** + Schedules a periodic piece of work. + + - parameter state: State passed to the action to be executed. + - parameter startAfter: Period after which initial work should be run. + - parameter period: Period for running the work periodically. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + func schedulePeriodic(_ state: StateType, startAfter: RxTimeInterval, period: RxTimeInterval, action: @escaping (StateType) -> StateType) -> Disposable +} + +extension SchedulerType { + + /** + Periodic task will be emulated using recursive scheduling. + + - parameter state: Initial state passed to the action upon the first iteration. + - parameter startAfter: Period after which initial work should be run. + - parameter period: Period for running the work periodically. + - returns: The disposable object used to cancel the scheduled recurring action (best effort). + */ + public func schedulePeriodic(_ state: StateType, startAfter: RxTimeInterval, period: RxTimeInterval, action: @escaping (StateType) -> StateType) -> Disposable { + let schedule = SchedulePeriodicRecursive(scheduler: self, startAfter: startAfter, period: period, action: action, state: state) + + return schedule.start() + } + + func scheduleRecursive(_ state: State, dueTime: RxTimeInterval, action: @escaping (State, AnyRecursiveScheduler) -> Void) -> Disposable { + let scheduler = AnyRecursiveScheduler(scheduler: self, action: action) + + scheduler.schedule(state, dueTime: dueTime) + + return Disposables.create(with: scheduler.dispose) + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift b/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift new file mode 100644 index 00000000..02c47c91 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift @@ -0,0 +1,82 @@ +// +// ConcurrentDispatchQueueScheduler.swift +// RxSwift +// +// Created by Krunoslav Zaher on 7/5/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Dispatch +import Foundation + +/// Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. You can also pass a serial dispatch queue, it shouldn't cause any problems. +/// +/// This scheduler is suitable when some work needs to be performed in background. +public class ConcurrentDispatchQueueScheduler: SchedulerType { + public typealias TimeInterval = Foundation.TimeInterval + public typealias Time = Date + + public var now : Date { + Date() + } + + let configuration: DispatchQueueConfiguration + + /// Constructs new `ConcurrentDispatchQueueScheduler` that wraps `queue`. + /// + /// - parameter queue: Target dispatch queue. + /// - parameter leeway: The amount of time, in nanoseconds, that the system will defer the timer. + public init(queue: DispatchQueue, leeway: DispatchTimeInterval = DispatchTimeInterval.nanoseconds(0)) { + self.configuration = DispatchQueueConfiguration(queue: queue, leeway: leeway) + } + + /// Convenience init for scheduler that wraps one of the global concurrent dispatch queues. + /// + /// - parameter qos: Target global dispatch queue, by quality of service class. + /// - parameter leeway: The amount of time, in nanoseconds, that the system will defer the timer. + public convenience init(qos: DispatchQoS, leeway: DispatchTimeInterval = DispatchTimeInterval.nanoseconds(0)) { + self.init(queue: DispatchQueue( + label: "rxswift.queue.\(qos)", + qos: qos, + attributes: [DispatchQueue.Attributes.concurrent], + target: nil), + leeway: leeway + ) + } + + /** + Schedules an action to be executed immediately. + + - parameter state: State passed to the action to be executed. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public final func schedule(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable { + self.configuration.schedule(state, action: action) + } + + /** + Schedules an action to be executed. + + - parameter state: State passed to the action to be executed. + - parameter dueTime: Relative time after which to execute the action. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public final func scheduleRelative(_ state: StateType, dueTime: RxTimeInterval, action: @escaping (StateType) -> Disposable) -> Disposable { + self.configuration.scheduleRelative(state, dueTime: dueTime, action: action) + } + + /** + Schedules a periodic piece of work. + + - parameter state: State passed to the action to be executed. + - parameter startAfter: Period after which initial work should be run. + - parameter period: Period for running the work periodically. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func schedulePeriodic(_ state: StateType, startAfter: RxTimeInterval, period: RxTimeInterval, action: @escaping (StateType) -> StateType) -> Disposable { + self.configuration.schedulePeriodic(state, startAfter: startAfter, period: period, action: action) + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift b/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift new file mode 100644 index 00000000..c438d7d4 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift @@ -0,0 +1,87 @@ +// +// ConcurrentMainScheduler.swift +// RxSwift +// +// Created by Krunoslav Zaher on 10/17/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Dispatch +import Foundation + +/** +Abstracts work that needs to be performed on `MainThread`. In case `schedule` methods are called from main thread, it will perform action immediately without scheduling. + +This scheduler is optimized for `subscribeOn` operator. If you want to observe observable sequence elements on main thread using `observeOn` operator, +`MainScheduler` is more suitable for that purpose. +*/ +public final class ConcurrentMainScheduler : SchedulerType { + public typealias TimeInterval = Foundation.TimeInterval + public typealias Time = Date + + private let mainScheduler: MainScheduler + private let mainQueue: DispatchQueue + + /// - returns: Current time. + public var now: Date { + self.mainScheduler.now as Date + } + + private init(mainScheduler: MainScheduler) { + self.mainQueue = DispatchQueue.main + self.mainScheduler = mainScheduler + } + + /// Singleton instance of `ConcurrentMainScheduler` + public static let instance = ConcurrentMainScheduler(mainScheduler: MainScheduler.instance) + + /** + Schedules an action to be executed immediately. + + - parameter state: State passed to the action to be executed. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func schedule(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable { + if DispatchQueue.isMain { + return action(state) + } + + let cancel = SingleAssignmentDisposable() + + self.mainQueue.async { + if cancel.isDisposed { + return + } + + cancel.setDisposable(action(state)) + } + + return cancel + } + + /** + Schedules an action to be executed. + + - parameter state: State passed to the action to be executed. + - parameter dueTime: Relative time after which to execute the action. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public final func scheduleRelative(_ state: StateType, dueTime: RxTimeInterval, action: @escaping (StateType) -> Disposable) -> Disposable { + self.mainScheduler.scheduleRelative(state, dueTime: dueTime, action: action) + } + + /** + Schedules a periodic piece of work. + + - parameter state: State passed to the action to be executed. + - parameter startAfter: Period after which initial work should be run. + - parameter period: Period for running the work periodically. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func schedulePeriodic(_ state: StateType, startAfter: RxTimeInterval, period: RxTimeInterval, action: @escaping (StateType) -> StateType) -> Disposable { + self.mainScheduler.schedulePeriodic(state, startAfter: startAfter, period: period, action: action) + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift b/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift new file mode 100644 index 00000000..16a7dd32 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift @@ -0,0 +1,131 @@ +// +// CurrentThreadScheduler.swift +// RxSwift +// +// Created by Krunoslav Zaher on 8/30/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Dispatch +import Foundation + +#if os(Linux) + fileprivate enum CurrentThreadSchedulerQueueKey { + fileprivate static let instance = "RxSwift.CurrentThreadScheduler.Queue" + } +#else + private class CurrentThreadSchedulerQueueKey: NSObject, NSCopying { + static let instance = CurrentThreadSchedulerQueueKey() + private override init() { + super.init() + } + + override var hash: Int { + return 0 + } + + public func copy(with zone: NSZone? = nil) -> Any { + return self + } + } +#endif + +/// Represents an object that schedules units of work on the current thread. +/// +/// This is the default scheduler for operators that generate elements. +/// +/// This scheduler is also sometimes called `trampoline scheduler`. +public class CurrentThreadScheduler : ImmediateSchedulerType { + typealias ScheduleQueue = RxMutableBox> + + /// The singleton instance of the current thread scheduler. + public static let instance = CurrentThreadScheduler() + + private static var isScheduleRequiredKey: pthread_key_t = { () -> pthread_key_t in + let key = UnsafeMutablePointer.allocate(capacity: 1) + defer { key.deallocate() } + + guard pthread_key_create(key, nil) == 0 else { + rxFatalError("isScheduleRequired key creation failed") + } + + return key.pointee + }() + + private static var scheduleInProgressSentinel: UnsafeRawPointer = { () -> UnsafeRawPointer in + return UnsafeRawPointer(UnsafeMutablePointer.allocate(capacity: 1)) + }() + + static var queue : ScheduleQueue? { + get { + return Thread.getThreadLocalStorageValueForKey(CurrentThreadSchedulerQueueKey.instance) + } + set { + Thread.setThreadLocalStorageValue(newValue, forKey: CurrentThreadSchedulerQueueKey.instance) + } + } + + /// Gets a value that indicates whether the caller must call a `schedule` method. + public static private(set) var isScheduleRequired: Bool { + get { + return pthread_getspecific(CurrentThreadScheduler.isScheduleRequiredKey) == nil + } + set(isScheduleRequired) { + if pthread_setspecific(CurrentThreadScheduler.isScheduleRequiredKey, isScheduleRequired ? nil : scheduleInProgressSentinel) != 0 { + rxFatalError("pthread_setspecific failed") + } + } + } + + /** + Schedules an action to be executed as soon as possible on current thread. + + If this method is called on some thread that doesn't have `CurrentThreadScheduler` installed, scheduler will be + automatically installed and uninstalled after all work is performed. + + - parameter state: State passed to the action to be executed. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func schedule(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable { + if CurrentThreadScheduler.isScheduleRequired { + CurrentThreadScheduler.isScheduleRequired = false + + let disposable = action(state) + + defer { + CurrentThreadScheduler.isScheduleRequired = true + CurrentThreadScheduler.queue = nil + } + + guard let queue = CurrentThreadScheduler.queue else { + return disposable + } + + while let latest = queue.value.dequeue() { + if latest.isDisposed { + continue + } + latest.invoke() + } + + return disposable + } + + let existingQueue = CurrentThreadScheduler.queue + + let queue: RxMutableBox> + if let existingQueue = existingQueue { + queue = existingQueue + } + else { + queue = RxMutableBox(Queue(capacity: 1)) + CurrentThreadScheduler.queue = queue + } + + let scheduledItem = ScheduledItem(action: action, state: state) + queue.value.enqueue(scheduledItem) + + return scheduledItem + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift b/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift new file mode 100644 index 00000000..254a3e83 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift @@ -0,0 +1,22 @@ +// +// HistoricalScheduler.swift +// RxSwift +// +// Created by Krunoslav Zaher on 12/27/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +/// Provides a virtual time scheduler that uses `Date` for absolute time and `TimeInterval` for relative time. +public class HistoricalScheduler : VirtualTimeScheduler { + + /** + Creates a new historical scheduler with initial clock value. + + - parameter initialClock: Initial value for virtual clock. + */ + public init(initialClock: RxTime = Date(timeIntervalSince1970: 0)) { + super.init(initialClock: initialClock, converter: HistoricalSchedulerTimeConverter()) + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift b/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift new file mode 100644 index 00000000..a8fae8a4 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift @@ -0,0 +1,67 @@ +// +// HistoricalSchedulerTimeConverter.swift +// RxSwift +// +// Created by Krunoslav Zaher on 12/27/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +/// Converts historical virtual time into real time. +/// +/// Since historical virtual time is also measured in `Date`, this converter is identity function. +public struct HistoricalSchedulerTimeConverter : VirtualTimeConverterType { + /// Virtual time unit used that represents ticks of virtual clock. + public typealias VirtualTimeUnit = RxTime + + /// Virtual time unit used to represent differences of virtual times. + public typealias VirtualTimeIntervalUnit = TimeInterval + + /// Returns identical value of argument passed because historical virtual time is equal to real time, just + /// decoupled from local machine clock. + public func convertFromVirtualTime(_ virtualTime: VirtualTimeUnit) -> RxTime { + virtualTime + } + + /// Returns identical value of argument passed because historical virtual time is equal to real time, just + /// decoupled from local machine clock. + public func convertToVirtualTime(_ time: RxTime) -> VirtualTimeUnit { + time + } + + /// Returns identical value of argument passed because historical virtual time is equal to real time, just + /// decoupled from local machine clock. + public func convertFromVirtualTimeInterval(_ virtualTimeInterval: VirtualTimeIntervalUnit) -> TimeInterval { + virtualTimeInterval + } + + /// Returns identical value of argument passed because historical virtual time is equal to real time, just + /// decoupled from local machine clock. + public func convertToVirtualTimeInterval(_ timeInterval: TimeInterval) -> VirtualTimeIntervalUnit { + timeInterval + } + + /** + Offsets `Date` by time interval. + + - parameter time: Time. + - parameter timeInterval: Time interval offset. + - returns: Time offsetted by time interval. + */ + public func offsetVirtualTime(_ time: VirtualTimeUnit, offset: VirtualTimeIntervalUnit) -> VirtualTimeUnit { + time.addingTimeInterval(offset) + } + + /// Compares two `Date`s. + public func compareVirtualTime(_ lhs: VirtualTimeUnit, _ rhs: VirtualTimeUnit) -> VirtualTimeComparison { + switch lhs.compare(rhs as Date) { + case .orderedAscending: + return .lessThan + case .orderedSame: + return .equal + case .orderedDescending: + return .greaterThan + } + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift b/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift new file mode 100644 index 00000000..53f148dc --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift @@ -0,0 +1,97 @@ +// +// DispatchQueueConfiguration.swift +// RxSwift +// +// Created by Krunoslav Zaher on 7/23/16. +// Copyright © 2016 Krunoslav Zaher. All rights reserved. +// + +import Dispatch +import Foundation + +struct DispatchQueueConfiguration { + let queue: DispatchQueue + let leeway: DispatchTimeInterval +} + +extension DispatchQueueConfiguration { + func schedule(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable { + let cancel = SingleAssignmentDisposable() + + self.queue.async { + if cancel.isDisposed { + return + } + + + cancel.setDisposable(action(state)) + } + + return cancel + } + + func scheduleRelative(_ state: StateType, dueTime: RxTimeInterval, action: @escaping (StateType) -> Disposable) -> Disposable { + let deadline = DispatchTime.now() + dueTime + + let compositeDisposable = CompositeDisposable() + + let timer = DispatchSource.makeTimerSource(queue: self.queue) + timer.schedule(deadline: deadline, leeway: self.leeway) + + // TODO: + // This looks horrible, and yes, it is. + // It looks like Apple has made a conceptual change here, and I'm unsure why. + // Need more info on this. + // It looks like just setting timer to fire and not holding a reference to it + // until deadline causes timer cancellation. + var timerReference: DispatchSourceTimer? = timer + let cancelTimer = Disposables.create { + timerReference?.cancel() + timerReference = nil + } + + timer.setEventHandler(handler: { + if compositeDisposable.isDisposed { + return + } + _ = compositeDisposable.insert(action(state)) + cancelTimer.dispose() + }) + timer.resume() + + _ = compositeDisposable.insert(cancelTimer) + + return compositeDisposable + } + + func schedulePeriodic(_ state: StateType, startAfter: RxTimeInterval, period: RxTimeInterval, action: @escaping (StateType) -> StateType) -> Disposable { + let initial = DispatchTime.now() + startAfter + + var timerState = state + + let timer = DispatchSource.makeTimerSource(queue: self.queue) + timer.schedule(deadline: initial, repeating: period, leeway: self.leeway) + + // TODO: + // This looks horrible, and yes, it is. + // It looks like Apple has made a conceptual change here, and I'm unsure why. + // Need more info on this. + // It looks like just setting timer to fire and not holding a reference to it + // until deadline causes timer cancellation. + var timerReference: DispatchSourceTimer? = timer + let cancelTimer = Disposables.create { + timerReference?.cancel() + timerReference = nil + } + + timer.setEventHandler(handler: { + if cancelTimer.isDisposed { + return + } + timerState = action(timerState) + }) + timer.resume() + + return cancelTimer + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift b/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift new file mode 100644 index 00000000..0e150561 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift @@ -0,0 +1,22 @@ +// +// InvocableScheduledItem.swift +// RxSwift +// +// Created by Krunoslav Zaher on 11/7/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +struct InvocableScheduledItem : InvocableType { + + let invocable: I + let state: I.Value + + init(invocable: I, state: I.Value) { + self.invocable = invocable + self.state = state + } + + func invoke() { + self.invocable.invoke(self.state) + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift b/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift new file mode 100644 index 00000000..0dba4336 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift @@ -0,0 +1,17 @@ +// +// InvocableType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 11/7/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +protocol InvocableType { + func invoke() +} + +protocol InvocableWithValueType { + associatedtype Value + + func invoke(_ value: Value) +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift b/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift new file mode 100644 index 00000000..3d790d7a --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift @@ -0,0 +1,35 @@ +// +// ScheduledItem.swift +// RxSwift +// +// Created by Krunoslav Zaher on 9/2/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +struct ScheduledItem + : ScheduledItemType + , InvocableType { + typealias Action = (T) -> Disposable + + private let action: Action + private let state: T + + private let disposable = SingleAssignmentDisposable() + + var isDisposed: Bool { + self.disposable.isDisposed + } + + init(action: @escaping Action, state: T) { + self.action = action + self.state = state + } + + func invoke() { + self.disposable.setDisposable(self.action(self.state)) + } + + func dispose() { + self.disposable.dispose() + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift b/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift new file mode 100644 index 00000000..d2b16cab --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift @@ -0,0 +1,13 @@ +// +// ScheduledItemType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 11/7/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +protocol ScheduledItemType + : Cancelable + , InvocableType { + func invoke() +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift b/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift new file mode 100644 index 00000000..f6a507f3 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift @@ -0,0 +1,80 @@ +// +// MainScheduler.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Dispatch +#if !os(Linux) + import Foundation +#endif + +/** +Abstracts work that needs to be performed on `DispatchQueue.main`. In case `schedule` methods are called from `DispatchQueue.main`, it will perform action immediately without scheduling. + +This scheduler is usually used to perform UI work. + +Main scheduler is a specialization of `SerialDispatchQueueScheduler`. + +This scheduler is optimized for `observeOn` operator. To ensure observable sequence is subscribed on main thread using `subscribeOn` +operator please use `ConcurrentMainScheduler` because it is more optimized for that purpose. +*/ +public final class MainScheduler : SerialDispatchQueueScheduler { + + private let mainQueue: DispatchQueue + + let numberEnqueued = AtomicInt(0) + + /// Initializes new instance of `MainScheduler`. + public init() { + self.mainQueue = DispatchQueue.main + super.init(serialQueue: self.mainQueue) + } + + /// Singleton instance of `MainScheduler` + public static let instance = MainScheduler() + + /// Singleton instance of `MainScheduler` that always schedules work asynchronously + /// and doesn't perform optimizations for calls scheduled from main queue. + public static let asyncInstance = SerialDispatchQueueScheduler(serialQueue: DispatchQueue.main) + + /// In case this method is called on a background thread it will throw an exception. + public static func ensureExecutingOnScheduler(errorMessage: String? = nil) { + if !DispatchQueue.isMain { + rxFatalError(errorMessage ?? "Executing on background thread. Please use `MainScheduler.instance.schedule` to schedule work on main thread.") + } + } + + /// In case this method is running on a background thread it will throw an exception. + public static func ensureRunningOnMainThread(errorMessage: String? = nil) { + #if !os(Linux) // isMainThread is not implemented in Linux Foundation + guard Thread.isMainThread else { + rxFatalError(errorMessage ?? "Running on background thread.") + } + #endif + } + + override func scheduleInternal(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable { + let previousNumberEnqueued = increment(self.numberEnqueued) + + if DispatchQueue.isMain && previousNumberEnqueued == 0 { + let disposable = action(state) + decrement(self.numberEnqueued) + return disposable + } + + let cancel = SingleAssignmentDisposable() + + self.mainQueue.async { + if !cancel.isDisposed { + cancel.setDisposable(action(state)) + } + + decrement(self.numberEnqueued) + } + + return cancel + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift b/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift new file mode 100644 index 00000000..f0ad3d3c --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift @@ -0,0 +1,54 @@ +// +// OperationQueueScheduler.swift +// RxSwift +// +// Created by Krunoslav Zaher on 4/4/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Dispatch +import Foundation + +/// Abstracts the work that needs to be performed on a specific `NSOperationQueue`. +/// +/// This scheduler is suitable for cases when there is some bigger chunk of work that needs to be performed in background and you want to fine tune concurrent processing using `maxConcurrentOperationCount`. +public class OperationQueueScheduler: ImmediateSchedulerType { + public let operationQueue: OperationQueue + public let queuePriority: Operation.QueuePriority + + /// Constructs new instance of `OperationQueueScheduler` that performs work on `operationQueue`. + /// + /// - parameter operationQueue: Operation queue targeted to perform work on. + /// - parameter queuePriority: Queue priority which will be assigned to new operations. + public init(operationQueue: OperationQueue, queuePriority: Operation.QueuePriority = .normal) { + self.operationQueue = operationQueue + self.queuePriority = queuePriority + } + + /** + Schedules an action to be executed recursively. + + - parameter state: State passed to the action to be executed. + - parameter action: Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in recursive invocation state. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func schedule(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable { + let cancel = SingleAssignmentDisposable() + + let operation = BlockOperation { + if cancel.isDisposed { + return + } + + + cancel.setDisposable(action(state)) + } + + operation.queuePriority = self.queuePriority + + self.operationQueue.addOperation(operation) + + return cancel + } + +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift b/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift new file mode 100644 index 00000000..0ee78cd1 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift @@ -0,0 +1,220 @@ +// +// RecursiveScheduler.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/7/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +private enum ScheduleState { + case initial + case added(CompositeDisposable.DisposeKey) + case done +} + +/// Type erased recursive scheduler. +final class AnyRecursiveScheduler { + + typealias Action = (State, AnyRecursiveScheduler) -> Void + + private let lock = RecursiveLock() + + // state + private let group = CompositeDisposable() + + private var scheduler: SchedulerType + private var action: Action? + + init(scheduler: SchedulerType, action: @escaping Action) { + self.action = action + self.scheduler = scheduler + } + + /** + Schedules an action to be executed recursively. + + - parameter state: State passed to the action to be executed. + - parameter dueTime: Relative time after which to execute the recursive action. + */ + func schedule(_ state: State, dueTime: RxTimeInterval) { + var scheduleState: ScheduleState = .initial + + let d = self.scheduler.scheduleRelative(state, dueTime: dueTime) { state -> Disposable in + // best effort + if self.group.isDisposed { + return Disposables.create() + } + + let action = self.lock.performLocked { () -> Action? in + switch scheduleState { + case let .added(removeKey): + self.group.remove(for: removeKey) + case .initial: + break + case .done: + break + } + + scheduleState = .done + + return self.action + } + + if let action = action { + action(state, self) + } + + return Disposables.create() + } + + self.lock.performLocked { + switch scheduleState { + case .added: + rxFatalError("Invalid state") + case .initial: + if let removeKey = self.group.insert(d) { + scheduleState = .added(removeKey) + } + else { + scheduleState = .done + } + case .done: + break + } + } + } + + /// Schedules an action to be executed recursively. + /// + /// - parameter state: State passed to the action to be executed. + func schedule(_ state: State) { + var scheduleState: ScheduleState = .initial + + let d = self.scheduler.schedule(state) { state -> Disposable in + // best effort + if self.group.isDisposed { + return Disposables.create() + } + + let action = self.lock.performLocked { () -> Action? in + switch scheduleState { + case let .added(removeKey): + self.group.remove(for: removeKey) + case .initial: + break + case .done: + break + } + + scheduleState = .done + + return self.action + } + + if let action = action { + action(state, self) + } + + return Disposables.create() + } + + self.lock.performLocked { + switch scheduleState { + case .added: + rxFatalError("Invalid state") + case .initial: + if let removeKey = self.group.insert(d) { + scheduleState = .added(removeKey) + } + else { + scheduleState = .done + } + case .done: + break + } + } + } + + func dispose() { + self.lock.performLocked { + self.action = nil + } + self.group.dispose() + } +} + +/// Type erased recursive scheduler. +final class RecursiveImmediateScheduler { + typealias Action = (_ state: State, _ recurse: (State) -> Void) -> Void + + private var lock = SpinLock() + private let group = CompositeDisposable() + + private var action: Action? + private let scheduler: ImmediateSchedulerType + + init(action: @escaping Action, scheduler: ImmediateSchedulerType) { + self.action = action + self.scheduler = scheduler + } + + // immediate scheduling + + /// Schedules an action to be executed recursively. + /// + /// - parameter state: State passed to the action to be executed. + func schedule(_ state: State) { + var scheduleState: ScheduleState = .initial + + let d = self.scheduler.schedule(state) { state -> Disposable in + // best effort + if self.group.isDisposed { + return Disposables.create() + } + + let action = self.lock.performLocked { () -> Action? in + switch scheduleState { + case let .added(removeKey): + self.group.remove(for: removeKey) + case .initial: + break + case .done: + break + } + + scheduleState = .done + + return self.action + } + + if let action = action { + action(state, self.schedule) + } + + return Disposables.create() + } + + self.lock.performLocked { + switch scheduleState { + case .added: + rxFatalError("Invalid state") + case .initial: + if let removeKey = self.group.insert(d) { + scheduleState = .added(removeKey) + } + else { + scheduleState = .done + } + case .done: + break + } + } + } + + func dispose() { + self.lock.performLocked { + self.action = nil + } + self.group.dispose() + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift b/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift new file mode 100644 index 00000000..cab2bc8b --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift @@ -0,0 +1,61 @@ +// +// SchedulerServices+Emulation.swift +// RxSwift +// +// Created by Krunoslav Zaher on 6/6/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +enum SchedulePeriodicRecursiveCommand { + case tick + case dispatchStart +} + +final class SchedulePeriodicRecursive { + typealias RecursiveAction = (State) -> State + typealias RecursiveScheduler = AnyRecursiveScheduler + + private let scheduler: SchedulerType + private let startAfter: RxTimeInterval + private let period: RxTimeInterval + private let action: RecursiveAction + + private var state: State + private let pendingTickCount = AtomicInt(0) + + init(scheduler: SchedulerType, startAfter: RxTimeInterval, period: RxTimeInterval, action: @escaping RecursiveAction, state: State) { + self.scheduler = scheduler + self.startAfter = startAfter + self.period = period + self.action = action + self.state = state + } + + func start() -> Disposable { + self.scheduler.scheduleRecursive(SchedulePeriodicRecursiveCommand.tick, dueTime: self.startAfter, action: self.tick) + } + + func tick(_ command: SchedulePeriodicRecursiveCommand, scheduler: RecursiveScheduler) { + // Tries to emulate periodic scheduling as best as possible. + // The problem that could arise is if handling periodic ticks take too long, or + // tick interval is short. + switch command { + case .tick: + scheduler.schedule(.tick, dueTime: self.period) + + // The idea is that if on tick there wasn't any item enqueued, schedule to perform work immediately. + // Else work will be scheduled after previous enqueued work completes. + if increment(self.pendingTickCount) == 0 { + self.tick(.dispatchStart, scheduler: scheduler) + } + + case .dispatchStart: + self.state = self.action(self.state) + // Start work and schedule check is this last batch of work + if decrement(self.pendingTickCount) > 1 { + // This gives priority to scheduler emulation, it's not perfect, but helps + scheduler.schedule(SchedulePeriodicRecursiveCommand.dispatchStart) + } + } + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift b/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift new file mode 100644 index 00000000..bb0013c8 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift @@ -0,0 +1,131 @@ +// +// SerialDispatchQueueScheduler.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Dispatch +import Foundation + +/** +Abstracts the work that needs to be performed on a specific `dispatch_queue_t`. It will make sure +that even if concurrent dispatch queue is passed, it's transformed into a serial one. + +It is extremely important that this scheduler is serial, because +certain operator perform optimizations that rely on that property. + +Because there is no way of detecting is passed dispatch queue serial or +concurrent, for every queue that is being passed, worst case (concurrent) +will be assumed, and internal serial proxy dispatch queue will be created. + +This scheduler can also be used with internal serial queue alone. + +In case some customization need to be made on it before usage, +internal serial queue can be customized using `serialQueueConfiguration` +callback. +*/ +public class SerialDispatchQueueScheduler : SchedulerType { + public typealias TimeInterval = Foundation.TimeInterval + public typealias Time = Date + + /// - returns: Current time. + public var now : Date { + Date() + } + + let configuration: DispatchQueueConfiguration + + /** + Constructs new `SerialDispatchQueueScheduler` that wraps `serialQueue`. + + - parameter serialQueue: Target dispatch queue. + - parameter leeway: The amount of time, in nanoseconds, that the system will defer the timer. + */ + init(serialQueue: DispatchQueue, leeway: DispatchTimeInterval = DispatchTimeInterval.nanoseconds(0)) { + self.configuration = DispatchQueueConfiguration(queue: serialQueue, leeway: leeway) + } + + /** + Constructs new `SerialDispatchQueueScheduler` with internal serial queue named `internalSerialQueueName`. + + Additional dispatch queue properties can be set after dispatch queue is created using `serialQueueConfiguration`. + + - parameter internalSerialQueueName: Name of internal serial dispatch queue. + - parameter serialQueueConfiguration: Additional configuration of internal serial dispatch queue. + - parameter leeway: The amount of time, in nanoseconds, that the system will defer the timer. + */ + public convenience init(internalSerialQueueName: String, serialQueueConfiguration: ((DispatchQueue) -> Void)? = nil, leeway: DispatchTimeInterval = DispatchTimeInterval.nanoseconds(0)) { + let queue = DispatchQueue(label: internalSerialQueueName, attributes: []) + serialQueueConfiguration?(queue) + self.init(serialQueue: queue, leeway: leeway) + } + + /** + Constructs new `SerialDispatchQueueScheduler` named `internalSerialQueueName` that wraps `queue`. + + - parameter queue: Possibly concurrent dispatch queue used to perform work. + - parameter internalSerialQueueName: Name of internal serial dispatch queue proxy. + - parameter leeway: The amount of time, in nanoseconds, that the system will defer the timer. + */ + public convenience init(queue: DispatchQueue, internalSerialQueueName: String, leeway: DispatchTimeInterval = DispatchTimeInterval.nanoseconds(0)) { + // Swift 3.0 IUO + let serialQueue = DispatchQueue(label: internalSerialQueueName, + attributes: [], + target: queue) + self.init(serialQueue: serialQueue, leeway: leeway) + } + + /** + Constructs new `SerialDispatchQueueScheduler` that wraps one of the global concurrent dispatch queues. + + - parameter qos: Identifier for global dispatch queue with specified quality of service class. + - parameter internalSerialQueueName: Custom name for internal serial dispatch queue proxy. + - parameter leeway: The amount of time, in nanoseconds, that the system will defer the timer. + */ + @available(macOS 10.10, *) + public convenience init(qos: DispatchQoS, internalSerialQueueName: String = "rx.global_dispatch_queue.serial", leeway: DispatchTimeInterval = DispatchTimeInterval.nanoseconds(0)) { + self.init(queue: DispatchQueue.global(qos: qos.qosClass), internalSerialQueueName: internalSerialQueueName, leeway: leeway) + } + + /** + Schedules an action to be executed immediately. + + - parameter state: State passed to the action to be executed. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public final func schedule(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable { + self.scheduleInternal(state, action: action) + } + + func scheduleInternal(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable { + self.configuration.schedule(state, action: action) + } + + /** + Schedules an action to be executed. + + - parameter state: State passed to the action to be executed. + - parameter dueTime: Relative time after which to execute the action. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public final func scheduleRelative(_ state: StateType, dueTime: RxTimeInterval, action: @escaping (StateType) -> Disposable) -> Disposable { + self.configuration.scheduleRelative(state, dueTime: dueTime, action: action) + } + + /** + Schedules a periodic piece of work. + + - parameter state: State passed to the action to be executed. + - parameter startAfter: Period after which initial work should be run. + - parameter period: Period for running the work periodically. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func schedulePeriodic(_ state: StateType, startAfter: RxTimeInterval, period: RxTimeInterval, action: @escaping (StateType) -> StateType) -> Disposable { + self.configuration.schedulePeriodic(state, startAfter: startAfter, period: period, action: action) + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift b/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift new file mode 100644 index 00000000..9592d6e3 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift @@ -0,0 +1,97 @@ +// +// VirtualTimeConverterType.swift +// RxSwift +// +// Created by Krunoslav Zaher on 12/23/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation + +/// Parametrization for virtual time used by `VirtualTimeScheduler`s. +public protocol VirtualTimeConverterType { + /// Virtual time unit used that represents ticks of virtual clock. + associatedtype VirtualTimeUnit + + /// Virtual time unit used to represent differences of virtual times. + associatedtype VirtualTimeIntervalUnit + + /** + Converts virtual time to real time. + + - parameter virtualTime: Virtual time to convert to `Date`. + - returns: `Date` corresponding to virtual time. + */ + func convertFromVirtualTime(_ virtualTime: VirtualTimeUnit) -> RxTime + + /** + Converts real time to virtual time. + + - parameter time: `Date` to convert to virtual time. + - returns: Virtual time corresponding to `Date`. + */ + func convertToVirtualTime(_ time: RxTime) -> VirtualTimeUnit + + /** + Converts from virtual time interval to `TimeInterval`. + + - parameter virtualTimeInterval: Virtual time interval to convert to `TimeInterval`. + - returns: `TimeInterval` corresponding to virtual time interval. + */ + func convertFromVirtualTimeInterval(_ virtualTimeInterval: VirtualTimeIntervalUnit) -> TimeInterval + + /** + Converts from `TimeInterval` to virtual time interval. + + - parameter timeInterval: `TimeInterval` to convert to virtual time interval. + - returns: Virtual time interval corresponding to time interval. + */ + func convertToVirtualTimeInterval(_ timeInterval: TimeInterval) -> VirtualTimeIntervalUnit + + /** + Offsets virtual time by virtual time interval. + + - parameter time: Virtual time. + - parameter offset: Virtual time interval. + - returns: Time corresponding to time offsetted by virtual time interval. + */ + func offsetVirtualTime(_ time: VirtualTimeUnit, offset: VirtualTimeIntervalUnit) -> VirtualTimeUnit + + /** + This is additional abstraction because `Date` is unfortunately not comparable. + Extending `Date` with `Comparable` would be too risky because of possible collisions with other libraries. + */ + func compareVirtualTime(_ lhs: VirtualTimeUnit, _ rhs: VirtualTimeUnit) -> VirtualTimeComparison +} + +/** + Virtual time comparison result. + + This is additional abstraction because `Date` is unfortunately not comparable. + Extending `Date` with `Comparable` would be too risky because of possible collisions with other libraries. +*/ +public enum VirtualTimeComparison { + /// lhs < rhs. + case lessThan + /// lhs == rhs. + case equal + /// lhs > rhs. + case greaterThan +} + +extension VirtualTimeComparison { + /// lhs < rhs. + var lessThen: Bool { + self == .lessThan + } + + /// lhs > rhs + var greaterThan: Bool { + self == .greaterThan + } + + /// lhs == rhs + var equal: Bool { + self == .equal + } +} diff --git a/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift b/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift new file mode 100644 index 00000000..e74d5be6 --- /dev/null +++ b/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift @@ -0,0 +1,267 @@ +// +// VirtualTimeScheduler.swift +// RxSwift +// +// Created by Krunoslav Zaher on 2/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Base class for virtual time schedulers using a priority queue for scheduled items. +open class VirtualTimeScheduler + : SchedulerType { + + public typealias VirtualTime = Converter.VirtualTimeUnit + public typealias VirtualTimeInterval = Converter.VirtualTimeIntervalUnit + + private var running : Bool + + private var currentClock: VirtualTime + + private var schedulerQueue : PriorityQueue> + private var converter: Converter + + private var nextId = 0 + + /// - returns: Current time. + public var now: RxTime { + self.converter.convertFromVirtualTime(self.clock) + } + + /// - returns: Scheduler's absolute time clock value. + public var clock: VirtualTime { + self.currentClock + } + + /// Creates a new virtual time scheduler. + /// + /// - parameter initialClock: Initial value for the clock. + public init(initialClock: VirtualTime, converter: Converter) { + self.currentClock = initialClock + self.running = false + self.converter = converter + self.schedulerQueue = PriorityQueue(hasHigherPriority: { + switch converter.compareVirtualTime($0.time, $1.time) { + case .lessThan: + return true + case .equal: + return $0.id < $1.id + case .greaterThan: + return false + } + }, isEqual: { $0 === $1 }) + #if TRACE_RESOURCES + _ = Resources.incrementTotal() + #endif + } + + /** + Schedules an action to be executed immediately. + + - parameter state: State passed to the action to be executed. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func schedule(_ state: StateType, action: @escaping (StateType) -> Disposable) -> Disposable { + return self.scheduleRelative(state, dueTime: .microseconds(0)) { a in + return action(a) + } + } + + /** + Schedules an action to be executed. + + - parameter state: State passed to the action to be executed. + - parameter dueTime: Relative time after which to execute the action. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func scheduleRelative(_ state: StateType, dueTime: RxTimeInterval, action: @escaping (StateType) -> Disposable) -> Disposable { + let time = self.now.addingDispatchInterval(dueTime) + let absoluteTime = self.converter.convertToVirtualTime(time) + let adjustedTime = self.adjustScheduledTime(absoluteTime) + return self.scheduleAbsoluteVirtual(state, time: adjustedTime, action: action) + } + + /** + Schedules an action to be executed after relative time has passed. + + - parameter state: State passed to the action to be executed. + - parameter time: Absolute time when to execute the action. If this is less or equal then `now`, `now + 1` will be used. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func scheduleRelativeVirtual(_ state: StateType, dueTime: VirtualTimeInterval, action: @escaping (StateType) -> Disposable) -> Disposable { + let time = self.converter.offsetVirtualTime(self.clock, offset: dueTime) + return self.scheduleAbsoluteVirtual(state, time: time, action: action) + } + + /** + Schedules an action to be executed at absolute virtual time. + + - parameter state: State passed to the action to be executed. + - parameter time: Absolute time when to execute the action. + - parameter action: Action to be executed. + - returns: The disposable object used to cancel the scheduled action (best effort). + */ + public func scheduleAbsoluteVirtual(_ state: StateType, time: VirtualTime, action: @escaping (StateType) -> Disposable) -> Disposable { + MainScheduler.ensureExecutingOnScheduler() + + let compositeDisposable = CompositeDisposable() + + let item = VirtualSchedulerItem(action: { + return action(state) + }, time: time, id: self.nextId) + + self.nextId += 1 + + self.schedulerQueue.enqueue(item) + + _ = compositeDisposable.insert(item) + + return compositeDisposable + } + + /// Adjusts time of scheduling before adding item to schedule queue. + open func adjustScheduledTime(_ time: VirtualTime) -> VirtualTime { + time + } + + /// Starts the virtual time scheduler. + public func start() { + MainScheduler.ensureExecutingOnScheduler() + + if self.running { + return + } + + self.running = true + repeat { + guard let next = self.findNext() else { + break + } + + if self.converter.compareVirtualTime(next.time, self.clock).greaterThan { + self.currentClock = next.time + } + + next.invoke() + self.schedulerQueue.remove(next) + } while self.running + + self.running = false + } + + func findNext() -> VirtualSchedulerItem? { + while let front = self.schedulerQueue.peek() { + if front.isDisposed { + self.schedulerQueue.remove(front) + continue + } + + return front + } + + return nil + } + + /// Advances the scheduler's clock to the specified time, running all work till that point. + /// + /// - parameter virtualTime: Absolute time to advance the scheduler's clock to. + public func advanceTo(_ virtualTime: VirtualTime) { + MainScheduler.ensureExecutingOnScheduler() + + if self.running { + fatalError("Scheduler is already running") + } + + self.running = true + repeat { + guard let next = self.findNext() else { + break + } + + if self.converter.compareVirtualTime(next.time, virtualTime).greaterThan { + break + } + + if self.converter.compareVirtualTime(next.time, self.clock).greaterThan { + self.currentClock = next.time + } + next.invoke() + self.schedulerQueue.remove(next) + } while self.running + + self.currentClock = virtualTime + self.running = false + } + + /// Advances the scheduler's clock by the specified relative time. + public func sleep(_ virtualInterval: VirtualTimeInterval) { + MainScheduler.ensureExecutingOnScheduler() + + let sleepTo = self.converter.offsetVirtualTime(self.clock, offset: virtualInterval) + if self.converter.compareVirtualTime(sleepTo, self.clock).lessThen { + fatalError("Can't sleep to past.") + } + + self.currentClock = sleepTo + } + + /// Stops the virtual time scheduler. + public func stop() { + MainScheduler.ensureExecutingOnScheduler() + + self.running = false + } + + #if TRACE_RESOURCES + deinit { + _ = Resources.decrementTotal() + } + #endif +} + +// MARK: description + +extension VirtualTimeScheduler: CustomDebugStringConvertible { + /// A textual representation of `self`, suitable for debugging. + public var debugDescription: String { + self.schedulerQueue.debugDescription + } +} + +final class VirtualSchedulerItem

+RxSwift Logo +
+
Build Status +Supported Platforms: iOS, macOS, tvOS, watchOS & Linux +
+ + + +

+ +Rx is a [generic abstraction of computation](https://youtu.be/looJcaeboBY) expressed through `Observable` interface, which lets you broadcast and subscribe to values and other events from an `Observable` stream. + +RxSwift is the Swift-specific implementation of the [Reactive Extensions](http://reactivex.io) standard. + +

RxSwift Observable Example of a price constantly changing and updating the app's UI

+ +While this version aims to stay true to the original spirit and naming conventions of Rx, this project also aims to provide a true Swift-first API for Rx APIs. + +Cross platform documentation can be found on [ReactiveX.io](http://reactivex.io/). + +Like other Rx implementations, RxSwift's intention is to enable easy composition of asynchronous operations and streams of data in the form of `Observable` objects and a suite of methods to transform and compose these pieces of asynchronous work. + +KVO observation, async operations, UI Events and other streams of data are all unified under [abstraction of sequence](Documentation/GettingStarted.md#observables-aka-sequences). This is the reason why Rx is so simple, elegant and powerful. + +## I came here because I want to ... + +###### ... understand + +* [why use rx?](Documentation/Why.md) +* [the basics, getting started with RxSwift](Documentation/GettingStarted.md) +* [traits](Documentation/Traits.md) - what are `Single`, `Completable`, `Maybe`, `Driver`, and `ControlProperty` ... and why do they exist? +* [testing](Documentation/UnitTests.md) +* [tips and common errors](Documentation/Tips.md) +* [debugging](Documentation/GettingStarted.md#debugging) +* [the math behind Rx](Documentation/MathBehindRx.md) +* [what are hot and cold observable sequences?](Documentation/HotAndColdObservables.md) + +###### ... install + +* Integrate RxSwift/RxCocoa with my app. [Installation Guide](#installation) + +###### ... hack around + +* with the example app. [Running Example App](Documentation/ExampleApp.md) +* with operators in playgrounds. [Playgrounds](Documentation/Playgrounds.md) + +###### ... interact + +* All of this is great, but it would be nice to talk with other people using RxSwift and exchange experiences.
[Join Slack Channel](http://slack.rxswift.org) +* Report a problem using the library. [Open an Issue With Bug Template](.github/ISSUE_TEMPLATE.md) +* Request a new feature. [Open an Issue With Feature Request Template](Documentation/NewFeatureRequestTemplate.md) +* Help out [Check out contribution guide](CONTRIBUTING.md) + +###### ... compare + +* [with Combine and ReactiveSwift](Documentation/ComparisonWithOtherLibraries.md). + +###### ... understand the structure + +RxSwift is as compositional as the asynchronous work it drives. The core unit is RxSwift itself, while other dependencies can be added for UI Work, testing, and more. + +It comprises five separate components depending on each other in the following way: + +```none +┌──────────────┐ ┌──────────────┐ +│ RxCocoa ├────▶ RxRelay │ +└───────┬──────┘ └──────┬───────┘ + │ │ +┌───────▼──────────────────▼───────┐ +│ RxSwift │ +└───────▲──────────────────▲───────┘ + │ │ +┌───────┴──────┐ ┌──────┴───────┐ +│ RxTest │ │ RxBlocking │ +└──────────────┘ └──────────────┘ +``` + +* **RxSwift**: The core of RxSwift, providing the Rx standard as (mostly) defined by [ReactiveX](https://reactivex.io). It has no other dependencies. +* **RxCocoa**: Provides Cocoa-specific capabilities for general iOS/macOS/watchOS & tvOS app development, such as Shared Sequences, Traits, and much more. It depends on both `RxSwift` and `RxRelay`. +* **RxRelay**: Provides `PublishRelay`, `BehaviorRelay` and `ReplayRelay`, three [simple wrappers around Subjects](https://github.com/ReactiveX/RxSwift/blob/main/Documentation/Subjects.md#relays). It depends on `RxSwift`. +* **RxTest** and **RxBlocking**: Provides testing capabilities for Rx-based systems. It depends on `RxSwift`. + +## Usage + + + + + + + + + + + + + + + + + + + +
Here's an exampleIn Action
Define search for GitHub repositories ...
+let searchResults = searchBar.rx.text.orEmpty
+    .throttle(.milliseconds(300), scheduler: MainScheduler.instance)
+    .distinctUntilChanged()
+    .flatMapLatest { query -> Observable<[Repository]> in
+        if query.isEmpty {
+            return .just([])
+        }
+        return searchGitHub(query)
+            .catchAndReturn([])
+    }
+    .observe(on: MainScheduler.instance)
... then bind the results to your tableview
+searchResults
+    .bind(to: tableView.rx.items(cellIdentifier: "Cell")) {
+        (index, repository: Repository, cell) in
+        cell.textLabel?.text = repository.name
+        cell.detailTextLabel?.text = repository.url
+    }
+    .disposed(by: disposeBag)
+ + +## Requirements + +* Xcode 12.x +* Swift 5.x + +For Xcode 11 and below, [use RxSwift 5.x](https://github.com/ReactiveX/RxSwift/releases/tag/5.1.1). + +## Installation + +RxSwift doesn't contain any external dependencies. + +These are currently the supported installation options: + +### Manual + +Open Rx.xcworkspace, choose `RxExample` and hit run. This method will build everything and run the sample app + +### [CocoaPods](https://guides.cocoapods.org/using/using-cocoapods.html) + +```ruby +# Podfile +use_frameworks! + +target 'YOUR_TARGET_NAME' do + pod 'RxSwift', '6.6.0' + pod 'RxCocoa', '6.6.0' +end + +# RxTest and RxBlocking make the most sense in the context of unit/integration tests +target 'YOUR_TESTING_TARGET' do + pod 'RxBlocking', '6.6.0' + pod 'RxTest', '6.6.0' +end +``` + +Replace `YOUR_TARGET_NAME` and then, in the `Podfile` directory, type: + +```bash +$ pod install +``` + +### XCFrameworks + +Each release starting with RxSwift 6 includes `*.xcframework` framework binaries. + +Simply drag the needed framework binaries to your **Frameworks, Libraries, and Embedded Content** section under your target's **General** tab. + +> **Note**: If you're using `RxCocoa`, be sure to also drag **RxCocoaRuntime.xcframework** before importing `RxCocoa`. + +XCFrameworks instructions + +### [Carthage](https://github.com/Carthage/Carthage) + +Add this to `Cartfile` + +``` +github "ReactiveX/RxSwift" "6.6.0" +``` + +```bash +$ carthage update +``` + +#### Carthage as a Static Library + +Carthage defaults to building RxSwift as a Dynamic Library. + +If you wish to build RxSwift as a Static Library using Carthage you may use the script below to manually modify the framework type before building with Carthage: + +```bash +carthage update RxSwift --platform iOS --no-build +sed -i -e 's/MACH_O_TYPE = mh_dylib/MACH_O_TYPE = staticlib/g' Carthage/Checkouts/RxSwift/Rx.xcodeproj/project.pbxproj +carthage build RxSwift --platform iOS +``` + +### [Swift Package Manager](https://github.com/apple/swift-package-manager) + +> **Note**: There is a critical cross-dependency bug affecting many projects including RxSwift in Swift Package Manager. We've [filed a bug (SR-12303)](https://bugs.swift.org/browse/SR-12303) in early 2020 but have no answer yet. Your mileage may vary. A partial workaround can be found [here](https://github.com/ReactiveX/RxSwift/issues/2127#issuecomment-717830502). + +Create a `Package.swift` file. + +```swift +// swift-tools-version:5.0 + +import PackageDescription + +let package = Package( + name: "RxTestProject", + dependencies: [ + .package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.6.0")) + ], + targets: [ + .target(name: "RxTestProject", dependencies: ["RxSwift", "RxCocoa"]) + ] +) +``` + +```bash +$ swift build +``` + +To build or test a module with RxTest dependency, set `TEST=1`. + +```bash +$ TEST=1 swift test +``` + +### Manually using git submodules + +* Add RxSwift as a submodule + +```bash +$ git submodule add git@github.com:ReactiveX/RxSwift.git +``` + +* Drag `Rx.xcodeproj` into Project Navigator +* Go to `Project > Targets > Build Phases > Link Binary With Libraries`, click `+` and select `RxSwift`, `RxCocoa` and `RxRelay` targets + +## References + +* [http://reactivex.io/](http://reactivex.io/) +* [Reactive Extensions GitHub (GitHub)](https://github.com/Reactive-Extensions) +* [RxSwift RayWenderlich.com Book](https://store.raywenderlich.com/products/rxswift-reactive-programming-with-swift) +* [RxSwift: Debunking the myth of hard (YouTube)](https://www.youtube.com/watch?v=GdvLP0ZAhhc) +* [Boxue.io RxSwift Online Course](https://boxueio.com/series/rxswift-101) (Chinese 🇨🇳) +* [Expert to Expert: Brian Beckman and Erik Meijer - Inside the .NET Reactive Framework (Rx) (video)](https://youtu.be/looJcaeboBY) +* [Reactive Programming Overview (Jafar Husain from Netflix)](https://youtu.be/-8Y1-lE6NSA) +* [Subject/Observer is Dual to Iterator (paper)](http://csl.stanford.edu/~christos/pldi2010.fit/meijer.duality.pdf) +* [Rx standard sequence operators visualized (visualization tool)](http://rxmarbles.com/) +* [Haskell](https://www.haskell.org/) diff --git a/Pods/RxTest/RxTest/Any+Equatable.swift b/Pods/RxTest/RxTest/Any+Equatable.swift new file mode 100644 index 00000000..08b8f963 --- /dev/null +++ b/Pods/RxTest/RxTest/Any+Equatable.swift @@ -0,0 +1,38 @@ +// +// Any+Equatable.swift +// RxTest +// +// Created by Krunoslav Zaher on 12/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// A way to use built in XCTest methods with objects that are partially equatable. +/// +/// If this can be done simpler, PRs are welcome :) +struct AnyEquatable: Equatable { + typealias Comparer = (Target, Target) -> Bool + + let target: Target + let comparer: Comparer + + init(target: Target, comparer: @escaping Comparer) { + self.target = target + self.comparer = comparer + } +} + +func == (lhs: AnyEquatable, rhs: AnyEquatable) -> Bool { + return lhs.comparer(lhs.target, rhs.target) +} + +extension AnyEquatable + : CustomDebugStringConvertible + , CustomStringConvertible { + var description: String { + "\(self.target)" + } + + var debugDescription: String { + "\(self.target)" + } +} diff --git a/Pods/RxTest/RxTest/ColdObservable.swift b/Pods/RxTest/RxTest/ColdObservable.swift new file mode 100644 index 00000000..2f17eda4 --- /dev/null +++ b/Pods/RxTest/RxTest/ColdObservable.swift @@ -0,0 +1,46 @@ +// +// ColdObservable.swift +// RxTest +// +// Created by Krunoslav Zaher on 3/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// A representation of cold observable sequence. +/// +/// Recorded events are replayed after subscription once per subscriber. +/// +/// Event times represent relative offset to subscription time. +final class ColdObservable + : TestableObservable { + + override init(testScheduler: TestScheduler, recordedEvents: [Recorded>]) { + super.init(testScheduler: testScheduler, recordedEvents: recordedEvents) + } + + /// Subscribes `observer` to receive events for this sequence. + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + self.subscriptions.append(Subscription(self.testScheduler.clock)) + + let i = self.subscriptions.count - 1 + + var disposed = false + + for recordedEvent in self.recordedEvents { + _ = self.testScheduler.scheduleRelativeVirtual((), dueTime: recordedEvent.time, action: { _ in + if !disposed { + observer.on(recordedEvent.value) + } + return Disposables.create() + }) + } + + return Disposables.create { + disposed = true + let existing = self.subscriptions[i] + self.subscriptions[i] = Subscription(existing.subscribe, self.testScheduler.clock) + } + } +} diff --git a/Pods/RxTest/RxTest/Event+Equatable.swift b/Pods/RxTest/RxTest/Event+Equatable.swift new file mode 100644 index 00000000..05b403be --- /dev/null +++ b/Pods/RxTest/RxTest/Event+Equatable.swift @@ -0,0 +1,121 @@ +// +// Event+Equatable.swift +// RxTest +// +// Created by Krunoslav Zaher on 12/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift +import Foundation + +internal func equals(lhs: Event, rhs: Event) -> Bool { + switch (lhs, rhs) { + case (.completed, .completed): return true + case let (.error(e1), .error(e2)): + #if os(Linux) + return "\(e1)" == "\(e2)" + #else + let error1 = e1 as NSError + let error2 = e2 as NSError + + return error1.domain == error2.domain + && error1.code == error2.code + && "\(e1)" == "\(e2)" + #endif + case let (.next(v1), .next(v2)): return v1 == v2 + default: return false + } +} + +internal func equals(lhs: Event, rhs: Event) -> Bool { + switch (lhs, rhs) { + case (.completed, .completed): return true + case let (.error(e1), .error(e2)): + #if os(Linux) + return "\(e1)" == "\(e2)" + #else + let error1 = e1 as NSError + let error2 = e2 as NSError + + return error1.domain == error2.domain + && error1.code == error2.code + && "\(e1)" == "\(e2)" + #endif + case let (.next(v1), .next(v2)): return v1 == v2 + default: return false + } +} + +internal func equals(lhs: SingleEvent, rhs: SingleEvent) -> Bool { + switch (lhs, rhs) { + case let (.failure(e1), .failure(e2)): + #if os(Linux) + return "\(e1)" == "\(e2)" + #else + let error1 = e1 as NSError + let error2 = e2 as NSError + + return error1.domain == error2.domain + && error1.code == error2.code + && "\(e1)" == "\(e2)" + #endif + case let (.success(v1), .success(v2)): return v1 == v2 + default: return false + } +} + +internal func equals(lhs: MaybeEvent, rhs: MaybeEvent) -> Bool { + switch (lhs, rhs) { + case (.completed, .completed): return true + case let (.error(e1), .error(e2)): + #if os(Linux) + return "\(e1)" == "\(e2)" + #else + let error1 = e1 as NSError + let error2 = e2 as NSError + + return error1.domain == error2.domain + && error1.code == error2.code + && "\(e1)" == "\(e2)" + #endif + case let (.success(v1), .success(v2)): return v1 == v2 + default: return false + } +} + +/// Compares two `CompletableEvent` events. +/// +/// In case `Error` events are being compared, they are equal in case their `NSError` representations are equal (domain and code) +/// and their string representations are equal. +extension CompletableEvent: Equatable { + public static func == (lhs: CompletableEvent, rhs: CompletableEvent) -> Bool { + switch (lhs, rhs) { + case (.completed, .completed): return true + case let (.error(e1), .error(e2)): + #if os(Linux) + return "\(e1)" == "\(e2)" + #else + let error1 = e1 as NSError + let error2 = e2 as NSError + + return error1.domain == error2.domain + && error1.code == error2.code + && "\(e1)" == "\(e2)" + #endif + default: return false + } + } +} + +extension Event: Equatable where Element: Equatable { + public static func == (lhs: Event, rhs: Event) -> Bool { + equals(lhs: lhs, rhs: rhs) + } +} + +extension MaybeEvent: Equatable where Element: Equatable { + public static func == (lhs: MaybeEvent, rhs: MaybeEvent) -> Bool { + equals(lhs: lhs, rhs: rhs) + } +} diff --git a/Pods/RxTest/RxTest/HotObservable.swift b/Pods/RxTest/RxTest/HotObservable.swift new file mode 100644 index 00000000..db7806df --- /dev/null +++ b/Pods/RxTest/RxTest/HotObservable.swift @@ -0,0 +1,55 @@ +// +// HotObservable.swift +// RxTest +// +// Created by Krunoslav Zaher on 2/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// A representation of hot observable sequence. +/// +/// Recorded events are replayed at absolute times no matter is there any subscriber. +/// +/// Event times represent absolute `TestScheduler` time. +final class HotObservable + : TestableObservable { + + typealias Observer = (Event) -> Void + typealias Observers = Bag + + /// Current subscribed observers. + private var observers: Observers + + override init(testScheduler: TestScheduler, recordedEvents: [Recorded>]) { + self.observers = Observers() + + super.init(testScheduler: testScheduler, recordedEvents: recordedEvents) + + for recordedEvent in recordedEvents { + testScheduler.scheduleAt(recordedEvent.time) { () -> Void in + self.observers.forEach { + $0(recordedEvent.value) + } + } + } + } + + /// Subscribes `observer` to receive events for this sequence. + override func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + let key = self.observers.insert(observer.on) + self.subscriptions.append(Subscription(self.testScheduler.clock)) + + let i = self.subscriptions.count - 1 + + return Disposables.create { + let removed = self.observers.removeKey(key) + assert(removed != nil) + + let existing = self.subscriptions[i] + self.subscriptions[i] = Subscription(existing.subscribe, self.testScheduler.clock) + } + } +} + diff --git a/Pods/RxTest/RxTest/Recorded+Event.swift b/Pods/RxTest/RxTest/Recorded+Event.swift new file mode 100644 index 00000000..fda6de9d --- /dev/null +++ b/Pods/RxTest/RxTest/Recorded+Event.swift @@ -0,0 +1,110 @@ +// +// Recorded+Event.swift +// RxTest +// +// Created by luojie on 2017/12/19. +// Copyright © 2017 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +extension Recorded { + + /** + Factory method for an `.next` event recorded at a given time with a given value. + + - parameter time: Recorded virtual time the `.next` event occurs. + - parameter element: Next sequence element. + - returns: Recorded event in time. + */ + public static func next(_ time: TestTime, _ element: T) -> Recorded> where Value == Event { + Recorded(time: time, value: .next(element)) + } + + /** + Factory method for an `.completed` event recorded at a given time. + + - parameter time: Recorded virtual time the `.completed` event occurs. + - parameter type: Sequence elements type. + - returns: Recorded event in time. + */ + public static func completed(_ time: TestTime, _ type: T.Type = T.self) -> Recorded> where Value == Event { + Recorded(time: time, value: .completed) + } + + /** + Factory method for an `.error` event recorded at a given time with a given error. + + - parameter time: Recorded virtual time the `.completed` event occurs. + */ + public static func error(_ time: TestTime, _ error: Swift.Error, _ type: T.Type = T.self) -> Recorded> where Value == Event { + Recorded(time: time, value: .error(error)) + } +} + +extension Recorded { + + /** + Convenience method for recording a sequence of events. Its primary use case is improving readability in cases where type inference is unable to deduce the type of recorded events. + + ``` + let correctMessages = Recorded.events( + .next(210, 2), + .next(220, 3), + .next(230, 4), + .next(240, 5), + .completed(250) + ) + ``` + + is equivalent to: + + ``` + let correctMessages: [Recorded>] = [ + .next(210, 2), + .next(220, 3), + .next(230, 4), + .next(240, 5), + .completed(250) + ] + ``` + + - parameter recordedEvents: Method return value. + */ + public static func events(_ recordedEvents: Recorded>...) -> [Recorded>] where Value == Event { + self.events(recordedEvents) + } + + + /** + Convenience method for recording a sequence of events. Its primary use case is improving readability in cases where type inference is unable to deduce the type of recorded events. + + ``` + let correctMessages = Recorded.events([ + .next(210, 2), + .next(220, 3), + .next(230, 4), + .next(240, 5), + .completed(250) + ]) + ``` + + is equivalent to: + + ``` + let correctMessages: [Recorded>] = [ + .next(210, 2), + .next(220, 3), + .next(230, 4), + .next(240, 5), + .completed(250) + ] + ``` + + - parameter recordedEvents: Method return value. + */ + public static func events(_ recordedEvents: [Recorded>]) -> [Recorded>] where Value == Event { + recordedEvents + } +} + diff --git a/Pods/RxTest/RxTest/Recorded.swift b/Pods/RxTest/RxTest/Recorded.swift new file mode 100644 index 00000000..6a9983e7 --- /dev/null +++ b/Pods/RxTest/RxTest/Recorded.swift @@ -0,0 +1,39 @@ +// +// Recorded.swift +// RxTest +// +// Created by Krunoslav Zaher on 2/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift +import Swift + +/// Record of a value including the virtual time it was produced on. +public struct Recorded + : CustomDebugStringConvertible { + + /// Gets the virtual time the value was produced on. + public let time: TestTime + + /// Gets the recorded value. + public let value: Value + + public init(time: TestTime, value: Value) { + self.time = time + self.value = value + } +} + +extension Recorded { + /// A textual representation of `self`, suitable for debugging. + public var debugDescription: String { + "\(self.value) @ \(self.time)" + } +} + +extension Recorded: Equatable where Value: Equatable { + public static func == (lhs: Recorded, rhs: Recorded) -> Bool { + lhs.time == rhs.time && lhs.value == rhs.value + } +} diff --git a/Pods/RxTest/RxTest/RxTest.swift b/Pods/RxTest/RxTest/RxTest.swift new file mode 100644 index 00000000..36db0106 --- /dev/null +++ b/Pods/RxTest/RxTest/RxTest.swift @@ -0,0 +1,11 @@ +// +// RxTest.swift +// RxTest +// +// Created by Krunoslav Zaher on 12/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Virtual time type. +public typealias TestTime = Int + diff --git a/Pods/RxTest/RxTest/Schedulers/TestScheduler.swift b/Pods/RxTest/RxTest/Schedulers/TestScheduler.swift new file mode 100644 index 00000000..af15d1fe --- /dev/null +++ b/Pods/RxTest/RxTest/Schedulers/TestScheduler.swift @@ -0,0 +1,155 @@ +// +// TestScheduler.swift +// RxTest +// +// Created by Krunoslav Zaher on 2/8/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// Virtual time scheduler used for testing applications and libraries built using RxSwift. +public class TestScheduler : VirtualTimeScheduler { + /// Default values of scheduler times. + public struct Defaults { + /// Default absolute time when to create tested observable sequence. + public static let created = 100 + /// Default absolute time when to subscribe to tested observable sequence. + public static let subscribed = 200 + /// Default absolute time when to dispose subscription to tested observable sequence. + public static let disposed = 1000 + } + + private let simulateProcessingDelay: Bool + + /** + Creates a new test scheduler. + + - parameter initialClock: Initial value for the clock. + - parameter resolution: Real time [TimeInterval] = ticks * resolution + - parameter simulateProcessingDelay: When true, if something is scheduled right `now`, + it will be scheduled to `now + 1` in virtual time. + */ + public init(initialClock: TestTime, resolution: Double = 1.0, simulateProcessingDelay: Bool = true) { + self.simulateProcessingDelay = simulateProcessingDelay + super.init(initialClock: initialClock, converter: TestSchedulerVirtualTimeConverter(resolution: resolution)) + } + + /** + Creates a hot observable using the specified timestamped events. + + - parameter events: Events to surface through the created sequence at their specified absolute virtual times. + - returns: Hot observable sequence that can be used to assert the timing of subscriptions and events. + */ + public func createHotObservable(_ events: [Recorded>]) -> TestableObservable { + HotObservable(testScheduler: self as AnyObject as! TestScheduler, recordedEvents: events) + } + + /** + Creates a cold observable using the specified timestamped events. + + - parameter events: Events to surface through the created sequence at their specified virtual time offsets from the sequence subscription time. + - returns: Cold observable sequence that can be used to assert the timing of subscriptions and events. + */ + public func createColdObservable(_ events: [Recorded>]) -> TestableObservable { + ColdObservable(testScheduler: self as AnyObject as! TestScheduler, recordedEvents: events) + } + + /** + Creates an observer that records received events and timestamps those. + + - parameter type: Optional type hint of the observed sequence elements. + - returns: Observer that can be used to assert the timing of events. + */ + public func createObserver(_ type: Element.Type) -> TestableObserver { + TestableObserver(scheduler: self as AnyObject as! TestScheduler) + } + + /** + Schedules an action to be executed at the specified virtual time. + + - parameter time: Absolute virtual time at which to execute the action. + */ + public func scheduleAt(_ time: TestTime, action: @escaping () -> Void) { + _ = self.scheduleAbsoluteVirtual((), time: time, action: { _ -> Disposable in + action() + return Disposables.create() + }) + } + + /** + Adjusts time of scheduling before adding item to schedule queue. If scheduled time is `<= clock`, then it is scheduled at `clock + 1` + */ + override public func adjustScheduledTime(_ time: VirtualTime) -> VirtualTime { + time <= self.clock ? self.clock + (self.simulateProcessingDelay ? 1 : 0) : time + } + + /** + Starts the test scheduler and uses the specified virtual times to invoke the factory function, subscribe to the resulting sequence, and dispose the subscription. + + - parameter created: Virtual time at which to invoke the factory to create an observable sequence. + - parameter subscribed: Virtual time at which to subscribe to the created observable sequence. + - parameter disposed: Virtual time at which to dispose the subscription. + - parameter create: Factory method to create an observable convertible sequence. + - returns: Observer with timestamped recordings of events that were received during the virtual time window when the subscription to the source sequence was active. + */ + public func start(created: TestTime, subscribed: TestTime, disposed: TestTime, create: @escaping () -> OutputSequence) + -> TestableObserver where OutputSequence.Element == Element { + var source: Observable? + var subscription: Disposable? + let observer = self.createObserver(Element.self) + + _ = self.scheduleAbsoluteVirtual((), time: created) { _ in + source = create().asObservable() + return Disposables.create() + } + + _ = self.scheduleAbsoluteVirtual((), time: subscribed) { _ in + subscription = source!.subscribe(observer) + return Disposables.create() + } + + _ = self.scheduleAbsoluteVirtual((), time: disposed) { _ in + subscription!.dispose() + return Disposables.create() + } + + self.start() + + return observer + } + + /** + Starts the test scheduler and uses the specified virtual times to invoke the factory function, subscribe to the resulting sequence, and dispose the subscription. + + Observable sequence will be: + * created at virtual time `Defaults.created` -> 100 + * subscribed to at virtual time `Defaults.subscribed` -> 200 + + - parameter disposed: Virtual time at which to dispose the subscription. + - parameter create: Factory method to create an observable convertible sequence. + - returns: Observer with timestamped recordings of events that were received during the virtual time window when the subscription to the source sequence was active. + */ + public func start(disposed: TestTime, create: @escaping () -> OutputSequence) + -> TestableObserver where OutputSequence.Element == Element { + self.start(created: Defaults.created, subscribed: Defaults.subscribed, disposed: disposed, create: create) + } + + /** + Starts the test scheduler and uses the specified virtual times to invoke the factory function, subscribe to the resulting sequence, and dispose the subscription. + + Observable sequence will be: + * created at virtual time `Defaults.created` -> 100 + * subscribed to at virtual time `Defaults.subscribed` -> 200 + * subscription will be disposed at `Defaults.disposed` -> 1000 + + - parameter create: Factory method to create an observable convertible sequence. + - returns: Observer with timestamped recordings of events that were received during the virtual time window when the subscription to the source sequence was active. + */ + public func start(_ create: @escaping () -> OutputSequence) + -> TestableObserver where OutputSequence.Element == Element { + self.start(created: Defaults.created, subscribed: Defaults.subscribed, disposed: Defaults.disposed, create: create) + } +} + + diff --git a/Pods/RxTest/RxTest/Schedulers/TestSchedulerVirtualTimeConverter.swift b/Pods/RxTest/RxTest/Schedulers/TestSchedulerVirtualTimeConverter.swift new file mode 100644 index 00000000..8f823e51 --- /dev/null +++ b/Pods/RxTest/RxTest/Schedulers/TestSchedulerVirtualTimeConverter.swift @@ -0,0 +1,80 @@ +// +// TestSchedulerVirtualTimeConverter.swift +// RxTest +// +// Created by Krunoslav Zaher on 12/23/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import Foundation +import RxSwift + +/// Converter from virtual time and time interval measured in `Int`s to `Date` and `TimeInterval`. +public struct TestSchedulerVirtualTimeConverter : VirtualTimeConverterType { + /// Virtual time unit used that represents ticks of virtual clock. + public typealias VirtualTimeUnit = Int + + /// Virtual time unit used to represent differences of virtual times. + public typealias VirtualTimeIntervalUnit = Int + + private let resolution: Double + + init(resolution: Double) { + self.resolution = resolution + } + + + /// Converts virtual time to real time. + /// + /// - parameter virtualTime: Virtual time to convert to `Date`. + /// - returns: `Date` corresponding to virtual time. + public func convertFromVirtualTime(_ virtualTime: VirtualTimeUnit) -> RxTime { + Date(timeIntervalSince1970: TimeInterval(virtualTime) * self.resolution) + } + + /// Converts real time to virtual time. + /// + /// - parameter time: `Date` to convert to virtual time. + /// - returns: Virtual time corresponding to `Date`. + public func convertToVirtualTime(_ time: RxTime) -> VirtualTimeUnit { + VirtualTimeIntervalUnit(time.timeIntervalSince1970 / self.resolution + 0.5) + } + + /// Converts from virtual time interval to `TimeInterval`. + /// + /// - parameter virtualTimeInterval: Virtual time interval to convert to `TimeInterval`. + /// - returns: `TimeInterval` corresponding to virtual time interval. + public func convertFromVirtualTimeInterval(_ virtualTimeInterval: VirtualTimeIntervalUnit) -> TimeInterval { + TimeInterval(virtualTimeInterval) * self.resolution + } + + /// Converts from `TimeInterval` to virtual time interval. + /// + /// - parameter timeInterval: `TimeInterval` to convert to virtual time interval. + /// - returns: Virtual time interval corresponding to time interval. + public func convertToVirtualTimeInterval(_ timeInterval: TimeInterval) -> VirtualTimeIntervalUnit { + VirtualTimeIntervalUnit(timeInterval / self.resolution + 0.5) + } + + /// Adds virtual time and virtual time interval. + /// + /// - parameter time: Virtual time. + /// - parameter offset: Virtual time interval. + /// - returns: Time corresponding to time offsetted by virtual time interval. + public func offsetVirtualTime(_ time: VirtualTimeUnit, offset: VirtualTimeIntervalUnit) -> VirtualTimeUnit { + time + offset + } + + /// Compares virtual times. + public func compareVirtualTime(_ lhs: VirtualTimeUnit, _ rhs: VirtualTimeUnit) -> VirtualTimeComparison { + if lhs < rhs { + return .lessThan + } + else if lhs > rhs { + return .greaterThan + } + else { + return .equal + } + } +} diff --git a/Pods/RxTest/RxTest/Subscription.swift b/Pods/RxTest/RxTest/Subscription.swift new file mode 100644 index 00000000..d2caa896 --- /dev/null +++ b/Pods/RxTest/RxTest/Subscription.swift @@ -0,0 +1,53 @@ +// +// Subscription.swift +// RxTest +// +// Created by Krunoslav Zaher on 2/14/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +/// Records information about subscriptions to and unsubscriptions from observable sequences. +public struct Subscription { + /// Subscription virtual time. + public let subscribe : Int + /// Unsubscription virtual time. + public let unsubscribe : Int + + /// Creates a new subscription object with the given virtual subscription time. + /// + /// - parameter subscribe: Virtual time at which the subscription occurred. + public init(_ subscribe: Int) { + self.subscribe = subscribe + self.unsubscribe = Int.max + } + + + /// Creates a new subscription object with the given virtual subscription and unsubscription time. + /// + /// - parameter subscribe: Virtual time at which the subscription occurred. + /// - parameter unsubscribe: Virtual time at which the unsubscription occurred. + public init(_ subscribe: Int, _ unsubscribe: Int) { + self.subscribe = subscribe + self.unsubscribe = unsubscribe + } +} + +extension Subscription: Hashable { + /// The hash value. + public func hash(into hasher: inout Hasher) { + hasher.combine(self.subscribe) + hasher.combine(self.unsubscribe) + } +} + +extension Subscription: CustomDebugStringConvertible { + /// A textual representation of `self`, suitable for debugging. + public var debugDescription : String { + let infiniteText = "Infinity" + return "(\(self.subscribe): \(self.unsubscribe != Int.max ? String(self.unsubscribe) : infiniteText))" + } +} + +public func == (lhs: Subscription, rhs: Subscription) -> Bool { + return lhs.subscribe == rhs.subscribe && lhs.unsubscribe == rhs.unsubscribe +} diff --git a/Pods/RxTest/RxTest/TestableObservable.swift b/Pods/RxTest/RxTest/TestableObservable.swift new file mode 100644 index 00000000..070bd27c --- /dev/null +++ b/Pods/RxTest/RxTest/TestableObservable.swift @@ -0,0 +1,34 @@ +// +// TestableObservable.swift +// RxTest +// +// Created by Krunoslav Zaher on 12/28/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// Observable sequence that records subscription lifetimes and timestamped events sent to observers. +public class TestableObservable + : ObservableType { + /// Subscriptions recorded during observable lifetime. + public internal(set) var subscriptions: [Subscription] + + /// List of events to replay for all subscribers. + /// + /// Event times represent absolute `TestScheduler` time. + public internal(set) var recordedEvents: [Recorded>] + + /// Parent test scheduler. + internal let testScheduler: TestScheduler + + init(testScheduler: TestScheduler, recordedEvents: [Recorded>]) { + self.testScheduler = testScheduler + self.recordedEvents = recordedEvents + self.subscriptions = [] + } + + public func subscribe(_ observer: Observer) -> Disposable where Observer.Element == Element { + fatalError("Abstract method") + } +} diff --git a/Pods/RxTest/RxTest/TestableObserver.swift b/Pods/RxTest/RxTest/TestableObserver.swift new file mode 100644 index 00000000..ae8242a9 --- /dev/null +++ b/Pods/RxTest/RxTest/TestableObserver.swift @@ -0,0 +1,29 @@ +// +// TestableObserver.swift +// RxTest +// +// Created by Krunoslav Zaher on 2/15/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +import RxSwift + +/// Observer that records events together with virtual time when they were received. +public final class TestableObserver + : ObserverType { + private let scheduler: TestScheduler + + /// Recorded events. + public private(set) var events = [Recorded>]() + + init(scheduler: TestScheduler) { + self.scheduler = scheduler + } + + /// Notify observer about sequence event. + /// + /// - parameter event: Event that occurred. + public func on(_ event: Event) { + self.events.append(Recorded(time: self.scheduler.clock, value: event)) + } +} diff --git a/Pods/RxTest/RxTest/XCTest+Rx.swift b/Pods/RxTest/RxTest/XCTest+Rx.swift new file mode 100644 index 00000000..b4ed0b15 --- /dev/null +++ b/Pods/RxTest/RxTest/XCTest+Rx.swift @@ -0,0 +1,246 @@ +// +// XCTest+Rx.swift +// RxTest +// +// Created by Krunoslav Zaher on 12/19/15. +// Copyright © 2015 Krunoslav Zaher. All rights reserved. +// + +#if !os(watchOS) +import RxSwift +import XCTest +/** +Asserts two lists of events are equal. + +Event is considered equal if: +* `Next` events are equal if they have equal corresponding elements. +* `Error` events are equal if errors have same domain and code for `NSError` representation and have equal descriptions. +* `Completed` events are always equal. + +- parameter lhs: first set of events. +- parameter rhs: second set of events. +- parameter file: The path to the file in which it appears. +- parameter line: The line number on which it appears. +*/ +public func XCTAssertEqual(_ lhs: [Event], _ rhs: [Event], file: StaticString = #file, line: UInt = #line) { + let leftEquatable = lhs.map { AnyEquatable(target: $0, comparer: ==) } + let rightEquatable = rhs.map { AnyEquatable(target: $0, comparer: ==) } + #if os(Linux) + XCTAssertEqual(leftEquatable, rightEquatable) + #else + XCTAssertEqual(leftEquatable, rightEquatable, file: file, line: line) + #endif + if leftEquatable == rightEquatable { + return + } + + printSequenceDifferences(lhs, rhs, ==) +} + +/** + Asserts two lists of events are equal. + + Event is considered equal if: + * `Next` events are equal if they have equal corresponding elements. + * `Error` events are equal if errors have same domain and code for `NSError` representation and have equal descriptions. + * `Completed` events are always equal. + + - parameter lhs: first set of events. + - parameter rhs: second set of events. + - parameter file: The path to the file in which it appears. + - parameter line: The line number on which it appears. + */ +public func XCTAssertEqual(_ lhs: [SingleEvent], _ rhs: [SingleEvent], file: StaticString = #file, line: UInt = #line) { + let leftEquatable = lhs.map { AnyEquatable(target: $0, comparer: equals) } + let rightEquatable = rhs.map { AnyEquatable(target: $0, comparer: equals) } + #if os(Linux) + XCTAssertEqual(leftEquatable, rightEquatable) + #else + XCTAssertEqual(leftEquatable, rightEquatable, file: file, line: line) + #endif + if leftEquatable == rightEquatable { + return + } + + printSequenceDifferences(lhs, rhs, equals) +} + +/** + Asserts two lists of events are equal. + + Event is considered equal if: + * `Next` events are equal if they have equal corresponding elements. + * `Error` events are equal if errors have same domain and code for `NSError` representation and have equal descriptions. + * `Completed` events are always equal. + + - parameter lhs: first set of events. + - parameter rhs: second set of events. + - parameter file: The path to the file in which it appears. + - parameter line: The line number on which it appears. + */ +public func XCTAssertEqual(_ lhs: [MaybeEvent], _ rhs: [MaybeEvent], file: StaticString = #file, line: UInt = #line) { + let leftEquatable = lhs.map { AnyEquatable(target: $0, comparer: ==) } + let rightEquatable = rhs.map { AnyEquatable(target: $0, comparer: ==) } + #if os(Linux) + XCTAssertEqual(leftEquatable, rightEquatable) + #else + XCTAssertEqual(leftEquatable, rightEquatable, file: file, line: line) + #endif + if leftEquatable == rightEquatable { + return + } + + printSequenceDifferences(lhs, rhs, ==) +} + +/** + Asserts two lists of events are equal. + + Event is considered equal if: + * `Next` events are equal if they have equal corresponding elements. + * `Error` events are equal if errors have same domain and code for `NSError` representation and have equal descriptions. + * `Completed` events are always equal. + + - parameter lhs: first set of events. + - parameter rhs: second set of events. + - parameter file: The path to the file in which it appears. + - parameter line: The line number on which it appears. + */ +public func XCTAssertEqual(_ lhs: [CompletableEvent], _ rhs: [CompletableEvent], file: StaticString = #file, line: UInt = #line) { + let leftEquatable = lhs.map { AnyEquatable(target: $0, comparer: ==) } + let rightEquatable = rhs.map { AnyEquatable(target: $0, comparer: ==) } + #if os(Linux) + XCTAssertEqual(leftEquatable, rightEquatable) + #else + XCTAssertEqual(leftEquatable, rightEquatable, file: file, line: line) + #endif + if leftEquatable == rightEquatable { + return + } + + printSequenceDifferences(lhs, rhs, ==) +} + +/** +Asserts two lists of Recorded events are equal. + +Recorded events are equal if times are equal and recorded events are equal. + +Event is considered equal if: +* `Next` events are equal if they have equal corresponding elements. +* `Error` events are equal if errors have same domain and code for `NSError` representation and have equal descriptions. +* `Completed` events are always equal. + +- parameter lhs: first set of events. +- parameter rhs: second set of events. +- parameter file: The path to the file in which it appears. +- parameter line: The line number on which it appears. +*/ +public func XCTAssertEqual(_ lhs: [Recorded>], _ rhs: [Recorded>], file: StaticString = #file, line: UInt = #line) { + let leftEquatable = lhs.map { AnyEquatable(target: $0, comparer: ==) } + let rightEquatable = rhs.map { AnyEquatable(target: $0, comparer: ==) } + #if os(Linux) + XCTAssertEqual(leftEquatable, rightEquatable) + #else + XCTAssertEqual(leftEquatable, rightEquatable, file: file, line: line) + #endif + + if leftEquatable == rightEquatable { + return + } + + printSequenceDifferences(lhs, rhs, ==) +} + +/** + Asserts two lists of Recorded events with optional elements are equal. + + Recorded events are equal if times are equal and recorded events are equal. + + Event is considered equal if: + * `Next` events are equal if they have equal corresponding elements. + * `Error` events are equal if errors have same domain and code for `NSError` representation and have equal descriptions. + * `Completed` events are always equal. + + - parameter lhs: first set of events. + - parameter rhs: second set of events. + - parameter file: The path to the file in which it appears. + - parameter line: The line number on which it appears. + */ +public func XCTAssertEqual(_ lhs: [Recorded>], _ rhs: [Recorded>], file: StaticString = #file, line: UInt = #line) { + let leftEquatable = lhs.map { AnyEquatable(target: $0, comparer: ==) } + let rightEquatable = rhs.map { AnyEquatable(target: $0, comparer: ==) } + #if os(Linux) + XCTAssertEqual(leftEquatable, rightEquatable) + #else + XCTAssertEqual(leftEquatable, rightEquatable, file: file, line: line) + #endif + + if leftEquatable == rightEquatable { + return + } + + printSequenceDifferences(lhs, rhs, ==) +} + +/** + Assert a list of Recorded events has emitted the provided elements. + This method does not take event times into consideration. + + This method will assert a failure if any stop events have been emitted (e.g. `completed` or `error`). + + - parameter stream: Array of recorded events. + - parameter elements: Array of expected elements. +*/ +public func XCTAssertRecordedElements(_ stream: [Recorded>], _ elements: [Element], file: StaticString = #file, line: UInt = #line) { + + if let stopEvent = stream.first(where: { $0.value.isStopEvent }) { + #if os(Linux) + XCTFail("A non-next stop event has been emitted: \(stopEvent)") + #else + XCTFail("A non-next stop event has been emitted: \(stopEvent)", file: file, line: line) + #endif + return + } + + let streamElements = stream.map { event -> Element in + guard case .next(let element) = event.value else { + fatalError("Non-next stop event should cause assertion") + } + + return element + } + + #if os(Linux) + XCTAssertEqual(streamElements, elements) + #else + XCTAssertEqual(streamElements, elements, file: file, line: line) + #endif + + if streamElements == elements { + return + } + + printSequenceDifferences(streamElements, elements, ==) +} + +func printSequenceDifferences(_ lhs: [Element], _ rhs: [Element], _ equal: (Element, Element) -> Bool) { + print("Differences:") + for (index, elements) in zip(lhs, rhs).enumerated() { + let l = elements.0 + let r = elements.1 + if !equal(l, r) { + print("lhs[\(index)]:\n \(l)") + print("rhs[\(index)]:\n \(r)") + } + } + + let shortest = min(lhs.count, rhs.count) + for (index, element) in lhs[shortest ..< lhs.count].enumerated() { + print("lhs[\(index + shortest)]:\n \(element)") + } + for (index, element) in rhs[shortest ..< rhs.count].enumerated() { + print("rhs[\(index + shortest)]:\n \(element)") + } +} +#endif diff --git a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-acknowledgements.markdown b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-acknowledgements.markdown index 2c665dc5..35a1b218 100644 --- a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-acknowledgements.markdown @@ -425,6 +425,45 @@ All rights reserved. +## RxCocoa + +**The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +## RxRelay + +**The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +## RxSwift + +**The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + ## Toast-Swift Copyright (c) 2015-2017 Charles Scalesse. diff --git a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-acknowledgements.plist b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-acknowledgements.plist index 197802d4..3a428eef 100644 --- a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-acknowledgements.plist @@ -472,6 +472,63 @@ All rights reserved. Type PSGroupSpecifier
+ + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Title + RxCocoa + Type + PSGroupSpecifier + + + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Title + RxRelay + Type + PSGroupSpecifier + + + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Title + RxSwift + Type + PSGroupSpecifier + FooterText Copyright (c) 2015-2017 Charles Scalesse. diff --git a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Debug-input-files.xcfilelist b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Debug-input-files.xcfilelist index 4170097b..45ce5b56 100644 --- a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Debug-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Debug-input-files.xcfilelist @@ -3,6 +3,9 @@ ${BUILT_PRODUCTS_DIR}/AmplitudeSwift/AmplitudeSwift.framework ${BUILT_PRODUCTS_DIR}/KeychainSwift/KeychainSwift.framework ${BUILT_PRODUCTS_DIR}/Realm/Realm.framework ${BUILT_PRODUCTS_DIR}/RealmSwift/RealmSwift.framework +${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework +${BUILT_PRODUCTS_DIR}/RxRelay/RxRelay.framework +${BUILT_PRODUCTS_DIR}/RxSwift-framework/RxSwift.framework ${BUILT_PRODUCTS_DIR}/Toast-Swift/Toast_Swift.framework ${BUILT_PRODUCTS_DIR}/lottie-ios/Lottie.framework ${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsGeometry/NMapsGeometry.framework/NMapsGeometry diff --git a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Debug-output-files.xcfilelist b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Debug-output-files.xcfilelist index dc68a8a3..98354ef4 100644 --- a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Debug-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Debug-output-files.xcfilelist @@ -2,6 +2,9 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AmplitudeSwift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/KeychainSwift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Realm.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RealmSwift.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxCocoa.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxRelay.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxSwift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Toast_Swift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Lottie.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/NMapsGeometry.framework diff --git a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Release-input-files.xcfilelist b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Release-input-files.xcfilelist index 4170097b..45ce5b56 100644 --- a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Release-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Release-input-files.xcfilelist @@ -3,6 +3,9 @@ ${BUILT_PRODUCTS_DIR}/AmplitudeSwift/AmplitudeSwift.framework ${BUILT_PRODUCTS_DIR}/KeychainSwift/KeychainSwift.framework ${BUILT_PRODUCTS_DIR}/Realm/Realm.framework ${BUILT_PRODUCTS_DIR}/RealmSwift/RealmSwift.framework +${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework +${BUILT_PRODUCTS_DIR}/RxRelay/RxRelay.framework +${BUILT_PRODUCTS_DIR}/RxSwift-framework/RxSwift.framework ${BUILT_PRODUCTS_DIR}/Toast-Swift/Toast_Swift.framework ${BUILT_PRODUCTS_DIR}/lottie-ios/Lottie.framework ${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsGeometry/NMapsGeometry.framework/NMapsGeometry diff --git a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Release-output-files.xcfilelist b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Release-output-files.xcfilelist index dc68a8a3..98354ef4 100644 --- a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Release-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks-Release-output-files.xcfilelist @@ -2,6 +2,9 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AmplitudeSwift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/KeychainSwift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Realm.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RealmSwift.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxCocoa.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxRelay.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxSwift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Toast_Swift.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Lottie.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/NMapsGeometry.framework diff --git a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks.sh b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks.sh index 862ac464..84fbb667 100755 --- a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks.sh +++ b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO-frameworks.sh @@ -180,6 +180,9 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/KeychainSwift/KeychainSwift.framework" install_framework "${BUILT_PRODUCTS_DIR}/Realm/Realm.framework" install_framework "${BUILT_PRODUCTS_DIR}/RealmSwift/RealmSwift.framework" + install_framework "${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework" + install_framework "${BUILT_PRODUCTS_DIR}/RxRelay/RxRelay.framework" + install_framework "${BUILT_PRODUCTS_DIR}/RxSwift-framework/RxSwift.framework" install_framework "${BUILT_PRODUCTS_DIR}/Toast-Swift/Toast_Swift.framework" install_framework "${BUILT_PRODUCTS_DIR}/lottie-ios/Lottie.framework" install_framework "${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsGeometry/NMapsGeometry.framework" @@ -190,6 +193,9 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/KeychainSwift/KeychainSwift.framework" install_framework "${BUILT_PRODUCTS_DIR}/Realm/Realm.framework" install_framework "${BUILT_PRODUCTS_DIR}/RealmSwift/RealmSwift.framework" + install_framework "${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework" + install_framework "${BUILT_PRODUCTS_DIR}/RxRelay/RxRelay.framework" + install_framework "${BUILT_PRODUCTS_DIR}/RxSwift-framework/RxSwift.framework" install_framework "${BUILT_PRODUCTS_DIR}/Toast-Swift/Toast_Swift.framework" install_framework "${BUILT_PRODUCTS_DIR}/lottie-ios/Lottie.framework" install_framework "${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsGeometry/NMapsGeometry.framework" diff --git a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO.debug.xcconfig b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO.debug.xcconfig index 30740014..3d427565 100644 --- a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO.debug.xcconfig +++ b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO.debug.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AmplitudeSwift" "${PODS_CONFIGURATION_BUILD_DIR}/KeychainSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Realm" "${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" "${PODS_ROOT}/NMapsGeometry/framework" "${PODS_ROOT}/NMapsMap/framework" "${PODS_ROOT}/Realm/core" "${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsGeometry" "${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsMap" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AmplitudeSwift" "${PODS_CONFIGURATION_BUILD_DIR}/KeychainSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Realm" "${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-framework" "${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" "${PODS_ROOT}/NMapsGeometry/framework" "${PODS_ROOT}/NMapsMap/framework" "${PODS_ROOT}/Realm/core" "${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsGeometry" "${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsMap" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AmplitudeSwift/AmplitudeSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KeychainSwift/KeychainSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Realm/Realm.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift/RealmSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift/Toast_Swift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios/Lottie.framework/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Realm/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AmplitudeSwift/AmplitudeSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KeychainSwift/KeychainSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Realm/Realm.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift/RealmSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-framework/RxSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift/Toast_Swift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios/Lottie.framework/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Realm/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Realm" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -l"c++" -l"compression" -l"z" -framework "AmplitudeSwift" -framework "CoreGraphics" -framework "KeychainSwift" -framework "Lottie" -framework "NMapsGeometry" -framework "NMapsMap" -framework "QuartzCore" -framework "Realm" -framework "RealmSwift" -framework "Security" -framework "Toast_Swift" -framework "UIKit" -weak_framework "SwiftUI" -weak_framework "UIKit" +OTHER_LDFLAGS = $(inherited) -l"c++" -l"compression" -l"z" -framework "AmplitudeSwift" -framework "CoreGraphics" -framework "KeychainSwift" -framework "Lottie" -framework "NMapsGeometry" -framework "NMapsMap" -framework "QuartzCore" -framework "Realm" -framework "RealmSwift" -framework "RxCocoa" -framework "RxRelay" -framework "RxSwift" -framework "Security" -framework "Toast_Swift" -framework "UIKit" -weak_framework "SwiftUI" -weak_framework "UIKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO.release.xcconfig b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO.release.xcconfig index 30740014..3d427565 100644 --- a/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO.release.xcconfig +++ b/Pods/Target Support Files/Pods-AVIRO/Pods-AVIRO.release.xcconfig @@ -1,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AmplitudeSwift" "${PODS_CONFIGURATION_BUILD_DIR}/KeychainSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Realm" "${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" "${PODS_ROOT}/NMapsGeometry/framework" "${PODS_ROOT}/NMapsMap/framework" "${PODS_ROOT}/Realm/core" "${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsGeometry" "${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsMap" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AmplitudeSwift" "${PODS_CONFIGURATION_BUILD_DIR}/KeychainSwift" "${PODS_CONFIGURATION_BUILD_DIR}/Realm" "${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-framework" "${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios" "${PODS_ROOT}/NMapsGeometry/framework" "${PODS_ROOT}/NMapsMap/framework" "${PODS_ROOT}/Realm/core" "${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsGeometry" "${PODS_XCFRAMEWORKS_BUILD_DIR}/NMapsMap" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AmplitudeSwift/AmplitudeSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KeychainSwift/KeychainSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Realm/Realm.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift/RealmSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift/Toast_Swift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios/Lottie.framework/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Realm/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AmplitudeSwift/AmplitudeSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/KeychainSwift/KeychainSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Realm/Realm.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RealmSwift/RealmSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa/RxCocoa.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay/RxRelay.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-framework/RxSwift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Toast-Swift/Toast_Swift.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/lottie-ios/Lottie.framework/Headers" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Realm/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_XCFRAMEWORKS_BUILD_DIR}/Realm" /usr/lib/swift -OTHER_LDFLAGS = $(inherited) -l"c++" -l"compression" -l"z" -framework "AmplitudeSwift" -framework "CoreGraphics" -framework "KeychainSwift" -framework "Lottie" -framework "NMapsGeometry" -framework "NMapsMap" -framework "QuartzCore" -framework "Realm" -framework "RealmSwift" -framework "Security" -framework "Toast_Swift" -framework "UIKit" -weak_framework "SwiftUI" -weak_framework "UIKit" +OTHER_LDFLAGS = $(inherited) -l"c++" -l"compression" -l"z" -framework "AmplitudeSwift" -framework "CoreGraphics" -framework "KeychainSwift" -framework "Lottie" -framework "NMapsGeometry" -framework "NMapsMap" -framework "QuartzCore" -framework "Realm" -framework "RealmSwift" -framework "RxCocoa" -framework "RxRelay" -framework "RxSwift" -framework "Security" -framework "Toast_Swift" -framework "UIKit" -weak_framework "SwiftUI" -weak_framework "UIKit" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-acknowledgements.markdown b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-acknowledgements.markdown new file mode 100644 index 00000000..b9e1d40d --- /dev/null +++ b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-acknowledgements.markdown @@ -0,0 +1,42 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## RxSwift + +**The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +## RxBlocking + +**The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +## RxTest + +**The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-acknowledgements.plist b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-acknowledgements.plist new file mode 100644 index 00000000..7bff7a22 --- /dev/null +++ b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-acknowledgements.plist @@ -0,0 +1,86 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Title + RxSwift + Type + PSGroupSpecifier + + + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Title + RxBlocking + Type + PSGroupSpecifier + + + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Title + RxTest + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-dummy.m b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-dummy.m new file mode 100644 index 00000000..3fce1e06 --- /dev/null +++ b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_AVIROTests : NSObject +@end +@implementation PodsDummy_Pods_AVIROTests +@end diff --git a/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-umbrella.h b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-umbrella.h new file mode 100644 index 00000000..35165f8c --- /dev/null +++ b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_AVIROTestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_AVIROTestsVersionString[]; + diff --git a/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.debug.xcconfig b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.debug.xcconfig new file mode 100644 index 00000000..36d91b15 --- /dev/null +++ b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.debug.xcconfig @@ -0,0 +1,15 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_CONFIGURATION_BUILD_DIR}/RxBlocking" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library" "${PODS_CONFIGURATION_BUILD_DIR}/RxTest" /usr/lib/swift +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxBlocking/RxBlocking.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxTest/RxTest.modulemap" +OTHER_LDFLAGS = $(inherited) -ObjC -l"RxBlocking" -l"RxSwift-library" -l"RxTest" -framework "XCTest" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxBlocking/RxBlocking.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxTest/RxTest.modulemap" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/RxBlocking" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library" "${PODS_CONFIGURATION_BUILD_DIR}/RxTest" +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.modulemap b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.modulemap new file mode 100644 index 00000000..3f614e54 --- /dev/null +++ b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.modulemap @@ -0,0 +1,6 @@ +module Pods_AVIROTests { + umbrella header "Pods-AVIROTests-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.release.xcconfig b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.release.xcconfig new file mode 100644 index 00000000..36d91b15 --- /dev/null +++ b/Pods/Target Support Files/Pods-AVIROTests/Pods-AVIROTests.release.xcconfig @@ -0,0 +1,15 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" "${PODS_CONFIGURATION_BUILD_DIR}/RxBlocking" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library" "${PODS_CONFIGURATION_BUILD_DIR}/RxTest" /usr/lib/swift +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxBlocking/RxBlocking.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxTest/RxTest.modulemap" +OTHER_LDFLAGS = $(inherited) -ObjC -l"RxBlocking" -l"RxSwift-library" -l"RxTest" -framework "XCTest" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxBlocking/RxBlocking.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxTest/RxTest.modulemap" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/RxBlocking" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library" "${PODS_CONFIGURATION_BUILD_DIR}/RxTest" +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxBlocking/RxBlocking-dummy.m b/Pods/Target Support Files/RxBlocking/RxBlocking-dummy.m new file mode 100644 index 00000000..30e76c53 --- /dev/null +++ b/Pods/Target Support Files/RxBlocking/RxBlocking-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RxBlocking : NSObject +@end +@implementation PodsDummy_RxBlocking +@end diff --git a/Pods/Target Support Files/RxBlocking/RxBlocking-prefix.pch b/Pods/Target Support Files/RxBlocking/RxBlocking-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/Pods/Target Support Files/RxBlocking/RxBlocking-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/RxBlocking/RxBlocking-umbrella.h b/Pods/Target Support Files/RxBlocking/RxBlocking-umbrella.h new file mode 100644 index 00000000..7e4f5a6b --- /dev/null +++ b/Pods/Target Support Files/RxBlocking/RxBlocking-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double RxBlockingVersionNumber; +FOUNDATION_EXPORT const unsigned char RxBlockingVersionString[]; + diff --git a/Pods/Target Support Files/RxBlocking/RxBlocking.debug.xcconfig b/Pods/Target Support Files/RxBlocking/RxBlocking.debug.xcconfig new file mode 100644 index 00000000..c2c74de3 --- /dev/null +++ b/Pods/Target Support Files/RxBlocking/RxBlocking.debug.xcconfig @@ -0,0 +1,16 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxBlocking +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" -import-underlying-module -Xcc -fmodule-map-file="${SRCROOT}/${MODULEMAP_FILE}" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxBlocking +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library" +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxBlocking/RxBlocking.modulemap b/Pods/Target Support Files/RxBlocking/RxBlocking.modulemap new file mode 100644 index 00000000..d23f0889 --- /dev/null +++ b/Pods/Target Support Files/RxBlocking/RxBlocking.modulemap @@ -0,0 +1,6 @@ +module RxBlocking { + umbrella header "RxBlocking-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/RxBlocking/RxBlocking.release.xcconfig b/Pods/Target Support Files/RxBlocking/RxBlocking.release.xcconfig new file mode 100644 index 00000000..c2c74de3 --- /dev/null +++ b/Pods/Target Support Files/RxBlocking/RxBlocking.release.xcconfig @@ -0,0 +1,16 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxBlocking +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" -import-underlying-module -Xcc -fmodule-map-file="${SRCROOT}/${MODULEMAP_FILE}" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxBlocking +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +SWIFT_INCLUDE_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library" +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxCocoa/RxCocoa-Info.plist b/Pods/Target Support Files/RxCocoa/RxCocoa-Info.plist new file mode 100644 index 00000000..ab77094a --- /dev/null +++ b/Pods/Target Support Files/RxCocoa/RxCocoa-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 6.6.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m b/Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m new file mode 100644 index 00000000..d4711fd4 --- /dev/null +++ b/Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RxCocoa : NSObject +@end +@implementation PodsDummy_RxCocoa +@end diff --git a/Pods/Target Support Files/RxCocoa/RxCocoa-prefix.pch b/Pods/Target Support Files/RxCocoa/RxCocoa-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/Pods/Target Support Files/RxCocoa/RxCocoa-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/RxCocoa/RxCocoa-umbrella.h b/Pods/Target Support Files/RxCocoa/RxCocoa-umbrella.h new file mode 100644 index 00000000..26f89e62 --- /dev/null +++ b/Pods/Target Support Files/RxCocoa/RxCocoa-umbrella.h @@ -0,0 +1,22 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "RxCocoaRuntime.h" +#import "_RX.h" +#import "_RXDelegateProxy.h" +#import "_RXKVOObserver.h" +#import "_RXObjCRuntime.h" +#import "RxCocoa.h" + +FOUNDATION_EXPORT double RxCocoaVersionNumber; +FOUNDATION_EXPORT const unsigned char RxCocoaVersionString[]; + diff --git a/Pods/Target Support Files/RxCocoa/RxCocoa.debug.xcconfig b/Pods/Target Support Files/RxCocoa/RxCocoa.debug.xcconfig new file mode 100644 index 00000000..ce6a899a --- /dev/null +++ b/Pods/Target Support Files/RxCocoa/RxCocoa.debug.xcconfig @@ -0,0 +1,17 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-framework" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "RxRelay" -framework "RxSwift" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxCocoa +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxCocoa/RxCocoa.modulemap b/Pods/Target Support Files/RxCocoa/RxCocoa.modulemap new file mode 100644 index 00000000..0aa97aa3 --- /dev/null +++ b/Pods/Target Support Files/RxCocoa/RxCocoa.modulemap @@ -0,0 +1,6 @@ +framework module RxCocoa { + umbrella header "RxCocoa-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/RxCocoa/RxCocoa.release.xcconfig b/Pods/Target Support Files/RxCocoa/RxCocoa.release.xcconfig new file mode 100644 index 00000000..ce6a899a --- /dev/null +++ b/Pods/Target Support Files/RxCocoa/RxCocoa.release.xcconfig @@ -0,0 +1,17 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxCocoa +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/RxRelay" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-framework" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "RxRelay" -framework "RxSwift" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxCocoa +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxRelay/RxRelay-Info.plist b/Pods/Target Support Files/RxRelay/RxRelay-Info.plist new file mode 100644 index 00000000..ab77094a --- /dev/null +++ b/Pods/Target Support Files/RxRelay/RxRelay-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 6.6.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/RxRelay/RxRelay-dummy.m b/Pods/Target Support Files/RxRelay/RxRelay-dummy.m new file mode 100644 index 00000000..eec01908 --- /dev/null +++ b/Pods/Target Support Files/RxRelay/RxRelay-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RxRelay : NSObject +@end +@implementation PodsDummy_RxRelay +@end diff --git a/Pods/Target Support Files/RxRelay/RxRelay-prefix.pch b/Pods/Target Support Files/RxRelay/RxRelay-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/Pods/Target Support Files/RxRelay/RxRelay-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/RxRelay/RxRelay-umbrella.h b/Pods/Target Support Files/RxRelay/RxRelay-umbrella.h new file mode 100644 index 00000000..67f7f553 --- /dev/null +++ b/Pods/Target Support Files/RxRelay/RxRelay-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double RxRelayVersionNumber; +FOUNDATION_EXPORT const unsigned char RxRelayVersionString[]; + diff --git a/Pods/Target Support Files/RxRelay/RxRelay.debug.xcconfig b/Pods/Target Support Files/RxRelay/RxRelay.debug.xcconfig new file mode 100644 index 00000000..8c77bb9a --- /dev/null +++ b/Pods/Target Support Files/RxRelay/RxRelay.debug.xcconfig @@ -0,0 +1,17 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxRelay +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-framework" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "RxSwift" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxRelay +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxRelay/RxRelay.modulemap b/Pods/Target Support Files/RxRelay/RxRelay.modulemap new file mode 100644 index 00000000..96a115a1 --- /dev/null +++ b/Pods/Target Support Files/RxRelay/RxRelay.modulemap @@ -0,0 +1,6 @@ +framework module RxRelay { + umbrella header "RxRelay-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/RxRelay/RxRelay.release.xcconfig b/Pods/Target Support Files/RxRelay/RxRelay.release.xcconfig new file mode 100644 index 00000000..8c77bb9a --- /dev/null +++ b/Pods/Target Support Files/RxRelay/RxRelay.release.xcconfig @@ -0,0 +1,17 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxRelay +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-framework" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_LDFLAGS = $(inherited) -framework "RxSwift" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxRelay +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-Info.plist b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-Info.plist new file mode 100644 index 00000000..ab77094a --- /dev/null +++ b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 6.6.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-dummy.m b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-dummy.m new file mode 100644 index 00000000..fc6f757e --- /dev/null +++ b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RxSwift_framework : NSObject +@end +@implementation PodsDummy_RxSwift_framework +@end diff --git a/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-prefix.pch b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-umbrella.h b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-umbrella.h new file mode 100644 index 00000000..9a272119 --- /dev/null +++ b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double RxSwiftVersionNumber; +FOUNDATION_EXPORT const unsigned char RxSwiftVersionString[]; + diff --git a/Pods/Target Support Files/RxSwift-framework/RxSwift-framework.debug.xcconfig b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework.debug.xcconfig new file mode 100644 index 00000000..e27f8704 --- /dev/null +++ b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework.debug.xcconfig @@ -0,0 +1,15 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-framework +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxSwift +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxSwift-framework/RxSwift-framework.modulemap b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework.modulemap new file mode 100644 index 00000000..2af7b6ef --- /dev/null +++ b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework.modulemap @@ -0,0 +1,6 @@ +framework module RxSwift { + umbrella header "RxSwift-framework-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/RxSwift-framework/RxSwift-framework.release.xcconfig b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework.release.xcconfig new file mode 100644 index 00000000..e27f8704 --- /dev/null +++ b/Pods/Target Support Files/RxSwift-framework/RxSwift-framework.release.xcconfig @@ -0,0 +1,15 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-framework +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxSwift +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxSwift-library/RxSwift-library-dummy.m b/Pods/Target Support Files/RxSwift-library/RxSwift-library-dummy.m new file mode 100644 index 00000000..aff43baf --- /dev/null +++ b/Pods/Target Support Files/RxSwift-library/RxSwift-library-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RxSwift_library : NSObject +@end +@implementation PodsDummy_RxSwift_library +@end diff --git a/Pods/Target Support Files/RxSwift-library/RxSwift-library-prefix.pch b/Pods/Target Support Files/RxSwift-library/RxSwift-library-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/Pods/Target Support Files/RxSwift-library/RxSwift-library-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/RxSwift-library/RxSwift-library-umbrella.h b/Pods/Target Support Files/RxSwift-library/RxSwift-library-umbrella.h new file mode 100644 index 00000000..9a272119 --- /dev/null +++ b/Pods/Target Support Files/RxSwift-library/RxSwift-library-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double RxSwiftVersionNumber; +FOUNDATION_EXPORT const unsigned char RxSwiftVersionString[]; + diff --git a/Pods/Target Support Files/RxSwift-library/RxSwift-library.debug.xcconfig b/Pods/Target Support Files/RxSwift-library/RxSwift-library.debug.xcconfig new file mode 100644 index 00000000..aeb46ca4 --- /dev/null +++ b/Pods/Target Support Files/RxSwift-library/RxSwift-library.debug.xcconfig @@ -0,0 +1,14 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -import-underlying-module -Xcc -fmodule-map-file="${SRCROOT}/${MODULEMAP_FILE}" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxSwift +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxSwift-library/RxSwift-library.modulemap b/Pods/Target Support Files/RxSwift-library/RxSwift-library.modulemap new file mode 100644 index 00000000..2e032d36 --- /dev/null +++ b/Pods/Target Support Files/RxSwift-library/RxSwift-library.modulemap @@ -0,0 +1,6 @@ +module RxSwift { + umbrella header "RxSwift-library-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/RxSwift-library/RxSwift-library.release.xcconfig b/Pods/Target Support Files/RxSwift-library/RxSwift-library.release.xcconfig new file mode 100644 index 00000000..aeb46ca4 --- /dev/null +++ b/Pods/Target Support Files/RxSwift-library/RxSwift-library.release.xcconfig @@ -0,0 +1,14 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -import-underlying-module -Xcc -fmodule-map-file="${SRCROOT}/${MODULEMAP_FILE}" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxSwift +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxTest/RxTest-dummy.m b/Pods/Target Support Files/RxTest/RxTest-dummy.m new file mode 100644 index 00000000..2796031f --- /dev/null +++ b/Pods/Target Support Files/RxTest/RxTest-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RxTest : NSObject +@end +@implementation PodsDummy_RxTest +@end diff --git a/Pods/Target Support Files/RxTest/RxTest-prefix.pch b/Pods/Target Support Files/RxTest/RxTest-prefix.pch new file mode 100644 index 00000000..beb2a244 --- /dev/null +++ b/Pods/Target Support Files/RxTest/RxTest-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Pods/Target Support Files/RxTest/RxTest-umbrella.h b/Pods/Target Support Files/RxTest/RxTest-umbrella.h new file mode 100644 index 00000000..bf3648cf --- /dev/null +++ b/Pods/Target Support Files/RxTest/RxTest-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double RxTestVersionNumber; +FOUNDATION_EXPORT const unsigned char RxTestVersionString[]; + diff --git a/Pods/Target Support Files/RxTest/RxTest.debug.xcconfig b/Pods/Target Support Files/RxTest/RxTest.debug.xcconfig new file mode 100644 index 00000000..691881af --- /dev/null +++ b/Pods/Target Support Files/RxTest/RxTest.debug.xcconfig @@ -0,0 +1,20 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxTest +ENABLE_BITCODE = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" -import-underlying-module -Xcc -fmodule-map-file="${SRCROOT}/${MODULEMAP_FILE}" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxTest +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +SWIFT_INCLUDE_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library" +SYSTEM_FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/RxTest/RxTest.modulemap b/Pods/Target Support Files/RxTest/RxTest.modulemap new file mode 100644 index 00000000..76f3ef84 --- /dev/null +++ b/Pods/Target Support Files/RxTest/RxTest.modulemap @@ -0,0 +1,6 @@ +module RxTest { + umbrella header "RxTest-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/RxTest/RxTest.release.xcconfig b/Pods/Target Support Files/RxTest/RxTest.release.xcconfig new file mode 100644 index 00000000..691881af --- /dev/null +++ b/Pods/Target Support Files/RxTest/RxTest.release.xcconfig @@ -0,0 +1,20 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RxTest +ENABLE_BITCODE = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LIBRARY_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" +OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" +OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library/RxSwift.modulemap" -import-underlying-module -Xcc -fmodule-map-file="${SRCROOT}/${MODULEMAP_FILE}" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/RxTest +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +SWIFT_INCLUDE_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/usr/lib" "${PODS_CONFIGURATION_BUILD_DIR}/RxSwift-library" +SYSTEM_FRAMEWORK_SEARCH_PATHS = $(inherited) "$(PLATFORM_DIR)/Developer/Library/Frameworks" +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES From 63cadb21c380fa6da3fac6202623eccdd0df1e14 Mon Sep 17 00:00:00 2001 From: Jeon Seoung Hun Date: Mon, 18 Dec 2023 19:07:53 +0900 Subject: [PATCH 02/18] =?UTF-8?q?[Feat]:=20Challenge=20ViewController=20?= =?UTF-8?q?=EC=83=9D=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AVIRO.xcodeproj/project.pbxproj | 72 ++++-- AVIRO/App/AppController.swift | 3 +- AVIRO/Custom/Constants/Enum+.swift | 20 +- .../ChallengeLevelView.swift | 12 + .../ChallengeTitleView.swift | 12 + .../ChallengeViewController.swift | 130 +++++++++++ .../MyInfoView/MyInfoView2.swift | 211 ++++++++++++++++++ .../TabBar/MyPage/SubView/MyInfoView.swift | 6 - 8 files changed, 433 insertions(+), 33 deletions(-) create mode 100644 AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeLevelView/ChallengeLevelView.swift create mode 100644 AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift create mode 100644 AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift create mode 100644 AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift diff --git a/AVIRO.xcodeproj/project.pbxproj b/AVIRO.xcodeproj/project.pbxproj index 83d87a72..8414829f 100644 --- a/AVIRO.xcodeproj/project.pbxproj +++ b/AVIRO.xcodeproj/project.pbxproj @@ -98,6 +98,10 @@ C541521D2AC125E100F39826 /* TutorialTopLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C541521C2AC125E100F39826 /* TutorialTopLabel.swift */; }; C54657882ABF2DBA003A0BCB /* API.plist in Resources */ = {isa = PBXBuildFile; fileRef = C54657872ABF2DBA003A0BCB /* API.plist */; }; C5476B4D2B2F1F1F00F5FC6E /* AVIROTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B4C2B2F1F1F00F5FC6E /* AVIROTests.swift */; }; + C5476B612B3028FA00F5FC6E /* ChallengeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */; }; + C5476B682B303BE800F5FC6E /* MyInfoView2.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B672B303BE800F5FC6E /* MyInfoView2.swift */; }; + C5476B6A2B304C8200F5FC6E /* ChallengeTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B692B304C8200F5FC6E /* ChallengeTitleView.swift */; }; + C5476B6C2B304C8900F5FC6E /* ChallengeLevelView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B6B2B304C8900F5FC6E /* ChallengeLevelView.swift */; }; C547A8BA2A17D8D4004D1339 /* KakaoAPIManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C547A8B92A17D8D4004D1339 /* KakaoAPIManager.swift */; }; C54BC0DB2A2C2D0D00B65439 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C54BC0DA2A2C2D0D00B65439 /* UIColor+Extension.swift */; }; C552D5342ABE8CA500933D8A /* AVIRODeleteAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C552D5332ABE8CA500933D8A /* AVIRODeleteAPI.swift */; }; @@ -320,6 +324,10 @@ C54657872ABF2DBA003A0BCB /* API.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = API.plist; path = ../AVIRO/AVIRO/App/API.plist; sourceTree = SOURCE_ROOT; }; C5476B4A2B2F1F1F00F5FC6E /* AVIROTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AVIROTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; C5476B4C2B2F1F1F00F5FC6E /* AVIROTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AVIROTests.swift; sourceTree = ""; }; + C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeViewController.swift; sourceTree = ""; }; + C5476B672B303BE800F5FC6E /* MyInfoView2.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyInfoView2.swift; sourceTree = ""; }; + C5476B692B304C8200F5FC6E /* ChallengeTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeTitleView.swift; sourceTree = ""; }; + C5476B6B2B304C8900F5FC6E /* ChallengeLevelView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeLevelView.swift; sourceTree = ""; }; C547A8B92A17D8D4004D1339 /* KakaoAPIManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KakaoAPIManager.swift; sourceTree = ""; }; C54BC0DA2A2C2D0D00B65439 /* UIColor+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+Extension.swift"; sourceTree = ""; }; C552D5332ABE8CA500933D8A /* AVIRODeleteAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AVIRODeleteAPI.swift; sourceTree = ""; }; @@ -817,7 +825,6 @@ C50367F32A1795BE0020C6BB /* Model */, C50367F22A1795B90020C6BB /* Manager */, C50367ED2A1791840020C6BB /* Scene */, - C5D654F82B27597B00A04F4F /* Infrastructure */, ); path = AVIRO; sourceTree = ""; @@ -906,6 +913,48 @@ path = AVIROTests; sourceTree = ""; }; + C5476B622B3036DA00F5FC6E /* ViewController */ = { + isa = PBXGroup; + children = ( + C5476B642B303BBB00F5FC6E /* ChallengeTitleView */, + C5476B662B303BD400F5FC6E /* ChallengeLevelView */, + C5476B652B303BCB00F5FC6E /* MyInfoView */, + C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */, + ); + path = ViewController; + sourceTree = ""; + }; + C5476B632B3036E300F5FC6E /* ViewModel */ = { + isa = PBXGroup; + children = ( + ); + path = ViewModel; + sourceTree = ""; + }; + C5476B642B303BBB00F5FC6E /* ChallengeTitleView */ = { + isa = PBXGroup; + children = ( + C5476B692B304C8200F5FC6E /* ChallengeTitleView.swift */, + ); + path = ChallengeTitleView; + sourceTree = ""; + }; + C5476B652B303BCB00F5FC6E /* MyInfoView */ = { + isa = PBXGroup; + children = ( + C5476B672B303BE800F5FC6E /* MyInfoView2.swift */, + ); + path = MyInfoView; + sourceTree = ""; + }; + C5476B662B303BD400F5FC6E /* ChallengeLevelView */ = { + isa = PBXGroup; + children = ( + C5476B6B2B304C8900F5FC6E /* ChallengeLevelView.swift */, + ); + path = ChallengeLevelView; + sourceTree = ""; + }; C54BC0D82A2C2CEE00B65439 /* UIButton */ = { isa = PBXGroup; children = ( @@ -1171,6 +1220,8 @@ C5AAEB472B2F044000507C73 /* Challenge */ = { isa = PBXGroup; children = ( + C5476B632B3036E300F5FC6E /* ViewModel */, + C5476B622B3036DA00F5FC6E /* ViewController */, ); path = Challenge; sourceTree = ""; @@ -1299,21 +1350,6 @@ path = Constants; sourceTree = ""; }; - C5D654F82B27597B00A04F4F /* Infrastructure */ = { - isa = PBXGroup; - children = ( - C5D654F92B275D4400A04F4F /* Network */, - ); - path = Infrastructure; - sourceTree = ""; - }; - C5D654F92B275D4400A04F4F /* Network */ = { - isa = PBXGroup; - children = ( - ); - path = Network; - sourceTree = ""; - }; C5D8EB242A9D78F900EF629F /* SubView */ = { isa = PBXGroup; children = ( @@ -1810,6 +1846,7 @@ C50F6AF32A68FD0A00E942F5 /* EnrollPlaceViewController.swift in Sources */, C5732C7E2A41D42700CDC499 /* RequestTableFieldModel.swift in Sources */, C5C961982A8DA5880016E2F8 /* EditInfoButton.swift in Sources */, + C5476B682B303BE800F5FC6E /* MyInfoView2.swift in Sources */, C5A989972A959D920021B7C3 /* AVIROUpdateBookmark+DTO.swift in Sources */, C5E7B7A92A4D3CDF00CA2090 /* AVIROUser+DTO.swift in Sources */, C5A201C32A98A61F00A54381 /* EditLocationBottomView.swift in Sources */, @@ -1882,6 +1919,7 @@ C5A201BB2A986F9B00A54381 /* EditMenuPresenter.swift in Sources */, C5C90EBB2AA7F79600AB3668 /* EditTimeChangebleView.swift in Sources */, C5C9619C2A8DB1D80016E2F8 /* MenuTypeLabel.swift in Sources */, + C5476B6C2B304C8900F5FC6E /* ChallengeLevelView.swift in Sources */, C5351B7A2A1B439000116D50 /* KakaoCoordinateSearchDTO.swift in Sources */, C50E6F6D2A8E5AAC00703B9E /* ReviewLabel.swift in Sources */, C5C290852A86173F00ED5DCE /* PlaceReviewWriteView.swift in Sources */, @@ -1903,6 +1941,7 @@ C505EB182ACC5AC50057A4F8 /* LaunchScreenViewController.swift in Sources */, C50F6AFD2A68FFCB00E942F5 /* EnrollMenuTableView.swift in Sources */, C5351B602A19F9A700116D50 /* PlaceListModel.swift in Sources */, + C5476B612B3028FA00F5FC6E /* ChallengeViewController.swift in Sources */, C5A201C52A98A67900A54381 /* EditPhoneView.swift in Sources */, C5732C712A41739000CDC499 /* AVIROAPIManager.swift in Sources */, C50F6AF92A68FFBB00E942F5 /* EnrollStoreInfoView.swift in Sources */, @@ -1922,6 +1961,7 @@ C51AED1F2A8B2BC80015FBC2 /* HomeTopButton.swift in Sources */, C5FA0EAC2A94DF39004AD8B4 /* ReportReviewPresenter.swift in Sources */, C5A201B22A98502500A54381 /* TimeUtility.swift in Sources */, + C5476B6A2B304C8200F5FC6E /* ChallengeTitleView.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/AVIRO/App/AppController.swift b/AVIRO/App/AppController.swift index cf890423..e912385e 100644 --- a/AVIRO/App/AppController.swift +++ b/AVIRO/App/AppController.swift @@ -34,7 +34,8 @@ final class AppController { window.backgroundColor = .gray7 window.makeKeyAndVisible() - checkState() +// checkState() + setHomeView() } // MARK: 불러올 view 확인 메서드 diff --git a/AVIRO/Custom/Constants/Enum+.swift b/AVIRO/Custom/Constants/Enum+.swift index 95552bc6..8f426c7d 100644 --- a/AVIRO/Custom/Constants/Enum+.swift +++ b/AVIRO/Custom/Constants/Enum+.swift @@ -63,13 +63,13 @@ enum DefaultCoordinate: Double { enum TBItem: CaseIterable { case home case plus - case myPage + case challenge var title: String { switch self { case .home: return "홈" case .plus: return "등록하기" - case .myPage: return "마이페이지" + case .challenge: return "챌린지" } } @@ -81,17 +81,17 @@ enum TBItem: CaseIterable { case .home: return ( UIImage.home1, UIImage.home2 - ) - + ) + case .plus: return ( UIImage.edit1, UIImage.edit2 - ) - - case .myPage: return ( + ) + + case .challenge: return ( UIImage.user1, UIImage.user2 - ) + ) } } @@ -103,8 +103,8 @@ enum TBItem: CaseIterable { case .plus: return UINavigationController( rootViewController: EnrollPlaceViewController() ) - case .myPage: return UINavigationController( - rootViewController: MyPageViewController() + case .challenge: return UINavigationController( + rootViewController: ChallengeViewController() ) } } diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeLevelView/ChallengeLevelView.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeLevelView/ChallengeLevelView.swift new file mode 100644 index 00000000..ea123eb7 --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeLevelView/ChallengeLevelView.swift @@ -0,0 +1,12 @@ +// +// ChallengeLevelView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/18. +// + +import UIKit + +final class ChallengeLevelView: UIView { + +} diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift new file mode 100644 index 00000000..2352a9bc --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift @@ -0,0 +1,12 @@ +// +// ChallengeTitleView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/18. +// + +import UIKit + +final class ChallengeTitleView: UIView { + +} diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift new file mode 100644 index 00000000..ca1462e3 --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift @@ -0,0 +1,130 @@ +// +// ChallengeViewController.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/18. +// + +import UIKit + +import RxSwift +import RxCocoa + +final class ChallengeViewController: UIViewController { + private let disposeBag = DisposeBag() + + private lazy var scrollView = UIScrollView() + + private lazy var challengeTitleView: ChallengeTitleView = { + let view = ChallengeTitleView() + + return view + }() + + private lazy var challengeLevelView: ChallengeLevelView = { + let view = ChallengeLevelView() + + return view + }() + + private lazy var myInfoView: MyInfoView2 = { + let view = MyInfoView2() + + return view + }() + + override func viewDidLoad() { + super.viewDidLoad() + + setupLayout() + setupAttribute() + dataBinding() + } + + private func setupLayout() { + scrollView.translatesAutoresizingMaskIntoConstraints = false + view.addSubview(scrollView) + + NSLayoutConstraint.activate([ + scrollView.topAnchor.constraint( + equalTo: self.view.safeAreaLayoutGuide.topAnchor + ), + scrollView.leadingAnchor.constraint( + equalTo: self.view.leadingAnchor + ), + scrollView.trailingAnchor.constraint( + equalTo: self.view.trailingAnchor + ), + scrollView.bottomAnchor.constraint( + equalTo: self.view.safeAreaLayoutGuide.bottomAnchor + ) + ]) + + [ + challengeTitleView, + challengeLevelView, + myInfoView + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + scrollView.addSubview($0) + } + + NSLayoutConstraint.activate([ + challengeTitleView.topAnchor.constraint( + equalTo: scrollView.contentLayoutGuide.topAnchor, + constant: 16 + ), + challengeTitleView.widthAnchor.constraint( + equalTo: scrollView.frameLayoutGuide.widthAnchor + ), + challengeTitleView.heightAnchor.constraint( + equalToConstant: 107 + ), + + challengeLevelView.topAnchor.constraint( + equalTo: challengeTitleView.bottomAnchor, + constant: 16 + ), + challengeLevelView.widthAnchor.constraint( + equalTo: scrollView.frameLayoutGuide.widthAnchor + ), + challengeLevelView.heightAnchor.constraint( + equalToConstant: 341 + ), + + myInfoView.topAnchor.constraint( + equalTo: challengeLevelView.bottomAnchor, + constant: 20 + ), + myInfoView.widthAnchor.constraint( + equalTo: scrollView.frameLayoutGuide.widthAnchor + ), + myInfoView.heightAnchor.constraint(equalToConstant: 81), + myInfoView.bottomAnchor.constraint( + equalTo: scrollView.contentLayoutGuide.bottomAnchor + ) + ]) + } + + private func setupAttribute() { + navigationItem.title = "챌린지" + navigationController?.navigationBar.isHidden = false + + let rightBarButton = UIBarButtonItem( + image: UIImage.user2, + style: .done, + target: nil, + action: nil + ) + rightBarButton.tintColor = .gray1 + + self.navigationItem.rightBarButtonItem = rightBarButton + } + + private func dataBinding() { + // TODO: ViewModel 생성 후 변경 예정 + myInfoView.updateMyPlace("2") + myInfoView.updateMyReview("3") + myInfoView.updateMyStar("4") + } +} diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift new file mode 100644 index 00000000..ae860719 --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift @@ -0,0 +1,211 @@ +// +// MyInfoView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/18. +// + +import UIKit + +final class MyInfoView2: UIView { + private lazy var myPlaceLabel: UILabel = { + let label = UILabel() + + label.text = "등록한 가게" + label.textColor = .gray1 + label.font = .pretendard(size: 14, weight: .semibold) + + return label + }() + + private lazy var myPlaceButton: UIButton = { + let button = UIButton() + + button.setTitle("0개", for: .normal) + button.setTitleColor(.gray0, for: .normal) + button.titleLabel?.font = .pretendard(size: 20, weight: .bold) + + return button + }() + + private lazy var myPlaceStackView: UIStackView = { + let stackView = UIStackView() + + stackView.axis = .vertical + stackView.spacing = 11 + stackView.alignment = .center + + return stackView + }() + + private lazy var myReviewLabel: UILabel = { + let label = UILabel() + + label.text = "작성 후기" + label.textColor = .gray1 + label.font = .pretendard(size: 14, weight: .semibold) + + return label + }() + + private lazy var myReviewButton: UIButton = { + let button = UIButton() + + button.setTitle("0개", for: .normal) + button.setTitleColor(.gray0, for: .normal) + button.titleLabel?.font = .pretendard(size: 20, weight: .bold) + + return button + }() + + private lazy var myReviewStackView: UIStackView = { + let stackView = UIStackView() + + stackView.axis = .vertical + stackView.spacing = 11 + stackView.alignment = .center + + return stackView + }() + + private lazy var myStarLabel: UILabel = { + let label = UILabel() + + label.text = "즐겨찾기" + label.textColor = .gray1 + label.font = .pretendard(size: 14, weight: .semibold) + + return label + }() + + private lazy var myStarButton: UIButton = { + let button = UIButton() + + button.setTitle("0개", for: .normal) + button.setTitleColor(.gray0, for: .normal) + button.titleLabel?.font = .pretendard(size: 20, weight: .bold) + + return button + }() + + private lazy var myStarStackView: UIStackView = { + let stackView = UIStackView() + + stackView.axis = .vertical + stackView.spacing = 11 + stackView.alignment = .center + + return stackView + }() + + private lazy var leftDividerView: UIView = { + let view = UIView() + + view.backgroundColor = .gray5 + + return view + }() + + private lazy var rightDividerView: UIView = { + let view = UIView() + + view.backgroundColor = .gray5 + + return view + }() + + private lazy var myStateStackView: UIStackView = { + let stackView = UIStackView() + + stackView.axis = .horizontal + stackView.spacing = 10 + stackView.distribution = .equalSpacing + + return stackView + }() + + override init(frame: CGRect) { + super.init(frame: frame) + + setupLayout() + setupAttribute() + } + + required init?(coder: NSCoder) { + fatalError() + } + + private func setupLayout() { + [ + myPlaceLabel, + myPlaceButton + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + myPlaceStackView.addArrangedSubview($0) + } + + [ + myReviewLabel, + myReviewButton + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + myReviewStackView.addArrangedSubview($0) + } + + [ + myStarLabel, + myStarButton + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + myStarStackView.addArrangedSubview($0) + } + + [ + myPlaceStackView, + leftDividerView, + myReviewStackView, + rightDividerView, + myStarStackView + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + myStateStackView.addArrangedSubview($0) + } + + myStateStackView.translatesAutoresizingMaskIntoConstraints = false + self.addSubview(myStateStackView) + + NSLayoutConstraint.activate([ + myStateStackView.topAnchor.constraint(equalTo: self.topAnchor, constant: 12), + myStateStackView.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: -12), + myStateStackView.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 15), + myStateStackView.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -15), + + leftDividerView.heightAnchor.constraint(equalTo: myStateStackView.heightAnchor, multiplier: 1), + leftDividerView.widthAnchor.constraint(equalToConstant: 1), + + rightDividerView.heightAnchor.constraint(equalTo: myStateStackView.heightAnchor, multiplier: 1), + rightDividerView.widthAnchor.constraint(equalToConstant: 1), + + myPlaceStackView.widthAnchor.constraint(equalToConstant: 100), + myReviewStackView.widthAnchor.constraint(equalToConstant: 100), + myStarStackView.widthAnchor.constraint(equalToConstant: 100) + ]) + } + + private func setupAttribute() { + self.backgroundColor = .gray7 + } + + // TODO: DataBinding때 삭제 예정 + func updateMyPlace(_ place: String) { + myPlaceButton.setTitle("\(place)개", for: .normal) + } + + func updateMyReview(_ review: String) { + myReviewButton.setTitle("\(review)개", for: .normal) + } + + func updateMyStar(_ star: String) { + myStarButton.setTitle("\(star)개", for: .normal) + } +} diff --git a/AVIRO/Scene/View/TabBar/MyPage/SubView/MyInfoView.swift b/AVIRO/Scene/View/TabBar/MyPage/SubView/MyInfoView.swift index 59b5dd82..a75e4d0b 100644 --- a/AVIRO/Scene/View/TabBar/MyPage/SubView/MyInfoView.swift +++ b/AVIRO/Scene/View/TabBar/MyPage/SubView/MyInfoView.swift @@ -131,13 +131,7 @@ final class MyInfoView: UIView { return stackView }() - - private lazy var checkButtonStackView: UIStackView = { - let stackView = UIStackView() - return stackView - }() - var editNickNameTapped: (() -> Void)? override init(frame: CGRect) { From 4dac595c6d983b16eb24ccf581c5aeccfcddaef2 Mon Sep 17 00:00:00 2001 From: Jeon Seoung Hun Date: Mon, 18 Dec 2023 23:10:25 +0900 Subject: [PATCH 03/18] =?UTF-8?q?[Feat]:=20Challenge=20UI=20=EA=B5=AC?= =?UTF-8?q?=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AVIRO.xcodeproj/project.pbxproj | 18 ++- .../Assets/InfoCircle.imageset/Contents.json | 23 +++ .../Assets/InfoCircle.imageset/InfoCircle.png | Bin 0 -> 519 bytes .../InfoCircle.imageset/InfoCircle@2x.png | Bin 0 -> 943 bytes .../InfoCircle.imageset/InfoCircle@3x.png | Bin 0 -> 1412 bytes .../TabBarIcon/Trophy.imageset/Contents.json | 23 +++ .../TabBarIcon/Trophy.imageset/Trophy.png | Bin 0 -> 511 bytes .../TabBarIcon/Trophy.imageset/Trophy@2x.png | Bin 0 -> 801 bytes .../TabBarIcon/Trophy.imageset/Trophy@3x.png | Bin 0 -> 1125 bytes AVIRO/Custom/Constants/Enum+.swift | 4 +- .../Custom/Constants/UIImage+Extension.swift | 5 + .../ChallengeLevelView.swift | 12 -- .../ChallengeTitleView.swift | 84 +++++++++++ .../ChallengeLevelView.swift | 140 ++++++++++++++++++ .../ChallengeUserInfoView.swift | 86 +++++++++++ .../ChallengeViewController.swift | 25 +++- .../MyInfoView/MyInfoView2.swift | 2 +- 17 files changed, 392 insertions(+), 30 deletions(-) create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/Contents.json create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/InfoCircle.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/InfoCircle@2x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/InfoCircle@3x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Contents.json create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Trophy.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Trophy@2x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Trophy@3x.png delete mode 100644 AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeLevelView/ChallengeLevelView.swift create mode 100644 AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeLevelView.swift create mode 100644 AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeUserInfoView.swift diff --git a/AVIRO.xcodeproj/project.pbxproj b/AVIRO.xcodeproj/project.pbxproj index 8414829f..3beb5855 100644 --- a/AVIRO.xcodeproj/project.pbxproj +++ b/AVIRO.xcodeproj/project.pbxproj @@ -101,7 +101,8 @@ C5476B612B3028FA00F5FC6E /* ChallengeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */; }; C5476B682B303BE800F5FC6E /* MyInfoView2.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B672B303BE800F5FC6E /* MyInfoView2.swift */; }; C5476B6A2B304C8200F5FC6E /* ChallengeTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B692B304C8200F5FC6E /* ChallengeTitleView.swift */; }; - C5476B6C2B304C8900F5FC6E /* ChallengeLevelView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B6B2B304C8900F5FC6E /* ChallengeLevelView.swift */; }; + C5476B6C2B304C8900F5FC6E /* ChallengeUserInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B6B2B304C8900F5FC6E /* ChallengeUserInfoView.swift */; }; + C5476B6E2B30760000F5FC6E /* ChallengeLevelView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B6D2B30760000F5FC6E /* ChallengeLevelView.swift */; }; C547A8BA2A17D8D4004D1339 /* KakaoAPIManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C547A8B92A17D8D4004D1339 /* KakaoAPIManager.swift */; }; C54BC0DB2A2C2D0D00B65439 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C54BC0DA2A2C2D0D00B65439 /* UIColor+Extension.swift */; }; C552D5342ABE8CA500933D8A /* AVIRODeleteAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C552D5332ABE8CA500933D8A /* AVIRODeleteAPI.swift */; }; @@ -327,7 +328,8 @@ C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeViewController.swift; sourceTree = ""; }; C5476B672B303BE800F5FC6E /* MyInfoView2.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyInfoView2.swift; sourceTree = ""; }; C5476B692B304C8200F5FC6E /* ChallengeTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeTitleView.swift; sourceTree = ""; }; - C5476B6B2B304C8900F5FC6E /* ChallengeLevelView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeLevelView.swift; sourceTree = ""; }; + C5476B6B2B304C8900F5FC6E /* ChallengeUserInfoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeUserInfoView.swift; sourceTree = ""; }; + C5476B6D2B30760000F5FC6E /* ChallengeLevelView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeLevelView.swift; sourceTree = ""; }; C547A8B92A17D8D4004D1339 /* KakaoAPIManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KakaoAPIManager.swift; sourceTree = ""; }; C54BC0DA2A2C2D0D00B65439 /* UIColor+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+Extension.swift"; sourceTree = ""; }; C552D5332ABE8CA500933D8A /* AVIRODeleteAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AVIRODeleteAPI.swift; sourceTree = ""; }; @@ -917,7 +919,7 @@ isa = PBXGroup; children = ( C5476B642B303BBB00F5FC6E /* ChallengeTitleView */, - C5476B662B303BD400F5FC6E /* ChallengeLevelView */, + C5476B662B303BD400F5FC6E /* ChallengeUserInfoView */, C5476B652B303BCB00F5FC6E /* MyInfoView */, C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */, ); @@ -947,12 +949,13 @@ path = MyInfoView; sourceTree = ""; }; - C5476B662B303BD400F5FC6E /* ChallengeLevelView */ = { + C5476B662B303BD400F5FC6E /* ChallengeUserInfoView */ = { isa = PBXGroup; children = ( - C5476B6B2B304C8900F5FC6E /* ChallengeLevelView.swift */, + C5476B6B2B304C8900F5FC6E /* ChallengeUserInfoView.swift */, + C5476B6D2B30760000F5FC6E /* ChallengeLevelView.swift */, ); - path = ChallengeLevelView; + path = ChallengeUserInfoView; sourceTree = ""; }; C54BC0D82A2C2CEE00B65439 /* UIButton */ = { @@ -1836,6 +1839,7 @@ C5D93DA32A58718300629C39 /* NextPageButton.swift in Sources */, C50DB7512A9B83550078B501 /* ChangeableAddressViewController.swift in Sources */, C5A989992A959E040021B7C3 /* AVIROBookmark+DTO.swift in Sources */, + C5476B6E2B30760000F5FC6E /* ChallengeLevelView.swift in Sources */, C51000582AB939A200F65C1F /* NoResultLabel.swift in Sources */, C58EC7D02AB1B59100401FF7 /* AVIROEditLocation+DTO.swift in Sources */, C5803F582A88C1990064A853 /* PlaceTopModel.swift in Sources */, @@ -1919,7 +1923,7 @@ C5A201BB2A986F9B00A54381 /* EditMenuPresenter.swift in Sources */, C5C90EBB2AA7F79600AB3668 /* EditTimeChangebleView.swift in Sources */, C5C9619C2A8DB1D80016E2F8 /* MenuTypeLabel.swift in Sources */, - C5476B6C2B304C8900F5FC6E /* ChallengeLevelView.swift in Sources */, + C5476B6C2B304C8900F5FC6E /* ChallengeUserInfoView.swift in Sources */, C5351B7A2A1B439000116D50 /* KakaoCoordinateSearchDTO.swift in Sources */, C50E6F6D2A8E5AAC00703B9E /* ReviewLabel.swift in Sources */, C5C290852A86173F00ED5DCE /* PlaceReviewWriteView.swift in Sources */, diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/Contents.json b/AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/Contents.json new file mode 100644 index 00000000..c2dee85f --- /dev/null +++ b/AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "InfoCircle.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "InfoCircle@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "InfoCircle@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/InfoCircle.png b/AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/InfoCircle.png new file mode 100644 index 0000000000000000000000000000000000000000..5243495fa35fa298edfe08e6ff9f773a0c1a50b5 GIT binary patch literal 519 zcmV+i0{H!jP)_;v(s1lovBYhsr z6;mZ6youf57$@RHYQUM;r6UW(Cg|~l|33Sp$1J3uqVgJt(3dmzY~eF5x5<%p^)|v> z)SZi(40X`sP<&<@5#s_QN=m|a4S^-Z5j}exS-(Zt+e#T$;oPRjICTMRUVLPS@FYGq z-+)%ekvvNWOZ_$2>Eu(kiBzmD78#KnxXpTb^WhtbTbsM@3WdK^TeYb^W=!*{+YkL#o2_~*fmr|m002ov JPDHLkV1g!N+>rnP literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/InfoCircle@2x.png b/AVIRO/App/Assets.xcassets/ImageSet/Assets/InfoCircle.imageset/InfoCircle@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..4e127f478ba90c0c9a684fa3b61c580b6319f428 GIT binary patch literal 943 zcmV;g15o^lP))sjzMJ4R`iMmA`;i|(CbmS6NOf=u2#kD*9w&Gs-_!X%hsBN|rlXI6 z7#(`)Fu@!7ZLihX&ww#KpVHqMDl}ju=IWVtg%D6a+8`f%yY~kQ`tf(-8kq>{DScF( zyI@}$(iDw0gnZDIS9I>t5vDvH(+~WR)}PqZ*(04>)|+#zXiC0_dprkS8Lf%hOeSQ> zrrT^IeOhB8*Th%<)prmdWk}Qh6Sg%|rrRW_r{Oz_BzK(T6_I?{-X@6XgN5@!G2{-D zoRdFZB>os|nwKdKoP}IhO5^YW_swJIh>)PV=7KFjww@%@n&=m1xn1Zn`bHbC0gfa{ z2rivf6;l9>a4y`b$PgQC3%yV^K{wv@ac*#IHPP11tV&kOQ4`F`dT(%U=*{8D*l_|h z10vV3ULB(h@Ty(mhtc*A^?+E`tXHQf3%r|{_l zu^&_@XNU@t{vL_icB^A6O4ua`-9ZtSOee=Mav^gs)`c8fdY_);esV**nBY*-Jd&bm02pg^!zL%Nw}Z zBPgiqX$!M_y0+L*?OGYqiad#phEDh!bXB8XLNHQxCOCExx$gTKg|1>S#xaJwxVpu*T)8t6`}AsJ8AoyA3m!3W zeQe2g7QS+S(Zw!HpKsF0dk>Dj9Emylf?mr!x3#x*BQ7NB0L0(J`LT6DYyuW?FKIZyumv&MIHQ3 z-ewEEZA$lZsvXp$GzX}VSjmD;YZJ@d8nK`RLXB>A?_T^CmT~hQIzti~<25OAaYIwr zjrp+o@;b#q>h;Ag2#cO&<2lK{xarc*!H9U@7_kiB3lA+noirO-K5B?Iz^=`ytq-;`k98~re^Hlu zY~3;1LdeRW)6x?y*cgK|_~YjURkBYsE(2S6;CPza9G;fyY`~pOO|38HM`#;XNjo#Q zwzT-x^5vw~Jh>`(&eh$zXDL|ql(&9DTbbiQITBfNffMf`SMm6*6AQm*8k|@X*6|+v z0qt|=1twjm`{*8#;K+OEMSaum93q$Y@j}M(uk<_oa^yYK@qZ!BP9?U7Ccuost9exDaLa6*M_nZ zv=!Nt@-el6tVAmaG@rR*VT*|+f1fCC>*Q-ets!>$cIy#am?vqYh@Q95%Fjw|&ZNyT zv&B5DEvL>}Hy>-ojI3ZUf{!s)-p)ntOSA>q6N|jZ=HkU!)iU7LTpwzWm9>4Qhs9!O znOYjP9NP{n51hUyW~rL_?dbxk1x?`RI_&w|-&-=lqWi~2y7sc+#t%2L z<=Ct=T)9Uz(s4uBjX6h?7`TtnlcX_KQ&#SGb9wkbeIxoFO+One%|Px&6Pr+E-tgE> z!5qyTLXBQ=BSgzR#DO!sJDw)+fgIT`pmR@qIp?+S8OxaErj>r+tP#1gcV-D!3$NUh zy3`U%HG@@#%oIFkqrh1^wkvLPi?LMuC`3pbevB15T7nb(@(axK3(s<6>oBa|(nF^ar^ArcN zb&~XE4F0Cal-8rk%6OMVhJOsw{q|!Jo@U%u1w=JK`PhDoqkMPkVUh0Lx7!Y(-S%{N zTpOALxpUw(;32~a(hl1}`~S#8db=Xj0So1PzxE$_tRupCY#*j1RDsatM^%YTVZE$L zriXoyrRqakjj1r3J6u-{M_}$Bk(P=Rx>6_Gi;mXLOtQraPhpE6gG>&UvVH}Pw#$ws SEdV0`0000P000>X1^@s6#OZ}&00009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yPLMVoePAM!12VKyD!1fE!qE&_|<@adx+5Az9M0 z0>7mDfBSWIXQl)nJ#Jx+7B(Y8pI&?u4e#0~=x7WGsYN`hr9-jJIi#smIK zkFTIV*kV!)nP!($DN6xu**U^k-m4Slscu;B>QgFKycUz80$354yP$S1JfM!0iCGYe zJ@%2#S9rF`(GL4aIl>R##JU#h)07jL`6m3qC~k+}jjT%639J{#;?6gqGoIF|mXZZfSWQqpBET1nN{FSC~fS#3#=+j2LAqZLG`2 ztYlp_8h;PAv|2g)&z?QE06joC&z$IEnSBL~V>FGz46pG8ky^M+58%#CD*}kd7)yM1 zo$e;$s}AKeM4KplaGhFaC%k3w?}|1b;K({FX?YijmbF~ylV_g~5X+f~d8rVIsVs31 zbg7_2wR_nOshY=B&o7_v|Rn_MM6a5`UXA?_Rw>Bs8L(L0m zFJajl>26~NYk!uZMW&mJZLm|@!4#~&ALa0e=zj3W)N9#RQOL=@9S5J6*#Um>Ov*nJog$<6W?} zmiF4ZFB+n4=rI}4hPd3-A$M=>)736lLU{N?GzBf-&B~=NTwD9@A~rA`Nvv+K4vZ-~ zE`CG#%8r2%)|j#%w0k<0k^)Gz^3)u#I)%hyMx#uxs|4lEDa}NW<M@1|$oMx$gie&H|6fVg?393lL^>oo1K-6l5$8 za(7}_cTVOdki(Mh=i?- zlk5#q22qxKMhAS(__TcxTfwlLX#vw6$2nX9><=f-Sa5pXxvpOKDA{Q#(VuFK4cdeg zYKzNn-QLSw@MKZIlzHC_o!aAABTP-&ek{uioRBoB%1XiUdxWc_u+x@}-SfB%)#bVj z4wbLjrl5AfcwJz_&+18%Y5N1kZ~buC`%Ev2I0t1^xGPQusuA>ArV`t{CT4Y;auEmExiOURus z9vArLEYPX>bI{KJ4x`LXjUVq`rZrAZarDj!H7U&exKVO}U5it+!j`8VOiQKCUCqln zonEC?RpAiZp&?u_aU!S1#qU=n%Qn?r;Wg);qk;wPu~=1>;;hZ*A5->X>q&u>^kh-* zPe~%}pc&B}tVyxaPW%uM?l6Ovi;)|o&$(5g` z)qCFUJmUA^MCg4L76~r#I+w|ThyH3lKI(DlM{AB%hLMw;=Eo$JN(lvN`Q=sYzDvZf zOE;e>%iSa4sT(NNe>?5lvh*6E+xPvwAL(j(iEO>TBcP#s)1{C@cE_SimtD^*KXFX` zb^HaDA9YK9cszFhRHXD$_E(a|g2Ed!c6NTZ%Xq^b-V(y_Qa#>BrSSTt9ZfDRuM5rB z>OcE?|4EGLjDJpN|1img@h6#^d|hoUWVRyGGjpr7vFiFCDA>}T*`#;vZCH5f1W4#W#-b#vv$T#So}&{#-r&> z>Nc6zwZF~;mN)!5y!gqPZw2RW_xsLy#dq_4&u0V1SI!)9Rh2vD-mA-Tz8LKF@Bf$d zx(VAdoP>&8gpKA0aXq&UKO|!RepNYTTGr7c35;X?htGgfY#8aYR7M*Ss?@*S!=>f5-Eo?XnkA}ySA|3$NH z%Qshx7EAx%%f(`N^~;jXGr|4B?-)-VTeH(bV~Tp3}J}=k>Vtv|K`LQxk(kuTI(Z?$M;r($j@gH`;h|Rvy>4 zFps_1lGA)OovVTkE024hZv4O1U4^Ab pC}_b;UA5RZZL?YZCLz#&hD&VnGqX3O<^f9u22WQ%mvv4FO#qcO`fvaM literal 0 HcmV?d00001 diff --git a/AVIRO/Custom/Constants/Enum+.swift b/AVIRO/Custom/Constants/Enum+.swift index 8f426c7d..02aa61a3 100644 --- a/AVIRO/Custom/Constants/Enum+.swift +++ b/AVIRO/Custom/Constants/Enum+.swift @@ -89,8 +89,8 @@ enum TBItem: CaseIterable { ) case .challenge: return ( - UIImage.user1, - UIImage.user2 + UIImage.tropy1, + UIImage.tropy2 ) } } diff --git a/AVIRO/Custom/Constants/UIImage+Extension.swift b/AVIRO/Custom/Constants/UIImage+Extension.swift index 325d77d4..fff875ce 100644 --- a/AVIRO/Custom/Constants/UIImage+Extension.swift +++ b/AVIRO/Custom/Constants/UIImage+Extension.swift @@ -66,6 +66,9 @@ extension UIImage { static let edit1 = UIImage(named: "square1")! static let edit2 = UIImage(named: "square2")! + static let tropy1 = UIImage(named: "Trophy")!.withRenderingMode(.alwaysTemplate).withTintColor(.keywordBlue) + static let tropy2 = UIImage(named: "Trophy")!.withRenderingMode(.alwaysTemplate).withTintColor(.gray2) + static let user1 = UIImage(named: "user1")! static let user2 = UIImage(named: "user2")! @@ -125,4 +128,6 @@ extension UIImage { static let mainSearchStore = UIImage(named: "MainSearchStore")! static let mainSearchStation = UIImage(named: "MainSearchStation")! + + static let infoCircle = UIImage(named: "InfoCircle")! } diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeLevelView/ChallengeLevelView.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeLevelView/ChallengeLevelView.swift deleted file mode 100644 index ea123eb7..00000000 --- a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeLevelView/ChallengeLevelView.swift +++ /dev/null @@ -1,12 +0,0 @@ -// -// ChallengeLevelView.swift -// AVIRO -// -// Created by 전성훈 on 2023/12/18. -// - -import UIKit - -final class ChallengeLevelView: UIView { - -} diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift index 2352a9bc..3270aa62 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift @@ -8,5 +8,89 @@ import UIKit final class ChallengeTitleView: UIView { + private lazy var challengeDateLabel: UILabel = { + let label = UILabel() + + label.textColor = .gray2 + label.font = .pretendard(size: 17, weight: .medium) + + return label + }() + private lazy var challengeTitleLabel: UILabel = { + let label = UILabel() + + label.textColor = .gray0 + label.font = .pretendard(size: 32, weight: .semibold) + + return label + }() + + private lazy var challengeLabel: UILabel = { + let label = UILabel() + + label.text = "챌린지" + label.textColor = .gray0 + label.font = .pretendard(size: 32, weight: .medium) + + return label + }() + + private lazy var challengeInfoButton: UIButton = { + let button = UIButton() + + button.setImage(UIImage.infoCircle, for: .normal) + + return button + }() + + override init(frame: CGRect) { + super.init(frame: frame) + + setupLayout() + setupAttribute() + } + + required init?(coder: NSCoder) { + fatalError() + } + + private func setupLayout() { + [ + challengeDateLabel, + challengeTitleLabel, + challengeLabel, + challengeInfoButton + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.addSubview($0) + } + + NSLayoutConstraint.activate([ + challengeDateLabel.centerXAnchor.constraint(equalTo: self.centerXAnchor), + challengeDateLabel.topAnchor.constraint(equalTo: self.topAnchor), + + challengeTitleLabel.centerXAnchor.constraint(equalTo: self.centerXAnchor), + challengeTitleLabel.topAnchor.constraint(equalTo: challengeDateLabel.bottomAnchor, constant: 8), + + challengeLabel.centerXAnchor.constraint(equalTo: self.centerXAnchor), + challengeLabel.topAnchor.constraint(equalTo: challengeTitleLabel.bottomAnchor, constant: 2), + + challengeInfoButton.centerYAnchor.constraint(equalTo: challengeLabel.centerYAnchor), + challengeInfoButton.leadingAnchor.constraint(equalTo: challengeLabel.trailingAnchor, constant: 5) + ]) + } + + private func setupAttribute() { + self.backgroundColor = .gray7 + } + + // TODO: DataBinding 설계 시 삭제 예정 + func updateDate(with date: String) { + challengeDateLabel.text = date + } + + func updateTitle(with title: String) { + challengeTitleLabel.text = title + } } diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeLevelView.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeLevelView.swift new file mode 100644 index 00000000..c3e23e18 --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeLevelView.swift @@ -0,0 +1,140 @@ +// +// ChallengeLevelView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/18. +// + +import UIKit + +typealias LevelPoint = (now: String, gool: String) + +final class ChallengeLevelView: UIView { + private lazy var lankLabel: UILabel = { + let label = UILabel() + + label.textColor = .gray0 + label.font = .pretendard(size: 17, weight: .semibold) + label.numberOfLines = 1 + + return label + }() + + private lazy var levelLabel: UILabel = { + let label = UILabel() + + label.textColor = .gray2 + label.font = .pretendard(size: 15, weight: .medium) + label.numberOfLines = 1 + + return label + }() + + private lazy var levelProgress: UIProgressView = { + let view = UIProgressView(progressViewStyle: .bar) + + view.trackTintColor = .gray5 + view.progressTintColor = .keywordBlue + + return view + }() + + private lazy var levelPointLabel: UILabel = { + let label = UILabel() + + label.textAlignment = .right + label.numberOfLines = 1 + + return label + }() + + override init(frame: CGRect) { + super.init(frame: frame) + + setupLayout() + setupAttribute() + } + + required init?(coder: NSCoder) { + fatalError() + } + + private func setupLayout() { + [ + lankLabel, + levelLabel, + levelProgress, + levelPointLabel + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.addSubview($0) + } + + NSLayoutConstraint.activate([ + lankLabel.centerXAnchor.constraint(equalTo: self.centerXAnchor), + lankLabel.topAnchor.constraint(equalTo: self.topAnchor, constant: 100), + + levelLabel.centerXAnchor.constraint(equalTo: self.centerXAnchor), + levelLabel.topAnchor.constraint(equalTo: lankLabel.bottomAnchor, constant: 6), + + levelProgress.topAnchor.constraint(equalTo: levelLabel.bottomAnchor, constant: 26), + levelProgress.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 16), + levelProgress.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -16), + + levelPointLabel.topAnchor.constraint(equalTo: levelProgress.bottomAnchor, constant: 8), + levelPointLabel.trailingAnchor.constraint(equalTo: levelProgress.trailingAnchor) + ]) + } + + private func setupAttribute() { + self.backgroundColor = .gray6 + self.layer.cornerRadius = 12 + } + + func updateLankLabel(with lank: String) { + lankLabel.text = lank + } + + func updateLevelLabel(with level: String) { + levelLabel.text = level + } + + func updateLevelPoint(with levelPoint: LevelPoint) { + let coloredRange = NSRange(location: 0, length: levelPoint.now.count) + + let coloredAttributes = [ + NSAttributedString.Key.foregroundColor: UIColor.keywordBlue, + NSAttributedString.Key.font: UIFont.pretendard(size: 16, weight: .medium) + ] + + let grayAttributes = [ + NSAttributedString.Key.foregroundColor: UIColor.gray3, + NSAttributedString.Key.font: UIFont.pretendard(size: 16, weight: .medium) + ] + + let attributedText = NSMutableAttributedString( + string: [ + levelPoint.now, + "/", + levelPoint.gool, + "P" + ].joined() + ) + + attributedText.addAttributes( + coloredAttributes, + range: coloredRange + ) + attributedText.addAttributes( + grayAttributes, + range: NSRange( + location: levelPoint.now.count, + length: attributedText.length - levelPoint.now.count + ) + ) + + levelPointLabel.attributedText = attributedText + + levelProgress.progress = Float(Double(levelPoint.now)!/Double(levelPoint.gool)!) + } +} diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeUserInfoView.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeUserInfoView.swift new file mode 100644 index 00000000..fe3f2cfd --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeUserInfoView.swift @@ -0,0 +1,86 @@ +// +// ChallengeUserInfoView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/18. +// + +import UIKit + +final class ChallengeUserInfoView: UIView { + private lazy var nameLabel: UILabel = { + let label = UILabel() + + label.textColor = .gray0 + label.font = .pretendard(size: 20, weight: .semibold) + label.numberOfLines = 1 + + return label + }() + + private lazy var treeImageView: UIImageView = { + let imageView = UIImageView() + + imageView.layer.cornerRadius = 150/2 + imageView.backgroundColor = .gray7 + + return imageView + }() + + private lazy var levelView: ChallengeLevelView = { + let view = ChallengeLevelView() + + return view + }() + + override init(frame: CGRect) { + super.init(frame: frame) + + setupLayout() + setupAttribute() + test() + } + + required init?(coder: NSCoder) { + fatalError() + } + + private func setupLayout() { + [ + nameLabel, + levelView, + treeImageView + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.addSubview($0) + } + + NSLayoutConstraint.activate([ + nameLabel.topAnchor.constraint(equalTo: self.topAnchor), + nameLabel.centerXAnchor.constraint(equalTo: self.centerXAnchor), + + treeImageView.topAnchor.constraint(equalTo: nameLabel.bottomAnchor, constant: 24), + treeImageView.centerXAnchor.constraint(equalTo: self.centerXAnchor), + treeImageView.widthAnchor.constraint(equalToConstant: 150), + treeImageView.heightAnchor.constraint(equalToConstant: 150), + + levelView.topAnchor.constraint(equalTo: treeImageView.topAnchor, constant: 84), + levelView.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 15), + levelView.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -15), + levelView.bottomAnchor.constraint(equalTo: self.bottomAnchor) + ]) + } + + private func setupAttribute() { + self.backgroundColor = .gray7 + } + + // TODO: Binding 작업 시 수정 + private func test() { + nameLabel.text = "천재강쥐또또님의 나무" + + levelView.updateLankLabel(with: "참여중인 300명 중 20등이에요!") + levelView.updateLevelLabel(with: "레벨 1을 달성했어요!") + levelView.updateLevelPoint(with: LevelPoint("30", "90")) + } +} diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift index ca1462e3..baf2d456 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift @@ -21,8 +21,8 @@ final class ChallengeViewController: UIViewController { return view }() - private lazy var challengeLevelView: ChallengeLevelView = { - let view = ChallengeLevelView() + private lazy var challengeUserInfoView: ChallengeUserInfoView = { + let view = ChallengeUserInfoView() return view }() @@ -62,7 +62,7 @@ final class ChallengeViewController: UIViewController { [ challengeTitleView, - challengeLevelView, + challengeUserInfoView, myInfoView ].forEach { $0.translatesAutoresizingMaskIntoConstraints = false @@ -81,19 +81,19 @@ final class ChallengeViewController: UIViewController { equalToConstant: 107 ), - challengeLevelView.topAnchor.constraint( + challengeUserInfoView.topAnchor.constraint( equalTo: challengeTitleView.bottomAnchor, constant: 16 ), - challengeLevelView.widthAnchor.constraint( + challengeUserInfoView.widthAnchor.constraint( equalTo: scrollView.frameLayoutGuide.widthAnchor ), - challengeLevelView.heightAnchor.constraint( + challengeUserInfoView.heightAnchor.constraint( equalToConstant: 341 ), myInfoView.topAnchor.constraint( - equalTo: challengeLevelView.bottomAnchor, + equalTo: challengeUserInfoView.bottomAnchor, constant: 20 ), myInfoView.widthAnchor.constraint( @@ -101,7 +101,8 @@ final class ChallengeViewController: UIViewController { ), myInfoView.heightAnchor.constraint(equalToConstant: 81), myInfoView.bottomAnchor.constraint( - equalTo: scrollView.contentLayoutGuide.bottomAnchor + equalTo: scrollView.contentLayoutGuide.bottomAnchor, + constant: -32 ) ]) } @@ -117,12 +118,20 @@ final class ChallengeViewController: UIViewController { action: nil ) rightBarButton.tintColor = .gray1 + + let navBarAppearance = UINavigationBarAppearance() + navBarAppearance.shadowColor = nil + navBarAppearance.backgroundColor = .gray7 + self.navigationItem.standardAppearance = navBarAppearance self.navigationItem.rightBarButtonItem = rightBarButton } private func dataBinding() { // TODO: ViewModel 생성 후 변경 예정 + challengeTitleView.updateDate(with: "1월 1일 ~ 1월 31일") + challengeTitleView.updateTitle(with: "1월 '비거뉴어리'") + myInfoView.updateMyPlace("2") myInfoView.updateMyReview("3") myInfoView.updateMyStar("4") diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift index ae860719..0c9c395b 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift @@ -196,7 +196,7 @@ final class MyInfoView2: UIView { self.backgroundColor = .gray7 } - // TODO: DataBinding때 삭제 예정 + // TODO: DataBinding 설계 시 삭제 예정 func updateMyPlace(_ place: String) { myPlaceButton.setTitle("\(place)개", for: .normal) } From 8b2ff4c36cd5fae368d800cb00c6e33b54fbed58 Mon Sep 17 00:00:00 2001 From: Jeon Seoung Hun Date: Tue, 19 Dec 2023 14:30:18 +0900 Subject: [PATCH 04/18] =?UTF-8?q?[Feat]:=20Setting=20=EA=B8=B0=EB=8A=A5=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AVIRO.xcodeproj/project.pbxproj | 94 +++--- .../Presenter/Home/HomeViewPresenter.swift | 2 +- .../ViewController/Cells}/SettingCell.swift | 0 .../LicenseDetailViewController.swift | 52 ++++ .../LicenseView/LicensesViewController.swift | 111 +++++++ .../MyPageViewController.swift | 276 ++++++++++++------ .../NickNameChangebleViewController.swift | 0 .../ViewModel}/MyPageViewPresenter.swift | 85 +++--- .../NickNameChangeblePresenter.swift | 0 .../ChallengeViewController.swift | 13 +- .../{MyInfoView2.swift => MyInfoView.swift} | 2 +- .../Enroll/EnrollPlaceViewController.swift | 7 + .../TabBar/MyPage/SubView/MyInfoView.swift | 265 ----------------- .../MyPage/SubView/OtherActionsView.swift | 166 ----------- Settings.bundle/Root.plist | 19 ++ ...om.mono0926.LicensePlist.latest_result.txt | 69 +++++ .../com.mono0926.LicensePlist.plist | 119 ++++++++ .../AmplitudeSwift.plist | 38 +++ .../KeychainSwift.plist | 38 +++ .../NMapsGeometry.plist | 19 ++ .../com.mono0926.LicensePlist/NMapsMap.plist | 19 ++ .../com.mono0926.LicensePlist/Realm.plist | 194 ++++++++++++ .../RealmSwift.plist | 194 ++++++++++++ .../RxBlocking.plist | 26 ++ .../com.mono0926.LicensePlist/RxCocoa.plist | 26 ++ .../com.mono0926.LicensePlist/RxRelay.plist | 26 ++ .../com.mono0926.LicensePlist/RxSwift.plist | 26 ++ .../com.mono0926.LicensePlist/RxTest.plist | 26 ++ .../Toast-Swift.plist | 37 +++ .../lottie-ios.plist | 218 ++++++++++++++ Settings.bundle/en.lproj/Root.strings | Bin 0 -> 546 bytes 31 files changed, 1568 insertions(+), 599 deletions(-) rename AVIRO/Scene/View/TabBar/{MyPage/SubView => Challenge/Setting/ViewController/Cells}/SettingCell.swift (100%) create mode 100644 AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicenseDetailViewController.swift create mode 100644 AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicensesViewController.swift rename AVIRO/Scene/View/TabBar/{MyPage => Challenge/Setting/ViewController}/MyPageViewController.swift (50%) rename AVIRO/Scene/View/TabBar/{MyPage => Challenge/Setting/ViewController}/NickNameChangebleView/NickNameChangebleViewController.swift (100%) rename AVIRO/Scene/{Presenter/Mypage => View/TabBar/Challenge/Setting/ViewModel}/MyPageViewPresenter.swift (65%) rename AVIRO/Scene/{Presenter/Mypage => View/TabBar/Challenge/Setting/ViewModel}/NickNameChangeblePresenter.swift (100%) rename AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/{MyInfoView2.swift => MyInfoView.swift} (99%) delete mode 100644 AVIRO/Scene/View/TabBar/MyPage/SubView/MyInfoView.swift delete mode 100644 AVIRO/Scene/View/TabBar/MyPage/SubView/OtherActionsView.swift create mode 100644 Settings.bundle/Root.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist.latest_result.txt create mode 100644 Settings.bundle/com.mono0926.LicensePlist.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/AmplitudeSwift.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/KeychainSwift.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/NMapsGeometry.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/NMapsMap.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/Realm.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/RealmSwift.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/RxBlocking.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/RxCocoa.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/RxRelay.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/RxSwift.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/RxTest.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/Toast-Swift.plist create mode 100644 Settings.bundle/com.mono0926.LicensePlist/lottie-ios.plist create mode 100644 Settings.bundle/en.lproj/Root.strings diff --git a/AVIRO.xcodeproj/project.pbxproj b/AVIRO.xcodeproj/project.pbxproj index 3beb5855..38a06f94 100644 --- a/AVIRO.xcodeproj/project.pbxproj +++ b/AVIRO.xcodeproj/project.pbxproj @@ -99,10 +99,13 @@ C54657882ABF2DBA003A0BCB /* API.plist in Resources */ = {isa = PBXBuildFile; fileRef = C54657872ABF2DBA003A0BCB /* API.plist */; }; C5476B4D2B2F1F1F00F5FC6E /* AVIROTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B4C2B2F1F1F00F5FC6E /* AVIROTests.swift */; }; C5476B612B3028FA00F5FC6E /* ChallengeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */; }; - C5476B682B303BE800F5FC6E /* MyInfoView2.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B672B303BE800F5FC6E /* MyInfoView2.swift */; }; + C5476B682B303BE800F5FC6E /* MyInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B672B303BE800F5FC6E /* MyInfoView.swift */; }; C5476B6A2B304C8200F5FC6E /* ChallengeTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B692B304C8200F5FC6E /* ChallengeTitleView.swift */; }; C5476B6C2B304C8900F5FC6E /* ChallengeUserInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B6B2B304C8900F5FC6E /* ChallengeUserInfoView.swift */; }; C5476B6E2B30760000F5FC6E /* ChallengeLevelView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B6D2B30760000F5FC6E /* ChallengeLevelView.swift */; }; + C5476B762B314D4900F5FC6E /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C5476B752B314D4900F5FC6E /* Settings.bundle */; }; + C5476B792B314F6F00F5FC6E /* LicensesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B782B314F6F00F5FC6E /* LicensesViewController.swift */; }; + C5476B7B2B31516000F5FC6E /* LicenseDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B7A2B31516000F5FC6E /* LicenseDetailViewController.swift */; }; C547A8BA2A17D8D4004D1339 /* KakaoAPIManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C547A8B92A17D8D4004D1339 /* KakaoAPIManager.swift */; }; C54BC0DB2A2C2D0D00B65439 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C54BC0DA2A2C2D0D00B65439 /* UIColor+Extension.swift */; }; C552D5342ABE8CA500933D8A /* AVIRODeleteAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C552D5332ABE8CA500933D8A /* AVIRODeleteAPI.swift */; }; @@ -181,8 +184,6 @@ C5C9619F2A8DEB230016E2F8 /* ReviewWriteButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5C9619E2A8DEB230016E2F8 /* ReviewWriteButton.swift */; }; C5D36D2E2A76031E003328E8 /* Double+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D36D2D2A76031E003328E8 /* Double+Extension.swift */; }; C5D8E8632A3DEC3900D88A43 /* String+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D8E8622A3DEC3900D88A43 /* String+Extension.swift */; }; - C5D8EB262A9D790800EF629F /* MyInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D8EB252A9D790800EF629F /* MyInfoView.swift */; }; - C5D8EB282A9D797000EF629F /* OtherActionsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D8EB272A9D797000EF629F /* OtherActionsView.swift */; }; C5D93D9F2A581EC800629C39 /* FirstRegistrationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D93D9E2A581EC800629C39 /* FirstRegistrationViewController.swift */; }; C5D93DA12A581F5A00629C39 /* FirstRegistrationPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D93DA02A581F5A00629C39 /* FirstRegistrationPresenter.swift */; }; C5D93DA32A58718300629C39 /* NextPageButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D93DA22A58718300629C39 /* NextPageButton.swift */; }; @@ -326,10 +327,13 @@ C5476B4A2B2F1F1F00F5FC6E /* AVIROTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AVIROTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; C5476B4C2B2F1F1F00F5FC6E /* AVIROTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AVIROTests.swift; sourceTree = ""; }; C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeViewController.swift; sourceTree = ""; }; - C5476B672B303BE800F5FC6E /* MyInfoView2.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyInfoView2.swift; sourceTree = ""; }; + C5476B672B303BE800F5FC6E /* MyInfoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyInfoView.swift; sourceTree = ""; }; C5476B692B304C8200F5FC6E /* ChallengeTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeTitleView.swift; sourceTree = ""; }; C5476B6B2B304C8900F5FC6E /* ChallengeUserInfoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeUserInfoView.swift; sourceTree = ""; }; C5476B6D2B30760000F5FC6E /* ChallengeLevelView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeLevelView.swift; sourceTree = ""; }; + C5476B752B314D4900F5FC6E /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = ""; }; + C5476B782B314F6F00F5FC6E /* LicensesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LicensesViewController.swift; sourceTree = ""; }; + C5476B7A2B31516000F5FC6E /* LicenseDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LicenseDetailViewController.swift; sourceTree = ""; }; C547A8B92A17D8D4004D1339 /* KakaoAPIManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KakaoAPIManager.swift; sourceTree = ""; }; C54BC0DA2A2C2D0D00B65439 /* UIColor+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+Extension.swift"; sourceTree = ""; }; C552D5332ABE8CA500933D8A /* AVIRODeleteAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AVIRODeleteAPI.swift; sourceTree = ""; }; @@ -409,8 +413,6 @@ C5C9619E2A8DEB230016E2F8 /* ReviewWriteButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewWriteButton.swift; sourceTree = ""; }; C5D36D2D2A76031E003328E8 /* Double+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Double+Extension.swift"; sourceTree = ""; }; C5D8E8622A3DEC3900D88A43 /* String+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Extension.swift"; sourceTree = ""; }; - C5D8EB252A9D790800EF629F /* MyInfoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyInfoView.swift; sourceTree = ""; }; - C5D8EB272A9D797000EF629F /* OtherActionsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OtherActionsView.swift; sourceTree = ""; }; C5D93D9E2A581EC800629C39 /* FirstRegistrationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FirstRegistrationViewController.swift; sourceTree = ""; }; C5D93DA02A581F5A00629C39 /* FirstRegistrationPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FirstRegistrationPresenter.swift; sourceTree = ""; }; C5D93DA22A58718300629C39 /* NextPageButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NextPageButton.swift; sourceTree = ""; }; @@ -800,6 +802,7 @@ C52FA3362A175B20005E70DC = { isa = PBXGroup; children = ( + C5476B752B314D4900F5FC6E /* Settings.bundle */, C5351B4A2A1919F700116D50 /* .swiftlint.yml */, C52FA3412A175B20005E70DC /* AVIRO */, C5476B4B2B2F1F1F00F5FC6E /* AVIROTests */, @@ -944,7 +947,7 @@ C5476B652B303BCB00F5FC6E /* MyInfoView */ = { isa = PBXGroup; children = ( - C5476B672B303BE800F5FC6E /* MyInfoView2.swift */, + C5476B672B303BE800F5FC6E /* MyInfoView.swift */, ); path = MyInfoView; sourceTree = ""; @@ -958,6 +961,52 @@ path = ChallengeUserInfoView; sourceTree = ""; }; + C5476B6F2B31459C00F5FC6E /* Setting */ = { + isa = PBXGroup; + children = ( + C5476B702B3145A300F5FC6E /* ViewModel */, + C5476B712B3145A700F5FC6E /* ViewController */, + ); + path = Setting; + sourceTree = ""; + }; + C5476B702B3145A300F5FC6E /* ViewModel */ = { + isa = PBXGroup; + children = ( + C593B64E2A4C490600D224CE /* MyPageViewPresenter.swift */, + C513854B2AAB3B52001AB827 /* NickNameChangeblePresenter.swift */, + ); + path = ViewModel; + sourceTree = ""; + }; + C5476B712B3145A700F5FC6E /* ViewController */ = { + isa = PBXGroup; + children = ( + C5EB50E92A1C705900B29CC1 /* MyPageViewController.swift */, + C5476B772B314F5400F5FC6E /* LicenseView */, + C5476B722B3145CF00F5FC6E /* Cells */, + C51385482AAB3AD8001AB827 /* NickNameChangebleView */, + ); + path = ViewController; + sourceTree = ""; + }; + C5476B722B3145CF00F5FC6E /* Cells */ = { + isa = PBXGroup; + children = ( + C51385462AAAF3BB001AB827 /* SettingCell.swift */, + ); + path = Cells; + sourceTree = ""; + }; + C5476B772B314F5400F5FC6E /* LicenseView */ = { + isa = PBXGroup; + children = ( + C5476B782B314F6F00F5FC6E /* LicensesViewController.swift */, + C5476B7A2B31516000F5FC6E /* LicenseDetailViewController.swift */, + ); + path = LicenseView; + sourceTree = ""; + }; C54BC0D82A2C2CEE00B65439 /* UIButton */ = { isa = PBXGroup; children = ( @@ -1000,7 +1049,6 @@ C5EB50ED2A1C76FC00B29CC1 /* Home */, C5351B722A1B369000116D50 /* Enroll */, C5AAEB472B2F044000507C73 /* Challenge */, - C5EB50F02A1C772300B29CC1 /* MyPage */, ); path = TabBar; sourceTree = ""; @@ -1142,8 +1190,6 @@ C593B64D2A4C48EE00D224CE /* Mypage */ = { isa = PBXGroup; children = ( - C593B64E2A4C490600D224CE /* MyPageViewPresenter.swift */, - C513854B2AAB3B52001AB827 /* NickNameChangeblePresenter.swift */, ); path = Mypage; sourceTree = ""; @@ -1225,6 +1271,7 @@ children = ( C5476B632B3036E300F5FC6E /* ViewModel */, C5476B622B3036DA00F5FC6E /* ViewController */, + C5476B6F2B31459C00F5FC6E /* Setting */, ); path = Challenge; sourceTree = ""; @@ -1353,16 +1400,6 @@ path = Constants; sourceTree = ""; }; - C5D8EB242A9D78F900EF629F /* SubView */ = { - isa = PBXGroup; - children = ( - C5D8EB252A9D790800EF629F /* MyInfoView.swift */, - C5D8EB272A9D797000EF629F /* OtherActionsView.swift */, - C51385462AAAF3BB001AB827 /* SettingCell.swift */, - ); - path = SubView; - sourceTree = ""; - }; C5D93D962A56C6ED00629C39 /* Registration */ = { isa = PBXGroup; children = ( @@ -1435,16 +1472,6 @@ path = Home; sourceTree = ""; }; - C5EB50F02A1C772300B29CC1 /* MyPage */ = { - isa = PBXGroup; - children = ( - C5EB50E92A1C705900B29CC1 /* MyPageViewController.swift */, - C5D8EB242A9D78F900EF629F /* SubView */, - C51385482AAB3AD8001AB827 /* NickNameChangebleView */, - ); - path = MyPage; - sourceTree = ""; - }; C5EB51022A20927400B29CC1 /* HomeViewModel */ = { isa = PBXGroup; children = ( @@ -1669,6 +1696,7 @@ C51000512AB5F76600F65C1F /* Pretendard-ExtraBold.otf in Resources */, C51000522AB5F76600F65C1F /* Pretendard-Regular.otf in Resources */, C510004D2AB5F76600F65C1F /* Pretendard-ExtraLight.otf in Resources */, + C5476B762B314D4900F5FC6E /* Settings.bundle in Resources */, C510004B2AB5F76600F65C1F /* Pretendard-Thin.otf in Resources */, C51000502AB5F76600F65C1F /* Pretendard-Black.otf in Resources */, C51000532AB5F76600F65C1F /* Pretendard-SemiBold.otf in Resources */, @@ -1776,6 +1804,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + C5476B792B314F6F00F5FC6E /* LicensesViewController.swift in Sources */, C5C2907E2A85E69B00ED5DCE /* UnderlineSegmentedControl.swift in Sources */, C5A3C3C42A39658A0050AB3D /* LoginViewController.swift in Sources */, C58EC7CC2AB171C000401FF7 /* UIButton+Extension.swift in Sources */, @@ -1814,6 +1843,7 @@ C5C290812A8616E500ED5DCE /* PlaceInfoView.swift in Sources */, C5B071E12A59454300AE709A /* BottomCell.swift in Sources */, C51000382AB5F3BD00F65C1F /* UIFont+Extension.swift in Sources */, + C5476B7B2B31516000F5FC6E /* LicenseDetailViewController.swift in Sources */, C5FA0EAA2A94DB3E004AD8B4 /* ReportReviewViewController.swift in Sources */, C5C90EBD2AA85E7000AB3668 /* AVIROOperationHours+DTO.swift in Sources */, C5F33DFD2ADED19000A29FB9 /* SystemUtility.swift in Sources */, @@ -1826,7 +1856,6 @@ C5351B4D2A19223300116D50 /* KakaoMapRequestAPI.swift in Sources */, C520662F2A7E485B0038ECCD /* MatchedPlaceModel.swift in Sources */, C5A201B72A986EDF00A54381 /* EditMenuViewController.swift in Sources */, - C5D8EB262A9D790800EF629F /* MyInfoView.swift in Sources */, C5A201C92A98A70800A54381 /* EditHomePageView.swift in Sources */, C5166E492A9305A9003495AA /* AVIROPlaceSummary+DTO.swift in Sources */, C5A9899E2A95A7940021B7C3 /* BookmarkManager.swift in Sources */, @@ -1850,7 +1879,7 @@ C50F6AF32A68FD0A00E942F5 /* EnrollPlaceViewController.swift in Sources */, C5732C7E2A41D42700CDC499 /* RequestTableFieldModel.swift in Sources */, C5C961982A8DA5880016E2F8 /* EditInfoButton.swift in Sources */, - C5476B682B303BE800F5FC6E /* MyInfoView2.swift in Sources */, + C5476B682B303BE800F5FC6E /* MyInfoView.swift in Sources */, C5A989972A959D920021B7C3 /* AVIROUpdateBookmark+DTO.swift in Sources */, C5E7B7A92A4D3CDF00CA2090 /* AVIROUser+DTO.swift in Sources */, C5A201C32A98A61F00A54381 /* EditLocationBottomView.swift in Sources */, @@ -1887,7 +1916,6 @@ C520662D2A7CE1CC0038ECCD /* SearchHistoryManager.swift in Sources */, C51AED232A8B7B000015FBC2 /* UIViewController+Extension.swift in Sources */, C51000632ABAE6A200F65C1F /* MenuModel.swift in Sources */, - C5D8EB282A9D797000EF629F /* OtherActionsView.swift in Sources */, C5C961952A8D9EED0016E2F8 /* PlaceReviewTableViewCell.swift in Sources */, C5A3C3C62A39659B0050AB3D /* LoginViewPresenter.swift in Sources */, C51385452AAAE493001AB827 /* MyDataModel.swift in Sources */, diff --git a/AVIRO/Scene/Presenter/Home/HomeViewPresenter.swift b/AVIRO/Scene/Presenter/Home/HomeViewPresenter.swift index 386c6e8f..22f0d90b 100644 --- a/AVIRO/Scene/Presenter/Home/HomeViewPresenter.swift +++ b/AVIRO/Scene/Presenter/Home/HomeViewPresenter.swift @@ -225,7 +225,7 @@ final class HomeViewPresenter: NSObject { switch result { case .success(let mapDatas): self?.saveMarkers(mapDatas) - case .failure(_): + case .failure: self?.viewController?.showErrorAlertWhenLoadMarker() } } diff --git a/AVIRO/Scene/View/TabBar/MyPage/SubView/SettingCell.swift b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/Cells/SettingCell.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/MyPage/SubView/SettingCell.swift rename to AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/Cells/SettingCell.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicenseDetailViewController.swift b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicenseDetailViewController.swift new file mode 100644 index 00000000..5be7bc40 --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicenseDetailViewController.swift @@ -0,0 +1,52 @@ +// +// LicenseDetailViewController.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/19. +// + +import UIKit + +final class LicenseDetailViewController: UIViewController { + private lazy var textView: UITextView = { + let textView = UITextView() + + textView.isEditable = false + textView.font = .pretendard(size: 14, weight: .medium) + textView.textColor = .gray0 + textView.backgroundColor = .gray6 + textView.layer.cornerRadius = 10 + + return textView + }() + + override func viewDidLoad() { + super.viewDidLoad() + + setupLayout() + setupAttribute() + } + + private func setupLayout() { + + textView.translatesAutoresizingMaskIntoConstraints = false + view.addSubview(textView) + + NSLayoutConstraint.activate([ + textView.topAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.topAnchor, constant: 16), + textView.leadingAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.leadingAnchor, constant: 16), + textView.trailingAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.trailingAnchor, constant: -16), + textView.bottomAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.bottomAnchor, constant: -16) + ]) + } + + private func setupAttribute() { + self.view.backgroundColor = .gray7 + self.setupBack() + } + + func loadLicenseText(with body: String, title: String) { + textView.text = body + self.navigationItem.title = title + } +} diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicensesViewController.swift b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicensesViewController.swift new file mode 100644 index 00000000..b51fc86e --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicensesViewController.swift @@ -0,0 +1,111 @@ +// +// LicensesViewController.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/19. +// + +import UIKit + +final class LicensesViewController: UITableViewController { + + var licenses: [String] = [] + + override func viewDidLoad() { + super.viewDidLoad() + + self.navigationItem.title = "오픈소스 라이선스" + self.setupBack() + + tableView = UITableView(frame: self.view.bounds, style: .insetGrouped) + tableView.register(UITableViewCell.self, forCellReuseIdentifier: "LicenseCell") + + loadLicensesFromPlist() + } + + func loadLicensesFromPlist() { + if let settingsBundle = Bundle.main.path(forResource: "Settings", ofType: "bundle"), + let settings = NSDictionary( + contentsOfFile: settingsBundle + "/com.mono0926.LicensePlist.plist" + ) as? [String: Any], + let licenseItems = settings["PreferenceSpecifiers"] as? [[String: Any]] { + for item in licenseItems { + if let title = item["Title"] as? String, + title != "Licenses" { + licenses.append(title) + } + } + tableView.reloadData() + } + } + + override func numberOfSections(in tableView: UITableView) -> Int { + return 1 + } + + override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + return licenses.count + } + + override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + let cell = tableView.dequeueReusableCell(withIdentifier: "LicenseCell", for: indexPath) + cell.textLabel?.text = licenses[indexPath.row] + cell.selectionStyle = .none + + return cell + } + + override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { + tableView.deselectRow(at: indexPath, animated: true) + + let licenseName = licenses[indexPath.row] + + if let licenseBodyText = readLicenseDetails(fromPlist: licenseName) { + let detailViewController = LicenseDetailViewController() + detailViewController.loadLicenseText( + with: licenseBodyText, + title: licenseName + ) + navigationController?.pushViewController(detailViewController, animated: true) + } + + } + + private func readLicenseDetails(fromPlist plistName: String) -> String? { + // Settings.bundle의 URL을 구합니다. + guard let settingsBundleURL = Bundle.main.url(forResource: "Settings", withExtension: "bundle") else { + print("Unable to find Settings.bundle in the main bundle") + return nil + } + + // com.mono0926.LicensePlist 폴더 내의 plist 파일의 전체 경로를 구합니다. + let licensePlistFolderPath = settingsBundleURL.appendingPathComponent("com.mono0926.LicensePlist") + let fullPlistPath = licensePlistFolderPath.appendingPathComponent("\(plistName).plist") + + // plist 파일에서 데이터를 읽어옵니다. + guard let plistData = try? Data(contentsOf: fullPlistPath) else { + print("Unable to read plist data from \(fullPlistPath)") + return nil + } + + // PropertyListSerialization을 사용하여 plist 데이터를 딕셔너리로 변환합니다. + do { + if let plistContent = try PropertyListSerialization.propertyList( + from: plistData, + options: [], + format: nil + ) as? [String: Any], + let preferenceSpecifiers = plistContent["PreferenceSpecifiers"] as? [[String: Any]] { + for item in preferenceSpecifiers { + if let footerText = item["FooterText"] as? String { + return footerText + } + } + } + } catch { + print("Error serializing plist: \(error)") + } + + return nil + } +} diff --git a/AVIRO/Scene/View/TabBar/MyPage/MyPageViewController.swift b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift similarity index 50% rename from AVIRO/Scene/View/TabBar/MyPage/MyPageViewController.swift rename to AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift index c91f4145..9da00faa 100644 --- a/AVIRO/Scene/View/TabBar/MyPage/MyPageViewController.swift +++ b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift @@ -8,7 +8,7 @@ import UIKit private enum Text: String { - case title = "마이페이지" + case title = "설정" case cancel = "취소" @@ -21,56 +21,60 @@ private enum Text: String { case error = "에러" } -final class MyPageViewController: UIViewController { - private lazy var presenter = MyPageViewPresenter(viewController: self) - - private lazy var myInfoView: MyInfoView = { - let view = MyInfoView() - - view.editNickNameTapped = { [weak self] in - self?.whenTappedEditNickName() - } - - return view - }() +enum SettingsSection: Int, CaseIterable { + case setting + case information + case account - private lazy var otherActionsView: OtherActionsView = { - let view = OtherActionsView() - - view.afterTappedCell = { [weak self] settingValue in - switch settingValue { - case .termsOfService: - self?.whenTappedTermsOfService() - case .privacyPolicy: - self?.whenTappedPrivacyPolicy() - case .locationPolicy: - self?.whenTappedLocationPlicy() - case .inquiries: - self?.whenTappedInquiries() - case .thanksTo: - self?.whenTappedThanksTo() - case .logout: - self?.whenTappedLogOut() - default: - break - } - } - - view.withdrawaButtonTapped = { [weak self] in - self?.whenTappedWithdrawal() + var rows: [SettingsRow] { + switch self { + case .setting: + return [ + .editNickname, + .inquiries, + .instagram + ] + case .information: + return [ + .termsOfService, + .privacyPolicy, + .locationPolicy, + .openSorce, + .thanksTo + ] + case .account: + return [ + .logout, + .versionInfo + ] } - - return view - }() + } +} + +enum SettingsRow: String { + case editNickname = "닉네임 수정하기" + case inquiries = "문의사항" + case instagram = "인스타그램" - private lazy var scrollView = UIScrollView() + case termsOfService = "서비스 이용약관" + case privacyPolicy = "개인정보 수집 및 이용" + case locationPolicy = "위치정보 수집 및 이용" + case openSorce = "오픈소스 라이선스" + case thanksTo = "감사한분들" + + case logout = "로그아웃" + case versionInfo = "버전 정보" +} + +final class MyPageViewController: UIViewController { + private lazy var presenter = MyPageViewPresenter(viewController: self) private lazy var indicatorView: UIActivityIndicatorView = { let indicatorView = UIActivityIndicatorView() indicatorView.style = .large indicatorView.startAnimating() - indicatorView.isHidden = false + indicatorView.isHidden = true indicatorView.color = .gray0 return indicatorView @@ -81,10 +85,27 @@ final class MyPageViewController: UIViewController { let view = UIView() view.backgroundColor = .gray6.withAlphaComponent(0.3) view.frame = self.view.bounds + view.isHidden = true return view }() + private lazy var settingTableView: UITableView = { + let tableView = UITableView(frame: .zero, style: .grouped) + + tableView.register( + SettingCell.self, + forCellReuseIdentifier: SettingCell.identifier + ) + tableView.delegate = self + tableView.dataSource = self + + tableView.backgroundColor = .gray6 + tableView.rowHeight = 50 + + return tableView + }() + override func viewDidLoad() { super.viewDidLoad() @@ -101,67 +122,66 @@ final class MyPageViewController: UIViewController { extension MyPageViewController: MyPageViewProtocol { func setupLayout() { [ - myInfoView, - otherActionsView + settingTableView, + blurEffectView, + indicatorView ].forEach { $0.translatesAutoresizingMaskIntoConstraints = false - self.scrollView.addSubview($0) + self.view.addSubview($0) } NSLayoutConstraint.activate([ - myInfoView.topAnchor.constraint(equalTo: scrollView.contentLayoutGuide.topAnchor), - myInfoView.leadingAnchor.constraint(equalTo: scrollView.frameLayoutGuide.leadingAnchor), - myInfoView.trailingAnchor.constraint(equalTo: scrollView.frameLayoutGuide.trailingAnchor), - - otherActionsView.topAnchor.constraint(equalTo: myInfoView.bottomAnchor), - otherActionsView.leadingAnchor.constraint(equalTo: scrollView.frameLayoutGuide.leadingAnchor), - otherActionsView.trailingAnchor.constraint(equalTo: scrollView.frameLayoutGuide.trailingAnchor), - otherActionsView.bottomAnchor.constraint(equalTo: scrollView.contentLayoutGuide.bottomAnchor) - ]) - - [ - scrollView, - blurEffectView, - indicatorView - ].forEach { - $0.translatesAutoresizingMaskIntoConstraints = false - self.view.addSubview($0) - } - - NSLayoutConstraint.activate([ - scrollView.topAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.topAnchor), - scrollView.leadingAnchor.constraint(equalTo: self.view.leadingAnchor), - scrollView.trailingAnchor.constraint(equalTo: self.view.trailingAnchor), - scrollView.bottomAnchor.constraint(equalTo: self.view.bottomAnchor), + settingTableView.topAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.topAnchor), + settingTableView.leadingAnchor.constraint(equalTo: self.view.leadingAnchor), + settingTableView.trailingAnchor.constraint(equalTo: self.view.trailingAnchor), + settingTableView.bottomAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.bottomAnchor), indicatorView.centerXAnchor.constraint(equalTo: self.view.centerXAnchor), indicatorView.centerYAnchor.constraint(equalTo: self.view.centerYAnchor) ]) - + } + + func setupAttribute() { + view.backgroundColor = .gray7 + self.setupBack(true) + + navigationItem.title = Text.title.rawValue + navigationController?.navigationBar.isHidden = false } func switchIsLoading(with loading: Bool) { DispatchQueue.main.async { [weak self] in + print("Test") self?.indicatorView.isHidden = !loading self?.blurEffectView.isHidden = !loading } } - func setupAttribute() { - view.backgroundColor = .gray7 - - scrollView.backgroundColor = .gray6 - - navigationItem.title = Text.title.rawValue - navigationController?.navigationBar.isHidden = false - } - - func updateMyData(_ myDataModel: MyDataModel) { - myInfoView.updateImage() - myInfoView.updateId(myDataModel.id) - myInfoView.updateMyPlace(myDataModel.place) - myInfoView.updateMyReview(myDataModel.review) - myInfoView.updateMyStar(myDataModel.star) + private func whenTappedCell(with settingsRow: SettingsRow) { + switch settingsRow { + case .editNickname: + whenTappedEditNickName() + case .inquiries: + whenTappedInquiries() + case .instagram: + whenTappedInstagram() + + case .termsOfService: + whenTappedTermsOfService() + case .privacyPolicy: + whenTappedPrivacyPolicy() + case .locationPolicy: + whenTappedLocationPlicy() + case .openSorce: + whenTappedOpenSorce() + case .thanksTo: + whenTappedThanksTo() + + case .logout: + whenTappedLogOut() + default: + break + } } @@ -174,8 +194,13 @@ extension MyPageViewController: MyPageViewProtocol { navigationController?.pushViewController(vc, animated: true) } - private func whenTappedDisplayMode() { - + private func whenTappedInquiries() { + showMailView() + } + + private func whenTappedInstagram() { + let aviro = URL(string: "https://www.instagram.com/aviro.kr.official/")! + UIApplication.shared.open(aviro) } private func whenTappedTermsOfService() { @@ -196,8 +221,9 @@ extension MyPageViewController: MyPageViewProtocol { } } - private func whenTappedInquiries() { - showMailView() + private func whenTappedOpenSorce() { + let licenseVC = LicensesViewController() + navigationController?.pushViewController(licenseVC, animated: true) } private func whenTappedThanksTo() { @@ -280,3 +306,75 @@ extension MyPageViewController: MyPageViewProtocol { } } } + +extension MyPageViewController: UITableViewDataSource { + func numberOfSections(in tableView: UITableView) -> Int { + return SettingsSection.allCases.count + } + + func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + + guard let sectionType = SettingsSection(rawValue: section) else { return 0 } + return sectionType.rows.count + } + + func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + let cell = tableView.dequeueReusableCell(withIdentifier: SettingCell.identifier, for: indexPath) as? SettingCell + + if let sectionType = SettingsSection(rawValue: indexPath.section) { + let rowType = sectionType.rows[indexPath.row] + + cell?.selectionStyle = .none + + cell?.dataBinding(rowType) + cell?.tappedAfterSettingValue = { [weak self] settingValue in + self?.whenTappedCell(with: settingValue) + } + } + + return cell ?? UITableViewCell() + } +} + +extension MyPageViewController: UITableViewDelegate { + func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? { + if section == SettingsSection.account.rawValue { + return makeUserWithdrwalView() + } + return nil + } + + private func makeUserWithdrwalView() -> UIView { + let footerView = UIView() + footerView.backgroundColor = .gray6 + + let button = UIButton(frame: CGRect(x: 20, y: 20, width: 60, height: 20)) + + let attributedString = NSMutableAttributedString(string: "회원탈퇴") + attributedString.addAttribute( + NSAttributedString.Key.underlineStyle, + value: NSUnderlineStyle.single.rawValue, + range: NSRange(location: 0, length: attributedString.length) + ) + + button.setAttributedTitle(attributedString, for: .normal) + button.setTitleColor(.gray2, for: .normal) + button.titleLabel?.font = .pretendard(size: 16, weight: .medium) + button.addTarget(self, action: #selector(withdrawalTapped), for: .touchUpInside) + + footerView.addSubview(button) + + return footerView + } + + @objc private func withdrawalTapped() { + self.whenTappedWithdrawal() + } + + func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat { + if section == SettingsSection.account.rawValue { + return 50 + } + return 10 + } +} diff --git a/AVIRO/Scene/View/TabBar/MyPage/NickNameChangebleView/NickNameChangebleViewController.swift b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/NickNameChangebleView/NickNameChangebleViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/MyPage/NickNameChangebleView/NickNameChangebleViewController.swift rename to AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/NickNameChangebleView/NickNameChangebleViewController.swift diff --git a/AVIRO/Scene/Presenter/Mypage/MyPageViewPresenter.swift b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewModel/MyPageViewPresenter.swift similarity index 65% rename from AVIRO/Scene/Presenter/Mypage/MyPageViewPresenter.swift rename to AVIRO/Scene/View/TabBar/Challenge/Setting/ViewModel/MyPageViewPresenter.swift index 95798efa..121f79bd 100644 --- a/AVIRO/Scene/Presenter/Mypage/MyPageViewPresenter.swift +++ b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewModel/MyPageViewPresenter.swift @@ -17,7 +17,7 @@ enum LoginRedirectReason { protocol MyPageViewProtocol: NSObject { func setupLayout() func setupAttribute() - func updateMyData(_ myDataModel: MyDataModel) +// func updateMyData(_ myDataModel: MyDataModel) func pushLoginViewController(with: LoginRedirectReason) func showErrorAlert(with error: String, title: String?) func switchIsLoading(with loading: Bool) @@ -31,14 +31,14 @@ final class MyPageViewPresenter { private let amplitude: AmplitudeProtocol private let keychain = KeychainSwift() - private var myDataModel: MyDataModel? { - didSet { - guard let myDataModel = myDataModel else { return } - DispatchQueue.main.async { - self.viewController?.updateMyData(myDataModel) - } - } - } +// private var myDataModel: MyDataModel? { +// didSet { +// guard let myDataModel = myDataModel else { return } +// DispatchQueue.main.async { +// self.viewController?.updateMyData(myDataModel) +// } +// } +// } init(viewController: MyPageViewProtocol, bookmarkManager: BookmarkFacadeManager = BookmarkFacadeManager(), @@ -57,42 +57,42 @@ final class MyPageViewPresenter { } func viewWillAppear() { - viewController?.switchIsLoading(with: false) +// viewController?.switchIsLoading(with: false) - loadMyData() +// loadMyData() } - private func loadMyData() { - let myNickName = MyData.my.nickname - let myStar = String(BookmarkFacadeManager().loadAllData().count) - - AVIROAPIManager().loadMyContributedCount(with: MyData.my.id) { [weak self] result in - switch result { - case .success(let success): - if success.statusCode == 200 { - if let myPlace = success.data?.placeCount, - let myReview = success.data?.commentCount { - - let myPlaceString = String(myPlace) - let myReviewString = String(myReview) - - self?.myDataModel = MyDataModel( - id: myNickName, - place: myPlaceString, - review: myReviewString, - star: myStar - ) - } - } else { - self?.viewController?.showErrorAlert(with: "서버 에러", title: nil) - } - case .failure(let error): - if let error = error.errorDescription { - self?.viewController?.showErrorAlert(with: error, title: nil) - } - } - } - } +// private func loadMyData() { +// let myNickName = MyData.my.nickname +// let myStar = String(BookmarkFacadeManager().loadAllData().count) +// +// AVIROAPIManager().loadMyContributedCount(with: MyData.my.id) { [weak self] result in +// switch result { +// case .success(let success): +// if success.statusCode == 200 { +// if let myPlace = success.data?.placeCount, +// let myReview = success.data?.commentCount { +// +// let myPlaceString = String(myPlace) +// let myReviewString = String(myReview) +// +// self?.myDataModel = MyDataModel( +// id: myNickName, +// place: myPlaceString, +// review: myReviewString, +// star: myStar +// ) +// } +// } else { +// self?.viewController?.showErrorAlert(with: "서버 에러", title: nil) +// } +// case .failure(let error): +// if let error = error.errorDescription { +// self?.viewController?.showErrorAlert(with: error, title: nil) +// } +// } +// } +// } func whenAfterLogout() { bookmarkManager.deleteAllData() @@ -108,6 +108,7 @@ final class MyPageViewPresenter { func whenAfterWithdrawal() { guard let refreshToken = keychain.get(KeychainKey.appleRefreshToken.rawValue) else { return } + viewController?.switchIsLoading(with: true) let model = AVIROAutoLoginWhenAppleUserDTO(refreshToken: refreshToken) diff --git a/AVIRO/Scene/Presenter/Mypage/NickNameChangeblePresenter.swift b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewModel/NickNameChangeblePresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/Mypage/NickNameChangeblePresenter.swift rename to AVIRO/Scene/View/TabBar/Challenge/Setting/ViewModel/NickNameChangeblePresenter.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift index baf2d456..865289e8 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift @@ -27,8 +27,8 @@ final class ChallengeViewController: UIViewController { return view }() - private lazy var myInfoView: MyInfoView2 = { - let view = MyInfoView2() + private lazy var myInfoView: MyInfoView = { + let view = MyInfoView() return view }() @@ -135,5 +135,14 @@ final class ChallengeViewController: UIViewController { myInfoView.updateMyPlace("2") myInfoView.updateMyReview("3") myInfoView.updateMyStar("4") + + navigationItem.rightBarButtonItem?.rx.tap + .subscribe(onNext: { [weak self] _ in + let vc = MyPageViewController() + let presenter = MyPageViewPresenter(viewController: vc) + + self?.navigationController?.pushViewController(vc, animated: true) + }) + .disposed(by: disposeBag) } } diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift b/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView.swift similarity index 99% rename from AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift rename to AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView.swift index 0c9c395b..5e2a91f7 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView2.swift +++ b/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView.swift @@ -7,7 +7,7 @@ import UIKit -final class MyInfoView2: UIView { +final class MyInfoView: UIView { private lazy var myPlaceLabel: UILabel = { let label = UILabel() diff --git a/AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceViewController.swift b/AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceViewController.swift index 245b17e6..333615e4 100644 --- a/AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceViewController.swift +++ b/AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceViewController.swift @@ -335,6 +335,13 @@ extension EnrollPlaceViewController { let backButtonItem = UIBarButtonItem(customView: backButton) self.navigationItem.leftBarButtonItem = backButtonItem + + let navBarAppearance = UINavigationBarAppearance() + + navBarAppearance.shadowColor = nil + navBarAppearance.backgroundColor = .gray7 + self.navigationItem.standardAppearance = navBarAppearance + self.navigationItem.rightBarButtonItem = rightBarButton } // MARK: TabBar Attribute diff --git a/AVIRO/Scene/View/TabBar/MyPage/SubView/MyInfoView.swift b/AVIRO/Scene/View/TabBar/MyPage/SubView/MyInfoView.swift deleted file mode 100644 index a75e4d0b..00000000 --- a/AVIRO/Scene/View/TabBar/MyPage/SubView/MyInfoView.swift +++ /dev/null @@ -1,265 +0,0 @@ -// -// MyInfoView.swift -// AVIRO -// -// Created by 전성훈 on 2023/08/29. -// - -import UIKit - -final class MyInfoView: UIView { - private lazy var userImage: UIImageView = { - let imageView = UIImageView() - - return imageView - }() - - private lazy var nicknameLabel: UILabel = { - let label = UILabel() - - label.font = .pretendard(size: 17, weight: .semibold) - label.text = MyData.my.nickname - label.textColor = .gray0 - - return label - }() - - private lazy var editNickname: EditNickNameButton = { - let button = EditNickNameButton() - - button.makeButton("닉네임 수정하기") - button.addTarget(self, action: #selector(tappedNicNameButton), for: .touchUpInside) - - return button - }() - - private lazy var myPlaceLabel: UILabel = { - let label = UILabel() - - label.text = "등록한 가게" - label.textColor = .gray1 - label.font = .pretendard(size: 15, weight: .bold) - - return label - }() - - private lazy var myPlaceButton: UIButton = { - let button = UIButton() - - button.setTitle("0개", for: .normal) - button.setTitleColor(.gray0, for: .normal) - button.titleLabel?.font = .pretendard(size: 18, weight: .bold) - - return button - }() - - private lazy var myPlaceStackView: UIStackView = { - let stackView = UIStackView() - - stackView.axis = .vertical - stackView.spacing = 11 - stackView.alignment = .center - - return stackView - }() - - private lazy var myReviewLabel: UILabel = { - let label = UILabel() - - label.text = "작성 후기" - label.textColor = .gray1 - label.font = .pretendard(size: 15, weight: .bold) - - return label - }() - - private lazy var myReviewButton: UIButton = { - let button = UIButton() - - button.setTitle("0개", for: .normal) - button.setTitleColor(.gray0, for: .normal) - button.titleLabel?.font = .pretendard(size: 18, weight: .bold) - - return button - }() - - private lazy var myReviewStackView: UIStackView = { - let stackView = UIStackView() - - stackView.axis = .vertical - stackView.spacing = 11 - stackView.alignment = .center - - return stackView - }() - - private lazy var myStarLabel: UILabel = { - let label = UILabel() - - label.text = "즐겨찾기" - label.textColor = .gray1 - label.font = .pretendard(size: 15, weight: .bold) - - return label - }() - - private lazy var myStarButton: UIButton = { - let button = UIButton() - - button.setTitle("0개", for: .normal) - button.setTitleColor(.gray0, for: .normal) - button.titleLabel?.font = .pretendard(size: 18, weight: .bold) - - return button - }() - - private lazy var myStarStackView: UIStackView = { - let stackView = UIStackView() - - stackView.axis = .vertical - stackView.spacing = 11 - stackView.alignment = .center - - return stackView - }() - - private lazy var myStateStackView: UIStackView = { - let stackView = UIStackView() - - stackView.axis = .horizontal - stackView.distribution = .fillEqually - - return stackView - }() - - var editNickNameTapped: (() -> Void)? - - override init(frame: CGRect) { - super.init(frame: frame) - - makeLayout() - makeAttribute() - } - - required init?(coder: NSCoder) { - fatalError() - } - - override func layoutSubviews() { - super.layoutSubviews() - } - - private func makeLayout() { - self.heightAnchor.constraint(equalToConstant: 280).isActive = true - - [ - userImage, - nicknameLabel, - editNickname, - myStateStackView - ].forEach { - $0.translatesAutoresizingMaskIntoConstraints = false - self.addSubview($0) - } - - NSLayoutConstraint.activate([ - userImage.topAnchor.constraint(equalTo: self.topAnchor, constant: 20), - userImage.centerXAnchor.constraint(equalTo: self.centerXAnchor), - userImage.heightAnchor.constraint(equalToConstant: 80), - userImage.widthAnchor.constraint(equalToConstant: 80), - - nicknameLabel.topAnchor.constraint(equalTo: userImage.bottomAnchor, constant: 20), - nicknameLabel.centerXAnchor.constraint(equalTo: self.centerXAnchor), - - editNickname.topAnchor.constraint(equalTo: nicknameLabel.bottomAnchor, constant: 7), - editNickname.centerXAnchor.constraint(equalTo: self.centerXAnchor), - editNickname.leadingAnchor.constraint(equalTo: self.leadingAnchor), - editNickname.trailingAnchor.constraint(equalTo: self.trailingAnchor), - - myStateStackView.topAnchor.constraint(equalTo: editNickname.bottomAnchor, constant: 32), - myStateStackView.leadingAnchor.constraint(equalTo: self.leadingAnchor), - myStateStackView.trailingAnchor.constraint(equalTo: self.trailingAnchor) - ]) - - makeStackViewLayout() - } - - private func makeStackViewLayout() { - [ - myPlaceStackView, - myReviewStackView, - myStarStackView - ].forEach { - $0.translatesAutoresizingMaskIntoConstraints = false - myStateStackView.addArrangedSubview($0) - } - - [ - myPlaceLabel, - myPlaceButton - ].forEach { - $0.translatesAutoresizingMaskIntoConstraints = false - myPlaceStackView.addArrangedSubview($0) - } - - [ - myReviewLabel, - myReviewButton - ].forEach { - $0.translatesAutoresizingMaskIntoConstraints = false - myReviewStackView.addArrangedSubview($0) - } - - [ - myStarLabel, - myStarButton - ].forEach { - $0.translatesAutoresizingMaskIntoConstraints = false - myStarStackView.addArrangedSubview($0) - } - } - - private func makeAttribute() { - self.backgroundColor = .gray7 - self.layer.cornerRadius = 15 - self.layer.maskedCorners = [.layerMinXMaxYCorner, .layerMaxXMaxYCorner] - } - - func updateImage() { - let randomIndex = Int.random(in: 1...5) - switch randomIndex { - case 1: - userImage.image = UIImage.myIcon1 - case 2: - userImage.image = UIImage.myIcon2 - case 3: - userImage.image = UIImage.myIcon3 - case 4: - userImage.image = UIImage.myIcon4 - case 5: - userImage.image = UIImage.myIcon5 - default: - break - } - } - - func updateId(_ id: String) { - self.nicknameLabel.text = id - } - - func updateMyPlace(_ place: String) { - myPlaceButton.setTitle("\(place)개", for: .normal) - } - - func updateMyReview(_ review: String) { - myReviewButton.setTitle("\(review)개", for: .normal) - } - - func updateMyStar(_ star: String) { - myStarButton.setTitle("\(star)개", for: .normal) - } - - @objc private func tappedNicNameButton() { - editNickNameTapped?() - } -} diff --git a/AVIRO/Scene/View/TabBar/MyPage/SubView/OtherActionsView.swift b/AVIRO/Scene/View/TabBar/MyPage/SubView/OtherActionsView.swift deleted file mode 100644 index 7c0dbf4e..00000000 --- a/AVIRO/Scene/View/TabBar/MyPage/SubView/OtherActionsView.swift +++ /dev/null @@ -1,166 +0,0 @@ -// -// OtherActionsView.swift -// AVIRO -// -// Created by 전성훈 on 2023/08/29. -// - -import UIKit - -enum SettingsSection: Int, CaseIterable { -// case displayMode - case information - case account - - var rows: [SettingsRow] { - switch self { -// case .displayMode: -// return [.displayMode] - case .information: - return [.termsOfService, .privacyPolicy, .locationPolicy, .inquiries, .thanksTo] - case .account: - return [.logout, .versionInfo] - } - } -} - -enum SettingsRow: String { -// case displayMode = "화면 모드 설정" - case termsOfService = "서비스 이용약관" - case privacyPolicy = "개인정보 수집 및 이용" - case locationPolicy = "위치정보 수집 및 이용" - case inquiries = "문의사항" - case thanksTo = "감사한분들" - case logout = "로그아웃" - case versionInfo = "버전 정보" -} - -final class OtherActionsView: UIView { - - private lazy var tableView: UITableView = { - let tableView = UITableView(frame: .zero, style: .grouped) - - tableView.register(SettingCell.self, forCellReuseIdentifier: SettingCell.identifier) - tableView.backgroundColor = .gray6 - tableView.rowHeight = 50 - - return tableView - }() - - private var viewHeightConstrant: NSLayoutConstraint? - - var afterTappedCell: ((SettingsRow) -> Void)? - var withdrawaButtonTapped: (() -> Void)? - - override init(frame: CGRect) { - super.init(frame: frame) - - setupLayout() - } - - required init?(coder: NSCoder) { - fatalError() - } - - override func layoutSubviews() { - super.layoutSubviews() - - setupViewHeight() - } - - private func setupViewHeight() { - viewHeightConstrant?.constant = tableView.frame.height - } - - private func setupLayout() { - viewHeightConstrant = self.heightAnchor.constraint(equalToConstant: 550) - viewHeightConstrant?.isActive = true - - addSubview(tableView) - tableView.translatesAutoresizingMaskIntoConstraints = false - - NSLayoutConstraint.activate([ - tableView.topAnchor.constraint(equalTo: topAnchor), - tableView.bottomAnchor.constraint(equalTo: bottomAnchor), - tableView.leadingAnchor.constraint(equalTo: leadingAnchor), - tableView.trailingAnchor.constraint(equalTo: trailingAnchor) - ]) - - tableView.delegate = self - tableView.dataSource = self - tableView.isScrollEnabled = false - } -} - -extension OtherActionsView: UITableViewDataSource { - - func numberOfSections(in tableView: UITableView) -> Int { - return SettingsSection.allCases.count - } - - func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { - - guard let sectionType = SettingsSection(rawValue: section) else { return 0 } - return sectionType.rows.count - } - - func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { - let cell = tableView.dequeueReusableCell(withIdentifier: SettingCell.identifier, for: indexPath) as? SettingCell - - if let sectionType = SettingsSection(rawValue: indexPath.section) { - let rowType = sectionType.rows[indexPath.row] - - cell?.selectionStyle = .none - - cell?.dataBinding(rowType) - cell?.tappedAfterSettingValue = { [weak self] settingValue in - self?.afterTappedCell?(settingValue) - } - } - - return cell ?? UITableViewCell() - } -} - -extension OtherActionsView: UITableViewDelegate { - func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? { - if section == SettingsSection.account.rawValue { - return makeUserWithdrwalView() - } - return nil - } - - private func makeUserWithdrwalView() -> UIView { - let footerView = UIView() - footerView.backgroundColor = .gray6 - - let button = UIButton(frame: CGRect(x: 20, y: 20, width: 60, height: 20)) - - let attributedString = NSMutableAttributedString(string: "회원탈퇴") - attributedString.addAttribute( - NSAttributedString.Key.underlineStyle, - value: NSUnderlineStyle.single.rawValue, - range: NSRange(location: 0, length: attributedString.length) - ) - - button.setAttributedTitle(attributedString, for: .normal) - button.setTitleColor(.gray2, for: .normal) - button.titleLabel?.font = .pretendard(size: 16, weight: .medium) - button.addTarget(self, action: #selector(withdrawalTapped), for: .touchUpInside) - - footerView.addSubview(button) - - return footerView - } - - @objc private func withdrawalTapped() { - self.withdrawaButtonTapped?() - } - - func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat { - if section == SettingsSection.account.rawValue { - return 50 - } - return 10 - } -} diff --git a/Settings.bundle/Root.plist b/Settings.bundle/Root.plist new file mode 100644 index 00000000..be04fe00 --- /dev/null +++ b/Settings.bundle/Root.plist @@ -0,0 +1,19 @@ + + + + + StringsTable + Root + PreferenceSpecifiers + + + Type + PSChildPaneSpecifier + Title + 오픈소스 라이브러리 + File + com.mono0926.LicensePlist + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist.latest_result.txt b/Settings.bundle/com.mono0926.LicensePlist.latest_result.txt new file mode 100644 index 00000000..00206725 --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist.latest_result.txt @@ -0,0 +1,69 @@ +name: AmplitudeSwift, nameSpecified: +body: MIT License + +Copyrig… +version: 0.4.14 + +name: KeychainSwift, nameSpecified: +body: The MIT License + +Cop… +version: 20.0.0 + +name: lottie-ios, nameSpecified: +body: … +version: 4.3.3 + +name: NMapsGeometry, nameSpecified: +body: Copyright © 2018 NAV… +version: 1.0.1 + +name: NMapsMap, nameSpecified: +body: Copyright © 2018 NAV… +version: 3.17.0 + +name: Realm, nameSpecified: +body: … +version: 10.43.0 + +name: RealmSwift, nameSpecified: +body: … +version: 10.43.0 + +name: RxBlocking, nameSpecified: +body: **The MIT License** +… +version: 6.6.0 + +name: RxCocoa, nameSpecified: +body: **The MIT License** +… +version: 6.6.0 + +name: RxRelay, nameSpecified: +body: **The MIT License** +… +version: 6.6.0 + +name: RxSwift, nameSpecified: +body: **The MIT License** +… +version: 6.6.0 + +name: RxSwift, nameSpecified: +body: **The MIT License** +… +version: 6.6.0 + +name: RxTest, nameSpecified: +body: **The MIT License** +… +version: 6.6.0 + +name: Toast-Swift, nameSpecified: +body: Copyright (c) 2015-2… +version: 5.0.1 + +add-version-numbers: false + +LicensePlist Version: 3.25.1 \ No newline at end of file diff --git a/Settings.bundle/com.mono0926.LicensePlist.plist b/Settings.bundle/com.mono0926.LicensePlist.plist new file mode 100644 index 00000000..5c4a36fd --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist.plist @@ -0,0 +1,119 @@ + + + + + PreferenceSpecifiers + + + Title + Licenses + Type + PSGroupSpecifier + + + File + com.mono0926.LicensePlist/AmplitudeSwift + Title + AmplitudeSwift + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/KeychainSwift + Title + KeychainSwift + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/lottie-ios + Title + lottie-ios + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/NMapsGeometry + Title + NMapsGeometry + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/NMapsMap + Title + NMapsMap + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/Realm + Title + Realm + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/RealmSwift + Title + RealmSwift + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/RxBlocking + Title + RxBlocking + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/RxCocoa + Title + RxCocoa + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/RxRelay + Title + RxRelay + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/RxSwift + Title + RxSwift + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/RxTest + Title + RxTest + Type + PSChildPaneSpecifier + + + File + com.mono0926.LicensePlist/Toast-Swift + Title + Toast-Swift + Type + PSChildPaneSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/AmplitudeSwift.plist b/Settings.bundle/com.mono0926.LicensePlist/AmplitudeSwift.plist new file mode 100644 index 00000000..f0e6ee66 --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/AmplitudeSwift.plist @@ -0,0 +1,38 @@ + + + + + PreferenceSpecifiers + + + FooterText + MIT License + +Copyright (c) 2023 Amplitude Analytics + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/KeychainSwift.plist b/Settings.bundle/com.mono0926.LicensePlist/KeychainSwift.plist new file mode 100644 index 00000000..0317eec6 --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/KeychainSwift.plist @@ -0,0 +1,38 @@ + + + + + PreferenceSpecifiers + + + FooterText + The MIT License + +Copyright (c) 2015 - 2021 Evgenii Neumerzhitckii + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + License + MIT + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/NMapsGeometry.plist b/Settings.bundle/com.mono0926.LicensePlist/NMapsGeometry.plist new file mode 100644 index 00000000..799c1d8e --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/NMapsGeometry.plist @@ -0,0 +1,19 @@ + + + + + PreferenceSpecifiers + + + FooterText + Copyright © 2018 NAVER Corp. +All rights reserved. + + License + unknown + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/NMapsMap.plist b/Settings.bundle/com.mono0926.LicensePlist/NMapsMap.plist new file mode 100644 index 00000000..799c1d8e --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/NMapsMap.plist @@ -0,0 +1,19 @@ + + + + + PreferenceSpecifiers + + + FooterText + Copyright © 2018 NAVER Corp. +All rights reserved. + + License + unknown + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/Realm.plist b/Settings.bundle/com.mono0926.LicensePlist/Realm.plist new file mode 100644 index 00000000..022e453a --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/Realm.plist @@ -0,0 +1,194 @@ + + + + + PreferenceSpecifiers + + + FooterText + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + License + Apache-2.0 + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/RealmSwift.plist b/Settings.bundle/com.mono0926.LicensePlist/RealmSwift.plist new file mode 100644 index 00000000..022e453a --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/RealmSwift.plist @@ -0,0 +1,194 @@ + + + + + PreferenceSpecifiers + + + FooterText + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + + License + Apache-2.0 + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/RxBlocking.plist b/Settings.bundle/com.mono0926.LicensePlist/RxBlocking.plist new file mode 100644 index 00000000..8244a6ac --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/RxBlocking.plist @@ -0,0 +1,26 @@ + + + + + PreferenceSpecifiers + + + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/RxCocoa.plist b/Settings.bundle/com.mono0926.LicensePlist/RxCocoa.plist new file mode 100644 index 00000000..8244a6ac --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/RxCocoa.plist @@ -0,0 +1,26 @@ + + + + + PreferenceSpecifiers + + + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/RxRelay.plist b/Settings.bundle/com.mono0926.LicensePlist/RxRelay.plist new file mode 100644 index 00000000..8244a6ac --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/RxRelay.plist @@ -0,0 +1,26 @@ + + + + + PreferenceSpecifiers + + + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/RxSwift.plist b/Settings.bundle/com.mono0926.LicensePlist/RxSwift.plist new file mode 100644 index 00000000..8244a6ac --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/RxSwift.plist @@ -0,0 +1,26 @@ + + + + + PreferenceSpecifiers + + + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/RxTest.plist b/Settings.bundle/com.mono0926.LicensePlist/RxTest.plist new file mode 100644 index 00000000..8244a6ac --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/RxTest.plist @@ -0,0 +1,26 @@ + + + + + PreferenceSpecifiers + + + FooterText + **The MIT License** +**Copyright © 2015 Krunoslav Zaher, Shai Mishali** +**All rights reserved.** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/Toast-Swift.plist b/Settings.bundle/com.mono0926.LicensePlist/Toast-Swift.plist new file mode 100644 index 00000000..3210abd7 --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/Toast-Swift.plist @@ -0,0 +1,37 @@ + + + + + PreferenceSpecifiers + + + FooterText + Copyright (c) 2015-2017 Charles Scalesse. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + License + MIT + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/com.mono0926.LicensePlist/lottie-ios.plist b/Settings.bundle/com.mono0926.LicensePlist/lottie-ios.plist new file mode 100644 index 00000000..dac7db89 --- /dev/null +++ b/Settings.bundle/com.mono0926.LicensePlist/lottie-ios.plist @@ -0,0 +1,218 @@ + + + + + PreferenceSpecifiers + + + FooterText + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2018 Airbnb, 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 + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + License + unknown + Type + PSGroupSpecifier + + + + diff --git a/Settings.bundle/en.lproj/Root.strings b/Settings.bundle/en.lproj/Root.strings new file mode 100644 index 0000000000000000000000000000000000000000..8cd87b9d6b20c1fbf87bd4db3db267fca5ad4df9 GIT binary patch literal 546 zcmaixOHRW;5JYRuDMndFh#Ua1V1d}N;sVAV2TO?uC3a9aJn*VxFrY}tnon0(S66#J z-d9>G>6W!ur(SDqlp`9nn~*(m%iWnv?yq`Qfp6XbK1?+om~~#r)ZnhkYQU_VbfjuT zHNn`CX<0sd*m1A}>&5sU$akD=GTXJ1e literal 0 HcmV?d00001 From 199c81ed55f547659f1e5afd079090c2139e7f7f Mon Sep 17 00:00:00 2001 From: Jeon Seoung Hun Date: Tue, 19 Dec 2023 21:48:21 +0900 Subject: [PATCH 05/18] =?UTF-8?q?[Feat]:=20=ED=9B=84=EA=B8=B0=20=EB=93=B1?= =?UTF-8?q?=EB=A1=9D=20ViewController=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AVIRO.xcodeproj/project.pbxproj | 44 ++++++ .../UIViewController+Extension.swift | 2 + .../LicenseDetailViewController.swift | 8 +- .../LicenseView/LicensesViewController.swift | 8 +- .../ViewController/MyPageViewController.swift | 6 + .../View/TabBar/Home/HomeViewController.swift | 6 + .../TabBar/Home/PlaceDetail/PlaceView.swift | 6 + .../SubView/PlaceSegmentedControlView.swift | 6 + .../PlaceHomeView.swift | 2 +- .../SubView/PlaceReviewsView.swift | 6 + .../ReviewPlaceInfoView.swift | 12 ++ .../ReviewWriteViewController.swift | 133 ++++++++++++++++++ .../ViewModel/ReviewWriteViewModel.swift | 8 ++ .../SubView/SubView/PushCommentView.swift | 31 ++-- 14 files changed, 265 insertions(+), 13 deletions(-) create mode 100644 AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift create mode 100644 AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewWriteViewController.swift create mode 100644 AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift diff --git a/AVIRO.xcodeproj/project.pbxproj b/AVIRO.xcodeproj/project.pbxproj index 38a06f94..3b046a10 100644 --- a/AVIRO.xcodeproj/project.pbxproj +++ b/AVIRO.xcodeproj/project.pbxproj @@ -110,6 +110,9 @@ C54BC0DB2A2C2D0D00B65439 /* UIColor+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C54BC0DA2A2C2D0D00B65439 /* UIColor+Extension.swift */; }; C552D5342ABE8CA500933D8A /* AVIRODeleteAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C552D5332ABE8CA500933D8A /* AVIRODeleteAPI.swift */; }; C5538AAF2A1BB81200661DE2 /* AVIROEnrollPlace+DTO.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5538AAE2A1BB81200661DE2 /* AVIROEnrollPlace+DTO.swift */; }; + C56295072B3188530067BBE5 /* ReviewWriteViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C56295062B3188530067BBE5 /* ReviewWriteViewController.swift */; }; + C56295092B31885C0067BBE5 /* ReviewWriteViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C56295082B31885C0067BBE5 /* ReviewWriteViewModel.swift */; }; + C562950C2B318BB60067BBE5 /* ReviewPlaceInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C562950B2B318BB60067BBE5 /* ReviewPlaceInfoView.swift */; }; C567C1502A56611500D4B426 /* TopCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C567C14F2A56611500D4B426 /* TopCell.swift */; }; C568577D2A70E1F600F52715 /* MenuPlusButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C568577C2A70E1F600F52715 /* MenuPlusButton.swift */; }; C56857802A7113C600F52715 /* NormalTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C568577F2A7113C600F52715 /* NormalTableViewCell.swift */; }; @@ -338,6 +341,9 @@ C54BC0DA2A2C2D0D00B65439 /* UIColor+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIColor+Extension.swift"; sourceTree = ""; }; C552D5332ABE8CA500933D8A /* AVIRODeleteAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AVIRODeleteAPI.swift; sourceTree = ""; }; C5538AAE2A1BB81200661DE2 /* AVIROEnrollPlace+DTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AVIROEnrollPlace+DTO.swift"; sourceTree = ""; }; + C56295062B3188530067BBE5 /* ReviewWriteViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewWriteViewController.swift; sourceTree = ""; }; + C56295082B31885C0067BBE5 /* ReviewWriteViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewWriteViewModel.swift; sourceTree = ""; }; + C562950B2B318BB60067BBE5 /* ReviewPlaceInfoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewPlaceInfoView.swift; sourceTree = ""; }; C567C14F2A56611500D4B426 /* TopCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCell.swift; sourceTree = ""; }; C568577C2A70E1F600F52715 /* MenuPlusButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuPlusButton.swift; sourceTree = ""; }; C568577F2A7113C600F52715 /* NormalTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NormalTableViewCell.swift; sourceTree = ""; }; @@ -1033,6 +1039,40 @@ path = UITextLabel; sourceTree = ""; }; + C56295032B3188160067BBE5 /* ReviewWriteView */ = { + isa = PBXGroup; + children = ( + C56295042B3188230067BBE5 /* ViewModel */, + C56295052B3188270067BBE5 /* ViewController */, + ); + path = ReviewWriteView; + sourceTree = ""; + }; + C56295042B3188230067BBE5 /* ViewModel */ = { + isa = PBXGroup; + children = ( + C56295082B31885C0067BBE5 /* ReviewWriteViewModel.swift */, + ); + path = ViewModel; + sourceTree = ""; + }; + C56295052B3188270067BBE5 /* ViewController */ = { + isa = PBXGroup; + children = ( + C56295062B3188530067BBE5 /* ReviewWriteViewController.swift */, + C562950A2B318B520067BBE5 /* ReviewPlaceInfoView */, + ); + path = ViewController; + sourceTree = ""; + }; + C562950A2B318B520067BBE5 /* ReviewPlaceInfoView */ = { + isa = PBXGroup; + children = ( + C562950B2B318BB60067BBE5 /* ReviewPlaceInfoView.swift */, + ); + path = ReviewPlaceInfoView; + sourceTree = ""; + }; C567C14D2A5658C700D4B426 /* Login */ = { isa = PBXGroup; children = ( @@ -1325,6 +1365,7 @@ C5C2907A2A85E51B00ED5DCE /* PlaceReviewsView.swift */, C5166E4A2A939442003495AA /* SubView */, C5C961902A8D9EA10016E2F8 /* TableView */, + C56295032B3188160067BBE5 /* ReviewWriteView */, ); path = SubView; sourceTree = ""; @@ -1825,6 +1866,7 @@ C5EB510B2A209FD300B29CC1 /* HomeSearchPresenter.swift in Sources */, C52066262A7CC3CE0038ECCD /* NoHistoryLabelView.swift in Sources */, C5803F5D2A88C3C00064A853 /* LocationUtility.swift in Sources */, + C562950C2B318BB60067BBE5 /* ReviewPlaceInfoView.swift in Sources */, C5F1014F2A6D19A800C53286 /* VeganOptionButton.swift in Sources */, C52066292A7CD5FC0038ECCD /* HistoryTableModel.swift in Sources */, C5FD92EB2A9C786600CF4673 /* PublicAPIRequestComponents.swift in Sources */, @@ -1843,6 +1885,7 @@ C5C290812A8616E500ED5DCE /* PlaceInfoView.swift in Sources */, C5B071E12A59454300AE709A /* BottomCell.swift in Sources */, C51000382AB5F3BD00F65C1F /* UIFont+Extension.swift in Sources */, + C56295072B3188530067BBE5 /* ReviewWriteViewController.swift in Sources */, C5476B7B2B31516000F5FC6E /* LicenseDetailViewController.swift in Sources */, C5FA0EAA2A94DB3E004AD8B4 /* ReportReviewViewController.swift in Sources */, C5C90EBD2AA85E7000AB3668 /* AVIROOperationHours+DTO.swift in Sources */, @@ -1993,6 +2036,7 @@ C51AED1F2A8B2BC80015FBC2 /* HomeTopButton.swift in Sources */, C5FA0EAC2A94DF39004AD8B4 /* ReportReviewPresenter.swift in Sources */, C5A201B22A98502500A54381 /* TimeUtility.swift in Sources */, + C56295092B31885C0067BBE5 /* ReviewWriteViewModel.swift in Sources */, C5476B6A2B304C8200F5FC6E /* ChallengeTitleView.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/AVIRO/Custom/Extension/UIViewController+Extension.swift b/AVIRO/Custom/Extension/UIViewController+Extension.swift index abcc4481..8dfd3d5c 100644 --- a/AVIRO/Custom/Extension/UIViewController+Extension.swift +++ b/AVIRO/Custom/Extension/UIViewController+Extension.swift @@ -176,6 +176,7 @@ extension UIViewController { backButton.tag = animatied ? 1 : 0 + print(backButton.tag) let barButtonItem = UIBarButtonItem(customView: backButton) self.navigationItem.leftBarButtonItem = barButtonItem @@ -183,6 +184,7 @@ extension UIViewController { @objc private func customBackButtonTapped(_ sender: UIButton) { let animated = sender.tag == 1 + print(animated) navigationController?.popViewController(animated: animated) } diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicenseDetailViewController.swift b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicenseDetailViewController.swift index 5be7bc40..2fb2dff2 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicenseDetailViewController.swift +++ b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicenseDetailViewController.swift @@ -42,7 +42,13 @@ final class LicenseDetailViewController: UIViewController { private func setupAttribute() { self.view.backgroundColor = .gray7 - self.setupBack() + self.setupBack(true) + + let navBarAppearance = UINavigationBarAppearance() + + navBarAppearance.shadowColor = nil + navBarAppearance.backgroundColor = .gray7 + self.navigationItem.standardAppearance = navBarAppearance } func loadLicenseText(with body: String, title: String) { diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicensesViewController.swift b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicensesViewController.swift index b51fc86e..2c6417b0 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicensesViewController.swift +++ b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicensesViewController.swift @@ -14,8 +14,14 @@ final class LicensesViewController: UITableViewController { override func viewDidLoad() { super.viewDidLoad() + let navBarAppearance = UINavigationBarAppearance() + + navBarAppearance.shadowColor = nil + navBarAppearance.backgroundColor = .gray7 + self.navigationItem.standardAppearance = navBarAppearance + self.navigationItem.title = "오픈소스 라이선스" - self.setupBack() + self.setupBack(true) tableView = UITableView(frame: self.view.bounds, style: .insetGrouped) tableView.register(UITableViewCell.self, forCellReuseIdentifier: "LicenseCell") diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift index 9da00faa..5bd209e0 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift +++ b/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift @@ -145,6 +145,12 @@ extension MyPageViewController: MyPageViewProtocol { view.backgroundColor = .gray7 self.setupBack(true) + let navBarAppearance = UINavigationBarAppearance() + + navBarAppearance.shadowColor = nil + navBarAppearance.backgroundColor = .gray7 + self.navigationItem.standardAppearance = navBarAppearance + navigationItem.title = Text.title.rawValue navigationController?.navigationBar.isHidden = false } diff --git a/AVIRO/Scene/View/TabBar/Home/HomeViewController.swift b/AVIRO/Scene/View/TabBar/Home/HomeViewController.swift index ab9bee69..10c3375d 100644 --- a/AVIRO/Scene/View/TabBar/Home/HomeViewController.swift +++ b/AVIRO/Scene/View/TabBar/Home/HomeViewController.swift @@ -949,6 +949,12 @@ extension HomeViewController { placeView.editMyReview = { [weak self] commentId in self?.showEditMyReviewAlert(commentId) } + + placeView.test = { [weak self] in + let vc = ReviewWriteViewController() + + self?.navigationController?.pushViewController(vc, animated: true) + } } } diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/PlaceView.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/PlaceView.swift index d599be9c..8c2c0bf5 100644 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/PlaceView.swift +++ b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/PlaceView.swift @@ -73,6 +73,8 @@ final class PlaceView: UIView { var reportReview: ((AVIROReportReviewModel) -> Void)? var editMyReview: ((String) -> Void)? + var test: (() -> Void)? + override init(frame: CGRect) { super.init(frame: frame) @@ -231,6 +233,10 @@ final class PlaceView: UIView { segmentedControlView.editMyReview = { [weak self] commentId in self?.editMyReview?(commentId) } + + segmentedControlView.test = { [weak self] in + self?.test?() + } } func keyboardWillShow(notification: NSNotification, height: CGFloat) { diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/PlaceSegmentedControlView.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/PlaceSegmentedControlView.swift index 0635a7c0..fd6fd90c 100644 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/PlaceSegmentedControlView.swift +++ b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/PlaceSegmentedControlView.swift @@ -79,6 +79,8 @@ final class PlaceSegmentedControlView: UIView { var reportReview: ((AVIROReportReviewModel) -> Void)? var editMyReview: ((String) -> Void)? + var test: (() -> Void)? + override init(frame: CGRect) { super.init(frame: frame) @@ -396,5 +398,9 @@ final class PlaceSegmentedControlView: UIView { homeView.editMyReview = { [weak self] commentId in self?.editMyReview?(commentId) } + + reviewView.test = { [weak self] in + self?.test?() + } } } diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/PlaceHomeView.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/PlaceHomeView.swift index 24d396d2..73b2638a 100644 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/PlaceHomeView.swift +++ b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/PlaceHomeView.swift @@ -32,7 +32,7 @@ final class PlaceHomeView: UIView { var showMoreReviewsAndWriteComment: (() -> Void)? var reportReview: ((AVIROReportReviewModel) -> Void)? var editMyReview: ((String) -> Void)? - + override init(frame: CGRect) { super.init(frame: frame) diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift index 7744809a..a137dbf9 100644 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift +++ b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift @@ -102,6 +102,8 @@ final class PlaceReviewsView: UIView { var whenReportReview: ((AVIROReportReviewModel) -> Void)? var whenBeforeEditMyReview: ((String) -> Void)? + var test: (() -> Void)? + private var placeId = "" private var isEditedAfter = false private var editedReviewId = "" @@ -510,6 +512,10 @@ final class PlaceReviewsView: UIView { reviewInputView.initView = { [weak self] in self?.isEditedAfter = false } + + reviewInputView.test = { [weak self] in + self?.test?() + } } } diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift new file mode 100644 index 00000000..3128965b --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift @@ -0,0 +1,12 @@ +// +// ReviewPlaceInfoView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/19. +// + +import UIKit + +final class ReviewPlaceInfoView: UIView { + +} diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewWriteViewController.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewWriteViewController.swift new file mode 100644 index 00000000..4443857b --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewWriteViewController.swift @@ -0,0 +1,133 @@ +// +// ReviewWriteViewController.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/19. +// + +import UIKit + +final class ReviewWriteViewController: UIViewController { + private lazy var placeInfoView: ReviewPlaceInfoView = { + let view = ReviewPlaceInfoView() + + view.backgroundColor = .red + + return view + }() + + private lazy var reviewTextView: UITextView = { + let view = UITextView() + + view.textColor = .gray0 + view.font = .pretendard(size: 16, weight: .regular) + view.backgroundColor = .gray6 + view.layer.cornerRadius = 10 + view.textContainerInset = UIEdgeInsets(top: 16, left: 16, bottom: 16, right: 16) + + return view + }() + + private lazy var placeholderLabel: UILabel = { + let label = UILabel() + + label.text = "욕설, 비방 등 사장님과 다른 사용자들을 불쾌하게 하는 내용은 남기지 말아주세요." + label.textColor = .gray5 + label.lineBreakMode = .byCharWrapping + label.numberOfLines = 0 + label.font = .pretendard(size: 16, weight: .regular) + label.isHidden = !reviewTextView.text.isEmpty + + return label + }() + + private lazy var textViewCountLabel: UILabel = { + let label = UILabel() + + return label + }() + + private lazy var exampleLabel: UILabel = { + let label = UILabel() + + label.text = "맛, 가격, 분위기, 편의시설, 비건프렌들리함 등" + label.textColor = .gray2 + label.numberOfLines = 1 + label.font = .pretendard(size: 16, weight: .medium) + + return label + }() + + private lazy var exampleSticy: UIView = { + let view = UIView() + + return view + }() + + private lazy var reviewUploadButton: UIButton = { + let button = UIButton() + + return button + }() + + override func viewDidLoad() { + super.viewDidLoad() + + setupLayout() + setupAttribute() + } + + private func setupLayout() { + [ + placeInfoView, + reviewTextView, + placeholderLabel, + textViewCountLabel, + exampleLabel, + exampleSticy, + reviewUploadButton + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.view.addSubview($0) + } + + NSLayoutConstraint.activate([ + // TODO: placeInfoVIew 높이는 값에 따라 동적으로 다르게 설정 + placeInfoView.topAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.topAnchor, constant: 20), + placeInfoView.leadingAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.leadingAnchor, constant: 16), + placeInfoView.trailingAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.trailingAnchor, constant: -16), + placeInfoView.heightAnchor.constraint(equalToConstant: 90), + + reviewTextView.topAnchor.constraint(equalTo: placeInfoView.bottomAnchor, constant: 20), + reviewTextView.leadingAnchor.constraint(equalTo: self.view.leadingAnchor, constant: 16), + reviewTextView.trailingAnchor.constraint(equalTo: self.view.trailingAnchor, constant: -16), + reviewTextView.heightAnchor.constraint(equalToConstant: 320), + + placeholderLabel.topAnchor.constraint(equalTo: reviewTextView.topAnchor, constant: 20), + placeholderLabel.leadingAnchor.constraint(equalTo: reviewTextView.leadingAnchor, constant: 20), + placeholderLabel.trailingAnchor.constraint(equalTo: reviewTextView.trailingAnchor, constant: -20), + + textViewCountLabel.bottomAnchor.constraint(equalTo: reviewTextView.bottomAnchor, constant: -16), + textViewCountLabel.trailingAnchor.constraint(equalTo: reviewTextView.trailingAnchor, constant: -16), + + exampleLabel.topAnchor.constraint(equalTo: reviewTextView.bottomAnchor, constant: 16), + exampleLabel.leadingAnchor.constraint(equalTo: self.view.leadingAnchor, constant: 16), + + exampleSticy.centerXAnchor.constraint(equalTo: self.view.centerXAnchor), + exampleSticy.bottomAnchor.constraint(equalTo: reviewUploadButton.topAnchor, constant: -11), + + reviewUploadButton.bottomAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.bottomAnchor), + reviewUploadButton.leadingAnchor.constraint(equalTo: self.view.leadingAnchor), + reviewUploadButton.trailingAnchor.constraint(equalTo: self.view.trailingAnchor), + reviewUploadButton.heightAnchor.constraint(equalToConstant: 60) + ]) + } + + private func setupAttribute() { + navigationController?.navigationBar.isHidden = false + + self.view.backgroundColor = .gray7 + self.navigationItem.title = "후기 작성" + self.setupBack(true) + } +} diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift new file mode 100644 index 00000000..0217e5dd --- /dev/null +++ b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift @@ -0,0 +1,8 @@ +// +// ReviewWriteViewModel.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/19. +// + +import Foundation diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift index db74a747..51dcace1 100644 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift +++ b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift @@ -70,6 +70,8 @@ final class PushCommentView: UIView { var enrollReview: ((String) -> Void)? var initView: (() -> Void)? + var test: (() -> Void)? + override init(frame: CGRect) { super.init(frame: frame) @@ -295,20 +297,29 @@ final class PushCommentView: UIView { } } + +// TODO: 수정 예정 +// - View로 만들자 textview기능 다 삭제 +// - 폴더 정리 +// 클릭 후 editing 종료 해야함 extension PushCommentView: UITextViewDelegate { func textViewDidBeginEditing(_ textView: UITextView) { - if textView.textColor == .gray4 { - textView.textColor = .gray0 - textView.text = "" - } +// let vc = ReviewWriteViewController() +// if textView.textColor == .gray4 { +// textView.textColor = .gray0 +// textView.text = "" +// } + + test?() + textView.endEditing(true) } func textViewDidChange(_ textView: UITextView) { - if textView.text != "" { - enrollButton.setTitleColor(.gray0, for: .normal) - updateTextviewHeight() - } else { - enrollButton.setTitleColor(.gray4, for: .normal) - } +// if textView.text != "" { +// enrollButton.setTitleColor(.gray0, for: .normal) +// updateTextviewHeight() +// } else { +// enrollButton.setTitleColor(.gray4, for: .normal) +// } } } From 09f1a62b9dc51356d9581a026c4b46ca4259ef7d Mon Sep 17 00:00:00 2001 From: Jeon Seoung Hun Date: Thu, 21 Dec 2023 20:44:03 +0900 Subject: [PATCH 06/18] =?UTF-8?q?[Feat]:=20=ED=9B=84=EA=B8=B0=20=EC=9E=91?= =?UTF-8?q?=EC=84=B1=20View=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AVIRO.xcodeproj/project.pbxproj | 456 ++++++++++-------- .../KEYWORD_BLUE.colorset/Contents.json | 4 +- .../Point_explain.imageset/Contents.json | 23 + .../Point_explain.imageset/Point_explain.png | Bin 0 -> 2556 bytes .../Point_explain@2x.png | Bin 0 -> 4549 bytes .../Point_explain@3x.png | Bin 0 -> 6612 bytes .../Custom/Constants/UIImage+Extension.swift | 3 + .../APIManager/APIManagerProtocol.swift | 3 +- .../AVIROManager/AVIROAPIManager.swift | 1 + AVIRO/Scene/Base/ViewModel.swift | 15 + .../FinalRegistrationViewController.swift | 0 .../FirstRegistrationViewController.swift | 0 .../SecondRegistrationViewController.swift | 0 .../ViewController}/TermsTableCell.swift | 0 .../ThridRegistrationViewController.swift | 0 .../FirstRegistrationPresenter.swift | 0 .../SecondRegistrationPresenter.swift | 0 .../ThridRegistrationPresenter.swift | 0 .../ViewController}/LoginViewController.swift | 0 .../ViewPresenter}/LoginViewPresenter.swift | 0 .../LicenseDetailViewController.swift | 0 .../LicenseView/LicensesViewController.swift | 0 .../NickNameChangebleViewController.swift | 0 .../NickNameChangeblePresenter.swift | 0 .../ViewController/Cells/SettingCell.swift | 0 .../SettingViewController.swift} | 10 +- .../ViewPresenter/SettingViewPresenter.swift} | 2 +- .../ChallengeTitleView.swift | 0 .../ChallengeLevelView.swift | 0 .../ChallengeUserInfoView.swift | 0 .../ChallengeViewController.swift | 4 +- .../MyInfoView/MyInfoView.swift | 0 .../ViewController}/PlaceListCell.swift | 0 .../SearchPlaceViewController.swift} | 16 +- .../ViewPresenter/SearchPlacePresenter.swift} | 2 +- .../EnrollPlaceViewController.swift | 4 +- .../SubView/EnrollMenuTableView.swift | 0 .../SubView/EnrollStoreInfoView.swift | 0 .../SubView/EnrollVeganDetailView.swift | 0 .../MenuTableView/NormalTableViewCell.swift | 0 .../MenuTableView/RequestTableViewCell.swift | 0 .../ViewPresenter}/EnrollPlacePresenter.swift | 0 .../EditMenuViewController.swift | 0 .../SubView/EditMenuBottomView.swift | 0 .../SubView/EditMenuTopView.swift | 0 .../ViewPresenter}/EditMenuPresenter.swift | 0 .../ChangeableAddressViewController.swift | 0 .../EditLocationAddressMapView.swift | 0 ...EditLocationAddressTextTableViewCell.swift | 0 .../EditLocationAddressTextView.swift | 0 .../ChangeableAddressPresenter.swift | 0 .../EditHomePageView.swift | 0 .../EditLocationBottomView.swift | 0 .../EditLocationTopView.swift | 0 .../EditOperatingHoursView.swift | 0 .../EditPlaceInfoSubView/EditPhoneView.swift | 0 .../EditOperatingHourView.swift | 0 .../EditOperationHourChangebleView.swift | 0 .../EditTimeChangebleView.swift | 0 .../EditPlaceInfoViewController.swift | 0 .../EditPlaceInfoPresenter.swift | 0 .../HomeSearchViewController.swift | 0 .../HeaderView/HistoryHeaderView.swift | 0 .../HeaderView/PlaceListHeaderView.swift | 0 .../SubView/HistoryTableViewCell.swift | 0 .../SubView/HomeSearchViewTableViewCell.swift | 0 .../SubView/NoHistoryLabelView.swift | 0 .../SubView/NoHistoryView.swift | 0 .../ViewPresenter}/HomeSearchPresenter.swift | 0 .../ViewController}/ReportCellView.swift | 0 .../ReportReviewViewController.swift | 0 .../ReportReviewPresenter.swift | 0 .../ReviewPlaceInfoView.swift | 115 +++++ .../ReviewWriteViewController.swift | 330 +++++++++++++ .../ViewModel/ReviewWriteViewModel.swift | 62 +++ ...hangedViewAction+HomeViewController.swift} | 0 .../ViewController}/HomeViewController.swift | 41 +- .../PlaceDetailView}/PlaceView.swift | 20 +- .../PlaceOperationHoursViewController.swift | 0 .../OperationHourView.swift | 0 .../OperationHoursView.swift | 0 .../SubView/PlaceSegmentedControlView.swift | 29 +- .../SubView/PlaceSummaryView.swift | 0 .../PlaceHomeView.swift | 0 .../SubView/PlaceInfoView.swift | 0 .../SubView/PlaceMenuView.swift | 0 .../SubView/PlaceReviewWriteView.swift | 0 .../SubView/PlaceReviewsView.swift | 54 ++- .../SubView/SubView/PushCommentView.swift | 30 +- .../SubView/SubView/ReviewPushView.swift | 89 ++++ .../TableView/PlaceMenuTableViewCell.swift | 0 .../TableView/PlaceReviewTableViewCell.swift | 0 .../ViewPresenter}/HomeViewPresenter.swift | 114 +++-- .../TabBar/TabBarViewController.swift | 0 .../Tutorial/TutorialCell/BottomCell.swift | 0 .../Tutorial/TutorialCell/TopCell.swift | 0 .../Tutorial/TutorialViewController.swift | 0 .../ReviewPlaceInfoView.swift | 12 - .../ReviewWriteViewController.swift | 133 ----- .../ViewModel/ReviewWriteViewModel.swift | 8 - 100 files changed, 1089 insertions(+), 491 deletions(-) create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Contents.json create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Point_explain.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Point_explain@2x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Point_explain@3x.png create mode 100644 AVIRO/Scene/Base/ViewModel.swift rename AVIRO/Scene/{View/Login/Registration => Login/Registration/ViewController}/FinalRegistrationViewController.swift (100%) rename AVIRO/Scene/{View/Login/Registration => Login/Registration/ViewController}/FirstRegistrationViewController.swift (100%) rename AVIRO/Scene/{View/Login/Registration => Login/Registration/ViewController}/SecondRegistrationViewController.swift (100%) rename AVIRO/Scene/{View/Login/Registration => Login/Registration/ViewController}/TermsTableCell.swift (100%) rename AVIRO/Scene/{View/Login/Registration => Login/Registration/ViewController}/ThridRegistrationViewController.swift (100%) rename AVIRO/Scene/{Presenter/Login/RegistrationPresenter => Login/Registration/ViewPresenter}/FirstRegistrationPresenter.swift (100%) rename AVIRO/Scene/{Presenter/Login/RegistrationPresenter => Login/Registration/ViewPresenter}/SecondRegistrationPresenter.swift (100%) rename AVIRO/Scene/{Presenter/Login/RegistrationPresenter => Login/Registration/ViewPresenter}/ThridRegistrationPresenter.swift (100%) rename AVIRO/Scene/{View/Login => Login/ViewController}/LoginViewController.swift (100%) rename AVIRO/Scene/{Presenter/Login => Login/ViewPresenter}/LoginViewPresenter.swift (100%) rename AVIRO/Scene/{View/TabBar/Challenge/Setting/ViewController => TabBar/Challenge/Setting}/LicenseView/LicenseDetailViewController.swift (100%) rename AVIRO/Scene/{View/TabBar/Challenge/Setting/ViewController => TabBar/Challenge/Setting}/LicenseView/LicensesViewController.swift (100%) rename AVIRO/Scene/{View/TabBar/Challenge/Setting/ViewController/NickNameChangebleView => TabBar/Challenge/Setting/NicknameChangeableView/ViewController}/NickNameChangebleViewController.swift (100%) rename AVIRO/Scene/{View/TabBar/Challenge/Setting/ViewModel => TabBar/Challenge/Setting/NicknameChangeableView/ViewPresenter}/NickNameChangeblePresenter.swift (100%) rename AVIRO/Scene/{View => }/TabBar/Challenge/Setting/ViewController/Cells/SettingCell.swift (100%) rename AVIRO/Scene/{View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift => TabBar/Challenge/Setting/ViewController/SettingViewController.swift} (97%) rename AVIRO/Scene/{View/TabBar/Challenge/Setting/ViewModel/MyPageViewPresenter.swift => TabBar/Challenge/Setting/ViewPresenter/SettingViewPresenter.swift} (99%) rename AVIRO/Scene/{View => }/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift (100%) rename AVIRO/Scene/{View => }/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeLevelView.swift (100%) rename AVIRO/Scene/{View => }/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeUserInfoView.swift (100%) rename AVIRO/Scene/{View => }/TabBar/Challenge/ViewController/ChallengeViewController.swift (97%) rename AVIRO/Scene/{View => }/TabBar/Challenge/ViewController/MyInfoView/MyInfoView.swift (100%) rename AVIRO/Scene/{View/TabBar/Enroll/EnrollPlaceList => TabBar/Enroll/SearchPlaceView/ViewController}/PlaceListCell.swift (100%) rename AVIRO/Scene/{View/TabBar/Enroll/EnrollPlaceList/PlaceListSearchViewController.swift => TabBar/Enroll/SearchPlaceView/ViewController/SearchPlaceViewController.swift} (94%) rename AVIRO/Scene/{Presenter/EnrollPlace/PlaceList/PlaceListSearchViewPresenter.swift => TabBar/Enroll/SearchPlaceView/ViewPresenter/SearchPlacePresenter.swift} (99%) rename AVIRO/Scene/{View/TabBar/Enroll => TabBar/Enroll/ViewController}/EnrollPlaceViewController.swift (99%) rename AVIRO/Scene/{View/TabBar/Enroll => TabBar/Enroll/ViewController}/SubView/EnrollMenuTableView.swift (100%) rename AVIRO/Scene/{View/TabBar/Enroll => TabBar/Enroll/ViewController}/SubView/EnrollStoreInfoView.swift (100%) rename AVIRO/Scene/{View/TabBar/Enroll => TabBar/Enroll/ViewController}/SubView/EnrollVeganDetailView.swift (100%) rename AVIRO/Scene/{View/TabBar/Enroll => TabBar/Enroll/ViewController}/SubView/MenuTableView/NormalTableViewCell.swift (100%) rename AVIRO/Scene/{View/TabBar/Enroll => TabBar/Enroll/ViewController}/SubView/MenuTableView/RequestTableViewCell.swift (100%) rename AVIRO/Scene/{Presenter/EnrollPlace => TabBar/Enroll/ViewPresenter}/EnrollPlacePresenter.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditMenu => TabBar/Home/EditMenu/ViewController}/EditMenuViewController.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditMenu => TabBar/Home/EditMenu/ViewController}/SubView/EditMenuBottomView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditMenu => TabBar/Home/EditMenu/ViewController}/SubView/EditMenuTopView.swift (100%) rename AVIRO/Scene/{Presenter/Home/EditPresenter => TabBar/Home/EditMenu/ViewPresenter}/EditMenuPresenter.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController => TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController}/ChangeableAddressViewController.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController => TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController}/EditLocationSubView/EditLocationAddressMapView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController => TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController}/EditLocationSubView/EditLocationAddressTextTableViewCell.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController => TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController}/EditLocationSubView/EditLocationAddressTextView.swift (100%) rename AVIRO/Scene/{Presenter/Home/EditPresenter/ChangeableAddressPresenter => TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewPresenter}/ChangeableAddressPresenter.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo => TabBar/Home/EditPlaceInfo/ViewController}/EditPlaceInfoSubView/EditHomePageView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo => TabBar/Home/EditPlaceInfo/ViewController}/EditPlaceInfoSubView/EditLocationBottomView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo => TabBar/Home/EditPlaceInfo/ViewController}/EditPlaceInfoSubView/EditLocationTopView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo => TabBar/Home/EditPlaceInfo/ViewController}/EditPlaceInfoSubView/EditOperatingHoursView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo => TabBar/Home/EditPlaceInfo/ViewController}/EditPlaceInfoSubView/EditPhoneView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo => TabBar/Home/EditPlaceInfo/ViewController}/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperatingHourView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo => TabBar/Home/EditPlaceInfo/ViewController}/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperationHourChangebleView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo => TabBar/Home/EditPlaceInfo/ViewController}/EditPlaceInfoSubView/EditoperatingHoursSubView/EditTimeChangebleView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Edit/EditPlaceInfo => TabBar/Home/EditPlaceInfo/ViewController}/EditPlaceInfoViewController.swift (100%) rename AVIRO/Scene/{Presenter/Home/EditPresenter => TabBar/Home/EditPlaceInfo/ViewPresenter}/EditPlaceInfoPresenter.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/HomeSearch => TabBar/Home/HomeSearch/ViewController}/HomeSearchViewController.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/HomeSearch => TabBar/Home/HomeSearch/ViewController}/SubView/HeaderView/HistoryHeaderView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/HomeSearch => TabBar/Home/HomeSearch/ViewController}/SubView/HeaderView/PlaceListHeaderView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/HomeSearch => TabBar/Home/HomeSearch/ViewController}/SubView/HistoryTableViewCell.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/HomeSearch => TabBar/Home/HomeSearch/ViewController}/SubView/HomeSearchViewTableViewCell.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/HomeSearch => TabBar/Home/HomeSearch/ViewController}/SubView/NoHistoryLabelView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/HomeSearch => TabBar/Home/HomeSearch/ViewController}/SubView/NoHistoryView.swift (100%) rename AVIRO/Scene/{Presenter/Home/HomeSearchPresenter => TabBar/Home/HomeSearch/ViewPresenter}/HomeSearchPresenter.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Report => TabBar/Home/Report/ViewController}/ReportCellView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/Report => TabBar/Home/Report/ViewController}/ReportReviewViewController.swift (100%) rename AVIRO/Scene/{Presenter/Home/ReportPresenter => TabBar/Home/Report/ViewPresenter}/ReportReviewPresenter.swift (100%) create mode 100644 AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift create mode 100644 AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift create mode 100644 AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift rename AVIRO/Scene/{View/TabBar/Home/ViewController/ChangedViewAction.swift => TabBar/Home/ViewController/ChangedViewAction+HomeViewController.swift} (100%) rename AVIRO/Scene/{View/TabBar/Home => TabBar/Home/ViewController}/HomeViewController.swift (97%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/PlaceView.swift (94%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/OperationHours/PlaceOperationHoursViewController.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/OperationHours/PlaceOperationSubView/OperationHourView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/OperationHours/PlaceOperationSubView/OperationHoursView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/PlaceSegmentedControlView.swift (95%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/PlaceSummaryView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/SegmentedControlSubView/PlaceHomeView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/SegmentedControlSubView/SubView/PlaceInfoView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/SegmentedControlSubView/SubView/PlaceMenuView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/SegmentedControlSubView/SubView/PlaceReviewWriteView.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift (94%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift (95%) create mode 100644 AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/SubView/ReviewPushView.swift rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/SegmentedControlSubView/SubView/TableView/PlaceMenuTableViewCell.swift (100%) rename AVIRO/Scene/{View/TabBar/Home/PlaceDetail => TabBar/Home/ViewController/PlaceDetailView}/SubView/SegmentedControlSubView/SubView/TableView/PlaceReviewTableViewCell.swift (100%) rename AVIRO/Scene/{Presenter/Home => TabBar/Home/ViewPresenter}/HomeViewPresenter.swift (93%) rename AVIRO/Scene/{View => }/TabBar/TabBarViewController.swift (100%) rename AVIRO/Scene/{View => }/Tutorial/TutorialCell/BottomCell.swift (100%) rename AVIRO/Scene/{View => }/Tutorial/TutorialCell/TopCell.swift (100%) rename AVIRO/Scene/{View => }/Tutorial/TutorialViewController.swift (100%) delete mode 100644 AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift delete mode 100644 AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewWriteViewController.swift delete mode 100644 AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift diff --git a/AVIRO.xcodeproj/project.pbxproj b/AVIRO.xcodeproj/project.pbxproj index 3b046a10..14ff99ed 100644 --- a/AVIRO.xcodeproj/project.pbxproj +++ b/AVIRO.xcodeproj/project.pbxproj @@ -13,7 +13,7 @@ C505EB162ACC048E0057A4F8 /* Berry2.json in Resources */ = {isa = PBXBuildFile; fileRef = C505EB152ACC048E0057A4F8 /* Berry2.json */; }; C505EB182ACC5AC50057A4F8 /* LaunchScreenViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C505EB172ACC5AC50057A4F8 /* LaunchScreenViewController.swift */; }; C50DB7422A99DCDA0078B501 /* PlaceListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50DB7402A99DCDA0078B501 /* PlaceListCell.swift */; }; - C50DB7432A99DCDA0078B501 /* PlaceListSearchViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50DB7412A99DCDA0078B501 /* PlaceListSearchViewController.swift */; }; + C50DB7432A99DCDA0078B501 /* SearchPlaceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50DB7412A99DCDA0078B501 /* SearchPlaceViewController.swift */; }; C50DB74E2A9B2A8C0078B501 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C50DB74D2A9B2A8C0078B501 /* WebKit.framework */; }; C50DB7512A9B83550078B501 /* ChangeableAddressViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50DB7502A9B83550078B501 /* ChangeableAddressViewController.swift */; }; C50DB7542A9B838F0078B501 /* ChangeableAddressPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50DB7532A9B838F0078B501 /* ChangeableAddressPresenter.swift */; }; @@ -55,7 +55,7 @@ C51385502AAD921F001AB827 /* AVIROPlaceReportCheck+DTO.swift in Sources */ = {isa = PBXBuildFile; fileRef = C513854F2AAD921F001AB827 /* AVIROPlaceReportCheck+DTO.swift */; }; C5166E492A9305A9003495AA /* AVIROPlaceSummary+DTO.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5166E482A9305A9003495AA /* AVIROPlaceSummary+DTO.swift */; }; C5166E4D2A945228003495AA /* MyData.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5166E4C2A945228003495AA /* MyData.swift */; }; - C51AED1D2A8A192D0015FBC2 /* ChangedViewAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = C51AED1C2A8A192D0015FBC2 /* ChangedViewAction.swift */; }; + C51AED1D2A8A192D0015FBC2 /* ChangedViewAction+HomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C51AED1C2A8A192D0015FBC2 /* ChangedViewAction+HomeViewController.swift */; }; C51AED1F2A8B2BC80015FBC2 /* HomeTopButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C51AED1E2A8B2BC80015FBC2 /* HomeTopButton.swift */; }; C51AED212A8B2BDB0015FBC2 /* HomeMapReferButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C51AED202A8B2BDB0015FBC2 /* HomeMapReferButton.swift */; }; C51AED232A8B7B000015FBC2 /* UIViewController+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C51AED222A8B7B000015FBC2 /* UIViewController+Extension.swift */; }; @@ -88,7 +88,7 @@ C5351B4D2A19223300116D50 /* KakaoMapRequestAPI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5351B4C2A19223300116D50 /* KakaoMapRequestAPI.swift */; }; C5351B502A19225A00116D50 /* KakaoKeywordPlace+DTO.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5351B4F2A19225A00116D50 /* KakaoKeywordPlace+DTO.swift */; }; C5351B542A19A7B100116D50 /* MyCoordinate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5351B532A19A7B100116D50 /* MyCoordinate.swift */; }; - C5351B5C2A19F60200116D50 /* PlaceListSearchViewPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5351B5B2A19F60200116D50 /* PlaceListSearchViewPresenter.swift */; }; + C5351B5C2A19F60200116D50 /* SearchPlacePresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5351B5B2A19F60200116D50 /* SearchPlacePresenter.swift */; }; C5351B602A19F9A700116D50 /* PlaceListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5351B5F2A19F9A700116D50 /* PlaceListModel.swift */; }; C5351B622A1A083400116D50 /* PlaceListCellModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5351B612A1A083400116D50 /* PlaceListCellModel.swift */; }; C5351B7A2A1B439000116D50 /* KakaoCoordinateSearchDTO.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5351B792A1B439000116D50 /* KakaoCoordinateSearchDTO.swift */; }; @@ -96,6 +96,8 @@ C53893162A5EC0C500CB9A54 /* GenderButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C53893152A5EC0C500CB9A54 /* GenderButton.swift */; }; C53C54D22AD67E8800C3662A /* MarkerModelLocalDB.swift in Sources */ = {isa = PBXBuildFile; fileRef = C53C54D12AD67E8800C3662A /* MarkerModelLocalDB.swift */; }; C541521D2AC125E100F39826 /* TutorialTopLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C541521C2AC125E100F39826 /* TutorialTopLabel.swift */; }; + C54386762B33F05500BD2CAF /* ReviewPushView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C54386752B33F05500BD2CAF /* ReviewPushView.swift */; }; + C54386792B3432FE00BD2CAF /* ViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C54386782B3432FE00BD2CAF /* ViewModel.swift */; }; C54657882ABF2DBA003A0BCB /* API.plist in Resources */ = {isa = PBXBuildFile; fileRef = C54657872ABF2DBA003A0BCB /* API.plist */; }; C5476B4D2B2F1F1F00F5FC6E /* AVIROTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B4C2B2F1F1F00F5FC6E /* AVIROTests.swift */; }; C5476B612B3028FA00F5FC6E /* ChallengeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */; }; @@ -141,7 +143,7 @@ C58FBF942AC2DB6D00AB6EFC /* KakaoKeywordResultDTO.swift in Sources */ = {isa = PBXBuildFile; fileRef = C58FBF932AC2DB6D00AB6EFC /* KakaoKeywordResultDTO.swift */; }; C593B6472A4AB3A700D224CE /* PushCommentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C593B6462A4AB3A700D224CE /* PushCommentView.swift */; }; C593B64B2A4AEA9800D224CE /* AVIROReview+DTO.swift in Sources */ = {isa = PBXBuildFile; fileRef = C593B64A2A4AEA9800D224CE /* AVIROReview+DTO.swift */; }; - C593B64F2A4C490600D224CE /* MyPageViewPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C593B64E2A4C490600D224CE /* MyPageViewPresenter.swift */; }; + C593B64F2A4C490600D224CE /* SettingViewPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C593B64E2A4C490600D224CE /* SettingViewPresenter.swift */; }; C59491D32AB0336100880B4B /* UIView+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C59491D22AB0336100880B4B /* UIView+Extension.swift */; }; C595ACCD2A84A1A200D35123 /* PlaceView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C595ACCC2A84A1A200D35123 /* PlaceView.swift */; }; C595ACD12A84A4EB00D35123 /* PlaceSummaryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C595ACD02A84A4EB00D35123 /* PlaceSummaryView.swift */; }; @@ -195,7 +197,7 @@ C5E430B32A5DADBE00CB67EC /* SecondRegistrationPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E430B22A5DADBE00CB67EC /* SecondRegistrationPresenter.swift */; }; C5E430B52A5DAE9800CB67EC /* SecondRegistrationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E430B42A5DAE9800CB67EC /* SecondRegistrationViewController.swift */; }; C5E7B7A92A4D3CDF00CA2090 /* AVIROUser+DTO.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E7B7A82A4D3CDF00CA2090 /* AVIROUser+DTO.swift */; }; - C5EB50EA2A1C705900B29CC1 /* MyPageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5EB50E92A1C705900B29CC1 /* MyPageViewController.swift */; }; + C5EB50EA2A1C705900B29CC1 /* SettingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5EB50E92A1C705900B29CC1 /* SettingViewController.swift */; }; C5EB50EC2A1C72C600B29CC1 /* TabBarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5EB50EB2A1C72C600B29CC1 /* TabBarViewController.swift */; }; C5EB51082A209F6900B29CC1 /* HomeSearchViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5EB51072A209F6900B29CC1 /* HomeSearchViewController.swift */; }; C5EB510B2A209FD300B29CC1 /* HomeSearchPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5EB510A2A209FD300B29CC1 /* HomeSearchPresenter.swift */; }; @@ -240,7 +242,7 @@ C505EB152ACC048E0057A4F8 /* Berry2.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Berry2.json; sourceTree = ""; }; C505EB172ACC5AC50057A4F8 /* LaunchScreenViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LaunchScreenViewController.swift; sourceTree = ""; }; C50DB7402A99DCDA0078B501 /* PlaceListCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PlaceListCell.swift; sourceTree = ""; }; - C50DB7412A99DCDA0078B501 /* PlaceListSearchViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PlaceListSearchViewController.swift; sourceTree = ""; }; + C50DB7412A99DCDA0078B501 /* SearchPlaceViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SearchPlaceViewController.swift; sourceTree = ""; }; C50DB74D2A9B2A8C0078B501 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; }; C50DB7502A9B83550078B501 /* ChangeableAddressViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChangeableAddressViewController.swift; sourceTree = ""; }; C50DB7532A9B838F0078B501 /* ChangeableAddressPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChangeableAddressPresenter.swift; sourceTree = ""; }; @@ -282,7 +284,7 @@ C513854F2AAD921F001AB827 /* AVIROPlaceReportCheck+DTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AVIROPlaceReportCheck+DTO.swift"; sourceTree = ""; }; C5166E482A9305A9003495AA /* AVIROPlaceSummary+DTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AVIROPlaceSummary+DTO.swift"; sourceTree = ""; }; C5166E4C2A945228003495AA /* MyData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyData.swift; sourceTree = ""; }; - C51AED1C2A8A192D0015FBC2 /* ChangedViewAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChangedViewAction.swift; sourceTree = ""; }; + C51AED1C2A8A192D0015FBC2 /* ChangedViewAction+HomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ChangedViewAction+HomeViewController.swift"; sourceTree = ""; }; C51AED1E2A8B2BC80015FBC2 /* HomeTopButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeTopButton.swift; sourceTree = ""; }; C51AED202A8B2BDB0015FBC2 /* HomeMapReferButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeMapReferButton.swift; sourceTree = ""; }; C51AED222A8B7B000015FBC2 /* UIViewController+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIViewController+Extension.swift"; sourceTree = ""; }; @@ -317,7 +319,7 @@ C5351B4C2A19223300116D50 /* KakaoMapRequestAPI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KakaoMapRequestAPI.swift; sourceTree = ""; }; C5351B4F2A19225A00116D50 /* KakaoKeywordPlace+DTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "KakaoKeywordPlace+DTO.swift"; sourceTree = ""; }; C5351B532A19A7B100116D50 /* MyCoordinate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyCoordinate.swift; sourceTree = ""; }; - C5351B5B2A19F60200116D50 /* PlaceListSearchViewPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlaceListSearchViewPresenter.swift; sourceTree = ""; }; + C5351B5B2A19F60200116D50 /* SearchPlacePresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchPlacePresenter.swift; sourceTree = ""; }; C5351B5F2A19F9A700116D50 /* PlaceListModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlaceListModel.swift; sourceTree = ""; }; C5351B612A1A083400116D50 /* PlaceListCellModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlaceListCellModel.swift; sourceTree = ""; }; C5351B792A1B439000116D50 /* KakaoCoordinateSearchDTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KakaoCoordinateSearchDTO.swift; sourceTree = ""; }; @@ -325,6 +327,8 @@ C53893152A5EC0C500CB9A54 /* GenderButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GenderButton.swift; sourceTree = ""; }; C53C54D12AD67E8800C3662A /* MarkerModelLocalDB.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkerModelLocalDB.swift; sourceTree = ""; }; C541521C2AC125E100F39826 /* TutorialTopLabel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TutorialTopLabel.swift; sourceTree = ""; }; + C54386752B33F05500BD2CAF /* ReviewPushView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewPushView.swift; sourceTree = ""; }; + C54386782B3432FE00BD2CAF /* ViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewModel.swift; sourceTree = ""; }; C54657862ABF2D82003A0BCB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; C54657872ABF2DBA003A0BCB /* API.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = API.plist; path = ../AVIRO/AVIRO/App/API.plist; sourceTree = SOURCE_ROOT; }; C5476B4A2B2F1F1F00F5FC6E /* AVIROTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AVIROTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -373,7 +377,7 @@ C593B6462A4AB3A700D224CE /* PushCommentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PushCommentView.swift; sourceTree = ""; }; C593B64A2A4AEA9800D224CE /* AVIROReview+DTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AVIROReview+DTO.swift"; sourceTree = ""; }; C593B64C2A4BFD9A00D224CE /* AVIRO.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = AVIRO.entitlements; sourceTree = ""; }; - C593B64E2A4C490600D224CE /* MyPageViewPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyPageViewPresenter.swift; sourceTree = ""; }; + C593B64E2A4C490600D224CE /* SettingViewPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingViewPresenter.swift; sourceTree = ""; }; C59491D22AB0336100880B4B /* UIView+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIView+Extension.swift"; sourceTree = ""; }; C595ACCC2A84A1A200D35123 /* PlaceView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlaceView.swift; sourceTree = ""; }; C595ACD02A84A4EB00D35123 /* PlaceSummaryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlaceSummaryView.swift; sourceTree = ""; }; @@ -427,7 +431,7 @@ C5E430B22A5DADBE00CB67EC /* SecondRegistrationPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecondRegistrationPresenter.swift; sourceTree = ""; }; C5E430B42A5DAE9800CB67EC /* SecondRegistrationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecondRegistrationViewController.swift; sourceTree = ""; }; C5E7B7A82A4D3CDF00CA2090 /* AVIROUser+DTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AVIROUser+DTO.swift"; sourceTree = ""; }; - C5EB50E92A1C705900B29CC1 /* MyPageViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyPageViewController.swift; sourceTree = ""; }; + C5EB50E92A1C705900B29CC1 /* SettingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingViewController.swift; sourceTree = ""; }; C5EB50EB2A1C72C600B29CC1 /* TabBarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TabBarViewController.swift; sourceTree = ""; }; C5EB51072A209F6900B29CC1 /* HomeSearchViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeSearchViewController.swift; sourceTree = ""; }; C5EB510A2A209FD300B29CC1 /* HomeSearchPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeSearchPresenter.swift; sourceTree = ""; }; @@ -516,31 +520,12 @@ C50367ED2A1791840020C6BB /* Scene */ = { isa = PBXGroup; children = ( - C50367F02A1795A30020C6BB /* Presenter */, - C50367F12A1795AF0020C6BB /* View */, - ); - path = Scene; - sourceTree = ""; - }; - C50367F02A1795A30020C6BB /* Presenter */ = { - isa = PBXGroup; - children = ( - C5D93D972A56C74500629C39 /* Login */, - C5D93D982A56C74F00629C39 /* Home */, - C5351B762A1B36C700116D50 /* EnrollPlace */, - C593B64D2A4C48EE00D224CE /* Mypage */, - ); - path = Presenter; - sourceTree = ""; - }; - C50367F12A1795AF0020C6BB /* View */ = { - isa = PBXGroup; - children = ( + C54386772B3432F000BD2CAF /* Base */, C5D93D9D2A581E9100629C39 /* Tutorial */, C567C14D2A5658C700D4B426 /* Login */, C567C14E2A5658D400D4B426 /* TabBar */, ); - path = View; + path = Scene; sourceTree = ""; }; C50367F22A1795B90020C6BB /* Manager */ = { @@ -578,30 +563,22 @@ path = Custom; sourceTree = ""; }; - C50DB7372A99D4C80078B501 /* EnrollPlaceList */ = { + C50DB7372A99D4C80078B501 /* SearchPlaceView */ = { isa = PBXGroup; children = ( - C50DB7412A99DCDA0078B501 /* PlaceListSearchViewController.swift */, - C50DB7402A99DCDA0078B501 /* PlaceListCell.swift */, + C54386702B33DEC400BD2CAF /* ViewPresenter */, + C543866F2B33DEBE00BD2CAF /* ViewController */, ); - path = EnrollPlaceList; + path = SearchPlaceView; sourceTree = ""; }; - C50DB74F2A9B83300078B501 /* ChangeableAddressViewController */ = { + C50DB74F2A9B83300078B501 /* ViewController */ = { isa = PBXGroup; children = ( C50DB7502A9B83550078B501 /* ChangeableAddressViewController.swift */, C50DB7552A9B8DD00078B501 /* EditLocationSubView */, ); - path = ChangeableAddressViewController; - sourceTree = ""; - }; - C50DB7522A9B83770078B501 /* ChangeableAddressPresenter */ = { - isa = PBXGroup; - children = ( - C50DB7532A9B838F0078B501 /* ChangeableAddressPresenter.swift */, - ); - path = ChangeableAddressPresenter; + path = ViewController; sourceTree = ""; }; C50DB7552A9B8DD00078B501 /* EditLocationSubView */ = { @@ -696,14 +673,6 @@ path = MyPageModel; sourceTree = ""; }; - C51385482AAB3AD8001AB827 /* NickNameChangebleView */ = { - isa = PBXGroup; - children = ( - C51385492AAB3B13001AB827 /* NickNameChangebleViewController.swift */, - ); - path = NickNameChangebleView; - sourceTree = ""; - }; C5166E472A930583003495AA /* DetailPlace */ = { isa = PBXGroup; children = ( @@ -719,6 +688,7 @@ C5166E4A2A939442003495AA /* SubView */ = { isa = PBXGroup; children = ( + C54386752B33F05500BD2CAF /* ReviewPushView.swift */, C593B6462A4AB3A700D224CE /* PushCommentView.swift */, ); path = SubView; @@ -732,14 +702,6 @@ path = MyData; sourceTree = ""; }; - C51AED1B2A8A19060015FBC2 /* ViewController */ = { - isa = PBXGroup; - children = ( - C51AED1C2A8A192D0015FBC2 /* ChangedViewAction.swift */, - ); - path = ViewController; - sourceTree = ""; - }; C51B09B62A82046000916BBD /* LocalDataModel */ = { isa = PBXGroup; children = ( @@ -864,22 +826,13 @@ C5351B722A1B369000116D50 /* Enroll */ = { isa = PBXGroup; children = ( - C50F6AF22A68FD0A00E942F5 /* EnrollPlaceViewController.swift */, - C50F6AF72A68FFAF00E942F5 /* SubView */, - C50DB7372A99D4C80078B501 /* EnrollPlaceList */, + C543866E2B33DE5C00BD2CAF /* ViewPresenter */, + C543866D2B33DE5500BD2CAF /* ViewController */, + C50DB7372A99D4C80078B501 /* SearchPlaceView */, ); path = Enroll; sourceTree = ""; }; - C5351B762A1B36C700116D50 /* EnrollPlace */ = { - isa = PBXGroup; - children = ( - C50F6AF42A68FD6300E942F5 /* EnrollPlacePresenter.swift */, - C5351B812A1B547C00116D50 /* PlaceList */, - ); - path = EnrollPlace; - sourceTree = ""; - }; C5351B782A1B437600116D50 /* APIResonseModel */ = { isa = PBXGroup; children = ( @@ -899,21 +852,221 @@ path = PlaceListModel; sourceTree = ""; }; - C5351B812A1B547C00116D50 /* PlaceList */ = { + C53856B22ABC6FBF00D52DEC /* OperationHours */ = { isa = PBXGroup; children = ( - C5351B5B2A19F60200116D50 /* PlaceListSearchViewPresenter.swift */, + C5ED46922AAEB02F00F2DA04 /* PlaceOperationHoursViewController.swift */, + C5ED46962AAEB40500F2DA04 /* PlaceOperationSubView */, ); - path = PlaceList; + path = OperationHours; sourceTree = ""; }; - C53856B22ABC6FBF00D52DEC /* OperationHours */ = { + C543865D2B33D6F600BD2CAF /* ViewController */ = { isa = PBXGroup; children = ( - C5ED46922AAEB02F00F2DA04 /* PlaceOperationHoursViewController.swift */, - C5ED46962AAEB40500F2DA04 /* PlaceOperationSubView */, + C52FA3462A175B20005E70DC /* HomeViewController.swift */, + C51AED1C2A8A192D0015FBC2 /* ChangedViewAction+HomeViewController.swift */, + C5EB51102A20CC6800B29CC1 /* PlaceDetailView */, ); - path = OperationHours; + path = ViewController; + sourceTree = ""; + }; + C543865E2B33D6FC00BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C50367F42A1795D10020C6BB /* HomeViewPresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C543865F2B33DCC500BD2CAF /* ViewController */ = { + isa = PBXGroup; + children = ( + C5EB51072A209F6900B29CC1 /* HomeSearchViewController.swift */, + C52066242A7CACA80038ECCD /* SubView */, + ); + path = ViewController; + sourceTree = ""; + }; + C54386602B33DCD500BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C5EB510A2A209FD300B29CC1 /* HomeSearchPresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C54386612B33DCFD00BD2CAF /* ViewController */ = { + isa = PBXGroup; + children = ( + C5FA0EA92A94DB3E004AD8B4 /* ReportReviewViewController.swift */, + C56E7A102A971504009CCAF2 /* ReportCellView.swift */, + ); + path = ViewController; + sourceTree = ""; + }; + C54386622B33DD0800BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C5FA0EAB2A94DF39004AD8B4 /* ReportReviewPresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C54386632B33DD4100BD2CAF /* ViewController */ = { + isa = PBXGroup; + children = ( + C5A201B32A986EC300A54381 /* EditPlaceInfoViewController.swift */, + C5A201BE2A989FF900A54381 /* EditPlaceInfoSubView */, + ); + path = ViewController; + sourceTree = ""; + }; + C54386642B33DD6400BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C5A201BC2A98708800A54381 /* EditPlaceInfoPresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C54386652B33DD7400BD2CAF /* ChangeableAddressView */ = { + isa = PBXGroup; + children = ( + C54386662B33DDAA00BD2CAF /* ViewPresenter */, + C50DB74F2A9B83300078B501 /* ViewController */, + ); + path = ChangeableAddressView; + sourceTree = ""; + }; + C54386662B33DDAA00BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C50DB7532A9B838F0078B501 /* ChangeableAddressPresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C54386672B33DDC100BD2CAF /* ViewController */ = { + isa = PBXGroup; + children = ( + C5A201B62A986EDF00A54381 /* EditMenuViewController.swift */, + C5FD92F52A9CDB7000CF4673 /* SubView */, + ); + path = ViewController; + sourceTree = ""; + }; + C54386682B33DDCE00BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C5A201BA2A986F9B00A54381 /* EditMenuPresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C54386692B33DDFF00BD2CAF /* ViewController */ = { + isa = PBXGroup; + children = ( + C5A3C3C32A39658A0050AB3D /* LoginViewController.swift */, + ); + path = ViewController; + sourceTree = ""; + }; + C543866A2B33DE0A00BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C5A3C3C52A39659B0050AB3D /* LoginViewPresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C543866B2B33DE1800BD2CAF /* ViewController */ = { + isa = PBXGroup; + children = ( + C5D93D9E2A581EC800629C39 /* FirstRegistrationViewController.swift */, + C5E430B42A5DAE9800CB67EC /* SecondRegistrationViewController.swift */, + C528E4B92A5F9A3E002BD72E /* ThridRegistrationViewController.swift */, + C528E4BD2A5FB816002BD72E /* TermsTableCell.swift */, + C528E4BF2A5FF1CB002BD72E /* FinalRegistrationViewController.swift */, + ); + path = ViewController; + sourceTree = ""; + }; + C543866C2B33DE1F00BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C5D93DA02A581F5A00629C39 /* FirstRegistrationPresenter.swift */, + C5E430B22A5DADBE00CB67EC /* SecondRegistrationPresenter.swift */, + C528E4BB2A5F9AB6002BD72E /* ThridRegistrationPresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C543866D2B33DE5500BD2CAF /* ViewController */ = { + isa = PBXGroup; + children = ( + C50F6AF22A68FD0A00E942F5 /* EnrollPlaceViewController.swift */, + C50F6AF72A68FFAF00E942F5 /* SubView */, + ); + path = ViewController; + sourceTree = ""; + }; + C543866E2B33DE5C00BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C50F6AF42A68FD6300E942F5 /* EnrollPlacePresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C543866F2B33DEBE00BD2CAF /* ViewController */ = { + isa = PBXGroup; + children = ( + C50DB7412A99DCDA0078B501 /* SearchPlaceViewController.swift */, + C50DB7402A99DCDA0078B501 /* PlaceListCell.swift */, + ); + path = ViewController; + sourceTree = ""; + }; + C54386702B33DEC400BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C5351B5B2A19F60200116D50 /* SearchPlacePresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C54386712B33DF2600BD2CAF /* NicknameChangeableView */ = { + isa = PBXGroup; + children = ( + C54386722B33DF3600BD2CAF /* ViewPresenter */, + C54386732B33DF4300BD2CAF /* ViewController */, + ); + path = NicknameChangeableView; + sourceTree = ""; + }; + C54386722B33DF3600BD2CAF /* ViewPresenter */ = { + isa = PBXGroup; + children = ( + C513854B2AAB3B52001AB827 /* NickNameChangeblePresenter.swift */, + ); + path = ViewPresenter; + sourceTree = ""; + }; + C54386732B33DF4300BD2CAF /* ViewController */ = { + isa = PBXGroup; + children = ( + C51385492AAB3B13001AB827 /* NickNameChangebleViewController.swift */, + ); + path = ViewController; + sourceTree = ""; + }; + C54386772B3432F000BD2CAF /* Base */ = { + isa = PBXGroup; + children = ( + C54386782B3432FE00BD2CAF /* ViewModel.swift */, + ); + path = Base; sourceTree = ""; }; C5476B4B2B2F1F1F00F5FC6E /* AVIROTests */ = { @@ -927,10 +1080,10 @@ C5476B622B3036DA00F5FC6E /* ViewController */ = { isa = PBXGroup; children = ( + C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */, C5476B642B303BBB00F5FC6E /* ChallengeTitleView */, C5476B662B303BD400F5FC6E /* ChallengeUserInfoView */, C5476B652B303BCB00F5FC6E /* MyInfoView */, - C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */, ); path = ViewController; sourceTree = ""; @@ -970,28 +1123,27 @@ C5476B6F2B31459C00F5FC6E /* Setting */ = { isa = PBXGroup; children = ( - C5476B702B3145A300F5FC6E /* ViewModel */, + C5476B702B3145A300F5FC6E /* ViewPresenter */, C5476B712B3145A700F5FC6E /* ViewController */, + C5476B772B314F5400F5FC6E /* LicenseView */, + C54386712B33DF2600BD2CAF /* NicknameChangeableView */, ); path = Setting; sourceTree = ""; }; - C5476B702B3145A300F5FC6E /* ViewModel */ = { + C5476B702B3145A300F5FC6E /* ViewPresenter */ = { isa = PBXGroup; children = ( - C593B64E2A4C490600D224CE /* MyPageViewPresenter.swift */, - C513854B2AAB3B52001AB827 /* NickNameChangeblePresenter.swift */, + C593B64E2A4C490600D224CE /* SettingViewPresenter.swift */, ); - path = ViewModel; + path = ViewPresenter; sourceTree = ""; }; C5476B712B3145A700F5FC6E /* ViewController */ = { isa = PBXGroup; children = ( - C5EB50E92A1C705900B29CC1 /* MyPageViewController.swift */, - C5476B772B314F5400F5FC6E /* LicenseView */, + C5EB50E92A1C705900B29CC1 /* SettingViewController.swift */, C5476B722B3145CF00F5FC6E /* Cells */, - C51385482AAB3AD8001AB827 /* NickNameChangebleView */, ); path = ViewController; sourceTree = ""; @@ -1076,7 +1228,8 @@ C567C14D2A5658C700D4B426 /* Login */ = { isa = PBXGroup; children = ( - C5A3C3C32A39658A0050AB3D /* LoginViewController.swift */, + C543866A2B33DE0A00BD2CAF /* ViewPresenter */, + C54386692B33DDFF00BD2CAF /* ViewController */, C5D93D962A56C6ED00629C39 /* Registration */, ); path = Login; @@ -1227,13 +1380,6 @@ path = AVIROGet; sourceTree = ""; }; - C593B64D2A4C48EE00D224CE /* Mypage */ = { - isa = PBXGroup; - children = ( - ); - path = Mypage; - sourceTree = ""; - }; C595ACCF2A84A21100D35123 /* SubView */ = { isa = PBXGroup; children = ( @@ -1257,8 +1403,9 @@ C5A201B52A986ECA00A54381 /* EditPlaceInfo */ = { isa = PBXGroup; children = ( - C5A201B32A986EC300A54381 /* EditPlaceInfoViewController.swift */, - C5A201BE2A989FF900A54381 /* EditPlaceInfoSubView */, + C54386642B33DD6400BD2CAF /* ViewPresenter */, + C54386632B33DD4100BD2CAF /* ViewController */, + C54386652B33DD7400BD2CAF /* ChangeableAddressView */, ); path = EditPlaceInfo; sourceTree = ""; @@ -1266,28 +1413,17 @@ C5A201B82A986EE300A54381 /* EditMenu */ = { isa = PBXGroup; children = ( - C5A201B62A986EDF00A54381 /* EditMenuViewController.swift */, - C5FD92F52A9CDB7000CF4673 /* SubView */, + C54386682B33DDCE00BD2CAF /* ViewPresenter */, + C54386672B33DDC100BD2CAF /* ViewController */, ); path = EditMenu; sourceTree = ""; }; - C5A201B92A986F8500A54381 /* EditPresenter */ = { - isa = PBXGroup; - children = ( - C5A201BC2A98708800A54381 /* EditPlaceInfoPresenter.swift */, - C50DB7522A9B83770078B501 /* ChangeableAddressPresenter */, - C5A201BA2A986F9B00A54381 /* EditMenuPresenter.swift */, - ); - path = EditPresenter; - sourceTree = ""; - }; C5A201BE2A989FF900A54381 /* EditPlaceInfoSubView */ = { isa = PBXGroup; children = ( C5A201C02A98A5DD00A54381 /* EditLocationTopView.swift */, C5A201C22A98A61F00A54381 /* EditLocationBottomView.swift */, - C50DB74F2A9B83300078B501 /* ChangeableAddressViewController */, C5A201C42A98A67900A54381 /* EditPhoneView.swift */, C5A201C62A98A6D200A54381 /* EditOperatingHoursView.swift */, C5A201C82A98A70800A54381 /* EditHomePageView.swift */, @@ -1365,7 +1501,6 @@ C5C2907A2A85E51B00ED5DCE /* PlaceReviewsView.swift */, C5166E4A2A939442003495AA /* SubView */, C5C961902A8D9EA10016E2F8 /* TableView */, - C56295032B3188160067BBE5 /* ReviewWriteView */, ); path = SubView; sourceTree = ""; @@ -1444,45 +1579,12 @@ C5D93D962A56C6ED00629C39 /* Registration */ = { isa = PBXGroup; children = ( - C5D93D9E2A581EC800629C39 /* FirstRegistrationViewController.swift */, - C5E430B42A5DAE9800CB67EC /* SecondRegistrationViewController.swift */, - C528E4B92A5F9A3E002BD72E /* ThridRegistrationViewController.swift */, - C528E4BD2A5FB816002BD72E /* TermsTableCell.swift */, - C528E4BF2A5FF1CB002BD72E /* FinalRegistrationViewController.swift */, + C543866C2B33DE1F00BD2CAF /* ViewPresenter */, + C543866B2B33DE1800BD2CAF /* ViewController */, ); path = Registration; sourceTree = ""; }; - C5D93D972A56C74500629C39 /* Login */ = { - isa = PBXGroup; - children = ( - C5A3C3C52A39659B0050AB3D /* LoginViewPresenter.swift */, - C5D93D992A56C75F00629C39 /* RegistrationPresenter */, - ); - path = Login; - sourceTree = ""; - }; - C5D93D982A56C74F00629C39 /* Home */ = { - isa = PBXGroup; - children = ( - C50367F42A1795D10020C6BB /* HomeViewPresenter.swift */, - C5EB51092A209FC000B29CC1 /* HomeSearchPresenter */, - C5FA0EA62A94D88D004AD8B4 /* ReportPresenter */, - C5A201B92A986F8500A54381 /* EditPresenter */, - ); - path = Home; - sourceTree = ""; - }; - C5D93D992A56C75F00629C39 /* RegistrationPresenter */ = { - isa = PBXGroup; - children = ( - C5D93DA02A581F5A00629C39 /* FirstRegistrationPresenter.swift */, - C5E430B22A5DADBE00CB67EC /* SecondRegistrationPresenter.swift */, - C528E4BB2A5F9AB6002BD72E /* ThridRegistrationPresenter.swift */, - ); - path = RegistrationPresenter; - sourceTree = ""; - }; C5D93D9D2A581E9100629C39 /* Tutorial */ = { isa = PBXGroup; children = ( @@ -1503,12 +1605,13 @@ C5EB50ED2A1C76FC00B29CC1 /* Home */ = { isa = PBXGroup; children = ( - C52FA3462A175B20005E70DC /* HomeViewController.swift */, - C51AED1B2A8A19060015FBC2 /* ViewController */, - C5EB51102A20CC6800B29CC1 /* PlaceDetail */, + C543865E2B33D6FC00BD2CAF /* ViewPresenter */, + C543865D2B33D6F600BD2CAF /* ViewController */, + C56295032B3188160067BBE5 /* ReviewWriteView */, C5EB51062A209F5700B29CC1 /* HomeSearch */, C5FA0EA72A94D92B004AD8B4 /* Report */, - C5FA0EA82A94D935004AD8B4 /* Edit */, + C5A201B52A986ECA00A54381 /* EditPlaceInfo */, + C5A201B82A986EE300A54381 /* EditMenu */, ); path = Home; sourceTree = ""; @@ -1528,27 +1631,19 @@ C5EB51062A209F5700B29CC1 /* HomeSearch */ = { isa = PBXGroup; children = ( - C5EB51072A209F6900B29CC1 /* HomeSearchViewController.swift */, - C52066242A7CACA80038ECCD /* SubView */, + C54386602B33DCD500BD2CAF /* ViewPresenter */, + C543865F2B33DCC500BD2CAF /* ViewController */, ); path = HomeSearch; sourceTree = ""; }; - C5EB51092A209FC000B29CC1 /* HomeSearchPresenter */ = { - isa = PBXGroup; - children = ( - C5EB510A2A209FD300B29CC1 /* HomeSearchPresenter.swift */, - ); - path = HomeSearchPresenter; - sourceTree = ""; - }; - C5EB51102A20CC6800B29CC1 /* PlaceDetail */ = { + C5EB51102A20CC6800B29CC1 /* PlaceDetailView */ = { isa = PBXGroup; children = ( C595ACCC2A84A1A200D35123 /* PlaceView.swift */, C595ACCF2A84A21100D35123 /* SubView */, ); - path = PlaceDetail; + path = PlaceDetailView; sourceTree = ""; }; C5ED46962AAEB40500F2DA04 /* PlaceOperationSubView */ = { @@ -1560,32 +1655,15 @@ path = PlaceOperationSubView; sourceTree = ""; }; - C5FA0EA62A94D88D004AD8B4 /* ReportPresenter */ = { - isa = PBXGroup; - children = ( - C5FA0EAB2A94DF39004AD8B4 /* ReportReviewPresenter.swift */, - ); - path = ReportPresenter; - sourceTree = ""; - }; C5FA0EA72A94D92B004AD8B4 /* Report */ = { isa = PBXGroup; children = ( - C5FA0EA92A94DB3E004AD8B4 /* ReportReviewViewController.swift */, - C56E7A102A971504009CCAF2 /* ReportCellView.swift */, + C54386622B33DD0800BD2CAF /* ViewPresenter */, + C54386612B33DCFD00BD2CAF /* ViewController */, ); path = Report; sourceTree = ""; }; - C5FA0EA82A94D935004AD8B4 /* Edit */ = { - isa = PBXGroup; - children = ( - C5A201B52A986ECA00A54381 /* EditPlaceInfo */, - C5A201B82A986EE300A54381 /* EditMenu */, - ); - path = Edit; - sourceTree = ""; - }; C5FD92E82A9C77CE00CF4673 /* PublicManager */ = { isa = PBXGroup; children = ( @@ -1851,6 +1929,7 @@ C58EC7CC2AB171C000401FF7 /* UIButton+Extension.swift in Sources */, C5732C732A41778A00CDC499 /* AVIROPostAPI.swift in Sources */, C5732C7C2A41D41B00CDC499 /* VeganTableFieldModel.swift in Sources */, + C54386762B33F05500BD2CAF /* ReviewPushView.swift in Sources */, C50DB7592A9B8E060078B501 /* EditLocationAddressMapView.swift in Sources */, C5ED46932AAEB02F00F2DA04 /* PlaceOperationHoursViewController.swift in Sources */, C5732C752A41962D00CDC499 /* AVIRORequestAPI.swift in Sources */, @@ -1943,7 +2022,7 @@ C51B09BA2A8215D800916BBD /* MarkerModel.swift in Sources */, C52FA3452A175B20005E70DC /* SceneDelegate.swift in Sources */, C5351B542A19A7B100116D50 /* MyCoordinate.swift in Sources */, - C5EB50EA2A1C705900B29CC1 /* MyPageViewController.swift in Sources */, + C5EB50EA2A1C705900B29CC1 /* SettingViewController.swift in Sources */, C510005A2AB998F600F65C1F /* UIImage+Extension.swift in Sources */, C5D8E8632A3DEC3900D88A43 /* String+Extension.swift in Sources */, C58EC7D62AB1B61500401FF7 /* AVIROEditCommonBeforeAfterDTO.swift in Sources */, @@ -1963,7 +2042,7 @@ C5A3C3C62A39659B0050AB3D /* LoginViewPresenter.swift in Sources */, C51385452AAAE493001AB827 /* MyDataModel.swift in Sources */, C50DB7422A99DCDA0078B501 /* PlaceListCell.swift in Sources */, - C50DB7432A99DCDA0078B501 /* PlaceListSearchViewController.swift in Sources */, + C50DB7432A99DCDA0078B501 /* SearchPlaceViewController.swift in Sources */, C5FD92F22A9C805700CF4673 /* PublicXMLParserDelegate.swift in Sources */, C5166E4D2A945228003495AA /* MyData.swift in Sources */, C58B9AAE2A5675B9008AEAC3 /* TutorialViewController.swift in Sources */, @@ -1975,7 +2054,7 @@ C547A8BA2A17D8D4004D1339 /* KakaoAPIManager.swift in Sources */, C5732C772A41A0A500CDC499 /* AVIROMapMarker+DTO.swift in Sources */, C5FF13532A42C8810026981D /* AVIROPlaceInfo+DTO.swift in Sources */, - C5351B5C2A19F60200116D50 /* PlaceListSearchViewPresenter.swift in Sources */, + C5351B5C2A19F60200116D50 /* SearchPlacePresenter.swift in Sources */, C513854A2AAB3B13001AB827 /* NickNameChangebleViewController.swift in Sources */, C50E6F6F2A8F10B500703B9E /* UILabel+Extension.swift in Sources */, C52066352A7F3FAE0038ECCD /* HistoryTableViewCell.swift in Sources */, @@ -1985,7 +2064,7 @@ C51000612ABAE61F00F65C1F /* ReportReviewModel.swift in Sources */, C5C290792A85E51000ED5DCE /* PlaceMenuView.swift in Sources */, C5A201B42A986EC300A54381 /* EditPlaceInfoViewController.swift in Sources */, - C51AED1D2A8A192D0015FBC2 /* ChangedViewAction.swift in Sources */, + C51AED1D2A8A192D0015FBC2 /* ChangedViewAction+HomeViewController.swift in Sources */, C51B09BC2A82397800916BBD /* Marker+Extension.swift in Sources */, C53C54D22AD67E8800C3662A /* MarkerModelLocalDB.swift in Sources */, C58FBF922AC2D87300AB6EFC /* KakaoAPIManagerProtocol.swift in Sources */, @@ -2008,7 +2087,7 @@ C5C90EB52AA6D80300AB3668 /* EditOperatingHourView.swift in Sources */, C5C90EAF2AA5B7F300AB3668 /* AVIROEditMenuModel+DTO.swift in Sources */, C5A201C12A98A5DD00A54381 /* EditLocationTopView.swift in Sources */, - C593B64F2A4C490600D224CE /* MyPageViewPresenter.swift in Sources */, + C593B64F2A4C490600D224CE /* SettingViewPresenter.swift in Sources */, C5FF13572A42C8970026981D /* AVIROPlaceReviews+DTO.swift in Sources */, C541521D2AC125E100F39826 /* TutorialTopLabel.swift in Sources */, C5B071E52A59B4AC00AE709A /* RegistrationField.swift in Sources */, @@ -2019,6 +2098,7 @@ C5476B612B3028FA00F5FC6E /* ChallengeViewController.swift in Sources */, C5A201C52A98A67900A54381 /* EditPhoneView.swift in Sources */, C5732C712A41739000CDC499 /* AVIROAPIManager.swift in Sources */, + C54386792B3432FE00BD2CAF /* ViewModel.swift in Sources */, C50F6AF92A68FFBB00E942F5 /* EnrollStoreInfoView.swift in Sources */, C5FD92F72A9CDB9300CF4673 /* EditMenuTopView.swift in Sources */, C56857822A7113CF00F52715 /* RequestTableViewCell.swift in Sources */, diff --git a/AVIRO/App/Assets.xcassets/ColorSet/2.0Main Colors/KEYWORD_BLUE.colorset/Contents.json b/AVIRO/App/Assets.xcassets/ColorSet/2.0Main Colors/KEYWORD_BLUE.colorset/Contents.json index 5f719ded..5fc45dec 100644 --- a/AVIRO/App/Assets.xcassets/ColorSet/2.0Main Colors/KEYWORD_BLUE.colorset/Contents.json +++ b/AVIRO/App/Assets.xcassets/ColorSet/2.0Main Colors/KEYWORD_BLUE.colorset/Contents.json @@ -6,8 +6,8 @@ "components" : { "alpha" : "1.000", "blue" : "1.000", - "green" : "0.600", - "red" : "0.250" + "green" : "0.478", + "red" : "0.000" } }, "idiom" : "universal" diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Contents.json b/AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Contents.json new file mode 100644 index 00000000..c57c0e78 --- /dev/null +++ b/AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "Point_explain.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "Point_explain@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "Point_explain@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Point_explain.png b/AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Point_explain.png new file mode 100644 index 0000000000000000000000000000000000000000..65c65fab30edab2a89b0623838407b8353930506 GIT binary patch literal 2556 zcmVVr&VJDh$<EPD*#B!jZ}@Zk$!S^LW{n?Ix?Xk{zim z+t?de+TN9JJfRCDpo*ga0`Urb>wevIK)tw!JH)>K5!{|3krFj{-bkYCl zFKkRrdbJovzfzO4GIn{nE{N*Xbt{~WK4(j6kDWZw*c~RtF#4MTkq4iZofsy>Fbo*y zlxbKD!*CUKc?3a>ieVT+9bFc~Ft#y47)F2z!Y~3%5QY(8f-sDLt_Wi2z@V%?`$wrf z{Yp!pn|%Bw|GCk@V?kSoWcc6_DVn&x^3aZ5ac#^UeRccq*q3EvyW@SB7#%p~ZNQcg zwLk5JAM6E>Nr#O8_<4E#$V+nNt9NAW?g#!FhF*B;w5;5ISC+qi*9&6&C(p~~cV7jc zdoH%U&HK09eP8;Yhkta$e=anB`pHu=^Rrjv^#A`VYj-}7yo?V1TrNC0?%QOnOSj%> zdOzA1_n-OcFJs$U{`!AXz4uYwj)+|$v^6?#RI==(jgZCTulZ}GYg0j6gH7X^IQ-(S zxru{$#ui}AYj;1)ybt?yZ0*8W8FLc!p?0Ny3V-L)`fYvI{Ze{HN;F1!M2_YqFqkDS84jY8l?+W zBurp^q8Gd~&%5;G!c*feioKX9*kyLN+s*H>wKK-N5RIdD5;<|W>bD@|H{=wN+X;eQWU{dfp56T0_WTT$ z2fb(!6>T6G0u}=29#T(Ozw^FNed54Awehxdeqb(=(#yQ)n%{^?={jv23KIm8vz6!> z(DqpmcB2!nevTdb(k_Jw!k=Jh)N65onhNMbsl($y(ZaUwp!pqgyLc=&pLnoPj8`LRQcixw zEq)P2KF&q^j7ROvA}peD(7K3QJ8o2AL*3DtyXOD5MBem`odhueqQ=2-VE#-J1a+E@ zpL?0hr2gi=SaSjIztRfy8&`|8OV4TuU~%VMR3Hkm?W&{epW)GL-s8BCFo#B1den+@ zvVAXnzAD{-{t!JjT>RwUnSu@rQi{(w2l7F~r7KzK0{2mj*G~gq-Y&LJzBjYoZd_^_ zC%mZBs~t(Hqy_=*V`pIwIN(S+MPldEQ>67fANpEv_qfvE@07v>QP08aJHv2F?yunN zbH{$`w{65gE}905r{~VVcFh7UxTpepIzp|Wj<1Cs=^Up@oObX&{la|XvuTVt;b`iD zU56V-ue`#7H3=dl^$z!A=X?$kYC0Dd(MiM|3WT}1rgu0cbF9x|cqKVBcGCaOj-u@j zCXP2s7zDJQ!+r$0@xq_n-2EfAElshu8a2Z1c8~0O_QUfBcC7WgogKMCVS<=!oZ94p zV?SyPj3#2{b&@dmMiAjOCJI4ZcM}!O(TOA@PI%KUm*!O$*PFRgFY<0)il#1Wce3jk zA{n3Me#DcOKgWSnA^Me=&uLK|7s-bX4EWuYe#hSbOYorciJh7X8=M3ALySgSn)1#x z4jQ84jix-B@5h}Csu&P~wyQyp_L-OJH#a4T=)9+aeeCvI-+wEe(y<_jP-~I1c4ez^ z+!ps47WCpL|0?9DEDL?uLz;v`;AB~Ov!)svDcfPi*?G-53xaRA4PQXV)G!rEE~@nu zi}!I%wO1XCfT81|o*|GBVEn0EBLXMYIvX$i+1FL9pYAeoLg%w_r)h|SI)wL<9 z$>Z#fdoZWZhr*h$T{;#-c;1{BCL>R}Q8am;E=TF)L1Et0q%?dA5#u-~GSX7!mj{p& zL8Prad2`w}@6t(jnb#lR+2L`lxL`#T=3YH~;Jz@84N0>-PY~o-HSTaG_E@%YMo`2< z-JTZJMmDXa4k0+lB+hzsr>09Pz=_(tvhIUvCzOhRqJ5~)^ZzKV*p2wur5+hUXhGcS z1d>`MJ$RwLa01%xBTrvxbkb+oMszW=ey2ytv+Ly@U*7xL$qM42_Q3YghP-yiJv%9a zl2p$Z_f*5!m*_K^z4*n;hYb^ikxBiS`B36Bk^O|#5Jo0NrAUtg_D@I+Bftb<7y)Jf zO)7?AK-CGNRu#iAco2A_?EbSZhG96$%Wj7_xFmd8gkkhGu5=i?v{aU{`7No*IWdfW zhHoSlJ!KlZyzDM4h+*_2!PoOP|69V1^A&exMhv50U?Uj2Jgt9?`QmoIa}H71moOUp zntG`~b`(%byuJQqj1%sbQ4@!;Kj4|0d(7ZZRu3-u`Z;=s7<l%B531Y7)N)#rBu3&=b2Azt+#LzWN5Z$6(QJ5IIiV32dv?>Y{L)S4ubep`QFfsH5 z6GSh_5`~GOXP6**MUp5?3_ZmJ(MzJDFfkZ?52C0}UH88kU>JrViXkx`3Vr}MFHxUg S37#VW0000W}*vGAqgc2(@F>2Q+Dz!!Io$8=!?@>~1iB&Nw(wePO)ff#AwO47WJz9?~ zO4TS@t5)q1yz#v6$M?g1-~a2p&+~tt$8{Xnhu@W8Wnp*;%nPQXqPk>kghWwMQR67u zA4pGmH-6rKNBMvPjckLcsGyfG9%^Hh*cK&79fUGOP?ZnxuTU0rp1S6`R8&>TjAUm3 z6&0(UF;dqignIq0r62#8K+h~(&V-6J9t8j(uFWSS$6QWOp*zR78pNb}P+dmr{iHWH z!YFGCTh$?2&CXY$vH-bSRdvK_%-QxG3IQLq;xpI%duF7+)o3_3)X3V`ivopXZMZ$J zlv^PgJAdmVneMgWun>e#bjh-F0T@;h7);<_)q9+ooV+Z1cAb{TBb?my3 z3%sj#Z$3J3>RB`dVYCxC9pti~PB;#-gndxEGB=f4e7XKIWhmuT0o!DF@hWSWl=#xX z)eAq~MC~R2C?VaD;f{3~N-+>EkqpCci2^+>6)!5@{+J=Frn~qsQuc%n?(+2(S)vP!LB6r($NI+Ss$5dT@k{a4USEMhHd zY?g;6k=+h9>;7!w*3a*;>kn%l_ibzjke71upX{((Gwcr59rd?#E{+S~L^9O^jUEbm zZJueCyTVrw6yGnHw!glsgEjbj_d60zr&5$#F%E#rHN|VKrT`S8p9WT?^QehM`bV?4$ z_X;evm^~2P3})&+E3+(^J26Rl2)jC#m=JWNubZX&r~IU=+tpM=eo>pO=bjyn0(N#8 z61djGgbpHmupQL3*g(kOO|j2L{Wb{u_Z*=JZaKm8IC#WiaYS<2y)eU4BXqAchwp=P z&&_l1YX4upEn9zc^a($e+8NDEhH0jom(ZAS0`wgf;mUyi$&4n;co6Wu182ZY!&t-iwA=50%%Bk+p*blDWW8Ah4s$Fp?*v zJk_x$EDD_*)clt`ez)br2Fn6?fqtA>#0hS;K(lFi{e^eK%l4q2%(f*9#9u!wQDur3wt%|F9=xsKATX$(Hxo97`)3=|~r2OV9oEN#v>pSL^ zt<%Xv3hjyZPf1VByU&C{2PdX*KXJ{K?x0RCyo;7s*!XDsZPFybMkBh_b2#yOQX4tG zK0&vr6N*c-V9HaAETw;;s0m@tF)h02neJ$Sq?jMC4 zgC%ynd!n1Cg_b#-)Hlqai_bNjzGHJ&xQ;@j4!{++Ky*y;{Z1s->B_|XM5z8Mty(}85^nQc_EO+o6)_<0b|?P2$F>;$@~SIun>BELAb4)&(lk!|vawy@07NQiW=P7F zKmW=#rrM9IG*~pby{B!k2dglzZHV=v@fNv_vEzeW;4$Ulazzp6M?8J;duOhrTxBJ7H zOc&m$O3P$HCo>X=kxkZJtUHl#O^wYudvw%Vf%n7UD`i010UIx-GJMywyD5d74~GO7 z?j|tpJuPhwtca`(Cw^}{|Hyu^8ZhFm` z(=r(tmT3MG(2T_b@07(UZxpbl%pm#-kd}aiq$Zf+&+uI><5UXob;s z+$++f1Rzaup>iTO?s&C2{0Wp-9`a%DncvZ*SZ+i5(rU795xKx21ISqR*LLrIa&?%z zx6YpetZO_DMZvWn*9RHT1-u-;GHw<|t?)^$v1X~V^xMOY1CeYG|d zI~`22u+AR2~PSn(RcPR&cPMrOJ5|7;sYQN1KF`^V>` ze;inZQSdQaHto*r`Y8tR)K6=FO!~W>v2CR7NWEZNkx^VEv}8X9-{P!;-sG5wCpb@7 zG}x>1LPz`t-kJFCCEh2s|=w&I@QjIu$jGZz(s!6n;BupSp9OVN;0d5 z;fJ2J;p9jYq@_-(J}MR&_z$QfQ&^-8GR0jB*qO&S6dN@w3|&grtUuAJ#&=3OrK-{U zxEu48@q;5LdX8MRXUET3Vm@wdhU3eCWie0yiLo{FwU11nvyLO?!J)XGwE-PHR}j06 za_mc*Ndd*>zI~^2m(aVv;v$=0jxRo8J~@iE{%Q)VtQ65I`QG(lW3&Yd1-(~x5EQeG zoGkV4vaP0}x3-j7W&iRMxjatYZ90Kb-2BY?8?ZoT;L-dsf%Ao-PghmM@A6h1bS)0$ z$DOH+_5UVF!k-$8&%ZYHr>i>ZXVAMO^c*Jp3-kBV=D5~xp-h>aTdYjtr5UbrLmp3N zNdgzWzempGZ?w99Hm6s7X-$Tmw19T+Sf|tH27(J9z>sisM`dj$#+ZqN2wM%Lb3hhySz zKbU&dOP?j|k^NNwJjvLu)AG)({yOKvfu?cZ8l#s8*!CI(M2j(=16Qbi-Y~V0+^hr| zJZf&Yie~A_PeKUA$~^~j=Sb2LlQKZvU*0##?cSFFn%#MGZJ)DeD8D%xbKU4`Y=L`P z$ey%`1#g_ox#Z*$HOkkx{7MkpeMliZS4;UmHWPA*mSFPYo9KHbNI3WVLL6=Dgi1yQ zuD#-BDgAxg4p1sC=98{9f8}h^0m$_YsidOUyeSRUjqZC*iglywT6l#vtP!#HMurq* zo+z?cJ}3?z1WcVN8_cnH^ViF2@>S08tOEa36H+=eOE&U1hCSoKU8{=ei)FmVgTYf9 zrkVhPXXgt51sr&cgY=FyqUL%svSxFwO3KCejAHh=t~pA8{hlGvw|TYQC1aoorC|NH z0m#mxcf$Tzi)2n}Ky(V8{lMYR!laPZTR$=WbMEvd_?QW-kEc&xrt-{gar#sB{TCjy z7{%Uk!KEd$6D@`EZM(KtjO~dm4-dMkxG;nOtAa3;dVb3?7y!&v%|jJZ{8-gG}w zWJLfI82*=Rpv55Jk5TUOeFX|ebr(4EAaBF;tukw2=Ks$({|7|C&Lj#pA)bCurJ4H= zg);q2v4JNSbT*8hP8R=FZ+fA5+E+xoI)N7q^|f%}bXndZWA>j5mJ-SKR}7jX&MvOv zLxP1RVj&}R*Z%q|u((u9TyWb@!8>g%jxdif_2(j#^_Sg|EK;mLxv-x|SOZ&RiN>bT zi~6#}EK{$6V!8AiE~wB*3EhRq3$||AnblP6X8MRwa%g^NhdG;{XShbVJVEP423!!L zd9J*N13~57+p&M_t;T{s1(JyyekO0U1HxKC(|*2H5;;|3l%6CO`Lf*y63cU2C%R60 zFrVfwEd~F{i&L1;dI2NW| z(+7_*(g`nk_@d2|e%9n?8zrwdViZpdAJeAwQdo1WFk3_y4XcZy(S2|E5g9$N<3kIG zCdE9!QSh4t2GbR@EO3JGw8a7(K$Lv9C>sX@%2X0UjC_7eOp=-S!3t)i$&+Yg#cx!W zr;~DwD!q{F6d8Ks`GpkCr9@v;Tu4`n^him*knbpRF~$7C0ZnnJF_NJ8ju=sVF=FhL zZr-vSz!9_g1j-D`ykI(Sxw(rW6XR)gvl8!7s$zkZvrtHJ0`ll!VRVNgX#6~7@7=WT gzI_FYUE6*VogmWB7$q!Axpkp3*0(^GBb=iD2iW3Q+W-In literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Point_explain@3x.png b/AVIRO/App/Assets.xcassets/ImageSet/Assets/Point_explain.imageset/Point_explain@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..704e05e9dcd162cb46ddb782dc88534aabe545d1 GIT binary patch literal 6612 zcmcJTX*`r)`2UBfEJLy{Q3^@67<`Eml3m7b?CW6clVuu`Xdx;k5wbM)u`dmSD6)&O z%-FIuj5XV28UD9^PySDT4}K5k%(<@l+@I?@=RU8Qd*07Yjdj7y0?Z%~2&{Kc+YAJv zHw5OnXHNrT*pen5cw-8baQmv*o!q_k%0e)wNsc zGu91N{R;kS3Tg@mG!UVC)BSyeTL0ni@T2~%5JQ{VlqCMDTb_oYT_NHae6wf5lF-&M zI|wBAwh#MWvXQ;Y6X(%!fEr5eL?|>gdFl_y>zLh38*|(g{`-;I{NE`M$h6dGXw^aC z_lAY+&DFHWT%4)3ef{CL;NQ=^0fBC#!)7{5J`h8ddSAt{7&3?fdeqd0eI4p6i?NlF z@gDuq$mZLn6-T9$j|TWMz(eZQDV_y>t!_2Jk)13Cc5&qlAdtZ41~1iVn6jO}Oj^Pq zRc?=Qa=IkU-nJXq`%j&!8At`%ZY;qulTyr;qIxijkLu+EfgU{=Q=04yhQ}?wIhE{K zHji|yh&&Ghd0pUsB9dmpZ1gAk`H8n}Kf6&?V7x;+FFJI0`to%;;KCv7m4ne3d;OJ( zXgIkyJ}wPtPEOe4uoJTXmO(@1 z%IN)2E@vhXDB-i~nT8MBOY6=g)u@q%1$AJ{Lb)G;DO(Y#yF}R&UwD+UR#5QCk!71KWb!xl zBLUMEtb%;0Fvj(N()_Y=NX&_mkZOnc7#kx9bTQF86^PHpw*dR~>e2tf=rnk-%JpfJ zk4NH1p?dUIagvd}A)3sjfczUajX<%leOPVC;?HwMWi0Os^{H>pwjhuZA|B2M_O!R`gG#w=g}F%~RySCwT9R^1k0VZ9gS^ri~lQ8{ZM-WO+oXX&P7Zqmd4` z*^m8RC9Wc;4mU3=9CzAb*f34Ot+1#-_^;i*zH|&6)*PQ$h+_~Rm$%5Lo=S7ySrYjW z%Xw?1;iVF8>Z~DO%RBb8PfY6g+x&#P{py?Q(3+Ry&GK^zEl=o-Rx<{fw#UA4+?rTL zZ}G-FfLePSunWG5mGP3jMdgG-=%Fk^Y9WM1Wj=k=}<$ zy=Z+AfkMi^Co~nN6cxmunp_`D&hNEZkMvB`m^)Opf3*lfw8efF7aEI@ioYRKtVPx0jtV93ama6BbVb>y zpY=`Zl5{wJ3dgs&N_;+q3Jmb0T76jtS51_)z7^M5)EGUYq9f*|@+xC)v^{k=t}p+n z%gtNjepxO%Q0CUb9E>icZCRf91(iIDB&5ikmdU(H2FoAIjZ&9qot77}(k*0LO59g6 z5|%5Ba3+lTWPI}|-yQ4|Quz&3N!MDS&oz4JsY(7h5*>u%d3nd2d<`U8;z!%w=)3C7@ zg%Ljg0vEQq6TMzKcVM|5Q@tKrxtuX8bNZX?#_rVI%vJ$42xhX3qYA(pw#L7a(La4$ zXIsrwqVIIr45BIIiNBP&_TeJ0Xo6w~mL3t3s%nIA5G481b4C}QkH|&LmrSc{jX9lC z#X<~Kv$at#w_!a|L7n>_y{ttKn;Z;Gdee7qAqGKL>LVngqHCGkb4jLcraT!>?6Y;& zhghE|N*C9Mi9RalG`B4T|N&GWl(f|kZqpb*&O>g z{4aPL<27|dh^N|Kg6q%9xDsEy0X$;Oyn_R5msV8jAkO7a+4#j2cCcmy)%C;+Pbf(G z#C4U(2dl^Bu{?g2!f&JUhteWfa8x$ezM}wZ^HIf)G}rsN0IT-S$IlJ!DiGqk1zdV9 z=7U5p(R1p%k0+Rer&ZX*hyn}MlfQ~&>lf8M@e-W0o3t$FFSGFf9v9%^9+rN^=$Pmp ztE@O*Uo~x->KI*Hu|~aBY;<8Uq_`t9_(sjJTNnrN@d|#K&*#x9XRW#%6b9Fc6_N;J|^JSM_H*fW;F(d8mQtK1R zKK$c+z2B-BF+)jBzLok7jbE>hL5Pd0I)+gb+%zdEyRTPuNSiv-F_fyu*JN4&n!x#^6T= z)rIpL$EIOdzi4P6FFwu#&#c-C7ri;ktw%mA+=aG?k!@_1tOWD&CBqtXq6(%o>>+)6{UQ z1=(avBPd@ZJ{e>zr{Pr(HR7{pX7jqT{gz!gV}3FEgFE=MNur z3T`@-!>&`puLd(7=Ya_p1;!Z;2l7{}6ud)HveHEA)w_G%)mG4^Y?hyt=p--+{t-u< zdY$6XP}_e#So)F5iyAC$$UnW2qWZS9{OxZ%-)>)hM9Q0qKK@jg`dOPq=mj!!cp#o5 z-XS$(_vzpnM+y7w6z}T#sAf{R_)><_?RWB_`;CQFFV` ziqd)cV8)r#-$syW!r`615A9dh5yibj!9o|#4+l2~9w>kA5$|p&RDPl3RK$ebBVh+= zJI~M8Ugf*%|5A5y+n8!8+e>(UG?3dak8rAt)x~tONqo$3XW{?(%27gFsZkMP?NUCF{ZUsVqlc_h}$}u zD^u}~liib$iJH%)VsgW`$6AO5pqd^T5NoFv^PrENZUX`Zo&S_HXQ=EZN!L`M8e(bwka@101xR2K`dH5i|7u78+9td{F zfHiHbUf0%~G26z1Ye|g(>;{vQfdLq?28Csr%u({FqaEVUPz4|{)vOE{4i-TO zYI5*QPos*HosdbteVVHHc;-XpFo$54h?Gc=()B@~Y#U>X0klQ2>WE(_QdRZnCqNi;?#xVs}_OprntNx=AbMK zUyqQk2iDy1-uAVpAY@u)k~2-fZC@yJgv+E6;zu~pkPadiv!QD;l|vHP3ER&6F%f-v zI;R**jD^RTP8wHYNsZ;9lGT)03F+W-;DmjL*m#_usy#+cdM#E|?&Y&~9HRToGhF&| zJx@;oakpgfTJtznL%~X@>h#XdaU5YeVz%mj=@a@F&1XN2cFPwz=9-)nOeeC6P zOdpNnC?@OG!81x0=b&D=fGvBOKHDcP=JL%BOGM?5R*Tr!@va^Z|XZ23Qh?dj@FZS^)5eZp7n1|x%uz;C)L{%@4hfc5`Mpz@a9Z? zjBD&KSq~rAi3!Ghpwes}m-!??YQXUEiaGvM1LY8?OrUxJmJtoPqKf?cJbFr9{ca7K zw5y{tYj^|RWO)W-;%K9Q%uenD9)Dex-xHpjUdroQTXJeQJ^D_0BM@!hk!cYwz&@E3 zG39H&5aF=HaReJ3c$_&`WF_x-YX^6H|4B}~ZL*hsjrWa@kZV&uIpx)X%gwBtf0SEm zgd|A$#RVi`!3!+4?uH>1uf^n~Rp`A_W(tP*N7aJSwDqTF#q`E|zS(<8M;&3QsSee< zwS~N}{;f1+U)u-%$)yeoNlTY_0_+dlqW+2?wArDIZ;VxQq+Ttg_uAEAyuIfwSpB5} z-qj1RLL!VrC?(!vlzL&DY5fg_D)7@P%FYxK^P^ZfkjRp2;}#w@5x{^6_`aez(_ORv z8P<7@t+iBla67YoG9M9iZxbCgDuN5$F{FeK9Na9V>O%~0sa5#XGYPofGL37c?Iu(X zX$IYjvxZ{h5qso{mwZ->#Mti}*a5fPyZTxgMl$z|hjOhLzFR4757O{<<7>&OL}t>CJ&;H9^kK{n~FNh(Ce^h$*V!MPdq#N@FjWP3it0t z@(T>&9WS=N-g#D*PvN#G>;4XnA~z*9>`Gtfx`L>>mn;r_MxQ9<1?!aG&Ldm4p#rH( zBp+xicT1HScyLMAK_IOEsezl@lIAegE6lh9d&iUS?(k^{Jf~Bxb(0gX+`21e{iAjd z0xLah=v*mlc3&3D)~=9*ZZ6A4%a;Vp(F)FV1UtwuYW;4t9Yf)zIZkl#H zKhs|3>|7^xuDAf7c&TqUlN<6ECdMlZGwI}M4;lQqirs&|F`svCMqo2(yxxv+*&uNp zECDUiY4sSq^2mvTZW7)?%3c)CQt_6~WA{mbHIqMIda=%}@0oa%Q%1X|z)H?>{oyFk z&SFIQP*OCJQ?NBs5z{FV&d~OTJ^uHw^CxNmH%mcEDI~hEkL4!CX(D2e_ox|ZDs{Cc zJg}@NR^p?oSGQs6hI;W`g%Uwmj^WM4J>-tV(iJSxvM6R{Rg&52ATimzWF?J9WKjFX zLJVzbyK39ImC<#wx%=QtOx$$wZ(1gEAhVF|kS^zi5PIXHd_l|^i2~^UyQoT8ii>3u zyrMO&(`ly50?IHv`I|_0XWBE}xq$jo!|FZ%=WyWhB6@1p`tkX++v~(~<>#NwHPkyI zn(V*ow6-o@AKX4$r0fPfyY>o~#2h$2`#>>~Ui_3ZMSc^?ITui>)_aaM>aI#> zAsGLNK^#Bdow zvP0N0&Y#w_Z{HE9HLgh6)L?(Q+15!%q4PB;7n7sA-79$|LG)?@B~lEQ%-TCNGMXqL z4&XC}Z8)DgHGz@>sk~Q(6<Ff#d{a=iYEd(M2xFle4B_g`8!4sJN8rY$Sj;;WF5;TTv2qm;tpFp}_ z14K+5KnpKUVR%!;l}{j_kT_l#Lqu|;{r@38#5F0#WjSOo7~qGGA}7}%G-P?e!aNS3 zhqu4Y6z?mXHDv7u0&Td8pVe_#Jw$)BgdebBh^V}uzs@;ME<;820f|QyBSeUTfAhJc zvZyWlh!23od( zJDQ{JYfGN@hTr?_|A1tqd1i>50(SJtPP}K-mo;>o*a_j3d5iX#o+?Lsx6E}! zPe?7Tws%FX8*73)mCRGMV%&G&8V-~%{fztE864;+&q3|HsCYqC5g@QBoAHfg1kwOM zdn);_&M#&o)_x#sN!-2B=WAyDCb83H`4C6FU~uBv31Hde;xh+J;$1wcZp*zo>kXET zsI(h^b#EnEHY<;t?#2({R5zdSu2h=EdIK-OHg7BV?z4pC^F5C5;!V9{NA6EECX3>Y z0JnCf7)D8&^sgX(8M#=1WHYvfc=Q2Qgth@qNpnLd<~=PWb$B_X{ahwsv%~eqk5A!C zX6+}nmoBHEWu*(Q?JNC!jQNQlc8_+Cra!p+1&$A^iI4UJ{A~hJY4VKP*JBCgcvd|$ z)dO^~D+@f1_iew6i(LjK$O7lEp@PZii5RF8IA{~LB57w0K!ca$=$?&|2DGi|UkOJu z-L4#o6>mNN$QMuy!i~H{uhacVY+<;FZ-07{eh8#1;lBUUNkF=x{hxZ~Tqd8n2KZj^&;061&A_|DC#`e=a?_I6 z{~R{~Iak@{iKD3u;231i^G~7+NHPbtIGvepLx5hoENoADDPRL!_L$jE);26EM^|vy z`Cp+3pwKYCsv<`UDB(09sR{bGil4xm3mks`Yu6T# Output +} diff --git a/AVIRO/Scene/View/Login/Registration/FinalRegistrationViewController.swift b/AVIRO/Scene/Login/Registration/ViewController/FinalRegistrationViewController.swift similarity index 100% rename from AVIRO/Scene/View/Login/Registration/FinalRegistrationViewController.swift rename to AVIRO/Scene/Login/Registration/ViewController/FinalRegistrationViewController.swift diff --git a/AVIRO/Scene/View/Login/Registration/FirstRegistrationViewController.swift b/AVIRO/Scene/Login/Registration/ViewController/FirstRegistrationViewController.swift similarity index 100% rename from AVIRO/Scene/View/Login/Registration/FirstRegistrationViewController.swift rename to AVIRO/Scene/Login/Registration/ViewController/FirstRegistrationViewController.swift diff --git a/AVIRO/Scene/View/Login/Registration/SecondRegistrationViewController.swift b/AVIRO/Scene/Login/Registration/ViewController/SecondRegistrationViewController.swift similarity index 100% rename from AVIRO/Scene/View/Login/Registration/SecondRegistrationViewController.swift rename to AVIRO/Scene/Login/Registration/ViewController/SecondRegistrationViewController.swift diff --git a/AVIRO/Scene/View/Login/Registration/TermsTableCell.swift b/AVIRO/Scene/Login/Registration/ViewController/TermsTableCell.swift similarity index 100% rename from AVIRO/Scene/View/Login/Registration/TermsTableCell.swift rename to AVIRO/Scene/Login/Registration/ViewController/TermsTableCell.swift diff --git a/AVIRO/Scene/View/Login/Registration/ThridRegistrationViewController.swift b/AVIRO/Scene/Login/Registration/ViewController/ThridRegistrationViewController.swift similarity index 100% rename from AVIRO/Scene/View/Login/Registration/ThridRegistrationViewController.swift rename to AVIRO/Scene/Login/Registration/ViewController/ThridRegistrationViewController.swift diff --git a/AVIRO/Scene/Presenter/Login/RegistrationPresenter/FirstRegistrationPresenter.swift b/AVIRO/Scene/Login/Registration/ViewPresenter/FirstRegistrationPresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/Login/RegistrationPresenter/FirstRegistrationPresenter.swift rename to AVIRO/Scene/Login/Registration/ViewPresenter/FirstRegistrationPresenter.swift diff --git a/AVIRO/Scene/Presenter/Login/RegistrationPresenter/SecondRegistrationPresenter.swift b/AVIRO/Scene/Login/Registration/ViewPresenter/SecondRegistrationPresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/Login/RegistrationPresenter/SecondRegistrationPresenter.swift rename to AVIRO/Scene/Login/Registration/ViewPresenter/SecondRegistrationPresenter.swift diff --git a/AVIRO/Scene/Presenter/Login/RegistrationPresenter/ThridRegistrationPresenter.swift b/AVIRO/Scene/Login/Registration/ViewPresenter/ThridRegistrationPresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/Login/RegistrationPresenter/ThridRegistrationPresenter.swift rename to AVIRO/Scene/Login/Registration/ViewPresenter/ThridRegistrationPresenter.swift diff --git a/AVIRO/Scene/View/Login/LoginViewController.swift b/AVIRO/Scene/Login/ViewController/LoginViewController.swift similarity index 100% rename from AVIRO/Scene/View/Login/LoginViewController.swift rename to AVIRO/Scene/Login/ViewController/LoginViewController.swift diff --git a/AVIRO/Scene/Presenter/Login/LoginViewPresenter.swift b/AVIRO/Scene/Login/ViewPresenter/LoginViewPresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/Login/LoginViewPresenter.swift rename to AVIRO/Scene/Login/ViewPresenter/LoginViewPresenter.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicenseDetailViewController.swift b/AVIRO/Scene/TabBar/Challenge/Setting/LicenseView/LicenseDetailViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicenseDetailViewController.swift rename to AVIRO/Scene/TabBar/Challenge/Setting/LicenseView/LicenseDetailViewController.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicensesViewController.swift b/AVIRO/Scene/TabBar/Challenge/Setting/LicenseView/LicensesViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/LicenseView/LicensesViewController.swift rename to AVIRO/Scene/TabBar/Challenge/Setting/LicenseView/LicensesViewController.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/NickNameChangebleView/NickNameChangebleViewController.swift b/AVIRO/Scene/TabBar/Challenge/Setting/NicknameChangeableView/ViewController/NickNameChangebleViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/NickNameChangebleView/NickNameChangebleViewController.swift rename to AVIRO/Scene/TabBar/Challenge/Setting/NicknameChangeableView/ViewController/NickNameChangebleViewController.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewModel/NickNameChangeblePresenter.swift b/AVIRO/Scene/TabBar/Challenge/Setting/NicknameChangeableView/ViewPresenter/NickNameChangeblePresenter.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Challenge/Setting/ViewModel/NickNameChangeblePresenter.swift rename to AVIRO/Scene/TabBar/Challenge/Setting/NicknameChangeableView/ViewPresenter/NickNameChangeblePresenter.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/Cells/SettingCell.swift b/AVIRO/Scene/TabBar/Challenge/Setting/ViewController/Cells/SettingCell.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/Cells/SettingCell.swift rename to AVIRO/Scene/TabBar/Challenge/Setting/ViewController/Cells/SettingCell.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift b/AVIRO/Scene/TabBar/Challenge/Setting/ViewController/SettingViewController.swift similarity index 97% rename from AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift rename to AVIRO/Scene/TabBar/Challenge/Setting/ViewController/SettingViewController.swift index 5bd209e0..c3e0a07f 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewController/MyPageViewController.swift +++ b/AVIRO/Scene/TabBar/Challenge/Setting/ViewController/SettingViewController.swift @@ -66,8 +66,8 @@ enum SettingsRow: String { case versionInfo = "버전 정보" } -final class MyPageViewController: UIViewController { - private lazy var presenter = MyPageViewPresenter(viewController: self) +final class SettingViewController: UIViewController { + private lazy var presenter = SettingViewPresenter(viewController: self) private lazy var indicatorView: UIActivityIndicatorView = { let indicatorView = UIActivityIndicatorView() @@ -119,7 +119,7 @@ final class MyPageViewController: UIViewController { } } -extension MyPageViewController: MyPageViewProtocol { +extension SettingViewController: MyPageViewProtocol { func setupLayout() { [ settingTableView, @@ -313,7 +313,7 @@ extension MyPageViewController: MyPageViewProtocol { } } -extension MyPageViewController: UITableViewDataSource { +extension SettingViewController: UITableViewDataSource { func numberOfSections(in tableView: UITableView) -> Int { return SettingsSection.allCases.count } @@ -342,7 +342,7 @@ extension MyPageViewController: UITableViewDataSource { } } -extension MyPageViewController: UITableViewDelegate { +extension SettingViewController: UITableViewDelegate { func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? { if section == SettingsSection.account.rawValue { return makeUserWithdrwalView() diff --git a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewModel/MyPageViewPresenter.swift b/AVIRO/Scene/TabBar/Challenge/Setting/ViewPresenter/SettingViewPresenter.swift similarity index 99% rename from AVIRO/Scene/View/TabBar/Challenge/Setting/ViewModel/MyPageViewPresenter.swift rename to AVIRO/Scene/TabBar/Challenge/Setting/ViewPresenter/SettingViewPresenter.swift index 121f79bd..3235034a 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/Setting/ViewModel/MyPageViewPresenter.swift +++ b/AVIRO/Scene/TabBar/Challenge/Setting/ViewPresenter/SettingViewPresenter.swift @@ -23,7 +23,7 @@ protocol MyPageViewProtocol: NSObject { func switchIsLoading(with loading: Bool) } -final class MyPageViewPresenter { +final class SettingViewPresenter { weak var viewController: MyPageViewProtocol? private let bookmarkManager: BookmarkFacadeManager diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift rename to AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeLevelView.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeLevelView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeLevelView.swift rename to AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeLevelView.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeUserInfoView.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeUserInfoView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeUserInfoView.swift rename to AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeUserInfoView/ChallengeUserInfoView.swift diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift similarity index 97% rename from AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift rename to AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift index 865289e8..c2c4b2b7 100644 --- a/AVIRO/Scene/View/TabBar/Challenge/ViewController/ChallengeViewController.swift +++ b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift @@ -138,8 +138,8 @@ final class ChallengeViewController: UIViewController { navigationItem.rightBarButtonItem?.rx.tap .subscribe(onNext: { [weak self] _ in - let vc = MyPageViewController() - let presenter = MyPageViewPresenter(viewController: vc) + let vc = SettingViewController() + let presenter = SettingViewPresenter(viewController: vc) self?.navigationController?.pushViewController(vc, animated: true) }) diff --git a/AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/MyInfoView/MyInfoView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Challenge/ViewController/MyInfoView/MyInfoView.swift rename to AVIRO/Scene/TabBar/Challenge/ViewController/MyInfoView/MyInfoView.swift diff --git a/AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceList/PlaceListCell.swift b/AVIRO/Scene/TabBar/Enroll/SearchPlaceView/ViewController/PlaceListCell.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceList/PlaceListCell.swift rename to AVIRO/Scene/TabBar/Enroll/SearchPlaceView/ViewController/PlaceListCell.swift diff --git a/AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceList/PlaceListSearchViewController.swift b/AVIRO/Scene/TabBar/Enroll/SearchPlaceView/ViewController/SearchPlaceViewController.swift similarity index 94% rename from AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceList/PlaceListSearchViewController.swift rename to AVIRO/Scene/TabBar/Enroll/SearchPlaceView/ViewController/SearchPlaceViewController.swift index 2a1c413f..799860b9 100644 --- a/AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceList/PlaceListSearchViewController.swift +++ b/AVIRO/Scene/TabBar/Enroll/SearchPlaceView/ViewController/SearchPlaceViewController.swift @@ -1,5 +1,5 @@ // -// PlaceListSearchViewController.swift +// SearchPlaceViewController.swift // AVIRO // // Created by 전성훈 on 2023/05/21. @@ -11,8 +11,8 @@ private enum Text: String { case error = "에러" } -final class PlaceListSearchViewController: UIViewController { - lazy var presenter = PlaceListSearchViewPresenter(viewController: self) +final class SearchPlaceViewController: UIViewController { + lazy var presenter = SearchPlacePresenter(viewController: self) private lazy var listTableView: UITableView = { let tableView = UITableView() @@ -90,7 +90,7 @@ final class PlaceListSearchViewController: UIViewController { } } -extension PlaceListSearchViewController: PlaceListProtocol { +extension SearchPlaceViewController: PlaceListProtocol { // MARK: Layout func makeLayout() { [ @@ -192,7 +192,7 @@ extension PlaceListSearchViewController: PlaceListProtocol { } } -extension PlaceListSearchViewController: UITableViewDelegate { +extension SearchPlaceViewController: UITableViewDelegate { // MARK: Scroll 될 때 API 요청을 위한 메서드 func scrollViewDidScroll(_ scrollView: UIScrollView) { let offsetY = scrollView.contentOffset.y @@ -215,7 +215,7 @@ extension PlaceListSearchViewController: UITableViewDelegate { } // MARK: TableView DataSource -extension PlaceListSearchViewController: UITableViewDataSource { +extension SearchPlaceViewController: UITableViewDataSource { func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int ) -> Int { @@ -258,7 +258,7 @@ extension PlaceListSearchViewController: UITableViewDataSource { } } -extension PlaceListSearchViewController: UITextFieldDelegate { +extension SearchPlaceViewController: UITextFieldDelegate { // MARK: 검색 시작할 때 func textFieldDidBeginEditing(_ textField: UITextField) { self.navigationController?.navigationBar.isHidden = true @@ -291,7 +291,7 @@ extension PlaceListSearchViewController: UITextFieldDelegate { } } -extension PlaceListSearchViewController: UIGestureRecognizerDelegate { +extension SearchPlaceViewController: UIGestureRecognizerDelegate { // MARK: keyboard 관련 gesture 메서드 func gestureRecognizer( _ gestureRecognizer: UIGestureRecognizer, diff --git a/AVIRO/Scene/Presenter/EnrollPlace/PlaceList/PlaceListSearchViewPresenter.swift b/AVIRO/Scene/TabBar/Enroll/SearchPlaceView/ViewPresenter/SearchPlacePresenter.swift similarity index 99% rename from AVIRO/Scene/Presenter/EnrollPlace/PlaceList/PlaceListSearchViewPresenter.swift rename to AVIRO/Scene/TabBar/Enroll/SearchPlaceView/ViewPresenter/SearchPlacePresenter.swift index 6c4d98cf..7c7b6c23 100644 --- a/AVIRO/Scene/Presenter/EnrollPlace/PlaceList/PlaceListSearchViewPresenter.swift +++ b/AVIRO/Scene/TabBar/Enroll/SearchPlaceView/ViewPresenter/SearchPlacePresenter.swift @@ -18,7 +18,7 @@ protocol PlaceListProtocol: NSObject { func showErrorAlert(with error: String, title: String?) } -final class PlaceListSearchViewPresenter: NSObject { +final class SearchPlacePresenter: NSObject { weak var viewController: PlaceListProtocol? private var placeList = [PlaceListModel]() diff --git a/AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceViewController.swift b/AVIRO/Scene/TabBar/Enroll/ViewController/EnrollPlaceViewController.swift similarity index 99% rename from AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceViewController.swift rename to AVIRO/Scene/TabBar/Enroll/ViewController/EnrollPlaceViewController.swift index 333615e4..872ed884 100644 --- a/AVIRO/Scene/View/TabBar/Enroll/EnrollPlaceViewController.swift +++ b/AVIRO/Scene/TabBar/Enroll/ViewController/EnrollPlaceViewController.swift @@ -460,9 +460,9 @@ extension EnrollPlaceViewController: UIGestureRecognizerDelegate { extension EnrollPlaceViewController: UITextFieldDelegate { func textFieldShouldBeginEditing(_ textField: UITextField) -> Bool { if textField == storeInfoView.titleField { - let viewController = PlaceListSearchViewController() + let viewController = SearchPlaceViewController() let presenter = - PlaceListSearchViewPresenter(viewController: viewController) + SearchPlacePresenter(viewController: viewController) viewController.presenter = presenter navigationController?.pushViewController(viewController, animated: true) diff --git a/AVIRO/Scene/View/TabBar/Enroll/SubView/EnrollMenuTableView.swift b/AVIRO/Scene/TabBar/Enroll/ViewController/SubView/EnrollMenuTableView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Enroll/SubView/EnrollMenuTableView.swift rename to AVIRO/Scene/TabBar/Enroll/ViewController/SubView/EnrollMenuTableView.swift diff --git a/AVIRO/Scene/View/TabBar/Enroll/SubView/EnrollStoreInfoView.swift b/AVIRO/Scene/TabBar/Enroll/ViewController/SubView/EnrollStoreInfoView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Enroll/SubView/EnrollStoreInfoView.swift rename to AVIRO/Scene/TabBar/Enroll/ViewController/SubView/EnrollStoreInfoView.swift diff --git a/AVIRO/Scene/View/TabBar/Enroll/SubView/EnrollVeganDetailView.swift b/AVIRO/Scene/TabBar/Enroll/ViewController/SubView/EnrollVeganDetailView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Enroll/SubView/EnrollVeganDetailView.swift rename to AVIRO/Scene/TabBar/Enroll/ViewController/SubView/EnrollVeganDetailView.swift diff --git a/AVIRO/Scene/View/TabBar/Enroll/SubView/MenuTableView/NormalTableViewCell.swift b/AVIRO/Scene/TabBar/Enroll/ViewController/SubView/MenuTableView/NormalTableViewCell.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Enroll/SubView/MenuTableView/NormalTableViewCell.swift rename to AVIRO/Scene/TabBar/Enroll/ViewController/SubView/MenuTableView/NormalTableViewCell.swift diff --git a/AVIRO/Scene/View/TabBar/Enroll/SubView/MenuTableView/RequestTableViewCell.swift b/AVIRO/Scene/TabBar/Enroll/ViewController/SubView/MenuTableView/RequestTableViewCell.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Enroll/SubView/MenuTableView/RequestTableViewCell.swift rename to AVIRO/Scene/TabBar/Enroll/ViewController/SubView/MenuTableView/RequestTableViewCell.swift diff --git a/AVIRO/Scene/Presenter/EnrollPlace/EnrollPlacePresenter.swift b/AVIRO/Scene/TabBar/Enroll/ViewPresenter/EnrollPlacePresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/EnrollPlace/EnrollPlacePresenter.swift rename to AVIRO/Scene/TabBar/Enroll/ViewPresenter/EnrollPlacePresenter.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditMenu/EditMenuViewController.swift b/AVIRO/Scene/TabBar/Home/EditMenu/ViewController/EditMenuViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditMenu/EditMenuViewController.swift rename to AVIRO/Scene/TabBar/Home/EditMenu/ViewController/EditMenuViewController.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditMenu/SubView/EditMenuBottomView.swift b/AVIRO/Scene/TabBar/Home/EditMenu/ViewController/SubView/EditMenuBottomView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditMenu/SubView/EditMenuBottomView.swift rename to AVIRO/Scene/TabBar/Home/EditMenu/ViewController/SubView/EditMenuBottomView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditMenu/SubView/EditMenuTopView.swift b/AVIRO/Scene/TabBar/Home/EditMenu/ViewController/SubView/EditMenuTopView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditMenu/SubView/EditMenuTopView.swift rename to AVIRO/Scene/TabBar/Home/EditMenu/ViewController/SubView/EditMenuTopView.swift diff --git a/AVIRO/Scene/Presenter/Home/EditPresenter/EditMenuPresenter.swift b/AVIRO/Scene/TabBar/Home/EditMenu/ViewPresenter/EditMenuPresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/Home/EditPresenter/EditMenuPresenter.swift rename to AVIRO/Scene/TabBar/Home/EditMenu/ViewPresenter/EditMenuPresenter.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController/ChangeableAddressViewController.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController/ChangeableAddressViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController/ChangeableAddressViewController.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController/ChangeableAddressViewController.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController/EditLocationSubView/EditLocationAddressMapView.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController/EditLocationSubView/EditLocationAddressMapView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController/EditLocationSubView/EditLocationAddressMapView.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController/EditLocationSubView/EditLocationAddressMapView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController/EditLocationSubView/EditLocationAddressTextTableViewCell.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController/EditLocationSubView/EditLocationAddressTextTableViewCell.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController/EditLocationSubView/EditLocationAddressTextTableViewCell.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController/EditLocationSubView/EditLocationAddressTextTableViewCell.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController/EditLocationSubView/EditLocationAddressTextView.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController/EditLocationSubView/EditLocationAddressTextView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/ChangeableAddressViewController/EditLocationSubView/EditLocationAddressTextView.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewController/EditLocationSubView/EditLocationAddressTextView.swift diff --git a/AVIRO/Scene/Presenter/Home/EditPresenter/ChangeableAddressPresenter/ChangeableAddressPresenter.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewPresenter/ChangeableAddressPresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/Home/EditPresenter/ChangeableAddressPresenter/ChangeableAddressPresenter.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ChangeableAddressView/ViewPresenter/ChangeableAddressPresenter.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditHomePageView.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditHomePageView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditHomePageView.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditHomePageView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditLocationBottomView.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditLocationBottomView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditLocationBottomView.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditLocationBottomView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditLocationTopView.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditLocationTopView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditLocationTopView.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditLocationTopView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditOperatingHoursView.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditOperatingHoursView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditOperatingHoursView.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditOperatingHoursView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditPhoneView.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditPhoneView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditPhoneView.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditPhoneView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperatingHourView.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperatingHourView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperatingHourView.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperatingHourView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperationHourChangebleView.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperationHourChangebleView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperationHourChangebleView.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperationHourChangebleView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditoperatingHoursSubView/EditTimeChangebleView.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditoperatingHoursSubView/EditTimeChangebleView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoSubView/EditoperatingHoursSubView/EditTimeChangebleView.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditoperatingHoursSubView/EditTimeChangebleView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoViewController.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Edit/EditPlaceInfo/EditPlaceInfoViewController.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewController/EditPlaceInfoViewController.swift diff --git a/AVIRO/Scene/Presenter/Home/EditPresenter/EditPlaceInfoPresenter.swift b/AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewPresenter/EditPlaceInfoPresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/Home/EditPresenter/EditPlaceInfoPresenter.swift rename to AVIRO/Scene/TabBar/Home/EditPlaceInfo/ViewPresenter/EditPlaceInfoPresenter.swift diff --git a/AVIRO/Scene/View/TabBar/Home/HomeSearch/HomeSearchViewController.swift b/AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/HomeSearchViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/HomeSearch/HomeSearchViewController.swift rename to AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/HomeSearchViewController.swift diff --git a/AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/HeaderView/HistoryHeaderView.swift b/AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/HeaderView/HistoryHeaderView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/HeaderView/HistoryHeaderView.swift rename to AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/HeaderView/HistoryHeaderView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/HeaderView/PlaceListHeaderView.swift b/AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/HeaderView/PlaceListHeaderView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/HeaderView/PlaceListHeaderView.swift rename to AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/HeaderView/PlaceListHeaderView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/HistoryTableViewCell.swift b/AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/HistoryTableViewCell.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/HistoryTableViewCell.swift rename to AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/HistoryTableViewCell.swift diff --git a/AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/HomeSearchViewTableViewCell.swift b/AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/HomeSearchViewTableViewCell.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/HomeSearchViewTableViewCell.swift rename to AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/HomeSearchViewTableViewCell.swift diff --git a/AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/NoHistoryLabelView.swift b/AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/NoHistoryLabelView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/NoHistoryLabelView.swift rename to AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/NoHistoryLabelView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/NoHistoryView.swift b/AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/NoHistoryView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/HomeSearch/SubView/NoHistoryView.swift rename to AVIRO/Scene/TabBar/Home/HomeSearch/ViewController/SubView/NoHistoryView.swift diff --git a/AVIRO/Scene/Presenter/Home/HomeSearchPresenter/HomeSearchPresenter.swift b/AVIRO/Scene/TabBar/Home/HomeSearch/ViewPresenter/HomeSearchPresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/Home/HomeSearchPresenter/HomeSearchPresenter.swift rename to AVIRO/Scene/TabBar/Home/HomeSearch/ViewPresenter/HomeSearchPresenter.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Report/ReportCellView.swift b/AVIRO/Scene/TabBar/Home/Report/ViewController/ReportCellView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Report/ReportCellView.swift rename to AVIRO/Scene/TabBar/Home/Report/ViewController/ReportCellView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/Report/ReportReviewViewController.swift b/AVIRO/Scene/TabBar/Home/Report/ViewController/ReportReviewViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/Report/ReportReviewViewController.swift rename to AVIRO/Scene/TabBar/Home/Report/ViewController/ReportReviewViewController.swift diff --git a/AVIRO/Scene/Presenter/Home/ReportPresenter/ReportReviewPresenter.swift b/AVIRO/Scene/TabBar/Home/Report/ViewPresenter/ReportReviewPresenter.swift similarity index 100% rename from AVIRO/Scene/Presenter/Home/ReportPresenter/ReportReviewPresenter.swift rename to AVIRO/Scene/TabBar/Home/Report/ViewPresenter/ReportReviewPresenter.swift diff --git a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift new file mode 100644 index 00000000..cc27b377 --- /dev/null +++ b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift @@ -0,0 +1,115 @@ +// +// ReviewPlaceInfoView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/19. +// + +import UIKit + +final class ReviewPlaceInfoView: UIView { + private lazy var placeIcon: UIImageView = { + let imageView = UIImageView() + + imageView.image = .allCell + + return imageView + }() + + private lazy var placeTitle: UILabel = { + let label = UILabel() + + label.font = .pretendard(size: 18, weight: .semibold) + label.textColor = .gray1 + label.textAlignment = .left + label.numberOfLines = 1 + + return label + }() + + private lazy var placeAddress: UILabel = { + let label = UILabel() + + label.font = .pretendard(size: 15, weight: .regular) + label.textColor = .gray3 + label.textAlignment = .left + label.numberOfLines = 2 + label.lineBreakMode = .byClipping + + return label + }() + + private var afterViewDidLoad = false + + override init(frame: CGRect) { + super.init(frame: frame) + + setupLayout() + setupAttribute() + } + + required init?(coder: NSCoder) { + fatalError() + } + + override func layoutSubviews() { + super.layoutSubviews() + + if !afterViewDidLoad { + afterViewDidLoad.toggle() + afterViewDidLoadLayout() + } + } + + private func setupLayout() { + [ + placeIcon, + placeTitle, + placeAddress + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.addSubview($0) + } + + let placeTitleLeading = placeTitle.leadingAnchor.constraint(equalTo: placeIcon.trailingAnchor, constant: 4) + placeTitleLeading.priority = UILayoutPriority.defaultHigh + + let placeTitleTrailing = placeTitle.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -20) + placeTitleTrailing.priority = UILayoutPriority.defaultLow + + placeTitleLeading.isActive = true + placeTitleTrailing.isActive = true + + NSLayoutConstraint.activate([ + placeIcon.topAnchor.constraint(equalTo: self.topAnchor, constant: 20), + placeIcon.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 20), + + placeTitle.centerYAnchor.constraint(equalTo: placeIcon.centerYAnchor), + + placeAddress.topAnchor.constraint(equalTo: placeIcon.bottomAnchor, constant: 5), + placeAddress.leadingAnchor.constraint(equalTo: placeIcon.leadingAnchor), + placeAddress.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -20) + ]) + } + + private func setupAttribute() { + self.backgroundColor = .gray6 + self.layer.cornerRadius = 10 + } + + private func afterViewDidLoadLayout() { + let height = placeIcon.frame.height + placeAddress.frame.height + 5 + 40 + + self.heightAnchor.constraint(equalToConstant: height).isActive = true + } + + func dataBinding( + icon: UIImage, + title: String, + address: String + ) { + placeIcon.image = icon + placeTitle.text = title + placeAddress.text = address + } +} diff --git a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift new file mode 100644 index 00000000..e80bbc97 --- /dev/null +++ b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift @@ -0,0 +1,330 @@ +// +// ReviewWriteViewController.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/19. +// + + +// MARK: Count 바인딩, textview text 바인딩, 등록 바인딩 +import RxSwift +import RxCocoa + +final class ReviewWriteViewController: UIViewController { + private var viewModel: ReviewWriteViewModel! + private var disposeBag = DisposeBag() + + private lazy var placeInfoView: ReviewPlaceInfoView = { + let view = ReviewPlaceInfoView() + + return view + }() + + private lazy var reviewTextView: UITextView = { + let view = UITextView() + + view.textColor = .gray0 + view.textContainer.lineBreakMode = .byCharWrapping + view.font = .pretendard(size: 16, weight: .regular) + view.backgroundColor = .gray6 + view.layer.cornerRadius = 10 + view.textContainerInset = UIEdgeInsets( + top: 16, + left: 16, + bottom: 32, + right: 16 + ) + view.scrollIndicatorInsets = UIEdgeInsets( + top: 16, + left: 16, + bottom: 32, + right: 16 + ) + + return view + }() + + private lazy var placeholderLabel: UILabel = { + let label = UILabel() + + label.text = "욕설, 비방 등 사장님과 다른 사용자들을 불쾌하게 하는 내용은 남기지 말아주세요." + label.textColor = .gray5 + label.lineBreakMode = .byCharWrapping + label.numberOfLines = 0 + label.font = .pretendard(size: 16, weight: .regular) + label.isHidden = !reviewTextView.text.isEmpty + + return label + }() + + private lazy var textViewCountLabel: UILabel = { + let label = UILabel() + + return label + }() + + private lazy var exampleLabel: UILabel = { + let label = UILabel() + + label.text = "맛, 가격, 분위기, 편의시설, 비건프렌들리함 등" + label.textColor = .gray2 + label.numberOfLines = 1 + label.font = .pretendard(size: 16, weight: .medium) + + return label + }() + + private lazy var exampleSticy: UIImageView = { + let imageView = UIImageView() + + imageView.image = UIImage.pointExplain + + return imageView + }() + + private lazy var reviewUploadButton: UIButton = { + let button = UIButton() + + button.backgroundColor = .keywordBlue + button.setTitle("후기 등록하기", for: .normal) + button.titleLabel?.font = .pretendard(size: 17, weight: .semibold) + button.setTitleColor(.gray7, for: .normal) + + return button + }() + + private var afterViewDidLoad = false + + static func create(with viewModel: ReviewWriteViewModel) -> ReviewWriteViewController { + let vc = ReviewWriteViewController() + vc.viewModel = viewModel + + vc.placeInfoView.dataBinding( + icon: viewModel.placeIcon, + title: viewModel.placeTitle, + address: viewModel.placeAddress + ) + + return vc + } + + override func viewDidLoad() { + super.viewDidLoad() + + setupLayout() + setupAttribute() + dataBinding() + } + + override func viewDidLayoutSubviews() { + super.viewDidLayoutSubviews() + + if !afterViewDidLoad { + afterViewDidLoad.toggle() + afterViewDidLoadLayout() + } + } + + private func setupLayout() { + [ + placeInfoView, + reviewTextView, + placeholderLabel, + textViewCountLabel, + exampleLabel, + exampleSticy, + reviewUploadButton + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.view.addSubview($0) + } + + NSLayoutConstraint.activate([ + // TODO: placeInfoVIew 높이는 값에 따라 동적으로 다르게 설정 + placeInfoView.topAnchor.constraint( + equalTo: self.view.safeAreaLayoutGuide.topAnchor, + constant: 20 + ), + placeInfoView.leadingAnchor.constraint( + equalTo: self.view.safeAreaLayoutGuide.leadingAnchor, + constant: 16 + ), + placeInfoView.trailingAnchor.constraint( + equalTo: self.view.safeAreaLayoutGuide.trailingAnchor, + constant: -16 + ), + + reviewTextView.topAnchor.constraint( + equalTo: placeInfoView.bottomAnchor, + constant: 20 + ), + reviewTextView.leadingAnchor.constraint( + equalTo: self.view.leadingAnchor, + constant: 16 + ), + reviewTextView.trailingAnchor.constraint( + equalTo: self.view.trailingAnchor, + constant: -16 + ), + + placeholderLabel.topAnchor.constraint( + equalTo: reviewTextView.topAnchor, + constant: 20 + ), + placeholderLabel.leadingAnchor.constraint( + equalTo: reviewTextView.leadingAnchor, + constant: 20 + ), + placeholderLabel.trailingAnchor.constraint( + equalTo: reviewTextView.trailingAnchor, + constant: -20 + ), + + textViewCountLabel.bottomAnchor.constraint( + equalTo: reviewTextView.bottomAnchor, + constant: -16 + ), + textViewCountLabel.trailingAnchor.constraint( + equalTo: reviewTextView.trailingAnchor, + constant: -16 + ), + + exampleLabel.topAnchor.constraint( + equalTo: reviewTextView.bottomAnchor, + constant: 16 + ), + exampleLabel.leadingAnchor.constraint( + equalTo: self.view.leadingAnchor, + constant: 17 + ), + + exampleSticy.centerXAnchor.constraint( + equalTo: self.view.centerXAnchor + ), + exampleSticy.bottomAnchor.constraint( + equalTo: reviewUploadButton.topAnchor, + constant: -11 + ), + + reviewUploadButton.bottomAnchor.constraint( + equalTo: self.view.bottomAnchor + ), + reviewUploadButton.leadingAnchor.constraint( + equalTo: self.view.leadingAnchor + ), + reviewUploadButton.trailingAnchor.constraint( + equalTo: self.view.trailingAnchor + ) + ]) + + UIView.animate(withDuration: 0.5, delay: 0, options: [.repeat, .autoreverse]) { + self.exampleSticy.transform = CGAffineTransform(translationX: 0, y: 3) + } + } + + private func setupAttribute() { + navigationController?.navigationBar.isHidden = false + + self.view.backgroundColor = .gray7 + self.navigationItem.title = "후기 작성" + self.setupBack(true) + + if let tabBarController = self.tabBarController as? TabBarViewController { + tabBarController.hiddenTabBar(true) + } + } + + private func afterViewDidLoadLayout() { + let height = self.view.frame.height + + NSLayoutConstraint.activate([ + reviewUploadButton.heightAnchor.constraint( + equalToConstant: 60 + self.view.safeAreaInsets.bottom + ), + + height > 750 ? + reviewTextView.heightAnchor.constraint(equalToConstant: 320) + : + reviewTextView.heightAnchor.constraint(equalToConstant: 280) + ]) + } + + private func dataBinding() { + let textViewBiginEditing = reviewTextView.rx.didBeginEditing.asDriver() + let text = reviewTextView.rx.text.asDriver() + + let input = ReviewWriteViewModel.Input( + textViewBiginEditing: textViewBiginEditing, + text: text + ) + + let output = viewModel.transform(with: input) + + output.isEditing + .drive(self.rx.isEditing) + .disposed(by: disposeBag) + + output.textCount + .drive(self.rx.textCountUpdate) + .disposed(by: disposeBag) + + // TODO: 쉐이크 애니메이션 + output.review + .drive(reviewTextView.rx.text) + .disposed(by: disposeBag) + } + + func updateTextViewPlaceHolder(with isEditing: Bool) { + placeholderLabel.isHidden = isEditing + } + + func updateTextCount(with textCount: String) { + let coloredRange = NSRange(location: 0, length: textCount.count) + + let coloredAttributes = [ + NSAttributedString.Key.foregroundColor: UIColor.keywordBlue, + NSAttributedString.Key.font: UIFont.pretendard(size: 16, weight: .regular) + ] + + let grayAttributes = [ + NSAttributedString.Key.foregroundColor: UIColor.gray3, + NSAttributedString.Key.font: UIFont.pretendard(size: 16, weight: .regular) + ] + + let attributedText = NSMutableAttributedString( + string: [ + textCount, + "/", + "255" + ].joined() + ) + + attributedText.addAttributes( + coloredAttributes, + range: coloredRange + ) + attributedText.addAttributes( + grayAttributes, + range: NSRange( + location: textCount.count, + length: attributedText.length - textCount.count + ) + ) + + textViewCountLabel.attributedText = attributedText + } +} + +extension Reactive where Base: ReviewWriteViewController { + var isEditing: Binder { + return Binder(self.base) { base, isEditing in + base.updateTextViewPlaceHolder(with: isEditing) + } + } + + var textCountUpdate: Binder { + return Binder(self.base) { base, textCount in + base.updateTextCount(with: textCount) + } + } +} diff --git a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift new file mode 100644 index 00000000..a6dc0169 --- /dev/null +++ b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift @@ -0,0 +1,62 @@ +// +// ReviewWriteViewModel.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/19. +// +import RxSwift +import RxCocoa + +final class ReviewWriteViewModel: ViewModel { + + var placeIcon: UIImage! + var placeTitle: String! + var placeAddress: String! + + init( + placeIcon: UIImage, + placeTitle: String, + placeAddress: String + ) { + self.placeIcon = placeIcon + self.placeTitle = placeTitle + self.placeAddress = placeAddress + } + + struct Input { + let textViewBiginEditing: Driver + let text: Driver + } + + struct Output { + let isEditing: Driver + let textCount: Driver + let review: Driver + } + + func transform(with input: Input) -> Output { + let isEditing = input.textViewBiginEditing + .map { true } + + let restrictedText = input.text + .flatMapLatest { text -> Driver in + let text = text ?? "" + if text.count > 255 { + let index = text.index(text.startIndex, offsetBy: 255) + let restricted = String(text[.. Void)? var editMyReview: ((String) -> Void)? - var test: (() -> Void)? + var pushReviewWriteView: (() -> Void)? override init(frame: CGRect) { super.init(frame: frame) @@ -234,17 +234,17 @@ final class PlaceView: UIView { self?.editMyReview?(commentId) } - segmentedControlView.test = { [weak self] in - self?.test?() + segmentedControlView.pushReviewWriteView = { [weak self] in + self?.pushReviewWriteView?() } } - func keyboardWillShow(notification: NSNotification, height: CGFloat) { - segmentedControlView.keyboardWillShow(notification: notification, height: height) - } - - func keyboardWillHide() { - segmentedControlView.keyboardWillHide() - } +// func keyboardWillShow(notification: NSNotification, height: CGFloat) { +// segmentedControlView.keyboardWillShow(notification: notification, height: height) +// } +// +// func keyboardWillHide() { +// segmentedControlView.keyboardWillHide() +// } } diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/OperationHours/PlaceOperationHoursViewController.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/OperationHours/PlaceOperationHoursViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/OperationHours/PlaceOperationHoursViewController.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/OperationHours/PlaceOperationHoursViewController.swift diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/OperationHours/PlaceOperationSubView/OperationHourView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/OperationHours/PlaceOperationSubView/OperationHourView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/OperationHours/PlaceOperationSubView/OperationHourView.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/OperationHours/PlaceOperationSubView/OperationHourView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/OperationHours/PlaceOperationSubView/OperationHoursView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/OperationHours/PlaceOperationSubView/OperationHoursView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/OperationHours/PlaceOperationSubView/OperationHoursView.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/OperationHours/PlaceOperationSubView/OperationHoursView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/PlaceSegmentedControlView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/PlaceSegmentedControlView.swift similarity index 95% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/PlaceSegmentedControlView.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/PlaceSegmentedControlView.swift index fd6fd90c..06c20597 100644 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/PlaceSegmentedControlView.swift +++ b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/PlaceSegmentedControlView.swift @@ -79,7 +79,7 @@ final class PlaceSegmentedControlView: UIView { var reportReview: ((AVIROReportReviewModel) -> Void)? var editMyReview: ((String) -> Void)? - var test: (() -> Void)? + var pushReviewWriteView: (() -> Void)? override init(frame: CGRect) { super.init(frame: frame) @@ -192,14 +192,14 @@ final class PlaceSegmentedControlView: UIView { whenActiveSegmentedChanged() } - func keyboardWillShow(notification: NSNotification, height: CGFloat) { - reviewView.keyboardWillShow(notification: notification, height: height) - } - - func keyboardWillHide() { - reviewView.keyboardWillHide() - } - +// func keyboardWillShow(notification: NSNotification, height: CGFloat) { +// reviewView.keyboardWillShow(notification: notification, height: height) +// } +// +// func keyboardWillHide() { +// reviewView.keyboardWillHide() +// } +// func allDataBinding(placeId: String, infoModel: AVIROPlaceInfo?, menuModel: AVIROPlaceMenus?, @@ -367,9 +367,10 @@ final class PlaceSegmentedControlView: UIView { } homeView.showMoreReviewsAndWriteComment = { [weak self] in - self?.segmentedControl.selectedSegmentIndex = 2 - self?.activeReviewView() - self?.reviewView.autoStartWriteComment() + self?.pushReviewWriteView?() +// self?.segmentedControl.selectedSegmentIndex = 2 +// self?.activeReviewView() +// self?.reviewView.autoStartWriteComment() } reviewView.whenUploadReview = { [weak self] postReviewModel in @@ -399,8 +400,8 @@ final class PlaceSegmentedControlView: UIView { self?.editMyReview?(commentId) } - reviewView.test = { [weak self] in - self?.test?() + reviewView.pushReviewWriteView = { [weak self] in + self?.pushReviewWriteView?() } } } diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/PlaceSummaryView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/PlaceSummaryView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/PlaceSummaryView.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/PlaceSummaryView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/PlaceHomeView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/PlaceHomeView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/PlaceHomeView.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/PlaceHomeView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceInfoView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceInfoView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceInfoView.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceInfoView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceMenuView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceMenuView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceMenuView.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceMenuView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceReviewWriteView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceReviewWriteView.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceReviewWriteView.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceReviewWriteView.swift diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift similarity index 94% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift index a137dbf9..a8c6232c 100644 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift +++ b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift @@ -80,7 +80,7 @@ final class PlaceReviewsView: UIView { return button }() - private lazy var reviewInputView = PushCommentView() + private lazy var reviewInputView = ReviewPushView() private var viewHeightConstraint: NSLayoutConstraint? private var reviewsHeightConstraint: NSLayoutConstraint? @@ -101,8 +101,8 @@ final class PlaceReviewsView: UIView { var whenReportReview: ((AVIROReportReviewModel) -> Void)? var whenBeforeEditMyReview: ((String) -> Void)? - - var test: (() -> Void)? + + var pushReviewWriteView: (() -> Void)? private var placeId = "" private var isEditedAfter = false @@ -125,13 +125,13 @@ final class PlaceReviewsView: UIView { reviewsTable.reloadData() } - func keyboardWillShow(notification: NSNotification, height: CGFloat) { - reviewInputView.keyboardWillShow(notification: notification, height: height) - } - - func keyboardWillHide() { - reviewInputView.keyboardWillHide() - } +// func keyboardWillShow(notification: NSNotification, height: CGFloat) { +//// reviewInputView.keyboardWillShow(notification: notification, height: height) +// } +// +// func keyboardWillHide() { +//// reviewInputView.keyboardWillHide() +// } private func makeLayout() { self.backgroundColor = .gray7 @@ -173,6 +173,7 @@ final class PlaceReviewsView: UIView { reviewInputView.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: 0), reviewInputView.leadingAnchor.constraint(equalTo: self.leadingAnchor), reviewInputView.trailingAnchor.constraint(equalTo: self.trailingAnchor), + reviewInputView.heightAnchor.constraint(equalToConstant: 60), noReviewsImageView.centerXAnchor.constraint(equalTo: self.centerXAnchor), noReviewsImageView.centerYAnchor.constraint(equalTo: self.centerYAnchor), @@ -198,7 +199,7 @@ final class PlaceReviewsView: UIView { /// edit중 창을 나갈 경우를 대비한 초기화 isEditedAfter = false /// textView 초기화 - reviewInputView.initTextViewWhenAfterEditReview() +// reviewInputView.initTextViewWhenAfterEditReview() self.placeId = placeId @@ -383,9 +384,9 @@ final class PlaceReviewsView: UIView { whenTappedShowMoreButton?() } - func autoStartWriteComment() { - reviewInputView.autoStartWriteComment() - } +// func autoStartWriteComment() { +//// reviewInputView.autoStartWriteComment() +// } // MARK: Edit My Review func editMyReview(_ commentId: String) { @@ -399,7 +400,7 @@ final class PlaceReviewsView: UIView { isEditedAfter = true editedReviewId = commentId - reviewInputView.editMyReview(text) +// reviewInputView.editMyReview(text) } private func updateReviewArray(_ text: String) { @@ -505,17 +506,20 @@ final class PlaceReviewsView: UIView { // MARK: Closure 처리 private func handleClosure() { - reviewInputView.enrollReview = { [weak self] text in - self?.updateReviewArray(text) - } - - reviewInputView.initView = { [weak self] in - self?.isEditedAfter = false - } - - reviewInputView.test = { [weak self] in - self?.test?() + reviewInputView.pushReviewWriteView = { [weak self] in + self?.pushReviewWriteView?() } +// reviewInputView.enrollReview = { [weak self] text in +// self?.updateReviewArray(text) +// } +// +// reviewInputView.initView = { [weak self] in +// self?.isEditedAfter = false +// } +// +// reviewInputView.test = { [weak self] in +// self?.test?() +// } } } diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift similarity index 95% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift index 51dcace1..58f4aa32 100644 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift +++ b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift @@ -69,9 +69,7 @@ final class PushCommentView: UIView { var enrollReview: ((String) -> Void)? var initView: (() -> Void)? - - var test: (() -> Void)? - + override init(frame: CGRect) { super.init(frame: frame) @@ -297,29 +295,25 @@ final class PushCommentView: UIView { } } - // TODO: 수정 예정 // - View로 만들자 textview기능 다 삭제 // - 폴더 정리 // 클릭 후 editing 종료 해야함 extension PushCommentView: UITextViewDelegate { func textViewDidBeginEditing(_ textView: UITextView) { -// let vc = ReviewWriteViewController() -// if textView.textColor == .gray4 { -// textView.textColor = .gray0 -// textView.text = "" -// } - - test?() - textView.endEditing(true) + let vc = ReviewWriteViewController() + if textView.textColor == .gray4 { + textView.textColor = .gray0 + textView.text = "" + } } func textViewDidChange(_ textView: UITextView) { -// if textView.text != "" { -// enrollButton.setTitleColor(.gray0, for: .normal) -// updateTextviewHeight() -// } else { -// enrollButton.setTitleColor(.gray4, for: .normal) -// } + if textView.text != "" { + enrollButton.setTitleColor(.gray0, for: .normal) + updateTextviewHeight() + } else { + enrollButton.setTitleColor(.gray4, for: .normal) + } } } diff --git a/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/SubView/ReviewPushView.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/SubView/ReviewPushView.swift new file mode 100644 index 00000000..15b4079d --- /dev/null +++ b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/SubView/ReviewPushView.swift @@ -0,0 +1,89 @@ +// +// ReviewPushView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/21. +// + +import UIKit + +final class ReviewPushView: UIView { + private lazy var textFieldView: UIView = { + let view = UIView() + + view.layer.cornerRadius = 5 + view.layer.borderColor = UIColor.gray4.cgColor + view.layer.borderWidth = 0.5 + + view.backgroundColor = .gray7 + + let tapGesture = UITapGestureRecognizer(target: self, action: #selector(textFieldTapped(_:))) + view.addGestureRecognizer(tapGesture) + + return view + }() + + private lazy var enrollLabel: UILabel = { + let label = UILabel() + + label.text = "등록" + label.textColor = .gray4 + label.font = .pretendard(size: 17, weight: .semibold) + + return label + }() + + private lazy var separator: UIView = { + let view = UIView() + + view.backgroundColor = .gray3 + + return view + }() + + var pushReviewWriteView: (() -> Void)? + + override init(frame: CGRect) { + super.init(frame: frame) + + setupLayout() + setupAttribute() + } + + required init?(coder: NSCoder) { + fatalError() + } + + private func setupLayout() { + [ + textFieldView, + enrollLabel, + separator + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.addSubview($0) + } + + NSLayoutConstraint.activate([ + separator.topAnchor.constraint(equalTo: self.topAnchor), + separator.widthAnchor.constraint(equalTo: self.widthAnchor, multiplier: 1), + separator.heightAnchor.constraint(equalToConstant: 1), + + textFieldView.topAnchor.constraint(equalTo: separator.bottomAnchor, constant: 12.5), + textFieldView.trailingAnchor.constraint(equalTo: enrollLabel.leadingAnchor, constant: -22.5), + textFieldView.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 10), + textFieldView.heightAnchor.constraint(equalToConstant: 34), + + enrollLabel.centerYAnchor.constraint(equalTo: textFieldView.centerYAnchor), + enrollLabel.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -16) + ]) + } + + private func setupAttribute() { + self.backgroundColor = .gray7 + } + + @objc private func textFieldTapped(_ sender: UITapGestureRecognizer) { + pushReviewWriteView?() + } +} diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/TableView/PlaceMenuTableViewCell.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/TableView/PlaceMenuTableViewCell.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/TableView/PlaceMenuTableViewCell.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/TableView/PlaceMenuTableViewCell.swift diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/TableView/PlaceReviewTableViewCell.swift b/AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/TableView/PlaceReviewTableViewCell.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/TableView/PlaceReviewTableViewCell.swift rename to AVIRO/Scene/TabBar/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/TableView/PlaceReviewTableViewCell.swift diff --git a/AVIRO/Scene/Presenter/Home/HomeViewPresenter.swift b/AVIRO/Scene/TabBar/Home/ViewPresenter/HomeViewPresenter.swift similarity index 93% rename from AVIRO/Scene/Presenter/Home/HomeViewPresenter.swift rename to AVIRO/Scene/TabBar/Home/ViewPresenter/HomeViewPresenter.swift index 22f0d90b..6c48273a 100644 --- a/AVIRO/Scene/Presenter/Home/HomeViewPresenter.swift +++ b/AVIRO/Scene/TabBar/Home/ViewPresenter/HomeViewPresenter.swift @@ -19,9 +19,9 @@ protocol HomeViewProtocol: NSObject { func whenViewWillAppearOffAllCondition() func whenAfterPopEditViewController() - func keyboardWillShow(notification: NSNotification) - func keyboardWillHide() - +// func keyboardWillShow(notification: NSNotification) +// func keyboardWillHide() +// func isSuccessLocation() func ifDeniedLocation(_ mapCoor: NMGLatLng) @@ -130,7 +130,7 @@ final class HomeViewPresenter: NSObject { } func viewWillAppear() { - addKeyboardNotification() +// addKeyboardNotification() handleMarkerUpdate() handleViewWillAppearActions() @@ -166,7 +166,7 @@ final class HomeViewPresenter: NSObject { } func viewWillDisappear() { - removeKeyboardNotification() +// removeKeyboardNotification() if whenShowPlaceAfterActionFromOtherViewController { whenShowPlaceAfterActionFromOtherViewController.toggle() @@ -182,42 +182,42 @@ final class HomeViewPresenter: NSObject { whenKeepPlaceInfoView = state } - // MARK: Keyboard에 따른 view 높이 변경 Notification - func addKeyboardNotification() { - NotificationCenter.default.addObserver( - self, - selector: #selector(keyboardWillShow), - name: UIResponder.keyboardWillShowNotification, - object: nil - ) - NotificationCenter.default.addObserver( - self, - selector: #selector(keyboardWillHide), - name: UIResponder.keyboardWillHideNotification, - object: nil - ) - } - - func removeKeyboardNotification() { - NotificationCenter.default.removeObserver( - self, - name: UIResponder.keyboardWillShowNotification, - object: nil - ) - NotificationCenter.default.removeObserver( - self, - name: UIResponder.keyboardWillHideNotification, - object: nil - ) - } - - @objc func keyboardWillShow(notification: NSNotification) { - viewController?.keyboardWillShow(notification: notification) - } - - @objc func keyboardWillHide() { - viewController?.keyboardWillHide() - } +// // MARK: Keyboard에 따른 view 높이 변경 Notification +// func addKeyboardNotification() { +// NotificationCenter.default.addObserver( +// self, +// selector: #selector(keyboardWillShow), +// name: UIResponder.keyboardWillShowNotification, +// object: nil +// ) +// NotificationCenter.default.addObserver( +// self, +// selector: #selector(keyboardWillHide), +// name: UIResponder.keyboardWillHideNotification, +// object: nil +// ) +// } +// +// func removeKeyboardNotification() { +// NotificationCenter.default.removeObserver( +// self, +// name: UIResponder.keyboardWillShowNotification, +// object: nil +// ) +// NotificationCenter.default.removeObserver( +// self, +// name: UIResponder.keyboardWillHideNotification, +// object: nil +// ) +// } +// +// @objc func keyboardWillShow(notification: NSNotification) { +// viewController?.keyboardWillShow(notification: notification) +// } +// +// @objc func keyboardWillHide() { +// viewController?.keyboardWillHide() +// } // MARK: vegan Data 불러오기 func loadVeganData() { @@ -895,6 +895,38 @@ final class HomeViewPresenter: NSObject { editPlaceInfo(withSelectedSegmentedControl: 3) } } + + // MARK: Push Review Write ViewController + func pushReviewWriteView() -> ReviewWriteViewController { + whenKeepPlaceInfoView = true + + guard let markerModel = selectedMarkerModel, + let summaryModel = selectedSummaryModel, + let infoModel = selectedInfoModel else { + return ReviewWriteViewController() + } + + var image: UIImage! + + switch markerModel.mapPlace { + case .All: + image = .allCell + case .Some: + image = .someCell + case .Request: + image = .requestCell + } + + let viewModel = ReviewWriteViewModel( + placeIcon: image, + placeTitle: summaryModel.title, + placeAddress: infoModel.address + " " + (infoModel.address2 ?? "") + ) + + let vc = ReviewWriteViewController.create(with: viewModel) + + return vc + } } // MARK: CLLocationManagerDelegate diff --git a/AVIRO/Scene/View/TabBar/TabBarViewController.swift b/AVIRO/Scene/TabBar/TabBarViewController.swift similarity index 100% rename from AVIRO/Scene/View/TabBar/TabBarViewController.swift rename to AVIRO/Scene/TabBar/TabBarViewController.swift diff --git a/AVIRO/Scene/View/Tutorial/TutorialCell/BottomCell.swift b/AVIRO/Scene/Tutorial/TutorialCell/BottomCell.swift similarity index 100% rename from AVIRO/Scene/View/Tutorial/TutorialCell/BottomCell.swift rename to AVIRO/Scene/Tutorial/TutorialCell/BottomCell.swift diff --git a/AVIRO/Scene/View/Tutorial/TutorialCell/TopCell.swift b/AVIRO/Scene/Tutorial/TutorialCell/TopCell.swift similarity index 100% rename from AVIRO/Scene/View/Tutorial/TutorialCell/TopCell.swift rename to AVIRO/Scene/Tutorial/TutorialCell/TopCell.swift diff --git a/AVIRO/Scene/View/Tutorial/TutorialViewController.swift b/AVIRO/Scene/Tutorial/TutorialViewController.swift similarity index 100% rename from AVIRO/Scene/View/Tutorial/TutorialViewController.swift rename to AVIRO/Scene/Tutorial/TutorialViewController.swift diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift deleted file mode 100644 index 3128965b..00000000 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift +++ /dev/null @@ -1,12 +0,0 @@ -// -// ReviewPlaceInfoView.swift -// AVIRO -// -// Created by 전성훈 on 2023/12/19. -// - -import UIKit - -final class ReviewPlaceInfoView: UIView { - -} diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewWriteViewController.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewWriteViewController.swift deleted file mode 100644 index 4443857b..00000000 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewController/ReviewWriteViewController.swift +++ /dev/null @@ -1,133 +0,0 @@ -// -// ReviewWriteViewController.swift -// AVIRO -// -// Created by 전성훈 on 2023/12/19. -// - -import UIKit - -final class ReviewWriteViewController: UIViewController { - private lazy var placeInfoView: ReviewPlaceInfoView = { - let view = ReviewPlaceInfoView() - - view.backgroundColor = .red - - return view - }() - - private lazy var reviewTextView: UITextView = { - let view = UITextView() - - view.textColor = .gray0 - view.font = .pretendard(size: 16, weight: .regular) - view.backgroundColor = .gray6 - view.layer.cornerRadius = 10 - view.textContainerInset = UIEdgeInsets(top: 16, left: 16, bottom: 16, right: 16) - - return view - }() - - private lazy var placeholderLabel: UILabel = { - let label = UILabel() - - label.text = "욕설, 비방 등 사장님과 다른 사용자들을 불쾌하게 하는 내용은 남기지 말아주세요." - label.textColor = .gray5 - label.lineBreakMode = .byCharWrapping - label.numberOfLines = 0 - label.font = .pretendard(size: 16, weight: .regular) - label.isHidden = !reviewTextView.text.isEmpty - - return label - }() - - private lazy var textViewCountLabel: UILabel = { - let label = UILabel() - - return label - }() - - private lazy var exampleLabel: UILabel = { - let label = UILabel() - - label.text = "맛, 가격, 분위기, 편의시설, 비건프렌들리함 등" - label.textColor = .gray2 - label.numberOfLines = 1 - label.font = .pretendard(size: 16, weight: .medium) - - return label - }() - - private lazy var exampleSticy: UIView = { - let view = UIView() - - return view - }() - - private lazy var reviewUploadButton: UIButton = { - let button = UIButton() - - return button - }() - - override func viewDidLoad() { - super.viewDidLoad() - - setupLayout() - setupAttribute() - } - - private func setupLayout() { - [ - placeInfoView, - reviewTextView, - placeholderLabel, - textViewCountLabel, - exampleLabel, - exampleSticy, - reviewUploadButton - ].forEach { - $0.translatesAutoresizingMaskIntoConstraints = false - self.view.addSubview($0) - } - - NSLayoutConstraint.activate([ - // TODO: placeInfoVIew 높이는 값에 따라 동적으로 다르게 설정 - placeInfoView.topAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.topAnchor, constant: 20), - placeInfoView.leadingAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.leadingAnchor, constant: 16), - placeInfoView.trailingAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.trailingAnchor, constant: -16), - placeInfoView.heightAnchor.constraint(equalToConstant: 90), - - reviewTextView.topAnchor.constraint(equalTo: placeInfoView.bottomAnchor, constant: 20), - reviewTextView.leadingAnchor.constraint(equalTo: self.view.leadingAnchor, constant: 16), - reviewTextView.trailingAnchor.constraint(equalTo: self.view.trailingAnchor, constant: -16), - reviewTextView.heightAnchor.constraint(equalToConstant: 320), - - placeholderLabel.topAnchor.constraint(equalTo: reviewTextView.topAnchor, constant: 20), - placeholderLabel.leadingAnchor.constraint(equalTo: reviewTextView.leadingAnchor, constant: 20), - placeholderLabel.trailingAnchor.constraint(equalTo: reviewTextView.trailingAnchor, constant: -20), - - textViewCountLabel.bottomAnchor.constraint(equalTo: reviewTextView.bottomAnchor, constant: -16), - textViewCountLabel.trailingAnchor.constraint(equalTo: reviewTextView.trailingAnchor, constant: -16), - - exampleLabel.topAnchor.constraint(equalTo: reviewTextView.bottomAnchor, constant: 16), - exampleLabel.leadingAnchor.constraint(equalTo: self.view.leadingAnchor, constant: 16), - - exampleSticy.centerXAnchor.constraint(equalTo: self.view.centerXAnchor), - exampleSticy.bottomAnchor.constraint(equalTo: reviewUploadButton.topAnchor, constant: -11), - - reviewUploadButton.bottomAnchor.constraint(equalTo: self.view.safeAreaLayoutGuide.bottomAnchor), - reviewUploadButton.leadingAnchor.constraint(equalTo: self.view.leadingAnchor), - reviewUploadButton.trailingAnchor.constraint(equalTo: self.view.trailingAnchor), - reviewUploadButton.heightAnchor.constraint(equalToConstant: 60) - ]) - } - - private func setupAttribute() { - navigationController?.navigationBar.isHidden = false - - self.view.backgroundColor = .gray7 - self.navigationItem.title = "후기 작성" - self.setupBack(true) - } -} diff --git a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift b/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift deleted file mode 100644 index 0217e5dd..00000000 --- a/AVIRO/Scene/View/TabBar/Home/PlaceDetail/SubView/SegmentedControlSubView/SubView/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift +++ /dev/null @@ -1,8 +0,0 @@ -// -// ReviewWriteViewModel.swift -// AVIRO -// -// Created by 전성훈 on 2023/12/19. -// - -import Foundation From 0000fb9dc9ab5b41169836ca8856e682d898eb54 Mon Sep 17 00:00:00 2001 From: Jeon Seoung Hun Date: Sun, 24 Dec 2023 00:42:04 +0900 Subject: [PATCH 07/18] =?UTF-8?q?Review=20UI=20=EA=B5=AC=ED=98=84=20?= =?UTF-8?q?=EC=99=84=EB=A3=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AVIRO/App/AppDelegate.swift | 23 +++- .../ReviewPlaceInfoView.swift | 13 +-- .../ReviewWriteViewController.swift | 109 +++++++++++++++--- .../ViewModel/ReviewWriteViewModel.swift | 37 ++++-- 4 files changed, 141 insertions(+), 41 deletions(-) diff --git a/AVIRO/App/AppDelegate.swift b/AVIRO/App/AppDelegate.swift index 4248a8d9..800840c5 100644 --- a/AVIRO/App/AppDelegate.swift +++ b/AVIRO/App/AppDelegate.swift @@ -33,12 +33,20 @@ class AppDelegate: UIResponder, UIApplicationDelegate { configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions ) -> UISceneConfiguration { - return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + return UISceneConfiguration( + name: "Default Configuration", + sessionRole: connectingSceneSession.role + ) } private func setNaverMapAPI() { - guard let keyUrl = Bundle.main.url(forResource: "API", withExtension: "plist"), - let dictionary = NSDictionary(contentsOf: keyUrl) as? [String: Any] else { return } + guard let keyUrl = Bundle.main.url( + forResource: "API", + withExtension: "plist" + ), + let dictionary = NSDictionary( + contentsOf: keyUrl + ) as? [String: Any] else { return } let key = (dictionary["NMFAuthManager_Authorization_Key"] as? String)! @@ -46,8 +54,13 @@ class AppDelegate: UIResponder, UIApplicationDelegate { } private func setAmplitude() { - guard let keyUrl = Bundle.main.url(forResource: "API", withExtension: "plist"), - let dictionary = NSDictionary(contentsOf: keyUrl) as? [String: Any] else { return } + guard let keyUrl = Bundle.main.url( + forResource: "API", + withExtension: "plist" + ), + let dictionary = NSDictionary( + contentsOf: keyUrl + ) as? [String: Any] else { return } let key = (dictionary["Amplitude_Key"] as? String)! diff --git a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift index cc27b377..69f36856 100644 --- a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift +++ b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift @@ -71,20 +71,15 @@ final class ReviewPlaceInfoView: UIView { self.addSubview($0) } - let placeTitleLeading = placeTitle.leadingAnchor.constraint(equalTo: placeIcon.trailingAnchor, constant: 4) - placeTitleLeading.priority = UILayoutPriority.defaultHigh - - let placeTitleTrailing = placeTitle.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -20) - placeTitleTrailing.priority = UILayoutPriority.defaultLow - - placeTitleLeading.isActive = true - placeTitleTrailing.isActive = true - NSLayoutConstraint.activate([ placeIcon.topAnchor.constraint(equalTo: self.topAnchor, constant: 20), placeIcon.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 20), + placeIcon.widthAnchor.constraint(equalToConstant: 24), + placeIcon.heightAnchor.constraint(equalToConstant: 24), placeTitle.centerYAnchor.constraint(equalTo: placeIcon.centerYAnchor), + placeTitle.leadingAnchor.constraint(equalTo: placeIcon.trailingAnchor, constant: 4), + placeTitle.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -20), placeAddress.topAnchor.constraint(equalTo: placeIcon.bottomAnchor, constant: 5), placeAddress.leadingAnchor.constraint(equalTo: placeIcon.leadingAnchor), diff --git a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift index e80bbc97..c56c9503 100644 --- a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift +++ b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift @@ -5,7 +5,6 @@ // Created by 전성훈 on 2023/12/19. // - // MARK: Count 바인딩, textview text 바인딩, 등록 바인딩 import RxSwift import RxCocoa @@ -13,7 +12,7 @@ import RxCocoa final class ReviewWriteViewController: UIViewController { private var viewModel: ReviewWriteViewModel! private var disposeBag = DisposeBag() - + private lazy var placeInfoView: ReviewPlaceInfoView = { let view = ReviewPlaceInfoView() @@ -47,7 +46,7 @@ final class ReviewWriteViewController: UIViewController { private lazy var placeholderLabel: UILabel = { let label = UILabel() - label.text = "욕설, 비방 등 사장님과 다른 사용자들을 불쾌하게 하는 내용은 남기지 말아주세요." + label.text = "사장님과 다른 사용자들이 상처받지 않도록 좋은 표현을 사용해주세요." label.textColor = .gray5 label.lineBreakMode = .byCharWrapping label.numberOfLines = 0 @@ -66,7 +65,7 @@ final class ReviewWriteViewController: UIViewController { private lazy var exampleLabel: UILabel = { let label = UILabel() - label.text = "맛, 가격, 분위기, 편의시설, 비건프렌들리함 등" + label.text = "도움이 돼요 : 맛, 가격, 분위기, 편의시설, 비건프렌들리함 등" label.textColor = .gray2 label.numberOfLines = 1 label.font = .pretendard(size: 16, weight: .medium) @@ -85,13 +84,16 @@ final class ReviewWriteViewController: UIViewController { private lazy var reviewUploadButton: UIButton = { let button = UIButton() - button.backgroundColor = .keywordBlue button.setTitle("후기 등록하기", for: .normal) button.titleLabel?.font = .pretendard(size: 17, weight: .semibold) button.setTitleColor(.gray7, for: .normal) + button.setTitleColor(.gray2, for: .disabled) return button }() + + private var reviewTextViewWhenKeyboardWillShow: NSLayoutConstraint! + private var reviewTextViewWhenKeyboardWillHide: NSLayoutConstraint! private var afterViewDidLoad = false @@ -140,7 +142,6 @@ final class ReviewWriteViewController: UIViewController { } NSLayoutConstraint.activate([ - // TODO: placeInfoVIew 높이는 값에 따라 동적으로 다르게 설정 placeInfoView.topAnchor.constraint( equalTo: self.view.safeAreaLayoutGuide.topAnchor, constant: 20 @@ -215,14 +216,34 @@ final class ReviewWriteViewController: UIViewController { reviewUploadButton.trailingAnchor.constraint( equalTo: self.view.trailingAnchor ) + ]) + reviewTextViewWhenKeyboardWillShow = self.reviewTextView.topAnchor.constraint( + equalTo: self.view.safeAreaLayoutGuide.topAnchor + ) + reviewTextViewWhenKeyboardWillHide = self.reviewTextView.topAnchor.constraint( + equalTo: self.placeInfoView.bottomAnchor, + constant: 20 + ) + + reviewTextViewWhenKeyboardWillShow.isActive = false + reviewTextViewWhenKeyboardWillHide.isActive = true + UIView.animate(withDuration: 0.5, delay: 0, options: [.repeat, .autoreverse]) { self.exampleSticy.transform = CGAffineTransform(translationX: 0, y: 3) } } private func setupAttribute() { + let tapGesture = UITapGestureRecognizer() + + tapGesture.rx.event.bind { [weak self] _ in + self?.view.endEditing(true) + }.disposed(by: disposeBag) + + view.addGestureRecognizer(tapGesture) + navigationController?.navigationBar.isHidden = false self.view.backgroundColor = .gray7 @@ -250,11 +271,9 @@ final class ReviewWriteViewController: UIViewController { } private func dataBinding() { - let textViewBiginEditing = reviewTextView.rx.didBeginEditing.asDriver() let text = reviewTextView.rx.text.asDriver() let input = ReviewWriteViewModel.Input( - textViewBiginEditing: textViewBiginEditing, text: text ) @@ -268,18 +287,59 @@ final class ReviewWriteViewController: UIViewController { .drive(self.rx.textCountUpdate) .disposed(by: disposeBag) - // TODO: 쉐이크 애니메이션 output.review .drive(reviewTextView.rx.text) .disposed(by: disposeBag) + + output.keyboardWillShow + .drive(self.rx.keyboardWillShow) + .disposed(by: disposeBag) + + output.keyboardWillHide + .drive(self.rx.keyboardWillHide) + .disposed(by: disposeBag) + } + + func adjustViewForKeyboardWillShow() { + UIView.animate(withDuration: 0.3) { + self.reviewTextViewWhenKeyboardWillHide.isActive = false + self.reviewTextViewWhenKeyboardWillShow.isActive = true + + self.view.layoutIfNeeded() + } + } + + func adjustViewForKeyboardWillHide() { + UIView.animate(withDuration: 0.3) { + self.reviewTextViewWhenKeyboardWillShow.isActive = false + self.reviewTextViewWhenKeyboardWillHide.isActive = true + + self.view.layoutIfNeeded() + } } func updateTextViewPlaceHolder(with isEditing: Bool) { placeholderLabel.isHidden = isEditing } - func updateTextCount(with textCount: String) { - let coloredRange = NSRange(location: 0, length: textCount.count) + func updateTextCount(with textCount: Int) { + updateButtonEnable(with: textCount) + updateTextViewCountLabel(with: textCount) + + if textCount == 200 { + whenOverText() + } + } + + private func updateButtonEnable(with textCount: Int) { + reviewUploadButton.isEnabled = textCount != 0 + reviewUploadButton.backgroundColor = textCount != 0 ? .keywordBlue : .gray5 + } + + private func updateTextViewCountLabel(with textCount: Int) { + let textCountString = String(textCount) + + let coloredRange = NSRange(location: 0, length: textCountString.count) let coloredAttributes = [ NSAttributedString.Key.foregroundColor: UIColor.keywordBlue, @@ -293,9 +353,9 @@ final class ReviewWriteViewController: UIViewController { let attributedText = NSMutableAttributedString( string: [ - textCount, + textCountString, "/", - "255" + "200" ].joined() ) @@ -306,13 +366,17 @@ final class ReviewWriteViewController: UIViewController { attributedText.addAttributes( grayAttributes, range: NSRange( - location: textCount.count, - length: attributedText.length - textCount.count + location: textCountString.count, + length: attributedText.length - textCountString.count ) ) textViewCountLabel.attributedText = attributedText } + + private func whenOverText() { + reviewTextView.activeHshakeEffect() + } } extension Reactive where Base: ReviewWriteViewController { @@ -322,9 +386,22 @@ extension Reactive where Base: ReviewWriteViewController { } } - var textCountUpdate: Binder { + var textCountUpdate: Binder { return Binder(self.base) { base, textCount in base.updateTextCount(with: textCount) } } + + var keyboardWillShow: Binder { + return Binder(self.base) { base, _ in + base.adjustViewForKeyboardWillShow() + } + } + + var keyboardWillHide: Binder { + return Binder(self.base) { base, _ in + base.adjustViewForKeyboardWillHide() + } + + } } diff --git a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift index a6dc0169..e903ca68 100644 --- a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift +++ b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift @@ -8,6 +8,7 @@ import RxSwift import RxCocoa final class ReviewWriteViewModel: ViewModel { + private let disposeBag = DisposeBag() var placeIcon: UIImage! var placeTitle: String! @@ -21,42 +22,56 @@ final class ReviewWriteViewModel: ViewModel { self.placeIcon = placeIcon self.placeTitle = placeTitle self.placeAddress = placeAddress + } struct Input { - let textViewBiginEditing: Driver let text: Driver } struct Output { let isEditing: Driver - let textCount: Driver + let textCount: Driver let review: Driver + let keyboardWillShow: Driver + let keyboardWillHide: Driver } func transform(with input: Input) -> Output { - let isEditing = input.textViewBiginEditing - .map { true } + let isEditing = input.text.map { + $0?.count ?? 0 > 0 ? true : false + } let restrictedText = input.text - .flatMapLatest { text -> Driver in + .map { text in let text = text ?? "" - if text.count > 255 { - let index = text.index(text.startIndex, offsetBy: 255) + if text.count > 200 { + let index = text.index(text.startIndex, offsetBy: 200) let restricted = String(text[.. Date: Mon, 25 Dec 2023 01:37:47 +0900 Subject: [PATCH 08/18] [Feat]: ChallengeInfoView Update --- AVIRO.xcodeproj/project.pbxproj | 32 ++++++++ AVIRO/Custom/Constants/Enum+.swift | 8 +- .../ChallengeInfoPresentaionDelegate.swift | 18 +++++ .../ChallengeInfoPresentationAnimator.swift | 57 +++++++++++++ .../ChallengeInfoViewController.swift | 79 +++++++++++++++++++ .../ChallengeTitleView.swift | 18 +++++ .../ChallengeViewController.swift | 64 +++++++++++++-- .../ViewModel/ChallengeViewModel.swift | 33 ++++++++ .../ReviewWriteViewController.swift | 2 +- .../ViewModel/ReviewWriteViewModel.swift | 4 +- 10 files changed, 301 insertions(+), 14 deletions(-) create mode 100644 AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentaionDelegate.swift create mode 100644 AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift create mode 100644 AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/ChallengeInfoViewController.swift create mode 100644 AVIRO/Scene/TabBar/Challenge/ViewModel/ChallengeViewModel.swift diff --git a/AVIRO.xcodeproj/project.pbxproj b/AVIRO.xcodeproj/project.pbxproj index 14ff99ed..3445091b 100644 --- a/AVIRO.xcodeproj/project.pbxproj +++ b/AVIRO.xcodeproj/project.pbxproj @@ -115,6 +115,10 @@ C56295072B3188530067BBE5 /* ReviewWriteViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C56295062B3188530067BBE5 /* ReviewWriteViewController.swift */; }; C56295092B31885C0067BBE5 /* ReviewWriteViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C56295082B31885C0067BBE5 /* ReviewWriteViewModel.swift */; }; C562950C2B318BB60067BBE5 /* ReviewPlaceInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C562950B2B318BB60067BBE5 /* ReviewPlaceInfoView.swift */; }; + C562B6DC2B38704600CE5D4C /* ChallengeViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C562B6DB2B38704600CE5D4C /* ChallengeViewModel.swift */; }; + C562B6DF2B387AE200CE5D4C /* ChallengeInfoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C562B6DE2B387AE200CE5D4C /* ChallengeInfoViewController.swift */; }; + C562B6E22B387B8700CE5D4C /* ChallengeInfoPresentationAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = C562B6E12B387B8700CE5D4C /* ChallengeInfoPresentationAnimator.swift */; }; + C562B6E42B387CA200CE5D4C /* ChallengeInfoPresentaionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C562B6E32B387CA200CE5D4C /* ChallengeInfoPresentaionDelegate.swift */; }; C567C1502A56611500D4B426 /* TopCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C567C14F2A56611500D4B426 /* TopCell.swift */; }; C568577D2A70E1F600F52715 /* MenuPlusButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C568577C2A70E1F600F52715 /* MenuPlusButton.swift */; }; C56857802A7113C600F52715 /* NormalTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C568577F2A7113C600F52715 /* NormalTableViewCell.swift */; }; @@ -348,6 +352,10 @@ C56295062B3188530067BBE5 /* ReviewWriteViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewWriteViewController.swift; sourceTree = ""; }; C56295082B31885C0067BBE5 /* ReviewWriteViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewWriteViewModel.swift; sourceTree = ""; }; C562950B2B318BB60067BBE5 /* ReviewPlaceInfoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReviewPlaceInfoView.swift; sourceTree = ""; }; + C562B6DB2B38704600CE5D4C /* ChallengeViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeViewModel.swift; sourceTree = ""; }; + C562B6DE2B387AE200CE5D4C /* ChallengeInfoViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeInfoViewController.swift; sourceTree = ""; }; + C562B6E12B387B8700CE5D4C /* ChallengeInfoPresentationAnimator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeInfoPresentationAnimator.swift; sourceTree = ""; }; + C562B6E32B387CA200CE5D4C /* ChallengeInfoPresentaionDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeInfoPresentaionDelegate.swift; sourceTree = ""; }; C567C14F2A56611500D4B426 /* TopCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TopCell.swift; sourceTree = ""; }; C568577C2A70E1F600F52715 /* MenuPlusButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuPlusButton.swift; sourceTree = ""; }; C568577F2A7113C600F52715 /* NormalTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NormalTableViewCell.swift; sourceTree = ""; }; @@ -1083,6 +1091,7 @@ C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */, C5476B642B303BBB00F5FC6E /* ChallengeTitleView */, C5476B662B303BD400F5FC6E /* ChallengeUserInfoView */, + C562B6DD2B387ABE00CE5D4C /* ChallengeInfoView */, C5476B652B303BCB00F5FC6E /* MyInfoView */, ); path = ViewController; @@ -1091,6 +1100,7 @@ C5476B632B3036E300F5FC6E /* ViewModel */ = { isa = PBXGroup; children = ( + C562B6DB2B38704600CE5D4C /* ChallengeViewModel.swift */, ); path = ViewModel; sourceTree = ""; @@ -1225,6 +1235,24 @@ path = ReviewPlaceInfoView; sourceTree = ""; }; + C562B6DD2B387ABE00CE5D4C /* ChallengeInfoView */ = { + isa = PBXGroup; + children = ( + C562B6DE2B387AE200CE5D4C /* ChallengeInfoViewController.swift */, + C562B6E02B387B5100CE5D4C /* AnimationCustom */, + ); + path = ChallengeInfoView; + sourceTree = ""; + }; + C562B6E02B387B5100CE5D4C /* AnimationCustom */ = { + isa = PBXGroup; + children = ( + C562B6E12B387B8700CE5D4C /* ChallengeInfoPresentationAnimator.swift */, + C562B6E32B387CA200CE5D4C /* ChallengeInfoPresentaionDelegate.swift */, + ); + path = AnimationCustom; + sourceTree = ""; + }; C567C14D2A5658C700D4B426 /* Login */ = { isa = PBXGroup; children = ( @@ -1933,6 +1961,7 @@ C50DB7592A9B8E060078B501 /* EditLocationAddressMapView.swift in Sources */, C5ED46932AAEB02F00F2DA04 /* PlaceOperationHoursViewController.swift in Sources */, C5732C752A41962D00CDC499 /* AVIRORequestAPI.swift in Sources */, + C562B6DC2B38704600CE5D4C /* ChallengeViewModel.swift in Sources */, C5C20BAC2AD504D500855BBB /* AmplitudeUtility.swift in Sources */, C513854C2AAB3B52001AB827 /* NickNameChangeblePresenter.swift in Sources */, C5D93DA12A581F5A00629C39 /* FirstRegistrationPresenter.swift in Sources */, @@ -1940,6 +1969,7 @@ C58FBF842AC26D3E00AB6EFC /* APIManagerProtocol.swift in Sources */, C50F6B042A6BCD6900E942F5 /* CategoryButton.swift in Sources */, C58FBF862AC270A200AB6EFC /* APITypes.swift in Sources */, + C562B6DF2B387AE200CE5D4C /* ChallengeInfoViewController.swift in Sources */, C5C915492A777F8500C7CB93 /* SearchField.swift in Sources */, C52066212A7CA9050038ECCD /* MainField.swift in Sources */, C5EB510B2A209FD300B29CC1 /* HomeSearchPresenter.swift in Sources */, @@ -2055,6 +2085,7 @@ C5732C772A41A0A500CDC499 /* AVIROMapMarker+DTO.swift in Sources */, C5FF13532A42C8810026981D /* AVIROPlaceInfo+DTO.swift in Sources */, C5351B5C2A19F60200116D50 /* SearchPlacePresenter.swift in Sources */, + C562B6E42B387CA200CE5D4C /* ChallengeInfoPresentaionDelegate.swift in Sources */, C513854A2AAB3B13001AB827 /* NickNameChangebleViewController.swift in Sources */, C50E6F6F2A8F10B500703B9E /* UILabel+Extension.swift in Sources */, C52066352A7F3FAE0038ECCD /* HistoryTableViewCell.swift in Sources */, @@ -2111,6 +2142,7 @@ C568577D2A70E1F600F52715 /* MenuPlusButton.swift in Sources */, C51132C12A559BCA006E1EC3 /* AppController.swift in Sources */, C5FD92F92A9CDB9E00CF4673 /* EditMenuBottomView.swift in Sources */, + C562B6E22B387B8700CE5D4C /* ChallengeInfoPresentationAnimator.swift in Sources */, C5FD92F02A9C803600CF4673 /* PublicAddress+DTO.swift in Sources */, C593B6472A4AB3A700D224CE /* PushCommentView.swift in Sources */, C51AED1F2A8B2BC80015FBC2 /* HomeTopButton.swift in Sources */, diff --git a/AVIRO/Custom/Constants/Enum+.swift b/AVIRO/Custom/Constants/Enum+.swift index 02aa61a3..561e0341 100644 --- a/AVIRO/Custom/Constants/Enum+.swift +++ b/AVIRO/Custom/Constants/Enum+.swift @@ -103,9 +103,11 @@ enum TBItem: CaseIterable { case .plus: return UINavigationController( rootViewController: EnrollPlaceViewController() ) - case .challenge: return UINavigationController( - rootViewController: ChallengeViewController() - ) + case .challenge: + let viewModel = ChallengeViewModel() + let vc = ChallengeViewController.create(with: viewModel) + + return UINavigationController(rootViewController: vc) } } } diff --git a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentaionDelegate.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentaionDelegate.swift new file mode 100644 index 00000000..dc5aa5ea --- /dev/null +++ b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentaionDelegate.swift @@ -0,0 +1,18 @@ +// +// ChallengeInfoPresentaionDelegate.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/24. +// + +import UIKit + +class ChallengeInfoPresentaionDelegate: NSObject, UIViewControllerTransitioningDelegate { + func animationController( + forPresented presented: UIViewController, + presenting: UIViewController, + source: UIViewController + ) -> UIViewControllerAnimatedTransitioning? { + return ChallengeInfoPresentationAnimator() + } +} diff --git a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift new file mode 100644 index 00000000..87e12a21 --- /dev/null +++ b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift @@ -0,0 +1,57 @@ +// +// ChallengeInfoPresentationAnimator.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/24. +// + +import UIKit + +class ChallengeInfoPresentationAnimator: NSObject, UIViewControllerAnimatedTransitioning { + func transitionDuration( + using transitionContext: UIViewControllerContextTransitioning? + ) -> TimeInterval { + return 0.15 + } + + func animateTransition( + using transitionContext: UIViewControllerContextTransitioning + ) { + // 프레젠테이션될 뷰 컨트롤러입니다. + guard let toViewController = transitionContext.viewController(forKey: .to) else { + transitionContext.completeTransition(false) + return + } + + let blurEffect = UIBlurEffect(style: .dark) + let blurEffectView = UIVisualEffectView(effect: blurEffect) + blurEffectView.frame = transitionContext.containerView.bounds + blurEffectView.autoresizingMask = [.flexibleWidth, .flexibleHeight] + blurEffectView.alpha = 0 + + let containerView = transitionContext.containerView + containerView.addSubview(blurEffectView) + containerView.addSubview(toViewController.view) + + let finalFrame = CGRect( + x: 0, + y: containerView.frame.height - 560, + width: containerView.bounds.width, + height: 580 + ) + + toViewController.view.frame = finalFrame.offsetBy( + dx: 0, + dy: finalFrame.height + ) + + UIView.animate( + withDuration: transitionDuration(using: transitionContext), + animations: { + blurEffectView.alpha = 0.4 + toViewController.view.frame = finalFrame + }, + completion: { finished in transitionContext.completeTransition(finished) } + ) + } +} diff --git a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/ChallengeInfoViewController.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/ChallengeInfoViewController.swift new file mode 100644 index 00000000..20c40410 --- /dev/null +++ b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/ChallengeInfoViewController.swift @@ -0,0 +1,79 @@ +// +// ChallengeInfoViewController.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/24. +// + +import UIKit + +import RxSwift +import RxCocoa + +final class ChallengeInfoViewController: UIViewController { + private let disposeBag = DisposeBag() + + private lazy var titleLabelView: UIView = { + let view = UIView() + + return view + }() + + override func viewDidLoad() { + super.viewDidLoad() + + setupLayout() + setupAttribute() + } + + private func setupLayout() { + + } + + private func setupAttribute() { + view.backgroundColor = .gray5 + + let panGesture = UIPanGestureRecognizer() + self.view.addGestureRecognizer(panGesture) + + panGesture.rx.event + .asDriver() + .drive(onNext: { [weak self] gesture in + self?.handlePanGesture(with: gesture) + }) + .disposed(by: disposeBag) + } + + private func handlePanGesture(with gesture: UIPanGestureRecognizer) { + let maxUpwardSwipeHeight: CGFloat = 20.0 + + let translation = gesture.translation(in: view) + let velocity = gesture.velocity(in: view) + + switch gesture.state { + case .changed: + if translation.y < 0 { + view.transform = CGAffineTransform( + translationX: 0, + y: -maxUpwardSwipeHeight + ) + } else { + view.transform = CGAffineTransform( + translationX: 0, + y: translation.y + ) + } + + case .ended, .cancelled: + if translation.y > 0 && velocity.y > 800 { + dismiss(animated: true) + } else { + UIView.animate(withDuration: 0.2) { + self.view.transform = .identity + } + } + default: + break + } + } +} diff --git a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift index 3270aa62..4f198d93 100644 --- a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift +++ b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift @@ -7,7 +7,16 @@ import UIKit +import RxSwift +import RxCocoa + final class ChallengeTitleView: UIView { + private var viewModel: ChallengeViewModel! + + var challengeInfoButtonTap: Driver { + return challengeInfoButton.rx.tap.asDriver() + } + private lazy var challengeDateLabel: UILabel = { let label = UILabel() @@ -44,6 +53,15 @@ final class ChallengeTitleView: UIView { return button }() + init(with viewModel: ChallengeViewModel) { + super.init(frame: .zero) + + self.viewModel = viewModel + + setupLayout() + setupAttribute() + } + override init(frame: CGRect) { super.init(frame: frame) diff --git a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift index c2c4b2b7..938df145 100644 --- a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift +++ b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift @@ -11,6 +11,7 @@ import RxSwift import RxCocoa final class ChallengeViewController: UIViewController { + private var viewModel: ChallengeViewModel! private let disposeBag = DisposeBag() private lazy var scrollView = UIScrollView() @@ -33,6 +34,15 @@ final class ChallengeViewController: UIViewController { return view }() +// private lazy var challengeInfoView: + + static func create(with viewModel: ChallengeViewModel) -> ChallengeViewController { + let vc = ChallengeViewController() + vc.viewModel = viewModel + + return vc + } + override func viewDidLoad() { super.viewDidLoad() @@ -136,13 +146,53 @@ final class ChallengeViewController: UIViewController { myInfoView.updateMyReview("3") myInfoView.updateMyStar("4") - navigationItem.rightBarButtonItem?.rx.tap - .subscribe(onNext: { [weak self] _ in - let vc = SettingViewController() - let presenter = SettingViewPresenter(viewController: vc) - - self?.navigationController?.pushViewController(vc, animated: true) - }) + let tappedNavigationBarRightButton = navigationItem.rightBarButtonItem?.rx.tap.asDriver() ?? .empty() + + let input = ChallengeViewModel.Input( + tappedChallengeInfoButton: challengeTitleView.challengeInfoButtonTap, + tappedNavigationBarRightButton: tappedNavigationBarRightButton + ) + + let output = viewModel.transform(with: input) + + output.afterTappedChallengeInfoButton + .drive(self.rx.isPushChallengeInfoViewController) + .disposed(by: disposeBag) + + output.afterTappedNavigationBarRightButton + .drive(self.rx.isPushSettingViewController) .disposed(by: disposeBag) } + + func pushChallengeInfoViewController() { + let vc = ChallengeInfoViewController() + + let presentationDelegate = ChallengeInfoPresentaionDelegate() + + vc.transitioningDelegate = presentationDelegate + vc.modalPresentationStyle = .custom + + self.present(vc, animated: true) + } + + // TODO: 수정 예정 + func pushSettingViewController() { + let vc = SettingViewController() + + navigationController?.pushViewController(vc, animated: true) + } +} + +extension Reactive where Base: ChallengeViewController { + var isPushChallengeInfoViewController: Binder { + return Binder(self.base) { base, _ in + base.pushChallengeInfoViewController() + } + } + + var isPushSettingViewController: Binder { + return Binder(self.base) { base, _ in + base.pushSettingViewController() + } + } } diff --git a/AVIRO/Scene/TabBar/Challenge/ViewModel/ChallengeViewModel.swift b/AVIRO/Scene/TabBar/Challenge/ViewModel/ChallengeViewModel.swift new file mode 100644 index 00000000..c256c170 --- /dev/null +++ b/AVIRO/Scene/TabBar/Challenge/ViewModel/ChallengeViewModel.swift @@ -0,0 +1,33 @@ +// +// ChallengeViewModel.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/24. +// + +import RxSwift +import RxCocoa + +final class ChallengeViewModel: ViewModel { + struct Input { + let tappedChallengeInfoButton: Driver + let tappedNavigationBarRightButton: Driver + } + + struct Output { + let afterTappedChallengeInfoButton: Driver + let afterTappedNavigationBarRightButton: Driver + } + + func transform(with input: Input) -> Output { + + let afterTappedChallengeInfoButton = input.tappedChallengeInfoButton + + let afterTappedNavigationBarRightButton = input.tappedNavigationBarRightButton + + return Output( + afterTappedChallengeInfoButton: afterTappedChallengeInfoButton, + afterTappedNavigationBarRightButton: afterTappedNavigationBarRightButton + ) + } +} diff --git a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift index c56c9503..df64be92 100644 --- a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift +++ b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift @@ -11,7 +11,7 @@ import RxCocoa final class ReviewWriteViewController: UIViewController { private var viewModel: ReviewWriteViewModel! - private var disposeBag = DisposeBag() + private let disposeBag = DisposeBag() private lazy var placeInfoView: ReviewPlaceInfoView = { let view = ReviewPlaceInfoView() diff --git a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift index e903ca68..3ebbfcbd 100644 --- a/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift +++ b/AVIRO/Scene/TabBar/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift @@ -7,9 +7,7 @@ import RxSwift import RxCocoa -final class ReviewWriteViewModel: ViewModel { - private let disposeBag = DisposeBag() - +final class ReviewWriteViewModel: ViewModel { var placeIcon: UIImage! var placeTitle: String! var placeAddress: String! From 0fbc399d8ee99203d4bebea0a1f096de9d8d1293 Mon Sep 17 00:00:00 2001 From: Jeon Seoung Hun Date: Mon, 25 Dec 2023 23:45:39 +0900 Subject: [PATCH 09/18] =?UTF-8?q?[Feat]:=20Challenge=20Info=20View=20?= =?UTF-8?q?=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AVIRO.xcodeproj/project.pbxproj | 26 ++- .../ChallengeInfoGreen.png | Bin 0 -> 859 bytes .../ChallengeInfoGreen@2x.png | Bin 0 -> 1472 bytes .../ChallengeInfoGreen@3x.png | Bin 0 -> 2090 bytes .../ChallengeInfoGreen.imageset/Contents.json | 23 ++ .../ChallengeInfoOrange.png | Bin 0 -> 561 bytes .../ChallengeInfoOrange@2x.png | Bin 0 -> 1010 bytes .../ChallengeInfoOrange@3x.png | Bin 0 -> 1439 bytes .../Contents.json | 23 ++ .../ChallengeInfoYellow.png | Bin 0 -> 717 bytes .../ChallengeInfoYellow@2x.png | Bin 0 -> 1197 bytes .../ChallengeInfoYellow@3x.png | Bin 0 -> 1616 bytes .../Contents.json | 23 ++ .../ImageSet/Challenge/Contents.json | 6 + .../Custom/Constants/UIImage+Extension.swift | 5 + .../Custom/Extension/UILabel+Extension.swift | 22 ++ AVIRO/Custom/Extension/UIView+Extension.swift | 17 ++ .../ChallengeInfoPresentaionDelegate.swift | 0 .../ChallengeInfoPresentationAnimator.swift | 6 +- .../ChallengeInfoViewController.swift | 200 ++++++++++++++++++ .../SubView/ChallengeInfoGreenView.swift | 86 ++++++++ .../SubView/ChallengeInfoOrangeView.swift | 69 ++++++ .../SubView/ChallengeInfoTopLabelView.swift | 53 +++++ .../SubView/ChallengeInfoYellowView.swift | 69 ++++++ .../ChallengeInfoViewController.swift | 79 ------- .../ChallengeViewController.swift | 8 +- 26 files changed, 628 insertions(+), 87 deletions(-) create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/ChallengeInfoGreen.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/ChallengeInfoGreen@2x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/ChallengeInfoGreen@3x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/Contents.json create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/ChallengeInfoOrange.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/ChallengeInfoOrange@2x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/ChallengeInfoOrange@3x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/Contents.json create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoYellow.imageset/ChallengeInfoYellow.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoYellow.imageset/ChallengeInfoYellow@2x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoYellow.imageset/ChallengeInfoYellow@3x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoYellow.imageset/Contents.json create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/Challenge/Contents.json rename AVIRO/Scene/TabBar/Challenge/{ViewController => }/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentaionDelegate.swift (100%) rename AVIRO/Scene/TabBar/Challenge/{ViewController => }/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift (93%) create mode 100644 AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/ChallengeInfoViewController.swift create mode 100644 AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoGreenView.swift create mode 100644 AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoOrangeView.swift create mode 100644 AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoTopLabelView.swift create mode 100644 AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoYellowView.swift delete mode 100644 AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/ChallengeInfoViewController.swift diff --git a/AVIRO.xcodeproj/project.pbxproj b/AVIRO.xcodeproj/project.pbxproj index 3445091b..53bebb63 100644 --- a/AVIRO.xcodeproj/project.pbxproj +++ b/AVIRO.xcodeproj/project.pbxproj @@ -213,6 +213,10 @@ C5F33DFD2ADED19000A29FB9 /* SystemUtility.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5F33DFC2ADED19000A29FB9 /* SystemUtility.swift */; }; C5FA0EAA2A94DB3E004AD8B4 /* ReportReviewViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5FA0EA92A94DB3E004AD8B4 /* ReportReviewViewController.swift */; }; C5FA0EAC2A94DF39004AD8B4 /* ReportReviewPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5FA0EAB2A94DF39004AD8B4 /* ReportReviewPresenter.swift */; }; + C5FBDA5A2B398258007AC77E /* ChallengeInfoTopLabelView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5FBDA592B398258007AC77E /* ChallengeInfoTopLabelView.swift */; }; + C5FBDA5C2B398264007AC77E /* ChallengeInfoGreenView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5FBDA5B2B398264007AC77E /* ChallengeInfoGreenView.swift */; }; + C5FBDA5E2B398270007AC77E /* ChallengeInfoYellowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5FBDA5D2B398270007AC77E /* ChallengeInfoYellowView.swift */; }; + C5FBDA602B398280007AC77E /* ChallengeInfoOrangeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5FBDA5F2B398280007AC77E /* ChallengeInfoOrangeView.swift */; }; C5FD92E32A9C6C1E00CF4673 /* EditLocationAddressTextTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5FD92E22A9C6C1E00CF4673 /* EditLocationAddressTextTableViewCell.swift */; }; C5FD92EB2A9C786600CF4673 /* PublicAPIRequestComponents.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5FD92EA2A9C786600CF4673 /* PublicAPIRequestComponents.swift */; }; C5FD92ED2A9C7AE800CF4673 /* PublicAPIManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5FD92EC2A9C7AE800CF4673 /* PublicAPIManager.swift */; }; @@ -452,6 +456,10 @@ C5F33DFE2ADFC5B600A29FB9 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/LaunchScreen.strings; sourceTree = ""; }; C5FA0EA92A94DB3E004AD8B4 /* ReportReviewViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReportReviewViewController.swift; sourceTree = ""; }; C5FA0EAB2A94DF39004AD8B4 /* ReportReviewPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReportReviewPresenter.swift; sourceTree = ""; }; + C5FBDA592B398258007AC77E /* ChallengeInfoTopLabelView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeInfoTopLabelView.swift; sourceTree = ""; }; + C5FBDA5B2B398264007AC77E /* ChallengeInfoGreenView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeInfoGreenView.swift; sourceTree = ""; }; + C5FBDA5D2B398270007AC77E /* ChallengeInfoYellowView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeInfoYellowView.swift; sourceTree = ""; }; + C5FBDA5F2B398280007AC77E /* ChallengeInfoOrangeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChallengeInfoOrangeView.swift; sourceTree = ""; }; C5FD92E22A9C6C1E00CF4673 /* EditLocationAddressTextTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditLocationAddressTextTableViewCell.swift; sourceTree = ""; }; C5FD92EA2A9C786600CF4673 /* PublicAPIRequestComponents.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PublicAPIRequestComponents.swift; sourceTree = ""; }; C5FD92EC2A9C7AE800CF4673 /* PublicAPIManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PublicAPIManager.swift; sourceTree = ""; }; @@ -1091,7 +1099,6 @@ C5476B602B3028FA00F5FC6E /* ChallengeViewController.swift */, C5476B642B303BBB00F5FC6E /* ChallengeTitleView */, C5476B662B303BD400F5FC6E /* ChallengeUserInfoView */, - C562B6DD2B387ABE00CE5D4C /* ChallengeInfoView */, C5476B652B303BCB00F5FC6E /* MyInfoView */, ); path = ViewController; @@ -1239,6 +1246,7 @@ isa = PBXGroup; children = ( C562B6DE2B387AE200CE5D4C /* ChallengeInfoViewController.swift */, + C5FBDA572B397F56007AC77E /* SubView */, C562B6E02B387B5100CE5D4C /* AnimationCustom */, ); path = ChallengeInfoView; @@ -1475,6 +1483,7 @@ children = ( C5476B632B3036E300F5FC6E /* ViewModel */, C5476B622B3036DA00F5FC6E /* ViewController */, + C562B6DD2B387ABE00CE5D4C /* ChallengeInfoView */, C5476B6F2B31459C00F5FC6E /* Setting */, ); path = Challenge; @@ -1692,6 +1701,17 @@ path = Report; sourceTree = ""; }; + C5FBDA572B397F56007AC77E /* SubView */ = { + isa = PBXGroup; + children = ( + C5FBDA592B398258007AC77E /* ChallengeInfoTopLabelView.swift */, + C5FBDA5B2B398264007AC77E /* ChallengeInfoGreenView.swift */, + C5FBDA5D2B398270007AC77E /* ChallengeInfoYellowView.swift */, + C5FBDA5F2B398280007AC77E /* ChallengeInfoOrangeView.swift */, + ); + path = SubView; + sourceTree = ""; + }; C5FD92E82A9C77CE00CF4673 /* PublicManager */ = { isa = PBXGroup; children = ( @@ -1996,6 +2016,7 @@ C51000382AB5F3BD00F65C1F /* UIFont+Extension.swift in Sources */, C56295072B3188530067BBE5 /* ReviewWriteViewController.swift in Sources */, C5476B7B2B31516000F5FC6E /* LicenseDetailViewController.swift in Sources */, + C5FBDA602B398280007AC77E /* ChallengeInfoOrangeView.swift in Sources */, C5FA0EAA2A94DB3E004AD8B4 /* ReportReviewViewController.swift in Sources */, C5C90EBD2AA85E7000AB3668 /* AVIROOperationHours+DTO.swift in Sources */, C5F33DFD2ADED19000A29FB9 /* SystemUtility.swift in Sources */, @@ -2017,6 +2038,7 @@ C5C290772A85E4FF00ED5DCE /* PlaceHomeView.swift in Sources */, C5D93D9F2A581EC800629C39 /* FirstRegistrationViewController.swift in Sources */, C528E4C02A5FF1CB002BD72E /* FinalRegistrationViewController.swift in Sources */, + C5FBDA5C2B398264007AC77E /* ChallengeInfoGreenView.swift in Sources */, C5D93DA32A58718300629C39 /* NextPageButton.swift in Sources */, C50DB7512A9B83550078B501 /* ChangeableAddressViewController.swift in Sources */, C5A989992A959E040021B7C3 /* AVIROBookmark+DTO.swift in Sources */, @@ -2054,6 +2076,7 @@ C5351B542A19A7B100116D50 /* MyCoordinate.swift in Sources */, C5EB50EA2A1C705900B29CC1 /* SettingViewController.swift in Sources */, C510005A2AB998F600F65C1F /* UIImage+Extension.swift in Sources */, + C5FBDA5E2B398270007AC77E /* ChallengeInfoYellowView.swift in Sources */, C5D8E8632A3DEC3900D88A43 /* String+Extension.swift in Sources */, C58EC7D62AB1B61500401FF7 /* AVIROEditCommonBeforeAfterDTO.swift in Sources */, C58EC7CE2AB1B57100401FF7 /* AVIROEditOperationTime+DTO.swift in Sources */, @@ -2094,6 +2117,7 @@ C528E4BC2A5F9AB6002BD72E /* ThridRegistrationPresenter.swift in Sources */, C51000612ABAE61F00F65C1F /* ReportReviewModel.swift in Sources */, C5C290792A85E51000ED5DCE /* PlaceMenuView.swift in Sources */, + C5FBDA5A2B398258007AC77E /* ChallengeInfoTopLabelView.swift in Sources */, C5A201B42A986EC300A54381 /* EditPlaceInfoViewController.swift in Sources */, C51AED1D2A8A192D0015FBC2 /* ChangedViewAction+HomeViewController.swift in Sources */, C51B09BC2A82397800916BBD /* Marker+Extension.swift in Sources */, diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/ChallengeInfoGreen.png b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/ChallengeInfoGreen.png new file mode 100644 index 0000000000000000000000000000000000000000..245a138e75253e5a9f171f46015ce75830bb922f GIT binary patch literal 859 zcmV-h1ElV&Zsi>7gUFU7OVH+DIc{5v>*$;$F<}k@8`{vD?S=K^8wP3@7BU%~pNh8n-Fg{%psG2StLyp zMl7s5v9RvM!nzX+>&_u4BH4FXlr;nBg~sn+Xzcui3X}-jLutGozYh+%)hBSjzk_U) zgtR?84lec(e~kTLUttQ}n@2A0>6;il11>a1e&q6=KKI8e>f2wy!9uOzp+}N^gQ#A3 zh_U_@qM)&}h4XJ6|GigOAx*+j$p+s?FAma@R&DD8UT&`V?Q6qnF^|*WKnZJUH)-8C zdI=c`(}a*H{1L_VSAM$)u!TuB7>}YzmT+8Y>5eqv5oR*^7w7tqK^83G@bVz@N3|2q z%$y~OU<(I@040{BqN^MvEc(6!6(%S<6C^7ulZFYGm`f6BYqoIsM>wO`Asgr9WUIaK zZ3SG|!sV~atuUjtSEe+L6|Cp=?G2PSmcfNpO9xD!u<_{BZODZF#Bffy`~H~}VJXYf z2B3|T^2X<7WV=x1zabW+-eg6e6Km3a^#C8XOSVVZmMXYZgFZq=Xq z*`K@j-47*4JVAn?u{cc(3*in-c} zNQ47OeEN6}55zJ?P}t9`J!hAT-4N;akmfd>j08}X7Nsl^-+53$X5h34@$u)}2^bcZ?Knz#vGt26J!|@KAy&cvdBW?3`ArC_mMjvf{!D{s6<~17rGQ0dD{R002ovPDHLkV1jP?hW`Kn literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/ChallengeInfoGreen@2x.png b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/ChallengeInfoGreen@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..6ac5ac1c01180e0b958edd7b0f67257eefaa9f7f GIT binary patch literal 1472 zcmb7^dpr{g6vszPHr#|-b@@bSl)644ujtNeHg}7~^2$4`$ZQ^KdEDmJOP*({@3hs@0hjPhC;ACx(NP6f(W4bv2YCM-sQQ);Z z&+p{+amtJ?sz32OA2?eA84xQQ4a)huVIjybbu{?n1ZAYhon0Wzo}Pz>N0g@qHz-d) z&5{Wi!l0Nbz^+;B(KoYDS+QomW<3Hc3aa5FMH!lcOSGvrHJ>jz?c?i zLTI&`+#H(?+V;ZL?VjlpjH<<3Z>N~FB4dWLi_BN4TgjIxA#A?NyIEgr18bJ1f;w2P zpM39;%UWLjvAeQ*zExdc7IXV+r&^DTchA5_o}pxMr;`Kjf4E=IX%?ek75+NMx;K6q zf3c)iTuR!HWtPe03x9i6?N>^l6J}}@suUW&lue_sA_)w_&NCurdmdA3Rpg@rk;mR` zc-m6~e?-PFFOc8hf!}Pv{or3-p9W(>FSx4~nwe9=vEgBm%iCeGz{<~U&Bkm~u4HOr z%Qq~*4L|9_pcN{MD%L#|#9;wf@Z4z9kCNrQ?bt zGbPJ5H|wHVHTqEh8~n5x1<#gy$+^ODcAJ3BtDy>?)Ng5TePonVg*bkA_BbRgVGc2- z4;i>pB3E3JC1J4KlC)a}W3OL;KF!-mG+>s;dg=U0@$Lh$a=MRFg%)SMb8F+B+TR7N zy|s^&fdZGKu)CXtnUFbCw3)t#$c5Xb>*CcOWVI{w?>y6%MnB@IUHo*m68b9V4bItj z{mJ{WAq(yC{N_+Att7fh-rqB@_z{sH-Mf#$NgWWTn!_%n*N5_>$uXe$n5=yhUnBcO=>& z}Xr;4K#fOMEQKxs`pynx% zQpdoFV&uEHL{DSS>BVCiC_mul>ve=^R0G?TKB_;F6F*ffi^kKYk0TOh@UA;q*%;hv z6JZmn_PDjfea+xGcx7I)J?CE6jAo@J=z}aeJ}F8ul~VQ458rXCVplWj87^3K+r8a- z)p+{c4K9NgAe4+Jl$I=X9dxG5Z^Uap%0~8cssu}{;Q-;?U@;hBSQ(1fJN)mI+u+9a z1Cn8h>-QA^r<+=D%Y1{(?7zYBKi_5`a9_AqRa1uGu`V#n@Uuzaj@JQMB>jfNsynA+ zSze~sn@n_S&X_%^0lMlVf9RpXl9Orr(CIN$uZPy*DsLmQIDGZRK2Ay_j+IDKJ8R)g z9IPZK$~EjM=(D*@cyMq=mFHA9#Eu6t(%@yi9>kZ5SKHH>{tt{z2a?&>T+TOB)1ckm UmhCf94C%uKAneh0OdCJSKLo_asQ>@~ literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/ChallengeInfoGreen@3x.png b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/ChallengeInfoGreen@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..b2f7db5ce920ab545c3f33f46244bf126aea955d GIT binary patch literal 2090 zcmcJQdpr{g8^`CAnM*Ep4%tFZC(^{3Yq_n77S2$}B{SDtLXIJG*__GfP*{bcu-;r! zn%rsQxJK-v5H(t46H6Jk%;nYldEfW1^Y8h5zQ5=8*YnTw{I0n=BlpOGPmEKoMHQ3E3NyVa9_owYNN;j!3-DL4eY55pYKfO@{w5F;Mq1)#86hz)0+*7f%>_u zRZhoVlb^@I51pD!Or3|6Sw6#Sdi_OG;6A5-5m;avv8QPrWF3)43Q)RB1G~b!j81|O zr{w-I2Gh8NAVa)=kYQ>Vta|$RC3#PRnf@WZzqr*?AeLZAqEo65`Z@}u-rm{8-7GyH z_uC0#QBcCx6;Y|w?x-1vxxEIqcw3hep?m#$bmH3^&xNfth~nn3-v&ES zb@f)ar#P!Md4ql+?C;4}x_hhw`ezKr zPNMXgf3h-&={B!96cY8{v9WhNeyztbE(rNghR z_}y5-g)yt#f5aI$PCVai{=TU&M@P<6RZw6hvfu1Gk?p;L2t`>o(O2>VCSH)5E%DZC zMd%e5xq7^84h#CsIXEk|jZ0BlZ_ZJf%#Dq?Mok&N!LUe$0@*U?_5=%|nJ?&FE7CGP$LI9C=;m^mwUoS$`Fliq*n2N%#iI~KjXqVEXp zk=0WSUxZ#PCQk;N=?bF+FvOM(ejC)DP4k%#Wz3Y z+q&8GJ)M>NaiTQIgGokTbA_Ej*mj0N>dH?LiLn^QTQrj>L}QuSC8$NDiNsMgOS`p;md-s2K@gwU2b)!rL)zqL#P(n%#R&Mr;cZ`+bN z|I(~~)j=ePrPuRwXiqO2E?y**LYL&WTRaMyE%Pl0>r``bI(F8uA4T#`Hga$>7g}Y5 zIse9?5E(#>7E*OHo8I(5i$jo$W7#rjIJzqDt(@8l%_@w*U1Rg6Bkr99&&>M>uG@Rs zwyY8uO^o*gSlV8X48{9XG_z5ElK1&tzC#Kh-9S~ z;yzT9>2szfbIn?fE(-j*UOgsTqkqfFhWJ@ZNs=j|^An4sLKT1AD+0L4C7BliO6oy|Gvim-^Wg|tY)<&4flws>n|2U%v+5{lBm=l^nN>W zFr!TSpQATD8eCRBk1$tYxf*&$WCM?!5nRn>$pgcxGRkB=^;v=0PT=!44X)2(8`Vjl zHi13*DBdQA)19!(Bk0!YhAw{OF6loaB*+$bu*>mV%n%1hnkZOqh=Gr?FJiZ(Z z;X}7lF1L;HkCJapx4EmEwVQ@J?5#LBPnB|Ea=Kq~vr4pjyiNt;j-jq+Zr{jQ+Aq6= q{EuVKu+2V44||0j10;Z21#m^D%aCx<+`^8v103v~?P_iPiT?&)FXXuZ literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/Contents.json b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/Contents.json new file mode 100644 index 00000000..ca98da3b --- /dev/null +++ b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoGreen.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "ChallengeInfoGreen.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "ChallengeInfoGreen@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "ChallengeInfoGreen@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/ChallengeInfoOrange.png b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/ChallengeInfoOrange.png new file mode 100644 index 0000000000000000000000000000000000000000..fe5a61471c6c851bdbf0b3e97799cf1b0e5350cd GIT binary patch literal 561 zcmV-10?z%3P)ey~2_t?bRQ!VsH{L#MP}%Rf<_5hK`1I@iAFwK!G;8fPJ%-x!J(7j z&`rRVnK^jXe})V8!Ly6NdffyU;8p(xxZDF?A7I0Nq~nNXe2ld^Y}p0#7{?L&cf5l2 zPe)ei(8*=VDPCEl@VGAc3+C9<9YnHqSICKh{-jE>*O81Z%)a5hWLS_s*ifZRwQyzZw zkXrn98vSm6zpzEB3av{B1+PyEJ!rH>Cl>eu$0}+0yV7wW00000NkvXXu0mjfelYkq literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/ChallengeInfoOrange@2x.png b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/ChallengeInfoOrange@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..9aaeedc71591660c3c9704a109ab94881d80912b GIT binary patch literal 1010 zcmeAS@N?(olHy`uVBq!ia0vp^6(G#P1|%(0%q{^b&H|6fVg?2=RS;(M3{v?36l5$8 za(7}_cTVOdki(Mh=tnqAGCW@5^r6XCokTiMeB^}WnwM?~v&=O~ zZ+qVT`+lmpb?IjQ*}j(zw#f=jE{e*pDSxr#TUYI^&k|Fgv_5jvoZojn)B2`u)b7va z3D#5ZB^WYw&XL^gf2lEQ?=!Q^uT87@A5IK;H)CPzCBFyr&fk!FbN|gR`om`D zYf+TFlYPVUnrxdKsJDOB)PVieJmR+d=G{At%P$5npI_Xw zMspU-OM2&;b+#X?S}M;wwfpm0mqNC4l^imfz8B#h{J1aV<-OuLQ~!iMxMge5Rk1Nq za%Lp|^TleBmqmQR0kX4Ve)Hy<%QZ{%o&R+Mt!e$muGup`Flpy4JH)kS$4qYZ4Uew5N;HaY&-(*Z zwCmIFpwyqa0smdPCf*lZv!itRQzw#Q5fZ{$@M0YD&V| zogCR=3OT3JD)!Bo!M@aFon*^|jgRwomx|=R+po3sHYZ1Wmt^_k>#-(Vf4_aQc4LV( zSLckm9*_G%*3Yyx_b(H_bXTuPPKdu;=IR#9j5aZ^t-H_4zklyEdx;KTlP(Pv3mOQ^73t)jX$j3s(JhFY{TdKdHB=UzF(DC zeX7Cy=(=kwv?92lC%barZy3p zp($OORo^$=oXUUr@9#Fnd4Kc1l^lQbQ#g3BXi3kH#p^#+|Ji?>|EyVbP@?sIqvyVk zJeK!9{F1wKI-kkp*@YuDc24#CzclxKPEE42pSUvWmt*}Ulb((P2PTwVU|%gM(R=XJ zg;ejzTaNzmrad>N^6R8#vj4qjdbq>TiFtDK0>xIm$n~?*&Cfr6pZ}wDNyI1Kcz4Cg zf{q2)bCt%eFpAQ#nKCR!-zA4ym2&-zUk>Rc>;VE8fHT zKxmCockwfcqCMh{7y9eC{%8H)5Y)Lp|NHenbHk2KvCddnzxBk_az5WPlTJyR7@pRO zzi>onZH%Mv<~^TSe9tTm=v&aa)8tFD+OwdGe6wbFyPIbu>8YLt3U2w*1Qfi?1r+pG z&q!)p2~>V#dfkO1J<6BtQRvtHqn0Jd8CdWApL8=Xb#|o*OUd0sZtBI|bK_?C+&5H6t=%s6 z{!{AiyI$RaQk<`&wq5U&ZeGB?_)B!%$p)35s@H#Pl-?dE7g4zVTJ%HhV1AWj_X~S} zzioDZcjNNu;

VFJqj1?)I$ci1qS!OW#~5|Hs>NWkyM2irx_!Ufb!1P3tn+#Lvtw z6cH3w(~GN!=DFPSY{T-qE7!;V+>#ZxvVE-u>q;pDJ;NtE_Wbc%`t+H#`nnUA*2?>9 z7N_0Zzd12re_k!HtXj@f5u9|O`E$>&=x3Y#I4XZ{nZW;t-C(l*WKJ8Vt-$h>!PC{x JWt~$(69CM|ZhQa$ literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/Contents.json b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/Contents.json new file mode 100644 index 00000000..e82b2611 --- /dev/null +++ b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoOrange.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "ChallengeInfoOrange.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "ChallengeInfoOrange@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "ChallengeInfoOrange@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoYellow.imageset/ChallengeInfoYellow.png b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoYellow.imageset/ChallengeInfoYellow.png new file mode 100644 index 0000000000000000000000000000000000000000..9ddb98c21fc4338f3e8006e0b2754c9f87171c04 GIT binary patch literal 717 zcmV;;0y6!HP)C49%Brzg(bSZ!1;lzd!`Yq~13&#}5$+RHB-Z_%0(Bq&^wM#dvIj zkpzcM5*#{7aOfn#p)&-JQ0Y9Nj{|t`GhE@eFf*Hp}E@~__5i2ZFjxr zy)=ATa(V);DKv-GDXC-n8~kxm4i&r5WJR1>1+Gas>=PQB=?&?f_nl1vjot0BqI7Nw zJ}6XhyTG-{Hl71p`+~2|iU;>(Ne})8L`KTtLeXW-!_xCVj#Y5JXV$04??hxI!A|&x zn{vXzb$kH42v$%1r#E);xu2Fr@Hg1tt!QN*p2)_c44iee$K4iJwzCRbyjE%cQpZUn z8IM6BIifLBk6=R)hX{6pwHoVgN8OT~M|BPZ2IUZk2)0;*VR;7*fIb_KtmiaJbB|kI!YSxA3|;t?dd~ z8FY6cw=9=Zwefc5klYz}r|P}c_V~lq&}uryf`p(tY{o zH&`P5WLQ+JzT4QyYu?!SzTwN+z2EOVe*Ag^@9xq^58OVw-aTAbd_b`Is>0I8GSkk) zXp8I)vAs6ucG>KQ;#TJWtr(xDAHLi?A*W@6F0<6(g?}ID-;GxHZ{H!laK}x~!t95M zW+rpwYX07plexd)P@2Nc;(K#f%Gmy|e_#1$`DTkye*Vn@a$$cW=gx?K!TL^b-k$Z1 zB6F{H-T$%jQ`!5q&NpgqZr$jfIN@oZvxcR%TJ4^5tpQxuPwuapTfOqCP0K8%$-xOl zTt0q{Cp8T$S=E*wcp@@m4gtZ?iH6@pc{}V=H~y1|$UeABKTs@^t?a(vq5lEwT8}l9 zv*X=9eqah{x^Po=(cSOCAMEF8<=#0V`-}PC^Oqm$@AO~U#3jRj(vIa^qxAaL3;UI~ z?qNz7DxcinDE$6tC9B;B?oC3EcCF`EUb^SpK~=l=eIZxnbgDfNF5EP)`=3hUy&cuR z@9XM+PdjC_``*3IZ*XtyT+*zw{k_13yD@LOtv7r%dvbZHtgF1mo&P!I9vh4JDi$5s z?bx1CwB`E2ZB??{wi#752cFKHci*v5t!&ceQltC_>E?<4>mE7Z?0#y%7ICj~aSzjL z0bf`Mxm%y;;(naF{9wQjla)KHH$Q#4aairm%g`m$?)pqy zyY<4}+b{I(`pYM4U%ry`gSn^s?OR9Vp9?F4=LJtKv?;mmMxSZ?TO(mzAdFo_YRYVcM!%$xY>x_%}WJvuSUZ z<2ScofhBjk-<$rDS2?k+c<#}aMm^!bADRDtbf?I3-`(r8{m*?ge!=*3mrvK^uc|Yb zq%Z8`BQ>po-S}KKhTG|+rA{UDG=(W$OxpVzcC#%M`SyU-{#pF_*5|7QwD>YY`%Rzk zvEH?TOZ#7A0O#_1ZZ&Uu7p)fl%$;^Ll7m%yjo|ltKko4E+gSMcz2x(|CMwZ|?y|FI z{LlYfZobDcy>OMB-rQxpVa-pLl&|V_e|%8XtTbM}4&^@0xd3Sf#!?wAo!u>b^(o z+bI5LO^VO&%{P|ce@d--Qd#cK@JUlv+VJnnblThYFlYctB91|EMIc2Th8 zN!EPnOPjB_YVW$lKG*HJ(H;gHo^qSM3s;lYzcO%=Un}`3z?No4D2|h zf-unyep{u)*YjH6-mi{(|A>*VJn5K$M3daa4O{ab-aNlIf5N>ChYQTfrx-O^c+pX7 zT)W*Fcm6H%=cG?H3&KplaoUjOr`zJSUk|?fyy)Yp*PD-bn{kvss(JanUf_$slGx%} zbE&<3-{PD9pLrboY|Wh+MGjn!&M4?~ne&8u7qXb^e%0>dlb!yo>ff2p^0R$cavt1Y z{Dh;5!DZP&iY9hi50^Tiii1-^7V zk)FkK_}CO?Ea3tQsa@y)-_~3DoL76(C3e|=GM|n=5WBP5ZhO@oL#O5E%hX=QRD4_U z;d}&(Y^!=XZ(8KzY;CJ1v(xqmHEbfc8l9Hkf8aG|)4hpD?K2`5`}JE3SH8)Se>>rS z;P!Vj*TAF z`nr6zsIh_;NfdLvxOQbWv@I(?D8;5xuW$9kr>WQ&U)#Pw}IS6i+-FQ)LB6kE^qFIDe<`7QpvqwYJ8^z^K? zVc7?(>n$TzNE%q3ozOb_bP0l+XkKl5W2~ literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoYellow.imageset/Contents.json b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoYellow.imageset/Contents.json new file mode 100644 index 00000000..4bf99d50 --- /dev/null +++ b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/ChallengeInfoYellow.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "filename" : "ChallengeInfoYellow.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "filename" : "ChallengeInfoYellow@2x.png", + "idiom" : "universal", + "scale" : "2x" + }, + { + "filename" : "ChallengeInfoYellow@3x.png", + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/AVIRO/App/Assets.xcassets/ImageSet/Challenge/Contents.json b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/Contents.json new file mode 100644 index 00000000..73c00596 --- /dev/null +++ b/AVIRO/App/Assets.xcassets/ImageSet/Challenge/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/AVIRO/Custom/Constants/UIImage+Extension.swift b/AVIRO/Custom/Constants/UIImage+Extension.swift index cf379928..7f0b4fb8 100644 --- a/AVIRO/Custom/Constants/UIImage+Extension.swift +++ b/AVIRO/Custom/Constants/UIImage+Extension.swift @@ -133,4 +133,9 @@ extension UIImage { static let mainSearchStation = UIImage(named: "MainSearchStation")! static let infoCircle = UIImage(named: "InfoCircle")! + + // MARK: Challenge + static let challengeInfoGreen = UIImage(named: "ChallengeInfoGreen")! + static let challengeInfoYellow = UIImage(named: "ChallengeInfoYellow")! + static let challengeInfoOrange = UIImage(named: "ChallengeInfoOrange")! } diff --git a/AVIRO/Custom/Extension/UILabel+Extension.swift b/AVIRO/Custom/Extension/UILabel+Extension.swift index 3344bfb3..498869af 100644 --- a/AVIRO/Custom/Extension/UILabel+Extension.swift +++ b/AVIRO/Custom/Extension/UILabel+Extension.swift @@ -28,4 +28,26 @@ extension UILabel { return numberOfLine } + + func setLineSpacing(_ spacing: CGFloat) { + let paragraphStyle = NSMutableParagraphStyle() + paragraphStyle.lineSpacing = spacing + + let attributedString: NSMutableAttributedString + if let labelAttributedText = self.attributedText { + attributedString = NSMutableAttributedString(attributedString: labelAttributedText) + } else { + attributedString = NSMutableAttributedString(string: self.text ?? "") + } + + // .paragraphStyle 속성을 전체 텍스트에 적용합니다. + attributedString.addAttribute( + NSAttributedString.Key.paragraphStyle, + value: paragraphStyle, + range: NSRange(location: 0, length: attributedString.length) + ) + + self.attributedText = attributedString + } + } diff --git a/AVIRO/Custom/Extension/UIView+Extension.swift b/AVIRO/Custom/Extension/UIView+Extension.swift index d3bbc0f5..8fe8cd79 100644 --- a/AVIRO/Custom/Extension/UIView+Extension.swift +++ b/AVIRO/Custom/Extension/UIView+Extension.swift @@ -60,4 +60,21 @@ extension UIView { snapshot.removeFromSuperview() }) } + + func roundTopCorners(cornerRadius: CGFloat) { + self.layoutIfNeeded() + self.layer.masksToBounds = true + + let path = UIBezierPath( + roundedRect: self.bounds, + byRoundingCorners: [.topRight, .topLeft], + cornerRadii: CGSize(width: cornerRadius, height: cornerRadius) + ) + + let maskLayer = CAShapeLayer() + maskLayer.frame = self.bounds + maskLayer.path = path.cgPath + + self.layer.mask = maskLayer + } } diff --git a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentaionDelegate.swift b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentaionDelegate.swift similarity index 100% rename from AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentaionDelegate.swift rename to AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentaionDelegate.swift diff --git a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift similarity index 93% rename from AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift rename to AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift index 87e12a21..7b701467 100644 --- a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift +++ b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift @@ -48,10 +48,12 @@ class ChallengeInfoPresentationAnimator: NSObject, UIViewControllerAnimatedTrans UIView.animate( withDuration: transitionDuration(using: transitionContext), animations: { - blurEffectView.alpha = 0.4 toViewController.view.frame = finalFrame }, - completion: { finished in transitionContext.completeTransition(finished) } + completion: { finished in + blurEffectView.alpha = 0.4 + transitionContext.completeTransition(finished) + } ) } } diff --git a/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/ChallengeInfoViewController.swift b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/ChallengeInfoViewController.swift new file mode 100644 index 00000000..da70c042 --- /dev/null +++ b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/ChallengeInfoViewController.swift @@ -0,0 +1,200 @@ +// +// ChallengeInfoViewController.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/24. +// + +import UIKit + +import RxSwift +import RxCocoa + +final class ChallengeInfoViewController: UIViewController { + private let disposeBag = DisposeBag() + private var challengeLabel: String! + + private lazy var titleLabelView: ChallengeInfoTopLabelView = { + let view = ChallengeInfoTopLabelView() + + view.changeTtitleLabel(with: challengeLabel) + + return view + }() + + private lazy var greenView: ChallengeInfoGreenView = { + let view = ChallengeInfoGreenView() + + return view + }() + + private lazy var yellowView: ChallengeInfoYellowView = { + let view = ChallengeInfoYellowView() + + return view + }() + + private lazy var orangeView: ChallengeInfoOrangeView = { + let view = ChallengeInfoOrangeView() + + return view + }() + + private lazy var helpfulLabel: UILabel = { + let label = UILabel() + + label.text = "어비로에 새로운 정보를 등록하면, 더 많은 사람들이 비건을 선택하는 데 도움이 돼요." + label.setLineSpacing(4) + label.textColor = .gray2 + label.numberOfLines = 2 + label.font = .pretendard(size: 14, weight: .regular) + + return label + }() + + private lazy var baseLabel: UILabel = { + let label = UILabel() + + label.text = "비건 채식은 육류가 포함된 식단보다 탄소 배출을 75%나 적게 하고, 생물 다양성 파괴를 66%까지 줄여요" + label.setLineSpacing(4) + label.textColor = .gray2 + label.numberOfLines = 2 + label.font = .pretendard(size: 14, weight: .regular) + + return label + }() + + private lazy var dismissButton: UIButton = { + let btn = UIButton() + + btn.setTitle("이해했어요", for: .normal) + btn.setTitleColor(.gray7, for: .normal) + btn.titleLabel?.font = .pretendard(size: 16, weight: .semibold) + btn.backgroundColor = .main + btn.layer.cornerRadius = 28 + + return btn + }() + + static func create(with challenge: String) -> ChallengeInfoViewController { + let vc = ChallengeInfoViewController() + + vc.challengeLabel = challenge + + return vc + } + + override func viewDidLoad() { + super.viewDidLoad() + + setupLayout() + setupAttribute() + } + + private func setupLayout() { + [ + titleLabelView, + greenView, + yellowView, + orangeView, + helpfulLabel, + baseLabel, + dismissButton + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.view.addSubview($0) + } + + NSLayoutConstraint.activate([ + titleLabelView.topAnchor.constraint(equalTo: self.view.topAnchor), + titleLabelView.leadingAnchor.constraint(equalTo: self.view.leadingAnchor), + titleLabelView.trailingAnchor.constraint(equalTo: self.view.trailingAnchor), + titleLabelView.heightAnchor.constraint(equalToConstant: 65), + + greenView.topAnchor.constraint(equalTo: titleLabelView.bottomAnchor, constant: 30), + greenView.heightAnchor.constraint(equalToConstant: 80), + greenView.leadingAnchor.constraint(equalTo: self.view.leadingAnchor, constant: 30), + greenView.trailingAnchor.constraint(equalTo: self.view.trailingAnchor, constant: -30), + + yellowView.topAnchor.constraint(equalTo: greenView.bottomAnchor, constant: 15), + yellowView.heightAnchor.constraint(equalToConstant: 80), + yellowView.leadingAnchor.constraint(equalTo: self.view.leadingAnchor, constant: 30), + yellowView.trailingAnchor.constraint(equalTo: self.view.trailingAnchor, constant: -30), + + orangeView.topAnchor.constraint(equalTo: yellowView.bottomAnchor, constant: 15), + orangeView.heightAnchor.constraint(equalToConstant: 80), + orangeView.leadingAnchor.constraint(equalTo: self.view.leadingAnchor, constant: 30), + orangeView.trailingAnchor.constraint(equalTo: self.view.trailingAnchor, constant: -30), + + helpfulLabel.topAnchor.constraint(equalTo: orangeView.bottomAnchor, constant: 8), + helpfulLabel.leadingAnchor.constraint(equalTo: self.view.leadingAnchor, constant: 30), + helpfulLabel.trailingAnchor.constraint(equalTo: self.view.trailingAnchor, constant: -30), + + baseLabel.topAnchor.constraint(equalTo: helpfulLabel.bottomAnchor, constant: 8), + baseLabel.leadingAnchor.constraint(equalTo: self.view.leadingAnchor, constant: 31), + baseLabel.trailingAnchor.constraint(equalTo: self.view.trailingAnchor, constant: -31), + + dismissButton.topAnchor.constraint(equalTo: baseLabel.bottomAnchor, constant: 31), + dismissButton.leadingAnchor.constraint(equalTo: self.view.leadingAnchor, constant: 31), + dismissButton.trailingAnchor.constraint(equalTo: self.view.trailingAnchor, constant: -30), + dismissButton.heightAnchor.constraint(equalToConstant: 55) + ]) + } + + private func setupAttribute() { + view.backgroundColor = .gray6 + self.view.roundTopCorners(cornerRadius: 20) + + let panGesture = UIPanGestureRecognizer() + self.view.addGestureRecognizer(panGesture) + + panGesture.rx.event + .asDriver() + .drive(onNext: { [weak self] gesture in + self?.handlePanGesture(with: gesture) + }) + .disposed(by: disposeBag) + + dismissButton.rx.controlEvent(.touchUpInside) + .asDriver() + .drive(onNext: { [weak self] _ in + self?.dismiss(animated: true) + }) + .disposed(by: disposeBag) + } + + private func handlePanGesture(with gesture: UIPanGestureRecognizer) { + let maxUpwardSwipeHeight: CGFloat = 20.0 + + let translation = gesture.translation(in: view) + let velocity = gesture.velocity(in: view) + + switch gesture.state { + case .changed: + if translation.y < 0 { + UIView.animate(withDuration: 0.2) { + self.view.transform = CGAffineTransform( + translationX: 0, + y: -maxUpwardSwipeHeight + ) + } + } else { + view.transform = CGAffineTransform( + translationX: 0, + y: translation.y + ) + } + + case .ended, .cancelled: + if translation.y > 0 && velocity.y > 800 { + dismiss(animated: true) + } else { + UIView.animate(withDuration: 0.2) { + self.view.transform = .identity + } + } + default: + break + } + } +} diff --git a/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoGreenView.swift b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoGreenView.swift new file mode 100644 index 00000000..13e7cb28 --- /dev/null +++ b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoGreenView.swift @@ -0,0 +1,86 @@ +// +// ChallengeInfoGreenView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/25. +// + +import UIKit + +final class ChallengeInfoGreenView: UIView { + private lazy var explainImage: UIImageView = { + let imageView = UIImageView() + + imageView.image = .challengeInfoGreen + + return imageView + }() + + private lazy var explainLabel: UILabel = { + let label = UILabel() + + label.text = "경험치를 모아 레벨업을 해보세요\n무럭무럭 자라는 나무를 볼 수 있어요!" + label.setLineSpacing(4) + label.numberOfLines = 2 + label.textColor = .gray0 + label.font = .pretendard(size: 15, weight: .semibold) + label.textAlignment = .left + + return label + }() + + private lazy var subLabel: UILabel = { + let label = UILabel() + + label.text = "* 시즌 하정 보상은 시즌 내에만 볼 수 있어요" + label.numberOfLines = 1 + label.textColor = .gray2 + label.font = .pretendard(size: 12, weight: .regular) + label.textAlignment = .left + + return label + }() + + override init(frame: CGRect) { + super.init(frame: frame) + + setupLayout() + setupAttribute() + } + + required init?(coder: NSCoder) { + fatalError() + } + + private func setupLayout() { + [ + explainImage, + explainLabel, + subLabel + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.addSubview($0) + } + + NSLayoutConstraint.activate([ + explainImage.topAnchor.constraint(equalTo: self.topAnchor, constant: 10), + explainImage.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 10), + explainImage.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: -10), + explainImage.widthAnchor.constraint(equalToConstant: 60), + explainImage.heightAnchor.constraint(equalToConstant: 60), + + explainLabel.topAnchor.constraint(equalTo: self.topAnchor, constant: 11), + explainLabel.leadingAnchor.constraint(equalTo: explainImage.trailingAnchor, constant: 10), + explainLabel.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -10), + + subLabel.topAnchor.constraint(equalTo: explainLabel.bottomAnchor, constant: 4), + subLabel.leadingAnchor.constraint(equalTo: explainLabel.leadingAnchor), + subLabel.trailingAnchor.constraint(equalTo: explainLabel.trailingAnchor) + ]) + } + + private func setupAttribute() { + self.backgroundColor = .gray7 + self.layer.cornerRadius = 8 + } +} diff --git a/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoOrangeView.swift b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoOrangeView.swift new file mode 100644 index 00000000..f72306a6 --- /dev/null +++ b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoOrangeView.swift @@ -0,0 +1,69 @@ +// +// ChallengeInfoOrangeView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/25. +// + +import UIKit + +final class ChallengeInfoOrangeView: UIView { + private lazy var explainImage: UIImageView = { + let imageView = UIImageView() + + imageView.image = .challengeInfoOrange + + return imageView + }() + + private lazy var explainLabel: UILabel = { + let label = UILabel() + + label.text = "가게의 리뷰를 남기고 레벨업에\n한발짝 더 가까이 가보세요!" + label.setLineSpacing(4) + label.numberOfLines = 2 + label.textColor = .gray0 + label.font = .pretendard(size: 15, weight: .semibold) + label.textAlignment = .left + + return label + }() + + override init(frame: CGRect) { + super.init(frame: frame) + + setupLayout() + setupAttribute() + } + + required init?(coder: NSCoder) { + fatalError() + } + + private func setupLayout() { + [ + explainImage, + explainLabel + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.addSubview($0) + } + + NSLayoutConstraint.activate([ + explainImage.topAnchor.constraint(equalTo: self.topAnchor, constant: 10), + explainImage.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 10), + explainImage.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: -10), + explainImage.widthAnchor.constraint(equalToConstant: 60), + explainImage.heightAnchor.constraint(equalToConstant: 60), + + explainLabel.centerYAnchor.constraint(equalTo: self.centerYAnchor), + explainLabel.leadingAnchor.constraint(equalTo: explainImage.trailingAnchor, constant: 10), + explainLabel.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -10) + ]) + } + + private func setupAttribute() { + self.backgroundColor = .gray7 + self.layer.cornerRadius = 8 + } +} diff --git a/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoTopLabelView.swift b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoTopLabelView.swift new file mode 100644 index 00000000..8bcfee96 --- /dev/null +++ b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoTopLabelView.swift @@ -0,0 +1,53 @@ +// +// ChallengeInfoTopLabelView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/25. +// + +import UIKit + +final class ChallengeInfoTopLabelView: UIView { + private lazy var titleLabel: UILabel = { + let label = UILabel() + + label.textColor = .gray0 + label.font = .pretendard(size: 20, weight: .semibold) + label.textAlignment = .center + + return label + }() + + override init(frame: CGRect) { + super.init(frame: frame) + + setupLayout() + setupAttribute() + } + + required init?(coder: NSCoder) { + fatalError() + } + + private func setupLayout() { + [ + titleLabel + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.addSubview($0) + } + + NSLayoutConstraint.activate([ + titleLabel.centerXAnchor.constraint(equalTo: self.centerXAnchor), + titleLabel.centerYAnchor.constraint(equalTo: self.centerYAnchor) + ]) + } + + private func setupAttribute() { + self.backgroundColor = .gray7 + } + + func changeTtitleLabel(with title: String) { + titleLabel.text = "\(title) 챌린지" + } +} diff --git a/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoYellowView.swift b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoYellowView.swift new file mode 100644 index 00000000..5bbc2afa --- /dev/null +++ b/AVIRO/Scene/TabBar/Challenge/ChallengeInfoView/SubView/ChallengeInfoYellowView.swift @@ -0,0 +1,69 @@ +// +// ChallengeInfoYellowView.swift +// AVIRO +// +// Created by 전성훈 on 2023/12/25. +// + +import UIKit + +final class ChallengeInfoYellowView: UIView { + private lazy var explainImage: UIImageView = { + let imageView = UIImageView() + + imageView.image = .challengeInfoYellow + + return imageView + }() + + private lazy var explainLabel: UILabel = { + let label = UILabel() + + label.text = "나만 알고 있는 가게를 등록하고\n경험치를 받아보세요!" + label.setLineSpacing(4) + label.numberOfLines = 2 + label.textColor = .gray0 + label.font = .pretendard(size: 15, weight: .semibold) + label.textAlignment = .left + + return label + }() + + override init(frame: CGRect) { + super.init(frame: frame) + + setupLayout() + setupAttribute() + } + + required init?(coder: NSCoder) { + fatalError() + } + + private func setupLayout() { + [ + explainImage, + explainLabel + ].forEach { + $0.translatesAutoresizingMaskIntoConstraints = false + self.addSubview($0) + } + + NSLayoutConstraint.activate([ + explainImage.topAnchor.constraint(equalTo: self.topAnchor, constant: 10), + explainImage.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 10), + explainImage.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: -10), + explainImage.widthAnchor.constraint(equalToConstant: 60), + explainImage.heightAnchor.constraint(equalToConstant: 60), + + explainLabel.centerYAnchor.constraint(equalTo: self.centerYAnchor), + explainLabel.leadingAnchor.constraint(equalTo: explainImage.trailingAnchor, constant: 10), + explainLabel.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: -10) + ]) + } + + private func setupAttribute() { + self.backgroundColor = .gray7 + self.layer.cornerRadius = 8 + } +} diff --git a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/ChallengeInfoViewController.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/ChallengeInfoViewController.swift deleted file mode 100644 index 20c40410..00000000 --- a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeInfoView/ChallengeInfoViewController.swift +++ /dev/null @@ -1,79 +0,0 @@ -// -// ChallengeInfoViewController.swift -// AVIRO -// -// Created by 전성훈 on 2023/12/24. -// - -import UIKit - -import RxSwift -import RxCocoa - -final class ChallengeInfoViewController: UIViewController { - private let disposeBag = DisposeBag() - - private lazy var titleLabelView: UIView = { - let view = UIView() - - return view - }() - - override func viewDidLoad() { - super.viewDidLoad() - - setupLayout() - setupAttribute() - } - - private func setupLayout() { - - } - - private func setupAttribute() { - view.backgroundColor = .gray5 - - let panGesture = UIPanGestureRecognizer() - self.view.addGestureRecognizer(panGesture) - - panGesture.rx.event - .asDriver() - .drive(onNext: { [weak self] gesture in - self?.handlePanGesture(with: gesture) - }) - .disposed(by: disposeBag) - } - - private func handlePanGesture(with gesture: UIPanGestureRecognizer) { - let maxUpwardSwipeHeight: CGFloat = 20.0 - - let translation = gesture.translation(in: view) - let velocity = gesture.velocity(in: view) - - switch gesture.state { - case .changed: - if translation.y < 0 { - view.transform = CGAffineTransform( - translationX: 0, - y: -maxUpwardSwipeHeight - ) - } else { - view.transform = CGAffineTransform( - translationX: 0, - y: translation.y - ) - } - - case .ended, .cancelled: - if translation.y > 0 && velocity.y > 800 { - dismiss(animated: true) - } else { - UIView.animate(withDuration: 0.2) { - self.view.transform = .identity - } - } - default: - break - } - } -} diff --git a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift index 938df145..04dfc267 100644 --- a/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift +++ b/AVIRO/Scene/TabBar/Challenge/ViewController/ChallengeViewController.swift @@ -33,9 +33,7 @@ final class ChallengeViewController: UIViewController { return view }() - -// private lazy var challengeInfoView: - + static func create(with viewModel: ChallengeViewModel) -> ChallengeViewController { let vc = ChallengeViewController() vc.viewModel = viewModel @@ -140,7 +138,7 @@ final class ChallengeViewController: UIViewController { private func dataBinding() { // TODO: ViewModel 생성 후 변경 예정 challengeTitleView.updateDate(with: "1월 1일 ~ 1월 31일") - challengeTitleView.updateTitle(with: "1월 '비거뉴어리'") + challengeTitleView.updateTitle(with: "2024 비거뉴어리") myInfoView.updateMyPlace("2") myInfoView.updateMyReview("3") @@ -165,7 +163,7 @@ final class ChallengeViewController: UIViewController { } func pushChallengeInfoViewController() { - let vc = ChallengeInfoViewController() + let vc = ChallengeInfoViewController.create(with: "2024 비거뉴어리") let presentationDelegate = ChallengeInfoPresentaionDelegate() From cd7e58165b285054cf9c52a88f8050942d1e45e1 Mon Sep 17 00:00:00 2001 From: Jeon Seoung Hun Date: Tue, 26 Dec 2023 16:49:16 +0900 Subject: [PATCH 10/18] [Feat]: Navigation Controller custom --- AVIRO.xcodeproj/project.pbxproj | 70 ++++- AVIRO/App/AppController.swift | 27 +- .../user2.imageset/Contents.json | 0 .../user2.imageset/user2.png | Bin .../user2.imageset/user2@2x.png | Bin .../user2.imageset/user2@3x.png | Bin .../Contents.json | 6 +- .../HomeTab.imageset/bxs-home-alt-2.svg.png | Bin 0 -> 455 bytes .../bxs-home-alt-2.svg@2x.png | Bin 0 -> 629 bytes .../bxs-home-alt-2.svg@3x.png | Bin 0 -> 846 bytes .../Contents.json | 6 +- .../PlusTab.imageset/bxs-plus-square.svg.png | Bin 0 -> 412 bytes .../bxs-plus-square.svg@2x.png | Bin 0 -> 542 bytes .../bxs-plus-square.svg@3x.png | Bin 0 -> 715 bytes .../Contents.json | 0 .../Trophy.png | Bin .../Trophy@2x.png | Bin .../Trophy@3x.png | Bin .../TabBarIcon/home1.imageset/home1.png | Bin 385 -> 0 bytes .../TabBarIcon/home1.imageset/home1@2x.png | Bin 528 -> 0 bytes .../TabBarIcon/home1.imageset/home1@3x.png | Bin 795 -> 0 bytes .../TabBarIcon/home2.imageset/home2.png | Bin 395 -> 0 bytes .../TabBarIcon/home2.imageset/home2@2x.png | Bin 549 -> 0 bytes .../TabBarIcon/home2.imageset/home2@3x.png | Bin 780 -> 0 bytes .../TabBarIcon/square1.imageset/Contents.json | 23 -- .../TabBarIcon/square1.imageset/square1.png | Bin 315 -> 0 bytes .../square1.imageset/square1@2x.png | Bin 370 -> 0 bytes .../square1.imageset/square1@3x.png | Bin 560 -> 0 bytes .../TabBarIcon/square2.imageset/Contents.json | 23 -- .../TabBarIcon/square2.imageset/square2.png | Bin 317 -> 0 bytes .../square2.imageset/square2@2x.png | Bin 371 -> 0 bytes .../square2.imageset/square2@3x.png | Bin 547 -> 0 bytes .../TabBarIcon/user1.imageset/Contents.json | 23 -- .../user1.imageset/Property 1=bx-user.svg.png | Bin 531 -> 0 bytes .../Property 1=bx-user.svg@2x.png | Bin 893 -> 0 bytes .../Property 1=bx-user.svg@3x.png | Bin 1262 -> 0 bytes AVIRO/Custom/Constants/Enum+.swift | 54 ---- .../Custom/Constants/UIImage+Extension.swift | 15 +- .../UIViewController+Extension.swift | 20 +- AVIRO/Scene/Base/AVIROTabBarController.swift | 262 ++++++++++++++++++ AVIRO/Scene/Base/AVIROViewController.swift | 12 + .../ChallengeInfoPresentaionDelegate.swift | 0 .../ChallengeInfoPresentationAnimator.swift | 0 .../ChallengeInfoViewController.swift | 0 .../SubView/ChallengeInfoGreenView.swift | 0 .../SubView/ChallengeInfoOrangeView.swift | 0 .../SubView/ChallengeInfoTopLabelView.swift | 0 .../SubView/ChallengeInfoYellowView.swift | 0 .../LicenseDetailViewController.swift | 0 .../LicenseView/LicensesViewController.swift | 0 .../NickNameChangebleViewController.swift | 0 .../NickNameChangeblePresenter.swift | 0 .../ViewController/Cells/SettingCell.swift | 0 .../SettingViewController.swift | 0 .../ViewPresenter/SettingViewPresenter.swift | 0 .../ChallengeTitleView.swift | 0 .../ChallengeLevelView.swift | 0 .../ChallengeUserInfoView.swift | 0 .../ChallengeViewController.swift | 4 +- .../MyInfoView/MyInfoView.swift | 0 .../ViewModel/ChallengeViewModel.swift | 0 .../ViewController/PlaceListCell.swift | 0 .../SearchPlaceViewController.swift | 0 .../ViewPresenter/SearchPlacePresenter.swift | 0 .../EnrollPlaceViewController.swift | 21 +- .../SubView/EnrollMenuTableView.swift | 0 .../SubView/EnrollStoreInfoView.swift | 0 .../SubView/EnrollVeganDetailView.swift | 0 .../MenuTableView/NormalTableViewCell.swift | 0 .../MenuTableView/RequestTableViewCell.swift | 0 .../ViewPresenter/EnrollPlacePresenter.swift | 2 - .../EditMenuViewController.swift | 37 ++- .../SubView/EditMenuBottomView.swift | 0 .../SubView/EditMenuTopView.swift | 0 .../ViewPresenter/EditMenuPresenter.swift | 0 .../ChangeableAddressViewController.swift | 0 .../EditLocationAddressMapView.swift | 0 ...EditLocationAddressTextTableViewCell.swift | 0 .../EditLocationAddressTextView.swift | 0 .../ChangeableAddressPresenter.swift | 0 .../EditHomePageView.swift | 0 .../EditLocationBottomView.swift | 0 .../EditLocationTopView.swift | 0 .../EditOperatingHoursView.swift | 0 .../EditPlaceInfoSubView/EditPhoneView.swift | 0 .../EditOperatingHourView.swift | 0 .../EditOperationHourChangebleView.swift | 0 .../EditTimeChangebleView.swift | 0 .../EditPlaceInfoViewController.swift | 39 ++- .../EditPlaceInfoPresenter.swift | 0 .../HomeSearchViewController.swift | 37 ++- .../HeaderView/HistoryHeaderView.swift | 0 .../HeaderView/PlaceListHeaderView.swift | 0 .../SubView/HistoryTableViewCell.swift | 0 .../SubView/HomeSearchViewTableViewCell.swift | 0 .../SubView/NoHistoryLabelView.swift | 0 .../SubView/NoHistoryView.swift | 0 .../ViewPresenter/HomeSearchPresenter.swift | 0 .../ViewController/ReportCellView.swift | 0 .../ReportReviewViewController.swift | 0 .../ViewPresenter/ReportReviewPresenter.swift | 0 .../ReviewPlaceInfoView.swift | 0 .../ReviewWriteViewController.swift | 31 ++- .../ViewModel/ReviewWriteViewModel.swift | 0 ...ChangedViewAction+HomeViewController.swift | 0 .../ViewController/HomeViewController.swift | 64 +++-- .../PlaceDetailView/PlaceView.swift | 0 .../PlaceOperationHoursViewController.swift | 0 .../OperationHourView.swift | 0 .../OperationHoursView.swift | 0 .../SubView/PlaceSegmentedControlView.swift | 0 .../SubView/PlaceSummaryView.swift | 0 .../PlaceHomeView.swift | 0 .../SubView/PlaceInfoView.swift | 0 .../SubView/PlaceMenuView.swift | 0 .../SubView/PlaceReviewWriteView.swift | 0 .../SubView/PlaceReviewsView.swift | 0 .../SubView/SubView/PushCommentView.swift | 0 .../SubView/SubView/ReviewPushView.swift | 0 .../TableView/PlaceMenuTableViewCell.swift | 0 .../TableView/PlaceReviewTableViewCell.swift | 0 .../ViewPresenter/HomeViewPresenter.swift | 13 +- .../FinalRegistrationViewController.swift | 21 +- .../FirstRegistrationViewController.swift | 0 .../SecondRegistrationViewController.swift | 0 .../ViewController/TermsTableCell.swift | 0 .../ThridRegistrationViewController.swift | 0 .../FirstRegistrationPresenter.swift | 0 .../SecondRegistrationPresenter.swift | 0 .../ThridRegistrationPresenter.swift | 0 .../ViewController/LoginViewController.swift | 17 +- .../ViewPresenter/LoginViewPresenter.swift | 0 .../Feature/TabBar/TabBarViewController.swift | 131 +++++++++ .../Tutorial/TutorialCell/BottomCell.swift | 0 .../Tutorial/TutorialCell/TopCell.swift | 0 .../Tutorial/TutorialViewController.swift | 0 AVIRO/Scene/TabBar/TabBarViewController.swift | 77 ----- .../{Base => Utils/Common}/ViewModel.swift | 0 .../Scene/Utils/Components/TabBarButton.swift | 55 ++++ .../Utils/Extensions/CGFloat+Extension.swift | 12 + 140 files changed, 798 insertions(+), 304 deletions(-) rename AVIRO/App/Assets.xcassets/ImageSet/{TabBarIcon => Assets}/user2.imageset/Contents.json (100%) rename AVIRO/App/Assets.xcassets/ImageSet/{TabBarIcon => Assets}/user2.imageset/user2.png (100%) rename AVIRO/App/Assets.xcassets/ImageSet/{TabBarIcon => Assets}/user2.imageset/user2@2x.png (100%) rename AVIRO/App/Assets.xcassets/ImageSet/{TabBarIcon => Assets}/user2.imageset/user2@3x.png (100%) rename AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/{home1.imageset => HomeTab.imageset}/Contents.json (65%) create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/HomeTab.imageset/bxs-home-alt-2.svg.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/HomeTab.imageset/bxs-home-alt-2.svg@2x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/HomeTab.imageset/bxs-home-alt-2.svg@3x.png rename AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/{home2.imageset => PlusTab.imageset}/Contents.json (65%) create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/PlusTab.imageset/bxs-plus-square.svg.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/PlusTab.imageset/bxs-plus-square.svg@2x.png create mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/PlusTab.imageset/bxs-plus-square.svg@3x.png rename AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/{Trophy.imageset => TrophyTab.imageset}/Contents.json (100%) rename AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/{Trophy.imageset => TrophyTab.imageset}/Trophy.png (100%) rename AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/{Trophy.imageset => TrophyTab.imageset}/Trophy@2x.png (100%) rename AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/{Trophy.imageset => TrophyTab.imageset}/Trophy@3x.png (100%) delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home1.imageset/home1.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home1.imageset/home1@2x.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home1.imageset/home1@3x.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home2.imageset/home2.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home2.imageset/home2@2x.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home2.imageset/home2@3x.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square1.imageset/Contents.json delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square1.imageset/square1.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square1.imageset/square1@2x.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square1.imageset/square1@3x.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square2.imageset/Contents.json delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square2.imageset/square2.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square2.imageset/square2@2x.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square2.imageset/square2@3x.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user1.imageset/Contents.json delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user1.imageset/Property 1=bx-user.svg.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user1.imageset/Property 1=bx-user.svg@2x.png delete mode 100644 AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user1.imageset/Property 1=bx-user.svg@3x.png create mode 100644 AVIRO/Scene/Base/AVIROTabBarController.swift create mode 100644 AVIRO/Scene/Base/AVIROViewController.swift rename AVIRO/Scene/{TabBar => Feature}/Challenge/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentaionDelegate.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ChallengeInfoView/AnimationCustom/ChallengeInfoPresentationAnimator.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ChallengeInfoView/ChallengeInfoViewController.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ChallengeInfoView/SubView/ChallengeInfoGreenView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ChallengeInfoView/SubView/ChallengeInfoOrangeView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ChallengeInfoView/SubView/ChallengeInfoTopLabelView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ChallengeInfoView/SubView/ChallengeInfoYellowView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/Setting/LicenseView/LicenseDetailViewController.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/Setting/LicenseView/LicensesViewController.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/Setting/NicknameChangeableView/ViewController/NickNameChangebleViewController.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/Setting/NicknameChangeableView/ViewPresenter/NickNameChangeblePresenter.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/Setting/ViewController/Cells/SettingCell.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/Setting/ViewController/SettingViewController.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/Setting/ViewPresenter/SettingViewPresenter.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ViewController/ChallengeTitleView/ChallengeTitleView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ViewController/ChallengeUserInfoView/ChallengeLevelView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ViewController/ChallengeUserInfoView/ChallengeUserInfoView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ViewController/ChallengeViewController.swift (97%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ViewController/MyInfoView/MyInfoView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Challenge/ViewModel/ChallengeViewModel.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Enroll/SearchPlaceView/ViewController/PlaceListCell.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Enroll/SearchPlaceView/ViewController/SearchPlaceViewController.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Enroll/SearchPlaceView/ViewPresenter/SearchPlacePresenter.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Enroll/ViewController/EnrollPlaceViewController.swift (97%) rename AVIRO/Scene/{TabBar => Feature}/Enroll/ViewController/SubView/EnrollMenuTableView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Enroll/ViewController/SubView/EnrollStoreInfoView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Enroll/ViewController/SubView/EnrollVeganDetailView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Enroll/ViewController/SubView/MenuTableView/NormalTableViewCell.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Enroll/ViewController/SubView/MenuTableView/RequestTableViewCell.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Enroll/ViewPresenter/EnrollPlacePresenter.swift (99%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditMenu/ViewController/EditMenuViewController.swift (90%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditMenu/ViewController/SubView/EditMenuBottomView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditMenu/ViewController/SubView/EditMenuTopView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditMenu/ViewPresenter/EditMenuPresenter.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ChangeableAddressView/ViewController/ChangeableAddressViewController.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ChangeableAddressView/ViewController/EditLocationSubView/EditLocationAddressMapView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ChangeableAddressView/ViewController/EditLocationSubView/EditLocationAddressTextTableViewCell.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ChangeableAddressView/ViewController/EditLocationSubView/EditLocationAddressTextView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ChangeableAddressView/ViewPresenter/ChangeableAddressPresenter.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditHomePageView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditLocationBottomView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditLocationTopView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditOperatingHoursView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditPhoneView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperatingHourView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditoperatingHoursSubView/EditOperationHourChangebleView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ViewController/EditPlaceInfoSubView/EditoperatingHoursSubView/EditTimeChangebleView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ViewController/EditPlaceInfoViewController.swift (94%) rename AVIRO/Scene/{TabBar => Feature}/Home/EditPlaceInfo/ViewPresenter/EditPlaceInfoPresenter.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/HomeSearch/ViewController/HomeSearchViewController.swift (94%) rename AVIRO/Scene/{TabBar => Feature}/Home/HomeSearch/ViewController/SubView/HeaderView/HistoryHeaderView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/HomeSearch/ViewController/SubView/HeaderView/PlaceListHeaderView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/HomeSearch/ViewController/SubView/HistoryTableViewCell.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/HomeSearch/ViewController/SubView/HomeSearchViewTableViewCell.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/HomeSearch/ViewController/SubView/NoHistoryLabelView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/HomeSearch/ViewController/SubView/NoHistoryView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/HomeSearch/ViewPresenter/HomeSearchPresenter.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/Report/ViewController/ReportCellView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/Report/ViewController/ReportReviewViewController.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/Report/ViewPresenter/ReportReviewPresenter.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ReviewWriteView/ViewController/ReviewPlaceInfoView/ReviewPlaceInfoView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ReviewWriteView/ViewController/ReviewWriteViewController.swift (93%) rename AVIRO/Scene/{TabBar => Feature}/Home/ReviewWriteView/ViewModel/ReviewWriteViewModel.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/ChangedViewAction+HomeViewController.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/HomeViewController.swift (94%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/PlaceView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/OperationHours/PlaceOperationHoursViewController.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/OperationHours/PlaceOperationSubView/OperationHourView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/OperationHours/PlaceOperationSubView/OperationHoursView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/PlaceSegmentedControlView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/PlaceSummaryView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/PlaceHomeView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceInfoView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceMenuView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceReviewWriteView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/PlaceReviewsView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/SubView/PushCommentView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/SubView/ReviewPushView.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/TableView/PlaceMenuTableViewCell.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewController/PlaceDetailView/SubView/SegmentedControlSubView/SubView/TableView/PlaceReviewTableViewCell.swift (100%) rename AVIRO/Scene/{TabBar => Feature}/Home/ViewPresenter/HomeViewPresenter.swift (99%) rename AVIRO/Scene/{ => Feature}/Login/Registration/ViewController/FinalRegistrationViewController.swift (84%) rename AVIRO/Scene/{ => Feature}/Login/Registration/ViewController/FirstRegistrationViewController.swift (100%) rename AVIRO/Scene/{ => Feature}/Login/Registration/ViewController/SecondRegistrationViewController.swift (100%) rename AVIRO/Scene/{ => Feature}/Login/Registration/ViewController/TermsTableCell.swift (100%) rename AVIRO/Scene/{ => Feature}/Login/Registration/ViewController/ThridRegistrationViewController.swift (100%) rename AVIRO/Scene/{ => Feature}/Login/Registration/ViewPresenter/FirstRegistrationPresenter.swift (100%) rename AVIRO/Scene/{ => Feature}/Login/Registration/ViewPresenter/SecondRegistrationPresenter.swift (100%) rename AVIRO/Scene/{ => Feature}/Login/Registration/ViewPresenter/ThridRegistrationPresenter.swift (100%) rename AVIRO/Scene/{ => Feature}/Login/ViewController/LoginViewController.swift (93%) rename AVIRO/Scene/{ => Feature}/Login/ViewPresenter/LoginViewPresenter.swift (100%) create mode 100644 AVIRO/Scene/Feature/TabBar/TabBarViewController.swift rename AVIRO/Scene/{ => Feature}/Tutorial/TutorialCell/BottomCell.swift (100%) rename AVIRO/Scene/{ => Feature}/Tutorial/TutorialCell/TopCell.swift (100%) rename AVIRO/Scene/{ => Feature}/Tutorial/TutorialViewController.swift (100%) delete mode 100644 AVIRO/Scene/TabBar/TabBarViewController.swift rename AVIRO/Scene/{Base => Utils/Common}/ViewModel.swift (100%) create mode 100644 AVIRO/Scene/Utils/Components/TabBarButton.swift create mode 100644 AVIRO/Scene/Utils/Extensions/CGFloat+Extension.swift diff --git a/AVIRO.xcodeproj/project.pbxproj b/AVIRO.xcodeproj/project.pbxproj index 53bebb63..2bca8254 100644 --- a/AVIRO.xcodeproj/project.pbxproj +++ b/AVIRO.xcodeproj/project.pbxproj @@ -196,6 +196,10 @@ C5D93D9F2A581EC800629C39 /* FirstRegistrationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D93D9E2A581EC800629C39 /* FirstRegistrationViewController.swift */; }; C5D93DA12A581F5A00629C39 /* FirstRegistrationPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D93DA02A581F5A00629C39 /* FirstRegistrationPresenter.swift */; }; C5D93DA32A58718300629C39 /* NextPageButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D93DA22A58718300629C39 /* NextPageButton.swift */; }; + C5DBF8382B3A5FEC00668B0D /* AVIROTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5DBF8372B3A5FEC00668B0D /* AVIROTabBarController.swift */; }; + C5DBF83F2B3A6E1000668B0D /* TabBarButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5DBF83E2B3A6E1000668B0D /* TabBarButton.swift */; }; + C5DBF8412B3A787800668B0D /* CGFloat+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5DBF8402B3A787800668B0D /* CGFloat+Extension.swift */; }; + C5DBF8432B3A822900668B0D /* AVIROViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5DBF8422B3A822900668B0D /* AVIROViewController.swift */; }; C5E143A72AB43B8F007AC8C9 /* AVIROResult+DTO.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E143A62AB43B8F007AC8C9 /* AVIROResult+DTO.swift */; }; C5E306E72A6FB4ED00C11CF7 /* MenuField.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E306E62A6FB4ED00C11CF7 /* MenuField.swift */; }; C5E430B32A5DADBE00CB67EC /* SecondRegistrationPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E430B22A5DADBE00CB67EC /* SecondRegistrationPresenter.swift */; }; @@ -438,6 +442,10 @@ C5D93D9E2A581EC800629C39 /* FirstRegistrationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FirstRegistrationViewController.swift; sourceTree = ""; }; C5D93DA02A581F5A00629C39 /* FirstRegistrationPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FirstRegistrationPresenter.swift; sourceTree = ""; }; C5D93DA22A58718300629C39 /* NextPageButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NextPageButton.swift; sourceTree = ""; }; + C5DBF8372B3A5FEC00668B0D /* AVIROTabBarController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AVIROTabBarController.swift; sourceTree = ""; }; + C5DBF83E2B3A6E1000668B0D /* TabBarButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TabBarButton.swift; sourceTree = ""; }; + C5DBF8402B3A787800668B0D /* CGFloat+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "CGFloat+Extension.swift"; sourceTree = ""; }; + C5DBF8422B3A822900668B0D /* AVIROViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AVIROViewController.swift; sourceTree = ""; }; C5E143A62AB43B8F007AC8C9 /* AVIROResult+DTO.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AVIROResult+DTO.swift"; sourceTree = ""; }; C5E306E62A6FB4ED00C11CF7 /* MenuField.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuField.swift; sourceTree = ""; }; C5E430B22A5DADBE00CB67EC /* SecondRegistrationPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecondRegistrationPresenter.swift; sourceTree = ""; }; @@ -537,9 +545,8 @@ isa = PBXGroup; children = ( C54386772B3432F000BD2CAF /* Base */, - C5D93D9D2A581E9100629C39 /* Tutorial */, - C567C14D2A5658C700D4B426 /* Login */, - C567C14E2A5658D400D4B426 /* TabBar */, + C5DBF8392B3A6DAB00668B0D /* Feature */, + C5DBF83A2B3A6DB800668B0D /* Utils */, ); path = Scene; sourceTree = ""; @@ -1080,7 +1087,8 @@ C54386772B3432F000BD2CAF /* Base */ = { isa = PBXGroup; children = ( - C54386782B3432FE00BD2CAF /* ViewModel.swift */, + C5DBF8372B3A5FEC00668B0D /* AVIROTabBarController.swift */, + C5DBF8422B3A822900668B0D /* AVIROViewController.swift */, ); path = Base; sourceTree = ""; @@ -1275,9 +1283,6 @@ isa = PBXGroup; children = ( C5EB50EB2A1C72C600B29CC1 /* TabBarViewController.swift */, - C5EB50ED2A1C76FC00B29CC1 /* Home */, - C5351B722A1B369000116D50 /* Enroll */, - C5AAEB472B2F044000507C73 /* Challenge */, ); path = TabBar; sourceTree = ""; @@ -1631,6 +1636,53 @@ path = Tutorial; sourceTree = ""; }; + C5DBF8392B3A6DAB00668B0D /* Feature */ = { + isa = PBXGroup; + children = ( + C5D93D9D2A581E9100629C39 /* Tutorial */, + C567C14D2A5658C700D4B426 /* Login */, + C5EB50ED2A1C76FC00B29CC1 /* Home */, + C5351B722A1B369000116D50 /* Enroll */, + C5AAEB472B2F044000507C73 /* Challenge */, + C567C14E2A5658D400D4B426 /* TabBar */, + ); + path = Feature; + sourceTree = ""; + }; + C5DBF83A2B3A6DB800668B0D /* Utils */ = { + isa = PBXGroup; + children = ( + C5DBF83B2B3A6DD900668B0D /* Common */, + C5DBF83C2B3A6DF700668B0D /* Components */, + C5DBF83D2B3A6E0000668B0D /* Extensions */, + ); + path = Utils; + sourceTree = ""; + }; + C5DBF83B2B3A6DD900668B0D /* Common */ = { + isa = PBXGroup; + children = ( + C54386782B3432FE00BD2CAF /* ViewModel.swift */, + ); + path = Common; + sourceTree = ""; + }; + C5DBF83C2B3A6DF700668B0D /* Components */ = { + isa = PBXGroup; + children = ( + C5DBF83E2B3A6E1000668B0D /* TabBarButton.swift */, + ); + path = Components; + sourceTree = ""; + }; + C5DBF83D2B3A6E0000668B0D /* Extensions */ = { + isa = PBXGroup; + children = ( + C5DBF8402B3A787800668B0D /* CGFloat+Extension.swift */, + ); + path = Extensions; + sourceTree = ""; + }; C5E430AA2A5D13B600CB67EC /* Lottie */ = { isa = PBXGroup; children = ( @@ -1993,7 +2045,9 @@ C5C915492A777F8500C7CB93 /* SearchField.swift in Sources */, C52066212A7CA9050038ECCD /* MainField.swift in Sources */, C5EB510B2A209FD300B29CC1 /* HomeSearchPresenter.swift in Sources */, + C5DBF8412B3A787800668B0D /* CGFloat+Extension.swift in Sources */, C52066262A7CC3CE0038ECCD /* NoHistoryLabelView.swift in Sources */, + C5DBF83F2B3A6E1000668B0D /* TabBarButton.swift in Sources */, C5803F5D2A88C3C00064A853 /* LocationUtility.swift in Sources */, C562950C2B318BB60067BBE5 /* ReviewPlaceInfoView.swift in Sources */, C5F1014F2A6D19A800C53286 /* VeganOptionButton.swift in Sources */, @@ -2070,6 +2124,7 @@ C5ED46952AAEB3F300F2DA04 /* OperationHourView.swift in Sources */, C5C9619A2A8DA5950016E2F8 /* ShowMoreButton.swift in Sources */, C5351B622A1A083400116D50 /* PlaceListCellModel.swift in Sources */, + C5DBF8382B3A5FEC00668B0D /* AVIROTabBarController.swift in Sources */, C5C90EB22AA5EC9E00AB3668 /* EditMenuChangedMarkerModel.swift in Sources */, C51B09BA2A8215D800916BBD /* MarkerModel.swift in Sources */, C52FA3452A175B20005E70DC /* SceneDelegate.swift in Sources */, @@ -2099,6 +2154,7 @@ C5FD92F22A9C805700CF4673 /* PublicXMLParserDelegate.swift in Sources */, C5166E4D2A945228003495AA /* MyData.swift in Sources */, C58B9AAE2A5675B9008AEAC3 /* TutorialViewController.swift in Sources */, + C5DBF8432B3A822900668B0D /* AVIROViewController.swift in Sources */, C5FF13552A42C88D0026981D /* AVIROPlaceMenus+DTO.swift in Sources */, C56E7A112A971504009CCAF2 /* ReportCellView.swift in Sources */, C52066332A7E80350038ECCD /* MatchedPlaceCellModel.swift in Sources */, diff --git a/AVIRO/App/AppController.swift b/AVIRO/App/AppController.swift index e912385e..cb27f620 100644 --- a/AVIRO/App/AppController.swift +++ b/AVIRO/App/AppController.swift @@ -35,7 +35,7 @@ final class AppController { window.makeKeyAndVisible() // checkState() - setHomeView() + setTabBarView() } // MARK: 불러올 view 확인 메서드 @@ -67,7 +67,7 @@ final class AppController { userNickname: data.nickname, marketingAgree: data.marketingAgree ) - self?.setHomeView() + self?.setTabBarView() } } else { self?.keychain.delete(KeychainKey.appleRefreshToken.rawValue) @@ -98,13 +98,26 @@ final class AppController { } } - // MARK: home View - private func setHomeView() { + // MARK: TabBar View + private func setTabBarView() { DispatchQueue.main.async { [weak self] in - let homeVC = TabBarViewController() - - self?.rootViewController = homeVC + let tabBarVC = AVIROTabBarController() + tabBarVC.setViewControllers(with: [ + TabBarType.home, + TabBarType.plus, + TabBarType.challenge + ]) + + tabBarVC.selectedIndex = 0 + + self?.rootViewController = tabBarVC + } +// DispatchQueue.main.async { [weak self] in +// let homeVC = TabBarViewController() +// +// self?.rootViewController = homeVC +// } } } diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user2.imageset/Contents.json b/AVIRO/App/Assets.xcassets/ImageSet/Assets/user2.imageset/Contents.json similarity index 100% rename from AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user2.imageset/Contents.json rename to AVIRO/App/Assets.xcassets/ImageSet/Assets/user2.imageset/Contents.json diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user2.imageset/user2.png b/AVIRO/App/Assets.xcassets/ImageSet/Assets/user2.imageset/user2.png similarity index 100% rename from AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user2.imageset/user2.png rename to AVIRO/App/Assets.xcassets/ImageSet/Assets/user2.imageset/user2.png diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user2.imageset/user2@2x.png b/AVIRO/App/Assets.xcassets/ImageSet/Assets/user2.imageset/user2@2x.png similarity index 100% rename from AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user2.imageset/user2@2x.png rename to AVIRO/App/Assets.xcassets/ImageSet/Assets/user2.imageset/user2@2x.png diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user2.imageset/user2@3x.png b/AVIRO/App/Assets.xcassets/ImageSet/Assets/user2.imageset/user2@3x.png similarity index 100% rename from AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/user2.imageset/user2@3x.png rename to AVIRO/App/Assets.xcassets/ImageSet/Assets/user2.imageset/user2@3x.png diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home1.imageset/Contents.json b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/HomeTab.imageset/Contents.json similarity index 65% rename from AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home1.imageset/Contents.json rename to AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/HomeTab.imageset/Contents.json index 8498fab8..d335b06d 100644 --- a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home1.imageset/Contents.json +++ b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/HomeTab.imageset/Contents.json @@ -1,17 +1,17 @@ { "images" : [ { - "filename" : "home1.png", + "filename" : "bxs-home-alt-2.svg.png", "idiom" : "universal", "scale" : "1x" }, { - "filename" : "home1@2x.png", + "filename" : "bxs-home-alt-2.svg@2x.png", "idiom" : "universal", "scale" : "2x" }, { - "filename" : "home1@3x.png", + "filename" : "bxs-home-alt-2.svg@3x.png", "idiom" : "universal", "scale" : "3x" } diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/HomeTab.imageset/bxs-home-alt-2.svg.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/HomeTab.imageset/bxs-home-alt-2.svg.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c1186e3119997df409857202860c1bc335646d GIT binary patch literal 455 zcmV;&0XY7NP)P000>X1^@s6#OZ}&00009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yP#VPpa6dXG0C&#x-lf_=6Um2whQH;= zqPi-tCTEV|Dmo&fQ_utfhXbc~GJ9?Y7vr$c5VXE`9s`)W@9dn{O8E7yMIsA;KlMMFIVuq2BcuRhYjV3gP(ytLi;Z=_C$Pe$KS#8n-XLl6~GPx3xHx~#Dow)48sz<1SBR1h#yr( zARzIt>KPmG$skdj#5$_aNgUt{KqwJ)bhgeMZJ5*O+wM~L{}xK1G>L=Ydk$6&?*CR535FP}H1#o|oCSYJ< zWkw4^h>gUH0O03*OGx;sN91n^M?^+KsZpExK_S0@A(l4sa71Q0{l4jg*k*e8%y&wu zlQtZ1mQY8-ZDuUO7NQRSYAHD2B%y+{O)anicjoqkVIP)QOT+@;9)!?4%&PfJSYWj~ zO{=jKHdQYykyc|VidMalM4lQ;QKag**F@eLOHriixkkdG#!}>}dge%2)>w*MRnMMI z_BECwv+Ai5&NY@Iqw0wgf;E;RvFcMLq-!iiQq?DRr!s3S#rvwik@$!jOYyquFA^VF zV=11i9!pdhGdBp=&IaL5$Wizr`K|L$l!LP%YtdcjiyhLD4IKRnbV)g+`(-G!k{8 zk*EueL|tek>Ovz?7ruvtz7lwfiqXH^25HALCA`~chX{wLjsY-E{SWUEUJvjHLm(9X P00000NkvXXu0mjfn^g@# literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/HomeTab.imageset/bxs-home-alt-2.svg@3x.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/HomeTab.imageset/bxs-home-alt-2.svg@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..dffaf2de9b69200375e4892e5671ae07ac85af74 GIT binary patch literal 846 zcmeAS@N?(olHy`uVBq!ia0vp^o*>M@1|$oMx$gie&H|6fVg?393lL^>oo1K-6l5$8 za(7}_cTVOdki(Mh=UZ_W=^Aq7d#ptv`y=Eeuv%j)j65&!UD!8*CK zib||1O;tat*;Y64ENyx{bIv~0nPVPkGbivsGWNE?c?j4r=1+$ zzf^XRxq9`VHHS-q=cnKNcOA@)10HM<;9nrIf5ki>1qMgenQQOly!@5P$?`&QsdUzV z78~Il-$i060ZyLAMhA@@-7e+&#xpEjpt>i#a>B%t=*y}<4pvXCo_;0pa!AG6qVt0tn^t83OS(E*xk8d~Qb^vu-vsMpl>9=Fi_$^+hLbOW@zQB z+-(;tS~xS${MD^DNva0fnJSzcW1lBqF`3kL^nuWfFe%TkpN~(k3g<4Xj*VM!^3=}R z>)veaJ8`&=e`;0JvFVdQ&MBb@09UbdOaK4? literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home2.imageset/Contents.json b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/PlusTab.imageset/Contents.json similarity index 65% rename from AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home2.imageset/Contents.json rename to AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/PlusTab.imageset/Contents.json index 7d9ba67e..7be0d1b0 100644 --- a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home2.imageset/Contents.json +++ b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/PlusTab.imageset/Contents.json @@ -1,17 +1,17 @@ { "images" : [ { - "filename" : "home2.png", + "filename" : "bxs-plus-square.svg.png", "idiom" : "universal", "scale" : "1x" }, { - "filename" : "home2@2x.png", + "filename" : "bxs-plus-square.svg@2x.png", "idiom" : "universal", "scale" : "2x" }, { - "filename" : "home2@3x.png", + "filename" : "bxs-plus-square.svg@3x.png", "idiom" : "universal", "scale" : "3x" } diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/PlusTab.imageset/bxs-plus-square.svg.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/PlusTab.imageset/bxs-plus-square.svg.png new file mode 100644 index 0000000000000000000000000000000000000000..36ed09368c457ee672bbc36f3e938818d6caff1f GIT binary patch literal 412 zcmV;N0b~A&P)P000>X1^@s6#OZ}&00009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yPIad0h=HY!7=DJPE>Q6V7Vsaky6*J(h_EO2~TyNJ<%54Mg#ZO<8ccEagv(zPapkz*aUlCHgoi?z3l1f#GJR-dIEeWy}eq1ZK{3$d>2MVy`qU>vxjNiFw-ppU>FF7^Bum>rb5& zJAp$)>tHY!8mww)>sm0!(EuX1*pU4d-aQeI3&-NmT z1!rUah1h)6?VW>@-{ZL$fO*-N@R|4s|AdPPQ*a_o!IRuy!D6(tA|m)47L&*i9q%sg zMxT|Kbr7TV5O?EIObm&&sTIQ_h!8D#{bSu9T~K*dPpVK_zaXZP6v+C9fyuWFV%dV$ gecWv*rQYgxQ!~g&Q07*qoM6N<$f+gVP8UO$Q literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/PlusTab.imageset/bxs-plus-square.svg@3x.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/PlusTab.imageset/bxs-plus-square.svg@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..e3aad637622f56ca562ad0c9b5c86f879b292d4f GIT binary patch literal 715 zcmeAS@N?(olHy`uVBq!ia0vp^o*>M@1|$oMx$gie&H|6fVg?393lL^>oo1K-6l5$8 za(7}_cTVOdki(Mh=-ZTdw&% zb5DCQ<;nNPmK3=&kG$`ld1BbZA$n;~qefJ3o!8>Gc4ljDEIVT;YWlA&wU&i;Ab zmnFGxGfsDHN&P5sHR1V*H}B`({o%jlTC;opnp5791$tiJck!9^7_R&;m%_~RW%_*A z<=>9|ep7vT|JFsv_3soupL!v(e0rX4_Wvh4tY_w}ow}7@FG!~(PU_Wzg}*l6Sa~(y zNj&%_hufk*tiDSN4W=cmTi>X)L5M>%Nrgd~QG)Y;2ZI}vfzX3lSM&w1mhW5~cJ1zM zL0*WSNp@5@7C%=4M;AA%O(ckwc&g|CT zFBfVTbg(KQ(mn0IyAIdP)m>jT{LGQP~dxpmN9J8Bp#;f%F-g2&Q`&CUJl`tC!A=?RcJ3{Eye%GA|wyV0nF4(m0(AjrS zuPxSN#B{k!;tQO7m|M)#jJ%(f%U8b<^v5m&xruUoXp_ z3@X0)zdlOz)C>a&8~@8CKb{|u&D!zuR%wfkaoBH@>SfW&w`VQeoB039kGE%Um-9XO yZah`&-9*QCH|FfJ{AP9K;j@K5Z=K%upQ$KhS=|~D*EC?-WAJqKb6Mw<&;$U=`#i@0 literal 0 HcmV?d00001 diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Contents.json b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/TrophyTab.imageset/Contents.json similarity index 100% rename from AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Contents.json rename to AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/TrophyTab.imageset/Contents.json diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Trophy.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/TrophyTab.imageset/Trophy.png similarity index 100% rename from AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Trophy.png rename to AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/TrophyTab.imageset/Trophy.png diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Trophy@2x.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/TrophyTab.imageset/Trophy@2x.png similarity index 100% rename from AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Trophy@2x.png rename to AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/TrophyTab.imageset/Trophy@2x.png diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Trophy@3x.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/TrophyTab.imageset/Trophy@3x.png similarity index 100% rename from AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/Trophy.imageset/Trophy@3x.png rename to AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/TrophyTab.imageset/Trophy@3x.png diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home1.imageset/home1.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home1.imageset/home1.png deleted file mode 100644 index 5d2dd118c1b291bea6a1c2b06283a03ef25f1b87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 385 zcmV-{0e=38P)P000;W1^@s654Bdt00009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yP8auM#LD z0*InU?LTkF#kJ9P{nRs*2&n7%e9%vlPtWI~(08dwNr7b~kV*qcA(a-8K0 zf8Y=c<-GhGx8D09Xw_ZCKo`~k6G&qa1T!#N&285O<-#6v&SaO9R!zq|#J{CT6T!*e zKNduY8r4v5-n&R859Cgf?CuRRIN`SmY#aXsk#j5a{&@`HXm@R|lBcPO`9su(6tO?F f=NFUe>~&-YExxMv+$XR<00000NkvXXu0mjfirJSq diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home1.imageset/home1@2x.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home1.imageset/home1@2x.png deleted file mode 100644 index 62dd6420eda205ace185579f662ffcd4d89edcd3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 528 zcmV+r0`L8aP)5&IYJM>=pm#CGXSH7^nfTGK&EmiK@Q>nfhc$S$IIRA1NFF z?WfU}(+rJ0&EgPz?R&esmTnZ^0$&T%emz$qLe2kYYHnzS~(kMcb*8J zYrkkMWxA1&?d-aY5x&F-Ut)wWF~XM^;Y*D0rM~65)eQf;$LM;h&1ZQff+cj6`m~-* zYpf8d_+0%-l0f?{c4`VO6 S6H%D}0000EEaXQk(@Ik;M!QiWVTu=sL|X0Vv2= z9OUlAuB!!OL$m^+O`ry<$h4r37@^PQoTR*;8y_%?H zT6k{j`{|cIPhS=BvHj6}rPrsf^D-PSlsUdOnn@|^|BK-0vzzj(3WNXqwgl~N7M|(! zV3Ff3>py?kuDtnjkL%(ao@)7X3JJa)3zj;3zOp*~w!Ye9`~Cl%7c?o0GAAZ3Y*M<| zu%RH};Dj>`8w>&*C!AtT{I^i*fhE(0kj7hQ{61g)cyQdr4hQS|{ZBLhaZPln zlvbBy_4l}qll9$YAG`Jn$=26OUD934H{{5i5om`CZ?Z-c_M=7qV?< zaM`^poGItO^yiOt>(7^8{B>;=^Bp^vuV3C(|8DOL;o22&`AdbK?}8wPjE4ITwvcn^;GR-qp417vn6~d zPIbzPJ^%dSE6YsH1fv(VGBe)RJ@{{|--0$x)gJrum;VpS&R<@?ectx3PnKsm z`(E07@#Kdk*?*?^Jbk|7^YP+Y*PUJ|?`^S|?{INCtD%sVb@xMcTZ_KO7J7Yo48NpK VuaR1lr36gN44$rjF6*2UngD)SU2^~c diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home2.imageset/home2.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home2.imageset/home2.png deleted file mode 100644 index 5c847166cabfa41f113eaa63c531c0fa44e24503..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 395 zcmV;60d)R}P)P000;W1^@s654Bdt00009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yPs%O>8{W}9-;OGJ%Y=&v1pEvBLv!A$~cLtF3=Zb`gb(L#RUd32D3a2J zo=AFG*=Fe^T+SW*?|fJa3@-lZiFD3d!hZ9SzCIl4pwBOJHWKp|2*8I1n4AdXQKe)l zAd=7mBIt`?8Wn5nA1{K~CxkcH6G(73d+m+QdOeAP{Zi~#dWA*!Er~FKnjq4{?D<-5 p*BKmuv*awGrW5jX<ei9yr$rA>!SS-5;R7l(ZxJZ%C&+{ zM0d>?46u!a7le+Yz#3P4ujcD}zyO+y3$B!)|dFH zsvndvtuYrxRnMK+oHgbmuj-i+Rn(Y^tg2^zPEz3HpHLoRv+(ebyg5;2%uGr44`fOZ z;aYBD)Q?0yo7$YnqvVlQ13s#~oSc$q|CF+8%M1tcH nt6r!jam4?O%>M?9#iGV9x-Yc;u~+i(00000NkvXXu0mjf@Y?WP diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home2.imageset/home2@3x.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/home2.imageset/home2@3x.png deleted file mode 100644 index 48bd37ef561153e7ae8a209b5b6073382c02b3ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 780 zcmeAS@N?(olHy`uVBq!ia0vp^oEEaXQk(@Ik;M!QiWVTu=sL|X0Vv2= z9OUlAu(x>(_Dnh!H7dyr?7%w~JzUTp+L1Oipo6oOwY2GPu=YGsLxg0V)dNd$9|px z!hKrl6Q8VJwzFVuQM%{6>{;B)waO=ntZdEMxUT4RZ}oAOs}bQluX^2bbo8|fuY5jL zWaF}(FJhj~RdrpPsb>{dsqU$H#Y8-I)f^qos}UuQQBRlj{#NA5+O+o6b}z5J%XVh0 z{uJi<-Ttew$L?i2Z%E8uTOG9RjN1nJrmU))pPpUaWq!*%ulFFo`Vx=TDr+~|rEb$- zq_x*3s(RJB&>+i7JNKn=v*&8R@-%+0@uPM7GrfZ;f9J+I9F7m3vE z`S)oH1NWl&CAV2!gcv8fIH(8;c(M@9ESSEh_!7srqa#|J!rlzq5+Rp>E@pOP$Jv zN{={eIhY%5LpINylDMk#Ph+%8o-8x(jJrRymQ}tz>cWtm#UNn4RPFwu6D$hl-u4nJh^c}wqi2xH2cRHh zage(c!@6@aFM%AEbVpxD28NCO+?B7KQ^8S411k zT7EZxm0jtsF~9IHLtPg!_MauYz1D9tJ=c-mU=hrmzt5%2>F)McmUZcFS~mhdGxDEY zJEJY@9EWd}LypMfn3IwRdrFmVi6pji=qY{5*dDj%&Y|O*m#Xm__{AtRak~^W)-Kw^ zU$gt)mm2rn_se%+5$|}wBp6fixBqQ+yvAXR!jIyDlcE-=ImL8v7Pnj6 zT4$*oGK0VK_;SU^0scASa|Nr5jTWEb>{XZ;XuPEI?c~=}I2an%TPq4V6!RW-xCaa( N22WQ%mvv4FO#qomif8}; diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square1.imageset/square1@3x.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square1.imageset/square1@3x.png deleted file mode 100644 index eb65ccccc842223c6f641ee7a8035d493ae10d89..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 560 zcmeAS@N?(olHy`uVBq!ia0vp^oEEaXQk(@Ik;M!QiWVTu=sL|X0Vv2= z9OUlAuU+&uyNs&3vXv@hnr4i3)pz^;>(-Qf1mz*$=qy$Oo+)eHqJG@`Mn?K={@k+ zyZhs}KbI$_W#;dDa>1NqzGvby+X!7&smgYaN<*QBi3~j~2`UWAj8U7^LsVz_CVl?? z^PYm?wNv}=9Vt>{l;Awz!QjSZfTR#4)Ntxr-tKEjm4D?9FL=B<;&maC$_1NN-~Pr` zeA)lOYM;paKD#z9ee8o_0L;wl&+8|}X7AMknuTlz&{-8r&gdYt{O+>)*x@j697srqa#*Nt+sBJcTDL2b@!*Mm1ByqCwn1xtS}=h^R7o9=PZ4+%!Y-3fyjk(;y;C>lsfi& z+nyY<`rPhcp+VV#t6v0t{kLc4i8X(dyWcK;8ff%bOW*J7)D>^$9MwE$uu5mPrLoAR ze|ow)vd=Tz?x#&y+EgaU9>C;MaaL6E)mwoJ%)$bE4zimi&OT$^HOrBGcGKgjK;JQV My85}Sb4q9e06dL%>Hq)$ diff --git a/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square2.imageset/square2@2x.png b/AVIRO/App/Assets.xcassets/ImageSet/TabBarIcon/square2.imageset/square2@2x.png deleted file mode 100644 index 1ae1c1e80016b1b8800335d8ff55163488fc8368..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 371 zcmeAS@N?(olHy`uVBq!ia0vp^hCpn4nJh^c}wqi2xH2cRHh zage(c!@6@aFM%AEbVpxD28NCO+DjawxxW)sanaFsTfIZE3$xfj^KFmamQVjg7pbIE^Z#~FfuKE7Ph&%xlJv_9Wy z&;GNvrYCR3Zg%~WEcdcl*l+t$Ma`d1jFVM(}(`x)K{XO6>RM`k!}5OC^hkU7=gJ>9)x)9&mdhNmj5P9BW{K?!qTtYf}^ z?th7_qorqK^`iA{AK!gpYni~LxWs`&b533I?kMqH0e(S$Tsykl7U;V;2EBN8i1%jw z+v{IvrNs1lnQ!Jb&)^MQa{3aB=dEeNyo-(Yu35d#ce=*Y+p!D`Mz#$5OEEaXQk(@Ik;M!QiWVTu=sL|X0Vv2= z9OUlAu)eWsr`ODO z+C0hmd10M+*!k{|mcaiT&a6}0xYMPGqtPu$F>6xb={i?`@q#6v4?h3)=kk=S%oE?2 ziApyqul(65x28wvyzJ8MBI%dM=h&zPtJV|9c+$HLEON`Rart z$xCn^@L+IbGJpta6sSf7}&+=ehk@afR>F|`Y_3TrlzrXh_o_6EIr)XP)P000>X1^@s6#OZ}&00009a7bBm000XU z000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yPj3*FJAe_K(0+P;7Jb|&K3ZB5&S?&?I0seu(M|iNiK$rjC zFuOau^LJ-w2clDf(`RxNMKh=gw}T)^ZP!_m!1;<5WLg_mkPu|CY5lor0tjB9Ua34m z<~YtT^d;mPvRW>elqAWQ&c~U7U<$RC?iO<6`~Dqve}#4^<7>=w2a^CEf3W)$j(td0 z8PHxsy^H;E49T27d7giE*mq)gX#`0|cF4w%{D{8quovS9*MT&+AU!saXNZf-{h;D1 z0);kb8fTrylMt>@=fwC<;LwA5s|_hSelMXU!Eh2GauJdUJD&Y7M2PqVAlRAK_bn?N zCMHrGHrsWMg;Ni5OUEIqz*)t~5$i}DjdQ+OpX?D+c|XcXA_RLX!&1C5kxWD@8iuUlrlnv?$tW4l)0^1AN$pld+Xgh(`3F=Nzc7t>R7l@FYj7Ss-QubX= zf5&5pKrmk*NDu-TF=E8K!vqGve!rh$H^Y`;`^e(I*pAeSqOgztiW zY}-_1l950H8Ft^mJ$Z=@64^o|ZXf}6yWJAI1B4MEY>@mOA`$Hg_Q0Xl_+;`N13WaR z(<$pP6XlTrG$&Wuhb6;2rERUCyb=~29_T1?%degz6dk-$mi*gXm{1?)!gT!qiw zf&#HIu@+<7M}UAjC3X)&obm1!3^fV-K{^MF5Z{46HrSqoEC&T*JYmH6DP&EfE)h8P z*z`gSi8I&pP85pY!o~+sAjvsFz}?8el@LQhuIH&DFh4a1_#*y+0x={iF(v|^!4rID zWIZ;$peDhASqbqvz#HopnI^8HW8$kA8*GO@BKUtIkT+!*)TK77O_6p`-joTkh5FTlC4R^J|hY*!_a;4E8kvbm-hk!XZdK4RRbbQG&Y*tl#`7^+ zN){57aMUCk<(UlL?)#yzP@n#)GLDJ_pSXRsB`rz_Bojn}gOzGaGZ+>Yp3}49yN|Lr z37-QEw^qv&@WGVtATDoum2$jDxKax)&(IGYHTyp2Q#rO}hYES*-eseggyST(Q0F`q zBmn;oRRi1ZB+iMPdnXBwgItI$)Ndw9${@kX zpsYz5sCUCw^m#&-8)@Q$5qJUGrwPkj-m1$Rog{dT=0f~%!Q7`1t6 zLg09-nlj3c+jLzdX2QTVGSDB*L05Y3A|Y!+KjHH5Ds#F>7%{eRc~~jnSUp2X$!5?U zDF!YQ&Ar-!val5cj=`!SYQ1~hI1Es}LSJs^o5Q@g(zTMm9xZqtsxL_+Mg-tLl2{sf Ts$x`W00000NkvXXu0mjf084+pn=*I-O695y`oq%)##0Fu4a#vj*1tM9tPjX!R zdr!|G$*%RcK2E0#FfuYSGBPqUGIEFsdgkWlCZo$oN;67RO4+O89VJ8Qky5o>F1P4` z-b5mC3c9Q)6%B4Plr|(*iG(B5#QQj2wkWR~6L?DGo+=F~`kU`CgB|@($&EbZHJ*DRuC=*pAYTN>LC3A64>53Y* zL)i1K_~NO;w$vGvi7nE1xQE$2HE4n6&n#evuZuHn(;%7&K#k#fBzF{>HUcpsz{XRh zt9kJcG3}&xUTL_)1$=dwf0p-fDX-aGQQO2gsKk)O##uSQIfT+8-X=umpf3Mdjq zB-x*3j^YXm$cktj#TgWd)ss|TvhTm2bb}j#Ap5E-u|)E{d=5QwH2?dJi6WBB7p@l# z*@x94c9?5esd_MD4!6pYuVu$vdddtGi7C>fBR`WpSZl-%DjdaI?M-e>kxEb5s-wZj z9?9HMb_Zpmi6rw<I;jrapUM3^kNJ#51M75Cx1Cam^fI&%w)ArYxA<*7_}ndja~kXLGSxvq zjxaxWTcY{5nPf*w5rv8>5R+{0CKD?ApYNfAfpyhJ6^Q927C;UNe6~&y?{MpDxhm8?Je|uxL}0{L=#Dtd3LZBNQZ&-0&Fxly6Pe+*g#s8 zP!dZ`B$;Q}l~Le$Fi;3YRS`)-{djxO_j#KOez#5AiN3Q);wfC?_~8luyv^|IBvM0x z_$%_}c8foKMs0Wr6@<0WXMx)q#=vfh4I0o|q)>sV5fwFJ6Eo&o=EDW-YMR$n=MQw& zWazaLDKMIrUuKyqAe|Ah*v(t(E^ZR7+gPMP=NUWXJDsg{K|%(3rOiFnf}M43oNjeC z(56p;80o$2;4_|TE7=Xy(nzFNW8cL_LiKv*l_%6S_pm@gAG2vsa{iWse-d#l0__o@ z&OKEwLwZxNNHx94@Ct?_M24O-z7hewsYy@rJxp~&8G$w2!>(>6Y$VbLN4{Am{*hi& z#3u4Z>lVKIgG7>{mOF~oqc|erTkZ=_S#VF9ddeycfSM?mneX0EkqSq?8Q3YtlOx~P z34%pBIh0AuzQM3?ebCHj3WSQ}dVs;O@b&u6A{~TmqaPR+zMX$(k&+%O9~+?}xgu#x z3@)aVhY&W8b6rdVb_qwu=k?LG=DV>=cCE2