├── .github └── ISSUE_TEMPLATE │ ├── -----.md │ └── bug--.md ├── .gitignore ├── ChangeIcon └── AlternateIcon │ └── Set Alternative Icon file names to [AlternateIcon(Size)@(Times)] ├── KanColleCommand.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── mingchang.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── mingchang.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── KanColleCommand.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── mingchang.xcuserdatad │ ├── IDEFindNavigatorScopes.plist │ ├── WorkspaceSettings.xcsettings │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── KanColleCommand ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ └── ItunesArtwork@2x.png │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Bridge-Header.h ├── Files.bundle │ ├── Root.plist │ ├── en.lproj │ │ └── Root.strings │ └── map.json ├── Images │ ├── badly_damage_warning.png │ ├── reload.png │ ├── setting.png │ ├── slot_0.png │ ├── slot_1.png │ ├── slot_10.png │ ├── slot_11.png │ ├── slot_12.png │ ├── slot_13.png │ ├── slot_14.png │ ├── slot_15.png │ ├── slot_16.png │ ├── slot_17.png │ ├── slot_18.png │ ├── slot_19.png │ ├── slot_2.png │ ├── slot_20.png │ ├── slot_21.png │ ├── slot_22.png │ ├── slot_23.png │ ├── slot_24.png │ ├── slot_25.png │ ├── slot_26.png │ ├── slot_27.png │ ├── slot_28.png │ ├── slot_29.png │ ├── slot_3.png │ ├── slot_30.png │ ├── slot_31.png │ ├── slot_32.png │ ├── slot_33.png │ ├── slot_34.png │ ├── slot_35.png │ ├── slot_36.png │ ├── slot_37.png │ ├── slot_38.png │ ├── slot_39.png │ ├── slot_4.png │ ├── slot_40.png │ ├── slot_41.png │ ├── slot_42.png │ ├── slot_43.png │ ├── slot_44.png │ ├── slot_45.png │ ├── slot_46.png │ ├── slot_47.png │ ├── slot_5.png │ ├── slot_6.png │ ├── slot_7.png │ ├── slot_8.png │ ├── slot_9.png │ └── tag_repair.png ├── Info.plist ├── KanColleCommand.xcdatamodeld │ ├── .xccurrentversion │ └── KanColleCommand.xcdatamodel │ │ └── contents ├── Oyodo │ ├── Api │ │ ├── BattleAir.swift │ │ ├── BattleCombined.swift │ │ ├── BattleCombinedAir.swift │ │ ├── BattleCombinedEach.swift │ │ ├── BattleCombinedEc.swift │ │ ├── BattleCombinedNight.swift │ │ ├── BattleCombinedResult.swift │ │ ├── BattleCombinedWater.swift │ │ ├── BattleCombinedWaterEach.swift │ │ ├── BattleDaytime.swift │ │ ├── BattleNext.swift │ │ ├── BattleNight.swift │ │ ├── BattleNightSp.swift │ │ ├── BattleResult.swift │ │ ├── BattleStart.swift │ │ ├── Change.swift │ │ ├── Charge.swift │ │ ├── CreateItem.swift │ │ ├── CreateShip.swift │ │ ├── CreateShipSpeedChange.swift │ │ ├── Deck.swift │ │ ├── DestroyItem.swift │ │ ├── DestroyShip.swift │ │ ├── GetShip.swift │ │ ├── JsonBean.swift │ │ ├── KDock.swift │ │ ├── MapSpot.swift │ │ ├── Material.swift │ │ ├── MissionResult.swift │ │ ├── NDock.swift │ │ ├── NyukyoStart.swift │ │ ├── Port.swift │ │ ├── PowerUp.swift │ │ ├── Practice.swift │ │ ├── PracticeNight.swift │ │ ├── PracticeResult.swift │ │ ├── PresetSelect.swift │ │ ├── QuestClear.swift │ │ ├── QuestList.swift │ │ ├── RemodelSlot.swift │ │ ├── RequireInfo.swift │ │ ├── Ship3.swift │ │ ├── SlotDeprive.swift │ │ ├── SlotExchangeIndex.swift │ │ ├── SlotItem.swift │ │ ├── SpeedChange.swift │ │ └── Start.swift │ ├── Entity │ │ ├── Build.swift │ │ ├── Expedition.swift │ │ ├── Quest.swift │ │ ├── Repair.swift │ │ ├── Ship.swift │ │ └── Slot.swift │ ├── Manager │ │ ├── Battle.swift │ │ ├── Dock.swift │ │ ├── Fleet.swift │ │ ├── Mission.swift │ │ ├── Raw.swift │ │ ├── Resource.swift │ │ └── User.swift │ ├── Oyodo.swift │ └── Util │ │ ├── BattleUtils.swift │ │ ├── Const.swift │ │ ├── Extensions.swift │ │ ├── FleetUtils.swift │ │ ├── MapSpotHelper.swift │ │ ├── MissionUtils.swift │ │ └── SlotType.swift ├── Page │ ├── AppearanceVC.swift │ ├── BattleVC.swift │ ├── FleetVC.swift │ ├── MissionVC.swift │ └── SettingVC.swift ├── Resources │ ├── bridge.js │ └── map.json ├── Settings.bundle │ └── Root.plist ├── Util │ └── Setting.swift ├── ViewController.swift ├── WebView │ ├── CacheManager.swift │ ├── Constants.swift │ ├── KCWebView.swift │ ├── Utils.swift │ └── WebHandler.swift ├── Widget │ ├── Drawer.swift │ ├── GripView.swift │ └── HpBar.swift └── map.json ├── LICENSE ├── OptimizationProfiles └── KanColleCommand.profdata ├── Podfile ├── Podfile.bak ├── Podfile.lock ├── Pods ├── HandyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AnyExtensions.swift │ │ ├── BuiltInBasicType.swift │ │ ├── BuiltInBridgeType.swift │ │ ├── CBridge.swift │ │ ├── Configuration.swift │ │ ├── ContextDescriptorType.swift │ │ ├── CustomDateFormatTransform.swift │ │ ├── DataTransform.swift │ │ ├── DateFormatterTransform.swift │ │ ├── DateTransform.swift │ │ ├── Deserializer.swift │ │ ├── EnumTransform.swift │ │ ├── EnumType.swift │ │ ├── Export.swift │ │ ├── ExtendCustomBasicType.swift │ │ ├── ExtendCustomModelType.swift │ │ ├── FieldDescriptor.swift │ │ ├── HandyJSON.h │ │ ├── HelpingMapper.swift │ │ ├── HexColorTransform.swift │ │ ├── ISO8601DateTransform.swift │ │ ├── Logger.swift │ │ ├── MangledName.swift │ │ ├── Measuable.swift │ │ ├── Metadata.swift │ │ ├── NSDecimalNumberTransform.swift │ │ ├── OtherExtension.swift │ │ ├── PointerType.swift │ │ ├── Properties.swift │ │ ├── PropertyInfo.swift │ │ ├── ReflectionHelper.swift │ │ ├── Serializer.swift │ │ ├── TransformOf.swift │ │ ├── TransformType.swift │ │ ├── Transformable.swift │ │ └── URLTransform.swift ├── Headers │ ├── Private │ │ ├── HandyJSON │ │ │ └── HandyJSON.h │ │ ├── RxCocoa │ │ │ ├── RxCocoa.h │ │ │ ├── RxCocoaRuntime.h │ │ │ ├── _RX.h │ │ │ ├── _RXDelegateProxy.h │ │ │ ├── _RXKVOObserver.h │ │ │ └── _RXObjCRuntime.h │ │ └── Toaster │ │ │ └── Toaster.h │ └── Public │ │ ├── HandyJSON │ │ ├── HandyJSON-umbrella.h │ │ ├── HandyJSON.h │ │ └── HandyJSON.modulemap │ │ ├── Reachability │ │ ├── ReachabilitySwift-umbrella.h │ │ └── ReachabilitySwift.modulemap │ │ ├── RxCocoa │ │ ├── RxCocoa-umbrella.h │ │ ├── RxCocoa.h │ │ ├── RxCocoa.modulemap │ │ ├── RxCocoaRuntime.h │ │ ├── _RX.h │ │ ├── _RXDelegateProxy.h │ │ ├── _RXKVOObserver.h │ │ └── _RXObjCRuntime.h │ │ ├── RxRelay │ │ ├── RxRelay-umbrella.h │ │ └── RxRelay.modulemap │ │ ├── RxSwift │ │ ├── RxSwift-umbrella.h │ │ └── RxSwift.modulemap │ │ ├── ScreenType │ │ ├── ScreenType-umbrella.h │ │ └── ScreenType.modulemap │ │ ├── SnapKit │ │ ├── SnapKit-umbrella.h │ │ └── SnapKit.modulemap │ │ └── Toaster │ │ ├── Toaster-umbrella.h │ │ ├── Toaster.h │ │ └── Toaster.modulemap ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── mingchang.xcuserdatad │ │ └── xcschemes │ │ ├── HandyJSON.xcscheme │ │ ├── Pods-KanColleCommand.xcscheme │ │ ├── ReachabilitySwift.xcscheme │ │ ├── RxCocoa.xcscheme │ │ ├── RxRelay.xcscheme │ │ ├── RxSwift.xcscheme │ │ ├── ScreenType.xcscheme │ │ ├── SnapKit.xcscheme │ │ ├── Toaster.xcscheme │ │ └── xcschememanagement.plist ├── ReachabilitySwift │ ├── LICENSE │ ├── README.md │ └── Sources │ │ └── Reachability.swift ├── RxCocoa │ ├── LICENSE.md │ ├── Platform │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ ├── Platform.Linux.swift │ │ └── RecursiveLock.swift │ ├── README.md │ └── RxCocoa │ │ ├── Common │ │ ├── Binder.swift │ │ ├── ControlTarget.swift │ │ ├── DelegateProxy.swift │ │ ├── DelegateProxyType.swift │ │ ├── KeyPathBinder.swift │ │ ├── NSLayoutConstraint+Rx.swift │ │ ├── Observable+Bind.swift │ │ ├── RxCocoaObjCRuntimeError+Extensions.swift │ │ ├── RxTarget.swift │ │ ├── SectionedViewDataSourceType.swift │ │ └── TextInput.swift │ │ ├── Deprecated.swift │ │ ├── Foundation │ │ ├── KVORepresentable+CoreGraphics.swift │ │ ├── KVORepresentable+Swift.swift │ │ ├── KVORepresentable.swift │ │ ├── Logging.swift │ │ ├── NSObject+Rx+KVORepresentable.swift │ │ ├── NSObject+Rx+RawRepresentable.swift │ │ ├── NSObject+Rx.swift │ │ ├── NotificationCenter+Rx.swift │ │ └── URLSession+Rx.swift │ │ ├── Runtime │ │ ├── _RX.m │ │ ├── _RXDelegateProxy.m │ │ ├── _RXKVOObserver.m │ │ ├── _RXObjCRuntime.m │ │ └── include │ │ │ ├── RxCocoaRuntime.h │ │ │ ├── _RX.h │ │ │ ├── _RXDelegateProxy.h │ │ │ ├── _RXKVOObserver.h │ │ │ └── _RXObjCRuntime.h │ │ ├── RxCocoa.h │ │ ├── RxCocoa.swift │ │ ├── Traits │ │ ├── ControlEvent.swift │ │ ├── ControlProperty.swift │ │ ├── Driver │ │ │ ├── BehaviorRelay+Driver.swift │ │ │ ├── ControlEvent+Driver.swift │ │ │ ├── ControlProperty+Driver.swift │ │ │ ├── Driver+Subscription.swift │ │ │ ├── Driver.swift │ │ │ └── ObservableConvertibleType+Driver.swift │ │ ├── SharedSequence │ │ │ ├── ObservableConvertibleType+SharedSequence.swift │ │ │ ├── SchedulerType+SharedSequence.swift │ │ │ ├── SharedSequence+Operators+arity.swift │ │ │ ├── SharedSequence+Operators.swift │ │ │ └── SharedSequence.swift │ │ └── Signal │ │ │ ├── ControlEvent+Signal.swift │ │ │ ├── ObservableConvertibleType+Signal.swift │ │ │ ├── PublishRelay+Signal.swift │ │ │ ├── Signal+Subscription.swift │ │ │ └── Signal.swift │ │ ├── iOS │ │ ├── DataSources │ │ │ ├── RxCollectionViewReactiveArrayDataSource.swift │ │ │ ├── RxPickerViewAdapter.swift │ │ │ └── RxTableViewReactiveArrayDataSource.swift │ │ ├── Events │ │ │ └── ItemEvents.swift │ │ ├── NSTextStorage+Rx.swift │ │ ├── Protocols │ │ │ ├── RxCollectionViewDataSourceType.swift │ │ │ ├── RxPickerViewDataSourceType.swift │ │ │ └── RxTableViewDataSourceType.swift │ │ ├── Proxies │ │ │ ├── RxCollectionViewDataSourcePrefetchingProxy.swift │ │ │ ├── RxCollectionViewDataSourceProxy.swift │ │ │ ├── RxCollectionViewDelegateProxy.swift │ │ │ ├── RxNavigationControllerDelegateProxy.swift │ │ │ ├── RxPickerViewDataSourceProxy.swift │ │ │ ├── RxPickerViewDelegateProxy.swift │ │ │ ├── RxScrollViewDelegateProxy.swift │ │ │ ├── RxSearchBarDelegateProxy.swift │ │ │ ├── RxSearchControllerDelegateProxy.swift │ │ │ ├── RxTabBarControllerDelegateProxy.swift │ │ │ ├── RxTabBarDelegateProxy.swift │ │ │ ├── RxTableViewDataSourcePrefetchingProxy.swift │ │ │ ├── RxTableViewDataSourceProxy.swift │ │ │ ├── RxTableViewDelegateProxy.swift │ │ │ ├── RxTextStorageDelegateProxy.swift │ │ │ ├── RxTextViewDelegateProxy.swift │ │ │ └── RxWKNavigationDelegateProxy.swift │ │ ├── UIActivityIndicatorView+Rx.swift │ │ ├── UIAlertAction+Rx.swift │ │ ├── UIApplication+Rx.swift │ │ ├── UIBarButtonItem+Rx.swift │ │ ├── UIButton+Rx.swift │ │ ├── UICollectionView+Rx.swift │ │ ├── UIControl+Rx.swift │ │ ├── UIDatePicker+Rx.swift │ │ ├── UIGestureRecognizer+Rx.swift │ │ ├── UIImageView+Rx.swift │ │ ├── UILabel+Rx.swift │ │ ├── UINavigationController+Rx.swift │ │ ├── UINavigationItem+Rx.swift │ │ ├── UIPageControl+Rx.swift │ │ ├── UIPickerView+Rx.swift │ │ ├── UIProgressView+Rx.swift │ │ ├── UIRefreshControl+Rx.swift │ │ ├── UIScrollView+Rx.swift │ │ ├── UISearchBar+Rx.swift │ │ ├── UISearchController+Rx.swift │ │ ├── UISegmentedControl+Rx.swift │ │ ├── UISlider+Rx.swift │ │ ├── UIStepper+Rx.swift │ │ ├── UISwitch+Rx.swift │ │ ├── UITabBar+Rx.swift │ │ ├── UITabBarController+Rx.swift │ │ ├── UITabBarItem+Rx.swift │ │ ├── UITableView+Rx.swift │ │ ├── UITextField+Rx.swift │ │ ├── UITextView+Rx.swift │ │ ├── UIView+Rx.swift │ │ ├── UIViewController+Rx.swift │ │ └── WKWebView+Rx.swift │ │ └── macOS │ │ ├── NSButton+Rx.swift │ │ ├── NSControl+Rx.swift │ │ ├── NSImageView+Rx.swift │ │ ├── NSSlider+Rx.swift │ │ ├── NSTextField+Rx.swift │ │ ├── NSTextView+Rx.swift │ │ └── NSView+Rx.swift ├── RxRelay │ ├── LICENSE.md │ ├── README.md │ └── RxRelay │ │ ├── BehaviorRelay.swift │ │ ├── Observable+Bind.swift │ │ ├── PublishRelay.swift │ │ └── Utils.swift ├── RxSwift │ ├── LICENSE.md │ ├── Platform │ │ ├── AtomicInt.swift │ │ ├── DataStructures │ │ │ ├── Bag.swift │ │ │ ├── InfiniteSequence.swift │ │ │ ├── PriorityQueue.swift │ │ │ └── Queue.swift │ │ ├── DispatchQueue+Extensions.swift │ │ ├── Platform.Darwin.swift │ │ ├── Platform.Linux.swift │ │ └── RecursiveLock.swift │ ├── README.md │ └── RxSwift │ │ ├── AnyObserver.swift │ │ ├── Cancelable.swift │ │ ├── Concurrency │ │ ├── AsyncLock.swift │ │ ├── Lock.swift │ │ ├── LockOwnerType.swift │ │ ├── SynchronizedDisposeType.swift │ │ ├── SynchronizedOnType.swift │ │ └── SynchronizedUnsubscribeType.swift │ │ ├── ConnectableObservableType.swift │ │ ├── Date+Dispatch.swift │ │ ├── Deprecated.swift │ │ ├── Disposable.swift │ │ ├── Disposables │ │ ├── AnonymousDisposable.swift │ │ ├── BinaryDisposable.swift │ │ ├── BooleanDisposable.swift │ │ ├── CompositeDisposable.swift │ │ ├── Disposables.swift │ │ ├── DisposeBag.swift │ │ ├── DisposeBase.swift │ │ ├── NopDisposable.swift │ │ ├── RefCountDisposable.swift │ │ ├── ScheduledDisposable.swift │ │ ├── SerialDisposable.swift │ │ ├── SingleAssignmentDisposable.swift │ │ └── SubscriptionDisposable.swift │ │ ├── Errors.swift │ │ ├── Event.swift │ │ ├── Extensions │ │ └── Bag+Rx.swift │ │ ├── GroupedObservable.swift │ │ ├── ImmediateSchedulerType.swift │ │ ├── Observable.swift │ │ ├── ObservableConvertibleType.swift │ │ ├── ObservableType+Extensions.swift │ │ ├── ObservableType.swift │ │ ├── Observables │ │ ├── AddRef.swift │ │ ├── Amb.swift │ │ ├── AsMaybe.swift │ │ ├── AsSingle.swift │ │ ├── Buffer.swift │ │ ├── Catch.swift │ │ ├── CombineLatest+Collection.swift │ │ ├── CombineLatest+arity.swift │ │ ├── CombineLatest.swift │ │ ├── CompactMap.swift │ │ ├── Concat.swift │ │ ├── Create.swift │ │ ├── Debounce.swift │ │ ├── Debug.swift │ │ ├── DefaultIfEmpty.swift │ │ ├── Deferred.swift │ │ ├── Delay.swift │ │ ├── DelaySubscription.swift │ │ ├── Dematerialize.swift │ │ ├── DistinctUntilChanged.swift │ │ ├── Do.swift │ │ ├── ElementAt.swift │ │ ├── Empty.swift │ │ ├── Enumerated.swift │ │ ├── Error.swift │ │ ├── Filter.swift │ │ ├── First.swift │ │ ├── Generate.swift │ │ ├── GroupBy.swift │ │ ├── Just.swift │ │ ├── Map.swift │ │ ├── Materialize.swift │ │ ├── Merge.swift │ │ ├── Multicast.swift │ │ ├── Never.swift │ │ ├── ObserveOn.swift │ │ ├── Optional.swift │ │ ├── Producer.swift │ │ ├── Range.swift │ │ ├── Reduce.swift │ │ ├── Repeat.swift │ │ ├── RetryWhen.swift │ │ ├── Sample.swift │ │ ├── Scan.swift │ │ ├── Sequence.swift │ │ ├── ShareReplayScope.swift │ │ ├── SingleAsync.swift │ │ ├── Sink.swift │ │ ├── Skip.swift │ │ ├── SkipUntil.swift │ │ ├── SkipWhile.swift │ │ ├── StartWith.swift │ │ ├── SubscribeOn.swift │ │ ├── Switch.swift │ │ ├── SwitchIfEmpty.swift │ │ ├── Take.swift │ │ ├── TakeLast.swift │ │ ├── TakeUntil.swift │ │ ├── TakeWhile.swift │ │ ├── Throttle.swift │ │ ├── Timeout.swift │ │ ├── Timer.swift │ │ ├── ToArray.swift │ │ ├── Using.swift │ │ ├── Window.swift │ │ ├── WithLatestFrom.swift │ │ ├── Zip+Collection.swift │ │ ├── Zip+arity.swift │ │ └── Zip.swift │ │ ├── ObserverType.swift │ │ ├── Observers │ │ ├── AnonymousObserver.swift │ │ ├── ObserverBase.swift │ │ └── TailRecursiveSink.swift │ │ ├── Reactive.swift │ │ ├── Rx.swift │ │ ├── RxMutableBox.swift │ │ ├── SchedulerType.swift │ │ ├── Schedulers │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ ├── ConcurrentMainScheduler.swift │ │ ├── CurrentThreadScheduler.swift │ │ ├── HistoricalScheduler.swift │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ ├── Internal │ │ │ ├── DispatchQueueConfiguration.swift │ │ │ ├── InvocableScheduledItem.swift │ │ │ ├── InvocableType.swift │ │ │ ├── ScheduledItem.swift │ │ │ └── ScheduledItemType.swift │ │ ├── MainScheduler.swift │ │ ├── OperationQueueScheduler.swift │ │ ├── RecursiveScheduler.swift │ │ ├── SchedulerServices+Emulation.swift │ │ ├── SerialDispatchQueueScheduler.swift │ │ ├── VirtualTimeConverterType.swift │ │ └── VirtualTimeScheduler.swift │ │ ├── Subjects │ │ ├── AsyncSubject.swift │ │ ├── BehaviorSubject.swift │ │ ├── PublishSubject.swift │ │ ├── ReplaySubject.swift │ │ └── SubjectType.swift │ │ ├── SwiftSupport │ │ └── SwiftSupport.swift │ │ └── Traits │ │ ├── Completable+AndThen.swift │ │ ├── Completable.swift │ │ ├── Maybe.swift │ │ ├── ObservableType+PrimitiveSequence.swift │ │ ├── PrimitiveSequence+Zip+arity.swift │ │ ├── PrimitiveSequence.swift │ │ └── Single.swift ├── ScreenType │ ├── LICENSE │ ├── README.md │ └── ScreenType │ │ └── Classes │ │ └── ScreenType.swift ├── SnapKit │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintConfig.swift │ │ ├── ConstraintConstantTarget.swift │ │ ├── ConstraintDSL.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintDirectionalInsetTarget.swift │ │ ├── ConstraintDirectionalInsets.swift │ │ ├── ConstraintInsetTarget.swift │ │ ├── ConstraintInsets.swift │ │ ├── ConstraintItem.swift │ │ ├── ConstraintLayoutGuide+Extensions.swift │ │ ├── ConstraintLayoutGuide.swift │ │ ├── ConstraintLayoutGuideDSL.swift │ │ ├── ConstraintLayoutSupport.swift │ │ ├── ConstraintLayoutSupportDSL.swift │ │ ├── ConstraintMaker.swift │ │ ├── ConstraintMakerEditable.swift │ │ ├── ConstraintMakerExtendable.swift │ │ ├── ConstraintMakerFinalizable.swift │ │ ├── ConstraintMakerPriortizable.swift │ │ ├── ConstraintMakerRelatable.swift │ │ ├── ConstraintMultiplierTarget.swift │ │ ├── ConstraintOffsetTarget.swift │ │ ├── ConstraintPriority.swift │ │ ├── ConstraintPriorityTarget.swift │ │ ├── ConstraintRelatableTarget.swift │ │ ├── ConstraintRelation.swift │ │ ├── ConstraintView+Extensions.swift │ │ ├── ConstraintView.swift │ │ ├── ConstraintViewDSL.swift │ │ ├── Debugging.swift │ │ ├── LayoutConstraint.swift │ │ ├── LayoutConstraintItem.swift │ │ ├── Typealiases.swift │ │ └── UILayoutSupport+Extensions.swift ├── Target Support Files │ ├── HandyJSON │ │ ├── HandyJSON-dummy.m │ │ ├── HandyJSON-prefix.pch │ │ ├── HandyJSON-umbrella.h │ │ ├── HandyJSON.debug.xcconfig │ │ ├── HandyJSON.modulemap │ │ └── HandyJSON.release.xcconfig │ ├── Pods-KanColleCommand │ │ ├── Pods-KanColleCommand-acknowledgements.markdown │ │ ├── Pods-KanColleCommand-acknowledgements.plist │ │ ├── Pods-KanColleCommand-dummy.m │ │ ├── Pods-KanColleCommand-umbrella.h │ │ ├── Pods-KanColleCommand.debug.xcconfig │ │ ├── Pods-KanColleCommand.modulemap │ │ └── Pods-KanColleCommand.release.xcconfig │ ├── ReachabilitySwift │ │ ├── ReachabilitySwift-dummy.m │ │ ├── ReachabilitySwift-prefix.pch │ │ ├── ReachabilitySwift-umbrella.h │ │ ├── ReachabilitySwift.debug.xcconfig │ │ ├── ReachabilitySwift.modulemap │ │ └── ReachabilitySwift.release.xcconfig │ ├── RxCocoa │ │ ├── RxCocoa-dummy.m │ │ ├── RxCocoa-prefix.pch │ │ ├── RxCocoa-umbrella.h │ │ ├── RxCocoa.debug.xcconfig │ │ ├── RxCocoa.modulemap │ │ └── RxCocoa.release.xcconfig │ ├── RxRelay │ │ ├── RxRelay-dummy.m │ │ ├── RxRelay-prefix.pch │ │ ├── RxRelay-umbrella.h │ │ ├── RxRelay.debug.xcconfig │ │ ├── RxRelay.modulemap │ │ └── RxRelay.release.xcconfig │ ├── RxSwift │ │ ├── RxSwift-dummy.m │ │ ├── RxSwift-prefix.pch │ │ ├── RxSwift-umbrella.h │ │ ├── RxSwift.debug.xcconfig │ │ ├── RxSwift.modulemap │ │ └── RxSwift.release.xcconfig │ ├── ScreenType │ │ ├── ScreenType-dummy.m │ │ ├── ScreenType-prefix.pch │ │ ├── ScreenType-umbrella.h │ │ ├── ScreenType.debug.xcconfig │ │ ├── ScreenType.modulemap │ │ └── ScreenType.release.xcconfig │ ├── SnapKit │ │ ├── SnapKit-dummy.m │ │ ├── SnapKit-prefix.pch │ │ ├── SnapKit-umbrella.h │ │ ├── SnapKit.debug.xcconfig │ │ ├── SnapKit.modulemap │ │ └── SnapKit.release.xcconfig │ └── Toaster │ │ ├── Toaster-dummy.m │ │ ├── Toaster-prefix.pch │ │ ├── Toaster-umbrella.h │ │ ├── Toaster.debug.xcconfig │ │ ├── Toaster.modulemap │ │ └── Toaster.release.xcconfig └── Toaster │ ├── LICENSE │ ├── README.md │ └── Sources │ ├── Toast.swift │ ├── ToastCenter.swift │ ├── ToastView.swift │ ├── ToastWindow.swift │ └── Toaster.h └── README.md /.github/ISSUE_TEMPLATE/-----.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/.github/ISSUE_TEMPLATE/-----.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug--.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/.github/ISSUE_TEMPLATE/bug--.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeIcon/AlternateIcon/Set Alternative Icon file names to [AlternateIcon(Size)@(Times)]: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /KanColleCommand.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KanColleCommand.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KanColleCommand.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /KanColleCommand.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /KanColleCommand.xcodeproj/project.xcworkspace/xcuserdata/mingchang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcodeproj/project.xcworkspace/xcuserdata/mingchang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /KanColleCommand.xcodeproj/project.xcworkspace/xcuserdata/mingchang.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcodeproj/project.xcworkspace/xcuserdata/mingchang.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /KanColleCommand.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /KanColleCommand.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KanColleCommand.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /KanColleCommand.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /KanColleCommand.xcworkspace/xcuserdata/mingchang.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcworkspace/xcuserdata/mingchang.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /KanColleCommand.xcworkspace/xcuserdata/mingchang.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcworkspace/xcuserdata/mingchang.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /KanColleCommand.xcworkspace/xcuserdata/mingchang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand.xcworkspace/xcuserdata/mingchang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /KanColleCommand/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/AppDelegate.swift -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /KanColleCommand/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /KanColleCommand/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KanColleCommand/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KanColleCommand/Bridge-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Bridge-Header.h -------------------------------------------------------------------------------- /KanColleCommand/Files.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Files.bundle/Root.plist -------------------------------------------------------------------------------- /KanColleCommand/Files.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Files.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /KanColleCommand/Files.bundle/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Files.bundle/map.json -------------------------------------------------------------------------------- /KanColleCommand/Images/badly_damage_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/badly_damage_warning.png -------------------------------------------------------------------------------- /KanColleCommand/Images/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/reload.png -------------------------------------------------------------------------------- /KanColleCommand/Images/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/setting.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_0.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_1.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_10.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_11.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_12.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_13.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_14.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_15.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_16.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_17.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_18.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_19.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_2.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_20.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_21.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_22.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_23.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_24.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_25.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_26.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_27.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_28.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_29.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_3.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_30.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_31.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_32.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_33.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_34.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_35.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_36.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_37.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_38.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_39.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_4.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_40.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_41.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_42.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_43.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_44.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_45.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_46.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_47.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_5.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_6.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_7.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_8.png -------------------------------------------------------------------------------- /KanColleCommand/Images/slot_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/slot_9.png -------------------------------------------------------------------------------- /KanColleCommand/Images/tag_repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Images/tag_repair.png -------------------------------------------------------------------------------- /KanColleCommand/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Info.plist -------------------------------------------------------------------------------- /KanColleCommand/KanColleCommand.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/KanColleCommand.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /KanColleCommand/KanColleCommand.xcdatamodeld/KanColleCommand.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/KanColleCommand.xcdatamodeld/KanColleCommand.xcdatamodel/contents -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleAir.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleAir.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleCombined.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleCombined.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleCombinedAir.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleCombinedAir.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleCombinedEach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleCombinedEach.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleCombinedEc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleCombinedEc.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleCombinedNight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleCombinedNight.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleCombinedResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleCombinedResult.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleCombinedWater.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleCombinedWater.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleCombinedWaterEach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleCombinedWaterEach.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleDaytime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleDaytime.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleNext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleNext.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleNight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleNight.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleNightSp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleNightSp.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleResult.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/BattleStart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/BattleStart.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/Change.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/Change.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/Charge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/Charge.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/CreateItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/CreateItem.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/CreateShip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/CreateShip.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/CreateShipSpeedChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/CreateShipSpeedChange.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/Deck.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/Deck.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/DestroyItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/DestroyItem.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/DestroyShip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/DestroyShip.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/GetShip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/GetShip.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/JsonBean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/JsonBean.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/KDock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/KDock.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/MapSpot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/MapSpot.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/Material.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/Material.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/MissionResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/MissionResult.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/NDock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/NDock.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/NyukyoStart.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/NyukyoStart.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/Port.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/Port.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/PowerUp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/PowerUp.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/Practice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/Practice.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/PracticeNight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/PracticeNight.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/PracticeResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/PracticeResult.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/PresetSelect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/PresetSelect.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/QuestClear.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/QuestClear.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/QuestList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/QuestList.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/RemodelSlot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/RemodelSlot.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/RequireInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/RequireInfo.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/Ship3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/Ship3.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/SlotDeprive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/SlotDeprive.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/SlotExchangeIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/SlotExchangeIndex.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/SlotItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/SlotItem.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/SpeedChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/SpeedChange.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Api/Start.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Api/Start.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Entity/Build.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Entity/Build.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Entity/Expedition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Entity/Expedition.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Entity/Quest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Entity/Quest.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Entity/Repair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Entity/Repair.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Entity/Ship.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Entity/Ship.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Entity/Slot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Entity/Slot.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Manager/Battle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Manager/Battle.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Manager/Dock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Manager/Dock.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Manager/Fleet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Manager/Fleet.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Manager/Mission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Manager/Mission.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Manager/Raw.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Manager/Raw.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Manager/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Manager/Resource.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Manager/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Manager/User.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Oyodo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Oyodo.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Util/BattleUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Util/BattleUtils.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Util/Const.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Util/Const.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Util/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Util/Extensions.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Util/FleetUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Util/FleetUtils.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Util/MapSpotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Util/MapSpotHelper.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Util/MissionUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Util/MissionUtils.swift -------------------------------------------------------------------------------- /KanColleCommand/Oyodo/Util/SlotType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Oyodo/Util/SlotType.swift -------------------------------------------------------------------------------- /KanColleCommand/Page/AppearanceVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Page/AppearanceVC.swift -------------------------------------------------------------------------------- /KanColleCommand/Page/BattleVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Page/BattleVC.swift -------------------------------------------------------------------------------- /KanColleCommand/Page/FleetVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Page/FleetVC.swift -------------------------------------------------------------------------------- /KanColleCommand/Page/MissionVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Page/MissionVC.swift -------------------------------------------------------------------------------- /KanColleCommand/Page/SettingVC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Page/SettingVC.swift -------------------------------------------------------------------------------- /KanColleCommand/Resources/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Resources/bridge.js -------------------------------------------------------------------------------- /KanColleCommand/Resources/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Resources/map.json -------------------------------------------------------------------------------- /KanColleCommand/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /KanColleCommand/Util/Setting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Util/Setting.swift -------------------------------------------------------------------------------- /KanColleCommand/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/ViewController.swift -------------------------------------------------------------------------------- /KanColleCommand/WebView/CacheManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/WebView/CacheManager.swift -------------------------------------------------------------------------------- /KanColleCommand/WebView/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/WebView/Constants.swift -------------------------------------------------------------------------------- /KanColleCommand/WebView/KCWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/WebView/KCWebView.swift -------------------------------------------------------------------------------- /KanColleCommand/WebView/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/WebView/Utils.swift -------------------------------------------------------------------------------- /KanColleCommand/WebView/WebHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/WebView/WebHandler.swift -------------------------------------------------------------------------------- /KanColleCommand/Widget/Drawer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Widget/Drawer.swift -------------------------------------------------------------------------------- /KanColleCommand/Widget/GripView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Widget/GripView.swift -------------------------------------------------------------------------------- /KanColleCommand/Widget/HpBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/Widget/HpBar.swift -------------------------------------------------------------------------------- /KanColleCommand/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/KanColleCommand/map.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/LICENSE -------------------------------------------------------------------------------- /OptimizationProfiles/KanColleCommand.profdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/OptimizationProfiles/KanColleCommand.profdata -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Podfile.bak -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/HandyJSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/LICENSE -------------------------------------------------------------------------------- /Pods/HandyJSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/README.md -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/AnyExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/AnyExtensions.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/BuiltInBasicType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/BuiltInBasicType.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/BuiltInBridgeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/BuiltInBridgeType.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/CBridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/CBridge.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/Configuration.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/ContextDescriptorType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/ContextDescriptorType.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/CustomDateFormatTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/CustomDateFormatTransform.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/DataTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/DataTransform.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/DateFormatterTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/DateFormatterTransform.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/DateTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/DateTransform.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/Deserializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/Deserializer.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/EnumTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/EnumTransform.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/EnumType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/EnumType.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/Export.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/Export.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/ExtendCustomBasicType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/ExtendCustomBasicType.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/ExtendCustomModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/ExtendCustomModelType.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/FieldDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/FieldDescriptor.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/HandyJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/HandyJSON.h -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/HelpingMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/HelpingMapper.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/HexColorTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/HexColorTransform.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/ISO8601DateTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/ISO8601DateTransform.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/Logger.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/MangledName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/MangledName.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/Measuable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/Measuable.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/Metadata.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/NSDecimalNumberTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/NSDecimalNumberTransform.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/OtherExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/OtherExtension.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/PointerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/PointerType.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/Properties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/Properties.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/PropertyInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/PropertyInfo.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/ReflectionHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/ReflectionHelper.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/Serializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/Serializer.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/TransformOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/TransformOf.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/TransformType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/TransformType.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/Transformable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/Transformable.swift -------------------------------------------------------------------------------- /Pods/HandyJSON/Source/URLTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/HandyJSON/Source/URLTransform.swift -------------------------------------------------------------------------------- /Pods/Headers/Private/HandyJSON/HandyJSON.h: -------------------------------------------------------------------------------- 1 | ../../../HandyJSON/Source/HandyJSON.h -------------------------------------------------------------------------------- /Pods/Headers/Private/RxCocoa/RxCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/RxCocoa.h -------------------------------------------------------------------------------- /Pods/Headers/Private/RxCocoa/RxCocoaRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/RxCocoa/_RX.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/Runtime/include/_RX.h -------------------------------------------------------------------------------- /Pods/Headers/Private/RxCocoa/_RXDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/Runtime/include/_RXDelegateProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/RxCocoa/_RXKVOObserver.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/Runtime/include/_RXKVOObserver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/RxCocoa/_RXObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/Runtime/include/_RXObjCRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Toaster/Toaster.h: -------------------------------------------------------------------------------- 1 | ../../../Toaster/Sources/Toaster.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HandyJSON/HandyJSON-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/HandyJSON/HandyJSON-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HandyJSON/HandyJSON.h: -------------------------------------------------------------------------------- 1 | ../../../HandyJSON/Source/HandyJSON.h -------------------------------------------------------------------------------- /Pods/Headers/Public/HandyJSON/HandyJSON.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/HandyJSON/HandyJSON.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/Reachability/ReachabilitySwift-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/ReachabilitySwift/ReachabilitySwift-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Reachability/ReachabilitySwift.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/ReachabilitySwift/ReachabilitySwift.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/RxCocoa/RxCocoa-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/RxCocoa/RxCocoa-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RxCocoa/RxCocoa.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/RxCocoa.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RxCocoa/RxCocoa.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/RxCocoa/RxCocoa.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/RxCocoa/RxCocoaRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RxCocoa/_RX.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/Runtime/include/_RX.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RxCocoa/_RXDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/Runtime/include/_RXDelegateProxy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RxCocoa/_RXKVOObserver.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/Runtime/include/_RXKVOObserver.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RxCocoa/_RXObjCRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../RxCocoa/RxCocoa/Runtime/include/_RXObjCRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RxRelay/RxRelay-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/RxRelay/RxRelay-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RxRelay/RxRelay.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/RxRelay/RxRelay.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/RxSwift/RxSwift-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/RxSwift/RxSwift-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/RxSwift/RxSwift.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/RxSwift/RxSwift.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/ScreenType/ScreenType-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/ScreenType/ScreenType-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/ScreenType/ScreenType.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/ScreenType/ScreenType.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/SnapKit/SnapKit-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SnapKit/SnapKit-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SnapKit/SnapKit.modulemap -------------------------------------------------------------------------------- /Pods/Headers/Public/Toaster/Toaster-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Toaster/Toaster-umbrella.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Toaster/Toaster.h: -------------------------------------------------------------------------------- 1 | ../../../Toaster/Sources/Toaster.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Toaster/Toaster.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Toaster/Toaster.modulemap -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/HandyJSON.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/HandyJSON.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/Pods-KanColleCommand.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/Pods-KanColleCommand.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/ReachabilitySwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/ReachabilitySwift.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/RxCocoa.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/RxCocoa.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/RxRelay.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/RxRelay.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/RxSwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/RxSwift.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/ScreenType.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/ScreenType.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/SnapKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/SnapKit.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/Toaster.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/Toaster.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Pods.xcodeproj/xcuserdata/mingchang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/ReachabilitySwift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/ReachabilitySwift/LICENSE -------------------------------------------------------------------------------- /Pods/ReachabilitySwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/ReachabilitySwift/README.md -------------------------------------------------------------------------------- /Pods/ReachabilitySwift/Sources/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/ReachabilitySwift/Sources/Reachability.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DataStructures/InfiniteSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/Platform/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DataStructures/PriorityQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/Platform/DataStructures/PriorityQueue.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/README.md -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/Binder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/Binder.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/ControlTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/ControlTarget.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/DelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/DelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/DelegateProxyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/DelegateProxyType.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/KeyPathBinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/KeyPathBinder.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/NSLayoutConstraint+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/NSLayoutConstraint+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/Observable+Bind.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/RxTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/RxTarget.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/SectionedViewDataSourceType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/SectionedViewDataSourceType.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Common/TextInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Common/TextInput.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Deprecated.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable+Swift.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Foundation/KVORepresentable.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Foundation/Logging.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Foundation/NSObject+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/NotificationCenter+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Foundation/NotificationCenter+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Foundation/URLSession+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Foundation/URLSession+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RX.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RXDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RXDelegateProxy.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RXKVOObserver.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Runtime/_RXObjCRuntime.m -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/RxCocoaRuntime.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/_RX.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/_RXDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/_RXDelegateProxy.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/_RXKVOObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/_RXKVOObserver.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Runtime/include/_RXObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Runtime/include/_RXObjCRuntime.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/RxCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/RxCocoa.h -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/RxCocoa.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/RxCocoa.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/ControlEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/ControlEvent.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/ControlProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/ControlProperty.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Driver/ControlEvent+Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Driver/ControlEvent+Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Driver/ControlProperty+Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Driver/ControlProperty+Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Driver/Driver+Subscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Driver/Driver+Subscription.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Driver/Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Driver/Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/SharedSequence/SharedSequence.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Signal/ControlEvent+Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Signal/ControlEvent+Signal.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Signal/PublishRelay+Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Signal/PublishRelay+Signal.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Signal/Signal+Subscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Signal/Signal+Subscription.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/Traits/Signal/Signal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/Traits/Signal/Signal.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Events/ItemEvents.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/NSTextStorage+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/NSTextStorage+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIActivityIndicatorView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIActivityIndicatorView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIAlertAction+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIAlertAction+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIApplication+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIApplication+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIBarButtonItem+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIBarButtonItem+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIButton+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UICollectionView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UICollectionView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIDatePicker+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIGestureRecognizer+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIGestureRecognizer+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIImageView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIImageView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UILabel+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UILabel+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UINavigationController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UINavigationController+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UINavigationItem+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UINavigationItem+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIPageControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIPageControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIPickerView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIProgressView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIProgressView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIRefreshControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIRefreshControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIScrollView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISearchBar+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISearchController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISearchController+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISegmentedControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISegmentedControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISlider+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIStepper+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UISwitch+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITabBar+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITabBarController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITabBarController+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITabBarItem+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITabBarItem+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITableView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITextField+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UITextView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/UIViewController+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/UIViewController+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/iOS/WKWebView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/iOS/WKWebView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSButton+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSButton+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSControl+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSControl+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSImageView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSImageView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSSlider+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSSlider+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSTextField+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSTextField+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSTextView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSTextView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxCocoa/RxCocoa/macOS/NSView+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxCocoa/RxCocoa/macOS/NSView+Rx.swift -------------------------------------------------------------------------------- /Pods/RxRelay/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxRelay/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxRelay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxRelay/README.md -------------------------------------------------------------------------------- /Pods/RxRelay/RxRelay/BehaviorRelay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxRelay/RxRelay/BehaviorRelay.swift -------------------------------------------------------------------------------- /Pods/RxRelay/RxRelay/Observable+Bind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxRelay/RxRelay/Observable+Bind.swift -------------------------------------------------------------------------------- /Pods/RxRelay/RxRelay/PublishRelay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxRelay/RxRelay/PublishRelay.swift -------------------------------------------------------------------------------- /Pods/RxRelay/RxRelay/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxRelay/RxRelay/Utils.swift -------------------------------------------------------------------------------- /Pods/RxSwift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/LICENSE.md -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/AtomicInt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/Platform/AtomicInt.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Pods/RxSwift/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/README.md -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ConnectableObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/ConnectableObservableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Date+Dispatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Date+Dispatch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Deprecated.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/Disposables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/Disposables.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Errors.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Event.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/GroupedObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/GroupedObservable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableConvertibleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableType+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/AddRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/AddRef.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Amb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Amb.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/AsMaybe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/AsSingle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/AsSingle.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Buffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Buffer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Catch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Catch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/CombineLatest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/CompactMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/CompactMap.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Concat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Concat.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Create.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Create.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Debounce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Debounce.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Debug.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Deferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Deferred.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Delay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Delay.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Dematerialize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Do.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Do.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ElementAt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/ElementAt.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Empty.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Enumerated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Enumerated.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Error.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Filter.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/First.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/First.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Generate.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/GroupBy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/GroupBy.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Just.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Just.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Map.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Materialize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Materialize.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Merge.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Multicast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Multicast.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Never.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Never.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ObserveOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Optional.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Producer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Producer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Range.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Reduce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Reduce.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Repeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Repeat.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/RetryWhen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Sample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Sample.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Scan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Scan.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Sequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SingleAsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Sink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Sink.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Skip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Skip.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SkipUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SkipWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/StartWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/StartWith.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Switch.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Take.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/TakeLast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/TakeLast.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/TakeUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/TakeWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Throttle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Throttle.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Timeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Timeout.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Timer.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/ToArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/ToArray.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Using.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Using.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Window.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Zip+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observables/Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observables/Zip.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/ObserverBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Reactive.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Rx.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Subjects/SubjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/Completable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Traits/Completable.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/Maybe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Traits/Maybe.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift -------------------------------------------------------------------------------- /Pods/RxSwift/RxSwift/Traits/Single.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/RxSwift/RxSwift/Traits/Single.swift -------------------------------------------------------------------------------- /Pods/ScreenType/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/ScreenType/LICENSE -------------------------------------------------------------------------------- /Pods/ScreenType/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/ScreenType/README.md -------------------------------------------------------------------------------- /Pods/ScreenType/ScreenType/Classes/ScreenType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/ScreenType/ScreenType/Classes/ScreenType.swift -------------------------------------------------------------------------------- /Pods/SnapKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/LICENSE -------------------------------------------------------------------------------- /Pods/SnapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/README.md -------------------------------------------------------------------------------- /Pods/SnapKit/Source/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/Constraint.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintAttributes.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintConfig.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintConstantTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintConstantTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintDescription.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintDirectionalInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintDirectionalInsetTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintDirectionalInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintDirectionalInsets.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintInsetTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintInsets.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintItem.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutGuide+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintLayoutGuide+Extensions.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintLayoutGuide.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintLayoutGuideDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintLayoutSupport.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintLayoutSupportDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintLayoutSupportDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintMaker.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintMakerEditable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerExtendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintMakerExtendable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerFinalizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintMakerFinalizable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerPriortizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintMakerPriortizable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMakerRelatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintMakerRelatable.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintMultiplierTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintMultiplierTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintOffsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintOffsetTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintPriority.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintPriorityTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintPriorityTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintRelatableTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintRelatableTarget.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintRelation.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintView+Extensions.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintView.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/ConstraintViewDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/ConstraintViewDSL.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/Debugging.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/LayoutConstraint.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/LayoutConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/LayoutConstraintItem.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/Typealiases.swift -------------------------------------------------------------------------------- /Pods/SnapKit/Source/UILayoutSupport+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/SnapKit/Source/UILayoutSupport+Extensions.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/HandyJSON/HandyJSON-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/HandyJSON/HandyJSON-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/HandyJSON/HandyJSON-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/HandyJSON/HandyJSON-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/HandyJSON/HandyJSON-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/HandyJSON/HandyJSON-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/HandyJSON/HandyJSON.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/HandyJSON/HandyJSON.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/HandyJSON/HandyJSON.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/HandyJSON/HandyJSON.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/HandyJSON/HandyJSON.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/HandyJSON/HandyJSON.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Pods-KanColleCommand/Pods-KanColleCommand.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ReachabilitySwift/ReachabilitySwift.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/RxCocoa/RxCocoa.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxCocoa/RxCocoa.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RxRelay/RxRelay-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxRelay/RxRelay-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RxRelay/RxRelay-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxRelay/RxRelay-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/RxRelay/RxRelay-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxRelay/RxRelay-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/RxRelay/RxRelay.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxRelay/RxRelay.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RxRelay/RxRelay.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxRelay/RxRelay.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/RxRelay/RxRelay.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxRelay/RxRelay.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxSwift/RxSwift-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxSwift/RxSwift-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxSwift/RxSwift-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxSwift/RxSwift.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxSwift/RxSwift.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/RxSwift/RxSwift.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/RxSwift/RxSwift.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenType/ScreenType-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ScreenType/ScreenType-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenType/ScreenType-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ScreenType/ScreenType-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenType/ScreenType-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ScreenType/ScreenType-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenType/ScreenType.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ScreenType/ScreenType.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenType/ScreenType.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ScreenType/ScreenType.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/ScreenType/ScreenType.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/ScreenType/ScreenType.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/SnapKit/SnapKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/SnapKit/SnapKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/SnapKit/SnapKit-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/SnapKit/SnapKit.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/SnapKit/SnapKit.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/SnapKit/SnapKit.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Toaster/Toaster-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Toaster/Toaster-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Toaster/Toaster-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Toaster/Toaster-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Toaster/Toaster-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Toaster/Toaster-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Toaster/Toaster.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Toaster/Toaster.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Toaster/Toaster.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Toaster/Toaster.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Toaster/Toaster.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Target Support Files/Toaster/Toaster.release.xcconfig -------------------------------------------------------------------------------- /Pods/Toaster/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Toaster/LICENSE -------------------------------------------------------------------------------- /Pods/Toaster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Toaster/README.md -------------------------------------------------------------------------------- /Pods/Toaster/Sources/Toast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Toaster/Sources/Toast.swift -------------------------------------------------------------------------------- /Pods/Toaster/Sources/ToastCenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Toaster/Sources/ToastCenter.swift -------------------------------------------------------------------------------- /Pods/Toaster/Sources/ToastView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Toaster/Sources/ToastView.swift -------------------------------------------------------------------------------- /Pods/Toaster/Sources/ToastWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Toaster/Sources/ToastWindow.swift -------------------------------------------------------------------------------- /Pods/Toaster/Sources/Toaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/Pods/Toaster/Sources/Toaster.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ming900518/KC2CHT/HEAD/README.md --------------------------------------------------------------------------------