public final class io.reactivex.internal.operators.flowable.FlowableAmb<T> extends io.reactivex.Flowable<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.flowable.FlowableAmb
  super_class: io.reactivex.Flowable
{
  final org.reactivestreams.Publisher<? extends T>[] sources;
    descriptor: [Lorg/reactivestreams/Publisher;
    flags: (0x0010) ACC_FINAL
    Signature: [Lorg/reactivestreams/Publisher<+TT;>;

  final java.lang.Iterable<? extends org.reactivestreams.Publisher<? extends T>> sourcesIterable;
    descriptor: Ljava/lang/Iterable;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/lang/Iterable<+Lorg/reactivestreams/Publisher<+TT;>;>;

  public void <init>(org.reactivestreams.Publisher<? extends T>[], java.lang.Iterable<? extends org.reactivestreams.Publisher<? extends T>>);
    descriptor: ([Lorg/reactivestreams/Publisher;Ljava/lang/Iterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.flowable.FlowableAmb this
        start local 1 // org.reactivestreams.Publisher[] sources
        start local 2 // java.lang.Iterable sourcesIterable
         0: .line 29
            aload 0 /* this */
            invokespecial io.reactivex.Flowable.<init>:()V
         1: .line 30
            aload 0 /* this */
            aload 1 /* sources */
            putfield io.reactivex.internal.operators.flowable.FlowableAmb.sources:[Lorg/reactivestreams/Publisher;
         2: .line 31
            aload 0 /* this */
            aload 2 /* sourcesIterable */
            putfield io.reactivex.internal.operators.flowable.FlowableAmb.sourcesIterable:Ljava/lang/Iterable;
         3: .line 32
            return
        end local 2 // java.lang.Iterable sourcesIterable
        end local 1 // org.reactivestreams.Publisher[] sources
        end local 0 // io.reactivex.internal.operators.flowable.FlowableAmb this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lio/reactivex/internal/operators/flowable/FlowableAmb<TT;>;
            0    4     1          sources  [Lorg/reactivestreams/Publisher;
            0    4     2  sourcesIterable  Ljava/lang/Iterable<+Lorg/reactivestreams/Publisher<+TT;>;>;
    Signature: ([Lorg/reactivestreams/Publisher<+TT;>;Ljava/lang/Iterable<+Lorg/reactivestreams/Publisher<+TT;>;>;)V
    MethodParameters:
                 Name  Flags
      sources          
      sourcesIterable  

  public void subscribeActual(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // io.reactivex.internal.operators.flowable.FlowableAmb this
        start local 1 // org.reactivestreams.Subscriber s
         0: .line 37
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableAmb.sources:[Lorg/reactivestreams/Publisher;
            astore 2 /* sources */
        start local 2 // org.reactivestreams.Publisher[] sources
         1: .line 38
            iconst_0
            istore 3 /* count */
        start local 3 // int count
         2: .line 39
            aload 2 /* sources */
            ifnonnull 20
         3: .line 40
            bipush 8
            anewarray org.reactivestreams.Publisher
            astore 2 /* sources */
         4: .line 42
            aload 0 /* this */
            getfield io.reactivex.internal.operators.flowable.FlowableAmb.sourcesIterable:Ljava/lang/Iterable;
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 5
            goto 14
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableAmb org.reactivestreams.Subscriber org.reactivestreams.Publisher[] int top java.util.Iterator
      StackMap stack:
         5: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.reactivestreams.Publisher
            astore 4 /* p */
        start local 4 // org.reactivestreams.Publisher p
         6: .line 43
            aload 4 /* p */
            ifnonnull 9
         7: .line 44
            new java.lang.NullPointerException
            dup
            ldc "One of the sources is null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.EmptySubscription.error:(Ljava/lang/Throwable;Lorg/reactivestreams/Subscriber;)V
         8: .line 45
            return
         9: .line 47
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableAmb org.reactivestreams.Subscriber org.reactivestreams.Publisher[] int org.reactivestreams.Publisher java.util.Iterator
      StackMap stack:
            iload 3 /* count */
            aload 2 /* sources */
            arraylength
            if_icmpne 13
        10: .line 48
            iload 3 /* count */
            iload 3 /* count */
            iconst_2
            ishr
            iadd
            anewarray org.reactivestreams.Publisher
            astore 6 /* b */
        start local 6 // org.reactivestreams.Publisher[] b
        11: .line 49
            aload 2 /* sources */
            iconst_0
            aload 6 /* b */
            iconst_0
            iload 3 /* count */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        12: .line 50
            aload 6 /* b */
            astore 2 /* sources */
        end local 6 // org.reactivestreams.Publisher[] b
        13: .line 52
      StackMap locals:
      StackMap stack:
            aload 2 /* sources */
            iload 3 /* count */
            iinc 3 /* count */ 1
            aload 4 /* p */
            aastore
        end local 4 // org.reactivestreams.Publisher p
        14: .line 42
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableAmb org.reactivestreams.Subscriber org.reactivestreams.Publisher[] int top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        15: .line 54
            goto 21
      StackMap locals: io.reactivex.internal.operators.flowable.FlowableAmb org.reactivestreams.Subscriber org.reactivestreams.Publisher[] int
      StackMap stack: java.lang.Throwable
        16: astore 4 /* e */
        start local 4 // java.lang.Throwable e
        17: .line 55
            aload 4 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        18: .line 56
            aload 4 /* e */
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.EmptySubscription.error:(Ljava/lang/Throwable;Lorg/reactivestreams/Subscriber;)V
        19: .line 57
            return
        end local 4 // java.lang.Throwable e
        20: .line 60
      StackMap locals:
      StackMap stack:
            aload 2 /* sources */
            arraylength
            istore 3 /* count */
        21: .line 63
      StackMap locals:
      StackMap stack:
            iload 3 /* count */
            ifne 24
        22: .line 64
            aload 1 /* s */
            invokestatic io.reactivex.internal.subscriptions.EmptySubscription.complete:(Lorg/reactivestreams/Subscriber;)V
        23: .line 65
            return
        24: .line 67
      StackMap locals:
      StackMap stack:
            iload 3 /* count */
            iconst_1
            if_icmpne 27
        25: .line 68
            aload 2 /* sources */
            iconst_0
            aaload
            aload 1 /* s */
            invokeinterface org.reactivestreams.Publisher.subscribe:(Lorg/reactivestreams/Subscriber;)V
        26: .line 69
            return
        27: .line 72
      StackMap locals:
      StackMap stack:
            new io.reactivex.internal.operators.flowable.FlowableAmb$AmbCoordinator
            dup
            aload 1 /* s */
            iload 3 /* count */
            invokespecial io.reactivex.internal.operators.flowable.FlowableAmb$AmbCoordinator.<init>:(Lorg/reactivestreams/Subscriber;I)V
            astore 4 /* ac */
        start local 4 // io.reactivex.internal.operators.flowable.FlowableAmb$AmbCoordinator ac
        28: .line 73
            aload 4 /* ac */
            aload 2 /* sources */
            invokevirtual io.reactivex.internal.operators.flowable.FlowableAmb$AmbCoordinator.subscribe:([Lorg/reactivestreams/Publisher;)V
        29: .line 74
            return
        end local 4 // io.reactivex.internal.operators.flowable.FlowableAmb$AmbCoordinator ac
        end local 3 // int count
        end local 2 // org.reactivestreams.Publisher[] sources
        end local 1 // org.reactivestreams.Subscriber s
        end local 0 // io.reactivex.internal.operators.flowable.FlowableAmb this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   30     0     this  Lio/reactivex/internal/operators/flowable/FlowableAmb<TT;>;
            0   30     1        s  Lorg/reactivestreams/Subscriber<-TT;>;
            1   30     2  sources  [Lorg/reactivestreams/Publisher;
            2   30     3    count  I
            6   14     4        p  Lorg/reactivestreams/Publisher<+TT;>;
           11   13     6        b  [Lorg/reactivestreams/Publisher;
           17   20     4        e  Ljava/lang/Throwable;
           28   30     4       ac  Lio/reactivex/internal/operators/flowable/FlowableAmb$AmbCoordinator<TT;>;
      Exception table:
        from    to  target  type
           4     8      16  Class java.lang.Throwable
           9    15      16  Class java.lang.Throwable
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
      Name  Flags
      s     
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/Flowable<TT;>;
SourceFile: "FlowableAmb.java"
NestMembers:
  io.reactivex.internal.operators.flowable.FlowableAmb$AmbCoordinator  io.reactivex.internal.operators.flowable.FlowableAmb$AmbInnerSubscriber
InnerClasses:
  final AmbCoordinator = io.reactivex.internal.operators.flowable.FlowableAmb$AmbCoordinator of io.reactivex.internal.operators.flowable.FlowableAmb
  final AmbInnerSubscriber = io.reactivex.internal.operators.flowable.FlowableAmb$AmbInnerSubscriber of io.reactivex.internal.operators.flowable.FlowableAmb