final class io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator<T, R> extends io.reactivex.internal.subscriptions.BasicIntQueueSubscription<R>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator
  super_class: io.reactivex.internal.subscriptions.BasicIntQueueSubscription
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -5082275438355852221

  final org.reactivestreams.Subscriber<? super R> downstream;
    descriptor: Lorg/reactivestreams/Subscriber;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/reactivestreams/Subscriber<-TR;>;

  final io.reactivex.functions.Function<? super java.lang.Object[], ? extends R> combiner;
    descriptor: Lio/reactivex/functions/Function;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/functions/Function<-[Ljava/lang/Object;+TR;>;

  final io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber<T>[] subscribers;
    descriptor: [Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestInnerSubscriber;
    flags: (0x0010) ACC_FINAL
    Signature: [Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestInnerSubscriber<TT;>;

  final io.reactivex.internal.queue.SpscLinkedArrayQueue<java.lang.Object> queue;
    descriptor: Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/internal/queue/SpscLinkedArrayQueue<Ljava/lang/Object;>;

  final java.lang.Object[] latest;
    descriptor: [Ljava/lang/Object;
    flags: (0x0010) ACC_FINAL

  final boolean delayErrors;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  boolean outputFused;
    descriptor: Z
    flags: (0x0000) 

  int nonEmptySources;
    descriptor: I
    flags: (0x0000) 

  int completedSources;
    descriptor: I
    flags: (0x0000) 

  volatile boolean cancelled;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

  final java.util.concurrent.atomic.AtomicLong requested;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0010) ACC_FINAL

  volatile boolean done;
    descriptor: Z
    flags: (0x0040) ACC_VOLATILE

  final java.util.concurrent.atomic.AtomicReference<java.lang.Throwable> error;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Ljava/lang/Throwable;>;

  void <init>(org.reactivestreams.Subscriber<? super R>, io.reactivex.functions.Function<? super java.lang.Object[], ? extends R>, int, int, );
    descriptor: (Lorg/reactivestreams/Subscriber;Lio/reactivex/functions/Function;IIZ)V
    flags: (0x0000) 
    Code:
      stack=7, locals=8, args_size=6
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
        start local 1 // org.reactivestreams.Subscriber actual
        start local 2 // io.reactivex.functions.Function combiner
        start local 3 // int n
        start local 4 // int bufferSize
        start local 5 // boolean delayErrors
         0: .line 178
            aload 0 /* this */
            invokespecial io.reactivex.internal.subscriptions.BasicIntQueueSubscription.<init>:()V
         1: .line 181
            aload 0 /* this */
            aload 1 /* actual */
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.downstream:Lorg/reactivestreams/Subscriber;
         2: .line 182
            aload 0 /* this */
            aload 2 /* combiner */
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.combiner:Lio/reactivex/functions/Function;
         3: .line 184
            iload 3 /* n */
            anewarray io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber
            astore 6 /* a */
        start local 6 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber[] a
         4: .line 185
            iconst_0
            istore 7 /* i */
        start local 7 // int i
         5: goto 8
         6: .line 186
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator org.reactivestreams.Subscriber io.reactivex.functions.Function int int int io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber[] int
      StackMap stack:
            aload 6 /* a */
            iload 7 /* i */
            new io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber
            dup
            aload 0 /* this */
            iload 7 /* i */
            iload 4 /* bufferSize */
            invokespecial io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber.<init>:(Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator;II)V
            aastore
         7: .line 185
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 7 /* i */
            iload 3 /* n */
            if_icmplt 6
        end local 7 // int i
         9: .line 188
            aload 0 /* this */
            aload 6 /* a */
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.subscribers:[Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestInnerSubscriber;
        10: .line 189
            aload 0 /* this */
            iload 3 /* n */
            anewarray java.lang.Object
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.latest:[Ljava/lang/Object;
        11: .line 190
            aload 0 /* this */
            new io.reactivex.internal.queue.SpscLinkedArrayQueue
            dup
            iload 4 /* bufferSize */
            invokespecial io.reactivex.internal.queue.SpscLinkedArrayQueue.<init>:(I)V
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
        12: .line 191
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:()V
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.requested:Ljava/util/concurrent/atomic/AtomicLong;
        13: .line 192
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.error:Ljava/util/concurrent/atomic/AtomicReference;
        14: .line 193
            aload 0 /* this */
            iload 5 /* delayErrors */
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.delayErrors:Z
        15: .line 194
            return
        end local 6 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber[] a
        end local 5 // boolean delayErrors
        end local 4 // int bufferSize
        end local 3 // int n
        end local 2 // io.reactivex.functions.Function combiner
        end local 1 // org.reactivestreams.Subscriber actual
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   16     0         this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            0   16     1       actual  Lorg/reactivestreams/Subscriber<-TR;>;
            0   16     2     combiner  Lio/reactivex/functions/Function<-[Ljava/lang/Object;+TR;>;
            0   16     3            n  I
            0   16     4   bufferSize  I
            0   16     5  delayErrors  Z
            4   16     6            a  [Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestInnerSubscriber;
            5    9     7            i  I
    Signature: (Lorg/reactivestreams/Subscriber<-TR;>;Lio/reactivex/functions/Function<-[Ljava/lang/Object;+TR;>;IIZ)V
    MethodParameters:
             Name  Flags
      actual       
      combiner     
      n            
      bufferSize   
      delayErrors  

  public void request(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
        start local 1 // long n
         0: .line 198
            lload 1 /* n */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.validate:(J)Z
            ifeq 3
         1: .line 199
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* n */
            invokestatic io.reactivex.internal.util.BackpressureHelper.add:(Ljava/util/concurrent/atomic/AtomicLong;J)J
            pop2
         2: .line 200
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.drain:()V
         3: .line 202
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long n
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            0    4     1     n  J
    MethodParameters:
      Name  Flags
      n     

  public void cancel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
         0: .line 206
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelled:Z
         1: .line 207
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelAll:()V
         2: .line 208
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;

  void subscribe(org.reactivestreams.Publisher<? extends T>[], );
    descriptor: ([Lorg/reactivestreams/Publisher;I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
        start local 1 // org.reactivestreams.Publisher[] sources
        start local 2 // int n
         0: .line 211
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.subscribers:[Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestInnerSubscriber;
            astore 3 /* a */
        start local 3 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber[] a
         1: .line 213
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 7
         3: .line 214
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber[] int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.done:Z
            ifne 4
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelled:Z
            ifeq 5
         4: .line 215
      StackMap locals:
      StackMap stack:
            return
         5: .line 217
      StackMap locals:
      StackMap stack:
            aload 1 /* sources */
            iload 4 /* i */
            aaload
            aload 3 /* a */
            iload 4 /* i */
            aaload
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
         6: .line 213
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 2 /* n */
            if_icmplt 3
        end local 4 // int i
         8: .line 219
            return
        end local 3 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber[] a
        end local 2 // int n
        end local 1 // org.reactivestreams.Publisher[] sources
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            0    9     1  sources  [Lorg/reactivestreams/Publisher;
            0    9     2        n  I
            1    9     3        a  [Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestInnerSubscriber;
            2    8     4        i  I
    Signature: ([Lorg/reactivestreams/Publisher<+TT;>;I)V
    MethodParameters:
         Name  Flags
      sources  
      n        

  void innerValue(int, );
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
        start local 1 // int index
        start local 2 // java.lang.Object value
         0: .line 225
            aload 0 /* this */
            dup
            astore 4
            monitorenter
         1: .line 226
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.latest:[Ljava/lang/Object;
            astore 5 /* os */
        start local 5 // java.lang.Object[] os
         2: .line 228
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.nonEmptySources:I
            istore 6 /* localNonEmptySources */
        start local 6 // int localNonEmptySources
         3: .line 230
            aload 5 /* os */
            iload 1 /* index */
            aaload
            ifnonnull 6
         4: .line 231
            iinc 6 /* localNonEmptySources */ 1
         5: .line 232
            aload 0 /* this */
            iload 6 /* localNonEmptySources */
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.nonEmptySources:I
         6: .line 235
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator int java.lang.Object top io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator java.lang.Object[] int
      StackMap stack:
            aload 5 /* os */
            iload 1 /* index */
            aload 2 /* value */
            aastore
         7: .line 237
            aload 5 /* os */
            arraylength
            iload 6 /* localNonEmptySources */
            if_icmpne 11
         8: .line 239
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.subscribers:[Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestInnerSubscriber;
            iload 1 /* index */
            aaload
            aload 5 /* os */
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.offer:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
         9: .line 241
            iconst_0
            istore 3 /* replenishInsteadOfDrain */
        start local 3 // boolean replenishInsteadOfDrain
        10: .line 242
            goto 12
        end local 3 // boolean replenishInsteadOfDrain
        11: .line 243
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 3 /* replenishInsteadOfDrain */
        end local 6 // int localNonEmptySources
        end local 5 // java.lang.Object[] os
        start local 3 // boolean replenishInsteadOfDrain
        12: .line 225
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator int java.lang.Object int io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator
      StackMap stack:
            aload 4
            monitorexit
        13: goto 16
        end local 3 // boolean replenishInsteadOfDrain
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator int java.lang.Object top io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator
      StackMap stack: java.lang.Throwable
        14: aload 4
            monitorexit
        15: athrow
        start local 3 // boolean replenishInsteadOfDrain
        16: .line 247
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator int java.lang.Object int
      StackMap stack:
            iload 3 /* replenishInsteadOfDrain */
            ifeq 19
        17: .line 248
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.subscribers:[Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestInnerSubscriber;
            iload 1 /* index */
            aaload
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber.requestOne:()V
        18: .line 249
            goto 20
        19: .line 250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.drain:()V
        20: .line 252
      StackMap locals:
      StackMap stack:
            return
        end local 3 // boolean replenishInsteadOfDrain
        end local 2 // java.lang.Object value
        end local 1 // int index
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   21     0                     this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            0   21     1                    index  I
            0   21     2                    value  TT;
           10   11     3  replenishInsteadOfDrain  Z
           12   14     3  replenishInsteadOfDrain  Z
           16   21     3  replenishInsteadOfDrain  Z
            2   12     5                       os  [Ljava/lang/Object;
            3   12     6     localNonEmptySources  I
      Exception table:
        from    to  target  type
           1    13      14  any
          14    15      14  any
    Signature: (ITT;)V
    MethodParameters:
       Name  Flags
      index  
      value  

  void innerComplete(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
        start local 1 // int index
         0: .line 255
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         1: .line 256
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.latest:[Ljava/lang/Object;
            astore 3 /* os */
        start local 3 // java.lang.Object[] os
         2: .line 258
            aload 3 /* os */
            iload 1 /* index */
            aaload
            ifnull 10
         3: .line 259
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.completedSources:I
            iconst_1
            iadd
            istore 4 /* localCompletedSources */
        start local 4 // int localCompletedSources
         4: .line 261
            iload 4 /* localCompletedSources */
            aload 3 /* os */
            arraylength
            if_icmpne 7
         5: .line 262
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.done:Z
         6: .line 263
            goto 11
         7: .line 264
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator java.lang.Object[] int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* localCompletedSources */
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.completedSources:I
         8: .line 265
            aload 2
            monitorexit
         9: return
        end local 4 // int localCompletedSources
        10: .line 268
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.done:Z
        end local 3 // java.lang.Object[] os
        11: .line 255
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
        12: goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: aload 2
            monitorexit
        14: athrow
        15: .line 271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.drain:()V
        16: .line 272
            return
        end local 1 // int index
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   17     0                   this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            0   17     1                  index  I
            2   11     3                     os  [Ljava/lang/Object;
            4   10     4  localCompletedSources  I
      Exception table:
        from    to  target  type
           1     9      13  any
          10    12      13  any
          13    14      13  any
    MethodParameters:
       Name  Flags
      index  

  void innerError(int, java.lang.Throwable);
    descriptor: (ILjava/lang/Throwable;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
        start local 1 // int index
        start local 2 // java.lang.Throwable e
         0: .line 276
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.error:Ljava/util/concurrent/atomic/AtomicReference;
            aload 2 /* e */
            invokestatic io.reactivex.internal.util.ExceptionHelper.addThrowable:(Ljava/util/concurrent/atomic/AtomicReference;Ljava/lang/Throwable;)Z
            ifeq 8
         1: .line 277
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.delayErrors:Z
            ifne 6
         2: .line 278
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelAll:()V
         3: .line 279
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.done:Z
         4: .line 280
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.drain:()V
         5: .line 281
            goto 9
         6: .line 282
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.innerComplete:(I)V
         7: .line 284
            goto 9
         8: .line 285
      StackMap locals:
      StackMap stack:
            aload 2 /* e */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         9: .line 287
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Throwable e
        end local 1 // int index
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            0   10     1  index  I
            0   10     2      e  Ljava/lang/Throwable;
    MethodParameters:
       Name  Flags
      index  
      e      

  void drainOutput();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=7, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
         0: .line 290
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.downstream:Lorg/reactivestreams/Subscriber;
            astore 1 /* a */
        start local 1 // org.reactivestreams.Subscriber a
         1: .line 291
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            astore 2 /* q */
        start local 2 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
         2: .line 293
            iconst_1
            istore 3 /* missed */
        start local 3 // int missed
         3: .line 297
      StackMap locals: org.reactivestreams.Subscriber io.reactivex.internal.queue.SpscLinkedArrayQueue int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelled:Z
            ifeq 6
         4: .line 298
            aload 2 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
         5: .line 299
            return
         6: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.error:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast java.lang.Throwable
            astore 4 /* ex */
        start local 4 // java.lang.Throwable ex
         7: .line 303
            aload 4 /* ex */
            ifnull 11
         8: .line 304
            aload 2 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
         9: .line 306
            aload 1 /* a */
            aload 4 /* ex */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        10: .line 307
            return
        11: .line 310
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.done:Z
            istore 5 /* d */
        start local 5 // boolean d
        12: .line 312
            aload 2 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.isEmpty:()Z
            istore 6 /* empty */
        start local 6 // boolean empty
        13: .line 314
            iload 6 /* empty */
            ifne 15
        14: .line 315
            aload 1 /* a */
            aconst_null
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        15: .line 318
      StackMap locals: int int
      StackMap stack:
            iload 5 /* d */
            ifeq 18
            iload 6 /* empty */
            ifeq 18
        16: .line 319
            aload 1 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        17: .line 320
            return
        18: .line 323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* missed */
            ineg
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.addAndGet:(I)I
            istore 3 /* missed */
        19: .line 324
            iload 3 /* missed */
            ifne 3
        end local 6 // boolean empty
        end local 5 // boolean d
        end local 4 // java.lang.Throwable ex
        20: .line 328
            return
        end local 3 // int missed
        end local 2 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
        end local 1 // org.reactivestreams.Subscriber a
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   21     0    this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            1   21     1       a  Lorg/reactivestreams/Subscriber<-TR;>;
            2   21     2       q  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<Ljava/lang/Object;>;
            3   21     3  missed  I
            7   20     4      ex  Ljava/lang/Throwable;
           12   20     5       d  Z
           13   20     6   empty  Z

  void drainAsync();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=14, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
         0: .line 332
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.downstream:Lorg/reactivestreams/Subscriber;
            astore 1 /* a */
        start local 1 // org.reactivestreams.Subscriber a
         1: .line 333
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            astore 2 /* q */
        start local 2 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
         2: .line 335
            iconst_1
            istore 3 /* missed */
        start local 3 // int missed
         3: .line 339
      StackMap locals: org.reactivestreams.Subscriber io.reactivex.internal.queue.SpscLinkedArrayQueue int
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.requested:Ljava/util/concurrent/atomic/AtomicLong;
            invokevirtual java.util.concurrent.atomic.AtomicLong.get:()J
            lstore 4 /* r */
        start local 4 // long r
         4: .line 340
            lconst_0
            lstore 6 /* e */
        start local 6 // long e
         5: .line 342
            goto 28
         6: .line 343
      StackMap locals: long long
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.done:Z
            istore 8 /* d */
        start local 8 // boolean d
         7: .line 345
            aload 2 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.poll:()Ljava/lang/Object;
            astore 9 /* v */
        start local 9 // java.lang.Object v
         8: .line 347
            aload 9 /* v */
            ifnonnull 9
            iconst_1
            goto 10
      StackMap locals: int java.lang.Object
      StackMap stack:
         9: iconst_0
      StackMap locals:
      StackMap stack: int
        10: istore 10 /* empty */
        start local 10 // boolean empty
        11: .line 349
            aload 0 /* this */
            iload 8 /* d */
            iload 10 /* empty */
            aload 1 /* a */
            aload 2 /* q */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.checkTerminated:(ZZLorg/reactivestreams/Subscriber;Lio/reactivex/internal/queue/SpscLinkedArrayQueue;)Z
            ifeq 13
        12: .line 350
            return
        13: .line 353
      StackMap locals: int
      StackMap stack:
            iload 10 /* empty */
            ifeq 15
        14: .line 354
            goto 29
        15: .line 357
      StackMap locals:
      StackMap stack:
            aload 2 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.poll:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            astore 11 /* va */
        start local 11 // java.lang.Object[] va
        16: .line 362
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.combiner:Lio/reactivex/functions/Function;
            aload 11 /* va */
            invokeinterface io.reactivex.functions.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            ldc "The combiner returned a null value"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            astore 12 /* w */
        start local 12 // java.lang.Object w
        17: .line 363
            goto 25
        end local 12 // java.lang.Object w
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator org.reactivestreams.Subscriber io.reactivex.internal.queue.SpscLinkedArrayQueue int long long int java.lang.Object int java.lang.Object[]
      StackMap stack: java.lang.Throwable
        18: astore 13 /* ex */
        start local 13 // java.lang.Throwable ex
        19: .line 364
            aload 13 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        20: .line 366
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelAll:()V
        21: .line 367
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.error:Ljava/util/concurrent/atomic/AtomicReference;
            aload 13 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.addThrowable:(Ljava/util/concurrent/atomic/AtomicReference;Ljava/lang/Throwable;)Z
            pop
        22: .line 368
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.error:Ljava/util/concurrent/atomic/AtomicReference;
            invokestatic io.reactivex.internal.util.ExceptionHelper.terminate:(Ljava/util/concurrent/atomic/AtomicReference;)Ljava/lang/Throwable;
            astore 13 /* ex */
        23: .line 370
            aload 1 /* a */
            aload 13 /* ex */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        24: .line 371
            return
        end local 13 // java.lang.Throwable ex
        start local 12 // java.lang.Object w
        25: .line 374
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* a */
            aload 12 /* w */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        26: .line 376
            aload 9 /* v */
            checkcast io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber.requestOne:()V
        27: .line 378
            lload 6 /* e */
            lconst_1
            ladd
            lstore 6 /* e */
        end local 12 // java.lang.Object w
        end local 11 // java.lang.Object[] va
        end local 10 // boolean empty
        end local 9 // java.lang.Object v
        end local 8 // boolean d
        28: .line 342
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator org.reactivestreams.Subscriber io.reactivex.internal.queue.SpscLinkedArrayQueue int long long
      StackMap stack:
            lload 6 /* e */
            lload 4 /* r */
            lcmp
            ifne 6
        29: .line 381
      StackMap locals:
      StackMap stack:
            lload 6 /* e */
            lload 4 /* r */
            lcmp
            ifne 32
        30: .line 382
            aload 0 /* this */
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.done:Z
            aload 2 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.isEmpty:()Z
            aload 1 /* a */
            aload 2 /* q */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.checkTerminated:(ZZLorg/reactivestreams/Subscriber;Lio/reactivex/internal/queue/SpscLinkedArrayQueue;)Z
            ifeq 32
        31: .line 383
            return
        32: .line 387
      StackMap locals:
      StackMap stack:
            lload 6 /* e */
            lconst_0
            lcmp
            ifeq 34
            lload 4 /* r */
            ldc 9223372036854775807
            lcmp
            ifeq 34
        33: .line 388
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.requested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 6 /* e */
            lneg
            invokevirtual java.util.concurrent.atomic.AtomicLong.addAndGet:(J)J
            pop2
        34: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* missed */
            ineg
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.addAndGet:(I)I
            istore 3 /* missed */
        35: .line 392
            iload 3 /* missed */
            ifne 3
        end local 6 // long e
        end local 4 // long r
        36: .line 396
            return
        end local 3 // int missed
        end local 2 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
        end local 1 // org.reactivestreams.Subscriber a
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   37     0    this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            1   37     1       a  Lorg/reactivestreams/Subscriber<-TR;>;
            2   37     2       q  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<Ljava/lang/Object;>;
            3   37     3  missed  I
            4   36     4       r  J
            5   36     6       e  J
            7   28     8       d  Z
            8   28     9       v  Ljava/lang/Object;
           11   28    10   empty  Z
           16   28    11      va  [Ljava/lang/Object;
           17   18    12       w  TR;
           25   28    12       w  TR;
           19   25    13      ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
          16    17      18  Class java.lang.Throwable

  void drain();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
         0: .line 399
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.getAndIncrement:()I
            ifeq 2
         1: .line 400
            return
         2: .line 403
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.outputFused:Z
            ifeq 5
         3: .line 404
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.drainOutput:()V
         4: .line 405
            goto 6
         5: .line 406
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.drainAsync:()V
         6: .line 408
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;

  boolean checkTerminated(boolean, boolean, org.reactivestreams.Subscriber<?>, io.reactivex.internal.queue.SpscLinkedArrayQueue<?>);
    descriptor: (ZZLorg/reactivestreams/Subscriber;Lio/reactivex/internal/queue/SpscLinkedArrayQueue;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=5
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
        start local 1 // boolean d
        start local 2 // boolean empty
        start local 3 // org.reactivestreams.Subscriber a
        start local 4 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
         0: .line 411
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelled:Z
            ifeq 4
         1: .line 412
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelAll:()V
         2: .line 413
            aload 4 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
         3: .line 414
            iconst_1
            ireturn
         4: .line 417
      StackMap locals:
      StackMap stack:
            iload 1 /* d */
            ifeq 24
         5: .line 418
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.delayErrors:Z
            ifeq 14
         6: .line 419
            iload 2 /* empty */
            ifeq 24
         7: .line 420
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelAll:()V
         8: .line 421
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.error:Ljava/util/concurrent/atomic/AtomicReference;
            invokestatic io.reactivex.internal.util.ExceptionHelper.terminate:(Ljava/util/concurrent/atomic/AtomicReference;)Ljava/lang/Throwable;
            astore 5 /* e */
        start local 5 // java.lang.Throwable e
         9: .line 423
            aload 5 /* e */
            ifnull 12
            aload 5 /* e */
            getstatic io.reactivex.internal.util.ExceptionHelper.TERMINATED:Ljava/lang/Throwable;
            if_acmpeq 12
        10: .line 424
            aload 3 /* a */
            aload 5 /* e */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        11: .line 425
            goto 13
        12: .line 426
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 3 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        13: .line 428
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 5 // java.lang.Throwable e
        14: .line 431
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.error:Ljava/util/concurrent/atomic/AtomicReference;
            invokestatic io.reactivex.internal.util.ExceptionHelper.terminate:(Ljava/util/concurrent/atomic/AtomicReference;)Ljava/lang/Throwable;
            astore 5 /* e */
        start local 5 // java.lang.Throwable e
        15: .line 433
            aload 5 /* e */
            ifnull 20
            aload 5 /* e */
            getstatic io.reactivex.internal.util.ExceptionHelper.TERMINATED:Ljava/lang/Throwable;
            if_acmpeq 20
        16: .line 434
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelAll:()V
        17: .line 435
            aload 4 /* q */
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
        18: .line 436
            aload 3 /* a */
            aload 5 /* e */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
        19: .line 437
            iconst_1
            ireturn
        20: .line 439
      StackMap locals: java.lang.Throwable
      StackMap stack:
            iload 2 /* empty */
            ifeq 24
        21: .line 440
            aload 0 /* this */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.cancelAll:()V
        22: .line 442
            aload 3 /* a */
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
        23: .line 443
            iconst_1
            ireturn
        end local 5 // java.lang.Throwable e
        24: .line 447
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 4 // io.reactivex.internal.queue.SpscLinkedArrayQueue q
        end local 3 // org.reactivestreams.Subscriber a
        end local 2 // boolean empty
        end local 1 // boolean d
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   25     0   this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            0   25     1      d  Z
            0   25     2  empty  Z
            0   25     3      a  Lorg/reactivestreams/Subscriber<*>;
            0   25     4      q  Lio/reactivex/internal/queue/SpscLinkedArrayQueue<*>;
            9   14     5      e  Ljava/lang/Throwable;
           15   24     5      e  Ljava/lang/Throwable;
    Signature: (ZZLorg/reactivestreams/Subscriber<*>;Lio/reactivex/internal/queue/SpscLinkedArrayQueue<*>;)Z
    MethodParameters:
       Name  Flags
      d      
      empty  
      a      
      q      

  void cancelAll();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
         0: .line 451
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.subscribers:[Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestInnerSubscriber;
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 4
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator top int int io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber[]
      StackMap stack:
         1: aload 4
            iload 2
            aaload
            astore 1 /* inner */
        start local 1 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber inner
         2: .line 452
            aload 1 /* inner */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber.cancel:()V
        end local 1 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber inner
         3: .line 451
            iinc 2 1
      StackMap locals:
      StackMap stack:
         4: iload 2
            iload 3
            if_icmplt 1
         5: .line 454
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            2    3     1  inner  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestInnerSubscriber<TT;>;

  public int requestFusion(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
        start local 1 // int requestedMode
         0: .line 458
            iload 1 /* requestedMode */
            iconst_4
            iand
            ifeq 2
         1: .line 459
            iconst_0
            ireturn
         2: .line 461
      StackMap locals:
      StackMap stack:
            iload 1 /* requestedMode */
            iconst_2
            iand
            istore 2 /* m */
        start local 2 // int m
         3: .line 462
            aload 0 /* this */
            iload 2 /* m */
            ifeq 4
            iconst_1
            goto 5
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator int int
      StackMap stack: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator
         4: iconst_0
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator int int
      StackMap stack: io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator int
         5: putfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.outputFused:Z
         6: .line 463
            iload 2 /* m */
            ireturn
        end local 2 // int m
        end local 1 // int requestedMode
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            0    7     1  requestedMode  I
            3    7     2              m  I
    MethodParameters:
               Name  Flags
      requestedMode  

  public R poll();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
         0: .line 470
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.poll:()Ljava/lang/Object;
            astore 1 /* e */
        start local 1 // java.lang.Object e
         1: .line 471
            aload 1 /* e */
            ifnonnull 3
         2: .line 472
            aconst_null
            areturn
         3: .line 474
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.poll:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            astore 2 /* a */
        start local 2 // java.lang.Object[] a
         4: .line 475
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.combiner:Lio/reactivex/functions/Function;
            aload 2 /* a */
            invokeinterface io.reactivex.functions.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            ldc "The combiner returned a null value"
            invokestatic io.reactivex.internal.functions.ObjectHelper.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            astore 3 /* r */
        start local 3 // java.lang.Object r
         5: .line 476
            aload 1 /* e */
            checkcast io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber
            invokevirtual io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber.requestOne:()V
         6: .line 477
            aload 3 /* r */
            areturn
        end local 3 // java.lang.Object r
        end local 2 // java.lang.Object[] a
        end local 1 // java.lang.Object e
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
            1    7     1     e  Ljava/lang/Object;
            4    7     2     a  [Ljava/lang/Object;
            5    7     3     r  TR;
    Exceptions:
      throws java.lang.Exception
    Signature: ()TR;
    RuntimeInvisibleAnnotations: 
      io.reactivex.annotations.Nullable()

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
         0: .line 482
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.clear:()V
         1: .line 483
            return
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
         0: .line 487
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator.queue:Lio/reactivex/internal/queue/SpscLinkedArrayQueue;
            invokevirtual io.reactivex.internal.queue.SpscLinkedArrayQueue.isEmpty:()Z
            ireturn
        end local 0 // io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/internal/operators/flowable/FlowableCombineLatest$CombineLatestCoordinator<TT;TR;>;
}
Signature: <T:Ljava/lang/Object;R:Ljava/lang/Object;>Lio/reactivex/internal/subscriptions/BasicIntQueueSubscription<TR;>;
SourceFile: "FlowableCombineLatest.java"
NestHost: io.reactivex.internal.operators.flowable.FlowableCombineLatest
InnerClasses:
  final CombineLatestCoordinator = io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestCoordinator of io.reactivex.internal.operators.flowable.FlowableCombineLatest
  final CombineLatestInnerSubscriber = io.reactivex.internal.operators.flowable.FlowableCombineLatest$CombineLatestInnerSubscriber of io.reactivex.internal.operators.flowable.FlowableCombineLatest