public class org.apache.commons.math3.random.EmpiricalDistribution extends org.apache.commons.math3.distribution.AbstractRealDistribution
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.random.EmpiricalDistribution
  super_class: org.apache.commons.math3.distribution.AbstractRealDistribution
{
  public static final int DEFAULT_BIN_COUNT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1000

  private static final java.lang.String FILE_CHARSET;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "US-ASCII"

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 5729073523949762654

  protected final org.apache.commons.math3.random.RandomDataGenerator randomData;
    descriptor: Lorg/apache/commons/math3/random/RandomDataGenerator;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  private final java.util.List<org.apache.commons.math3.stat.descriptive.SummaryStatistics> binStats;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;>;

  private org.apache.commons.math3.stat.descriptive.SummaryStatistics sampleStats;
    descriptor: Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
    flags: (0x0002) ACC_PRIVATE

  private double max;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double min;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private double delta;
    descriptor: D
    flags: (0x0002) ACC_PRIVATE

  private final int binCount;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean loaded;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private double[] upperBounds;
    descriptor: [D
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 145
            aload 0 /* this */
            sipush 1000
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution.<init>:(I)V
         1: .line 146
            return
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // int binCount
         0: .line 155
            aload 0 /* this */
            iload 1 /* binCount */
            new org.apache.commons.math3.random.RandomDataGenerator
            dup
            invokespecial org.apache.commons.math3.random.RandomDataGenerator.<init>:()V
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution.<init>:(ILorg/apache/commons/math3/random/RandomDataGenerator;)V
         1: .line 156
            return
        end local 1 // int binCount
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    2     1  binCount  I
    MethodParameters:
          Name  Flags
      binCount  

  public void <init>(int, org.apache.commons.math3.random.RandomGenerator);
    descriptor: (ILorg/apache/commons/math3/random/RandomGenerator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // int binCount
        start local 2 // org.apache.commons.math3.random.RandomGenerator generator
         0: .line 168
            aload 0 /* this */
            iload 1 /* binCount */
            new org.apache.commons.math3.random.RandomDataGenerator
            dup
            aload 2 /* generator */
            invokespecial org.apache.commons.math3.random.RandomDataGenerator.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution.<init>:(ILorg/apache/commons/math3/random/RandomDataGenerator;)V
         1: .line 169
            return
        end local 2 // org.apache.commons.math3.random.RandomGenerator generator
        end local 1 // int binCount
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    2     1   binCount  I
            0    2     2  generator  Lorg/apache/commons/math3/random/RandomGenerator;
    MethodParameters:
           Name  Flags
      binCount   
      generator  

  public void <init>(org.apache.commons.math3.random.RandomGenerator);
    descriptor: (Lorg/apache/commons/math3/random/RandomGenerator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // org.apache.commons.math3.random.RandomGenerator generator
         0: .line 179
            aload 0 /* this */
            sipush 1000
            aload 1 /* generator */
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution.<init>:(ILorg/apache/commons/math3/random/RandomGenerator;)V
         1: .line 180
            return
        end local 1 // org.apache.commons.math3.random.RandomGenerator generator
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    2     1  generator  Lorg/apache/commons/math3/random/RandomGenerator;
    MethodParameters:
           Name  Flags
      generator  

  public void <init>(int, org.apache.commons.math3.random.RandomDataImpl);
    descriptor: (ILorg/apache/commons/math3/random/RandomDataImpl;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // int binCount
        start local 2 // org.apache.commons.math3.random.RandomDataImpl randomData
         0: .line 193
            aload 0 /* this */
            iload 1 /* binCount */
            aload 2 /* randomData */
            invokevirtual org.apache.commons.math3.random.RandomDataImpl.getDelegate:()Lorg/apache/commons/math3/random/RandomDataGenerator;
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution.<init>:(ILorg/apache/commons/math3/random/RandomDataGenerator;)V
         1: .line 194
            return
        end local 2 // org.apache.commons.math3.random.RandomDataImpl randomData
        end local 1 // int binCount
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    2     1    binCount  I
            0    2     2  randomData  Lorg/apache/commons/math3/random/RandomDataImpl;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
            Name  Flags
      binCount    
      randomData  

  public void <init>(org.apache.commons.math3.random.RandomDataImpl);
    descriptor: (Lorg/apache/commons/math3/random/RandomDataImpl;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // org.apache.commons.math3.random.RandomDataImpl randomData
         0: .line 206
            aload 0 /* this */
            sipush 1000
            aload 1 /* randomData */
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution.<init>:(ILorg/apache/commons/math3/random/RandomDataImpl;)V
         1: .line 207
            return
        end local 1 // org.apache.commons.math3.random.RandomDataImpl randomData
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    2     1  randomData  Lorg/apache/commons/math3/random/RandomDataImpl;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
            Name  Flags
      randomData  

  private void <init>(int, org.apache.commons.math3.random.RandomDataGenerator);
    descriptor: (ILorg/apache/commons/math3/random/RandomDataGenerator;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // int binCount
        start local 2 // org.apache.commons.math3.random.RandomDataGenerator randomData
         0: .line 219
            aload 0 /* this */
            aload 2 /* randomData */
            invokevirtual org.apache.commons.math3.random.RandomDataGenerator.getRandomGenerator:()Lorg/apache/commons/math3/random/RandomGenerator;
            invokespecial org.apache.commons.math3.distribution.AbstractRealDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;)V
         1: .line 121
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.math3.random.EmpiricalDistribution.sampleStats:Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
         2: .line 124
            aload 0 /* this */
            ldc -Infinity
            putfield org.apache.commons.math3.random.EmpiricalDistribution.max:D
         3: .line 127
            aload 0 /* this */
            ldc Infinity
            putfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
         4: .line 130
            aload 0 /* this */
            dconst_0
            putfield org.apache.commons.math3.random.EmpiricalDistribution.delta:D
         5: .line 136
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.math3.random.EmpiricalDistribution.loaded:Z
         6: .line 139
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
         7: .line 220
            iload 1 /* binCount */
            ifgt 9
         8: .line 221
            new org.apache.commons.math3.exception.NotStrictlyPositiveException
            dup
            iload 1 /* binCount */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotStrictlyPositiveException.<init>:(Ljava/lang/Number;)V
            athrow
         9: .line 223
      StackMap locals: org.apache.commons.math3.random.EmpiricalDistribution int org.apache.commons.math3.random.RandomDataGenerator
      StackMap stack:
            aload 0 /* this */
            iload 1 /* binCount */
            putfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
        10: .line 224
            aload 0 /* this */
            aload 2 /* randomData */
            putfield org.apache.commons.math3.random.EmpiricalDistribution.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
        11: .line 225
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
        12: .line 226
            return
        end local 2 // org.apache.commons.math3.random.RandomDataGenerator randomData
        end local 1 // int binCount
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0   13     1    binCount  I
            0   13     2  randomData  Lorg/apache/commons/math3/random/RandomDataGenerator;
    MethodParameters:
            Name  Flags
      binCount    
      randomData  

  public void load(double[]);
    descriptor: ([D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // double[] in
         0: .line 236
            new org.apache.commons.math3.random.EmpiricalDistribution$ArrayDataAdapter
            dup
            aload 0 /* this */
            aload 1 /* in */
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution$ArrayDataAdapter.<init>:(Lorg/apache/commons/math3/random/EmpiricalDistribution;[D)V
            astore 2 /* da */
        start local 2 // org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter da
         1: .line 238
            aload 2 /* da */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter.computeStats:()V
         2: .line 240
            aload 0 /* this */
            new org.apache.commons.math3.random.EmpiricalDistribution$ArrayDataAdapter
            dup
            aload 0 /* this */
            aload 1 /* in */
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution$ArrayDataAdapter.<init>:(Lorg/apache/commons/math3/random/EmpiricalDistribution;[D)V
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.fillBinStats:(Lorg/apache/commons/math3/random/EmpiricalDistribution$DataAdapter;)V
         3: .line 241
            goto 6
      StackMap locals: org.apache.commons.math3.random.EmpiricalDistribution double[] org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter
      StackMap stack: java.io.IOException
         4: pop
         5: .line 243
            new org.apache.commons.math3.exception.MathInternalError
            dup
            invokespecial org.apache.commons.math3.exception.MathInternalError.<init>:()V
            athrow
         6: .line 245
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.math3.random.EmpiricalDistribution.loaded:Z
         7: .line 247
            return
        end local 2 // org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter da
        end local 1 // double[] in
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    8     1    in  [D
            1    8     2    da  Lorg/apache/commons/math3/random/EmpiricalDistribution$DataAdapter;
      Exception table:
        from    to  target  type
           1     3       4  Class java.io.IOException
    Exceptions:
      throws org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
      Name  Flags
      in    

  public void load(java.net.URL);
    descriptor: (Ljava/net/URL;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // java.net.URL url
         0: .line 262
            aload 1 /* url */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         1: .line 263
            ldc "US-ASCII"
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            astore 2 /* charset */
        start local 2 // java.nio.charset.Charset charset
         2: .line 265
            new java.io.BufferedReader
            dup
            new java.io.InputStreamReader
            dup
            aload 1 /* url */
            invokevirtual java.net.URL.openStream:()Ljava/io/InputStream;
            aload 2 /* charset */
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/nio/charset/Charset;)V
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;)V
         3: .line 264
            astore 3 /* in */
        start local 3 // java.io.BufferedReader in
         4: .line 267
            new org.apache.commons.math3.random.EmpiricalDistribution$StreamDataAdapter
            dup
            aload 0 /* this */
            aload 3 /* in */
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution$StreamDataAdapter.<init>:(Lorg/apache/commons/math3/random/EmpiricalDistribution;Ljava/io/BufferedReader;)V
            astore 4 /* da */
        start local 4 // org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter da
         5: .line 268
            aload 4 /* da */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter.computeStats:()V
         6: .line 269
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.sampleStats:Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getN:()J
            lconst_0
            lcmp
            ifne 8
         7: .line 270
            new org.apache.commons.math3.exception.ZeroException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.URL_CONTAINS_NO_DATA:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* url */
            aastore
            invokespecial org.apache.commons.math3.exception.ZeroException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         8: .line 273
      StackMap locals: java.nio.charset.Charset java.io.BufferedReader org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter
      StackMap stack:
            new java.io.BufferedReader
            dup
            new java.io.InputStreamReader
            dup
            aload 1 /* url */
            invokevirtual java.net.URL.openStream:()Ljava/io/InputStream;
            aload 2 /* charset */
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/nio/charset/Charset;)V
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;)V
            astore 3 /* in */
         9: .line 274
            aload 0 /* this */
            new org.apache.commons.math3.random.EmpiricalDistribution$StreamDataAdapter
            dup
            aload 0 /* this */
            aload 3 /* in */
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution$StreamDataAdapter.<init>:(Lorg/apache/commons/math3/random/EmpiricalDistribution;Ljava/io/BufferedReader;)V
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.fillBinStats:(Lorg/apache/commons/math3/random/EmpiricalDistribution$DataAdapter;)V
        10: .line 275
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.math3.random.EmpiricalDistribution.loaded:Z
        end local 4 // org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter da
        11: .line 276
            goto 17
      StackMap locals: org.apache.commons.math3.random.EmpiricalDistribution java.net.URL java.nio.charset.Charset java.io.BufferedReader
      StackMap stack: java.lang.Throwable
        12: astore 5
        13: .line 278
            aload 3 /* in */
            invokevirtual java.io.BufferedReader.close:()V
        14: .line 279
            goto 16
      StackMap locals: org.apache.commons.math3.random.EmpiricalDistribution java.net.URL java.nio.charset.Charset java.io.BufferedReader top java.lang.Throwable
      StackMap stack: java.io.IOException
        15: pop
        16: .line 282
      StackMap locals:
      StackMap stack:
            aload 5
            athrow
        17: .line 278
      StackMap locals: org.apache.commons.math3.random.EmpiricalDistribution java.net.URL java.nio.charset.Charset java.io.BufferedReader
      StackMap stack:
            aload 3 /* in */
            invokevirtual java.io.BufferedReader.close:()V
        18: .line 279
            goto 20
      StackMap locals:
      StackMap stack: java.io.IOException
        19: pop
        20: .line 283
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.io.BufferedReader in
        end local 2 // java.nio.charset.Charset charset
        end local 1 // java.net.URL url
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   21     0     this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0   21     1      url  Ljava/net/URL;
            2   21     2  charset  Ljava/nio/charset/Charset;
            4   21     3       in  Ljava/io/BufferedReader;
            5   11     4       da  Lorg/apache/commons/math3/random/EmpiricalDistribution$DataAdapter;
      Exception table:
        from    to  target  type
           4    12      12  any
          13    14      15  Class java.io.IOException
          17    18      19  Class java.io.IOException
    Exceptions:
      throws java.io.IOException, org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.ZeroException
    MethodParameters:
      Name  Flags
      url   

  public void load(java.io.File);
    descriptor: (Ljava/io/File;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // java.io.File file
         0: .line 296
            aload 1 /* file */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         1: .line 297
            ldc "US-ASCII"
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            astore 2 /* charset */
        start local 2 // java.nio.charset.Charset charset
         2: .line 298
            new java.io.FileInputStream
            dup
            aload 1 /* file */
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/File;)V
            astore 3 /* is */
        start local 3 // java.io.InputStream is
         3: .line 299
            new java.io.BufferedReader
            dup
            new java.io.InputStreamReader
            dup
            aload 3 /* is */
            aload 2 /* charset */
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/nio/charset/Charset;)V
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;)V
            astore 4 /* in */
        start local 4 // java.io.BufferedReader in
         4: .line 301
            new org.apache.commons.math3.random.EmpiricalDistribution$StreamDataAdapter
            dup
            aload 0 /* this */
            aload 4 /* in */
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution$StreamDataAdapter.<init>:(Lorg/apache/commons/math3/random/EmpiricalDistribution;Ljava/io/BufferedReader;)V
            astore 5 /* da */
        start local 5 // org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter da
         5: .line 302
            aload 5 /* da */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter.computeStats:()V
         6: .line 304
            new java.io.FileInputStream
            dup
            aload 1 /* file */
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/File;)V
            astore 3 /* is */
         7: .line 305
            new java.io.BufferedReader
            dup
            new java.io.InputStreamReader
            dup
            aload 3 /* is */
            aload 2 /* charset */
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/nio/charset/Charset;)V
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;)V
            astore 4 /* in */
         8: .line 306
            aload 0 /* this */
            new org.apache.commons.math3.random.EmpiricalDistribution$StreamDataAdapter
            dup
            aload 0 /* this */
            aload 4 /* in */
            invokespecial org.apache.commons.math3.random.EmpiricalDistribution$StreamDataAdapter.<init>:(Lorg/apache/commons/math3/random/EmpiricalDistribution;Ljava/io/BufferedReader;)V
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.fillBinStats:(Lorg/apache/commons/math3/random/EmpiricalDistribution$DataAdapter;)V
         9: .line 307
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.math3.random.EmpiricalDistribution.loaded:Z
        end local 5 // org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter da
        10: .line 308
            goto 16
      StackMap locals: org.apache.commons.math3.random.EmpiricalDistribution java.io.File java.nio.charset.Charset java.io.InputStream java.io.BufferedReader
      StackMap stack: java.lang.Throwable
        11: astore 6
        12: .line 310
            aload 4 /* in */
            invokevirtual java.io.BufferedReader.close:()V
        13: .line 311
            goto 15
      StackMap locals: org.apache.commons.math3.random.EmpiricalDistribution java.io.File java.nio.charset.Charset java.io.InputStream java.io.BufferedReader top java.lang.Throwable
      StackMap stack: java.io.IOException
        14: pop
        15: .line 314
      StackMap locals:
      StackMap stack:
            aload 6
            athrow
        16: .line 310
      StackMap locals: org.apache.commons.math3.random.EmpiricalDistribution java.io.File java.nio.charset.Charset java.io.InputStream java.io.BufferedReader
      StackMap stack:
            aload 4 /* in */
            invokevirtual java.io.BufferedReader.close:()V
        17: .line 311
            goto 19
      StackMap locals:
      StackMap stack: java.io.IOException
        18: pop
        19: .line 315
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.io.BufferedReader in
        end local 3 // java.io.InputStream is
        end local 2 // java.nio.charset.Charset charset
        end local 1 // java.io.File file
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   20     0     this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0   20     1     file  Ljava/io/File;
            2   20     2  charset  Ljava/nio/charset/Charset;
            3   20     3       is  Ljava/io/InputStream;
            4   20     4       in  Ljava/io/BufferedReader;
            5   10     5       da  Lorg/apache/commons/math3/random/EmpiricalDistribution$DataAdapter;
      Exception table:
        from    to  target  type
           4    11      11  any
          12    13      14  Class java.io.IOException
          16    17      18  Class java.io.IOException
    Exceptions:
      throws java.io.IOException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
      Name  Flags
      file  

  private void fillBinStats(org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter);
    descriptor: (Lorg/apache/commons/math3/random/EmpiricalDistribution$DataAdapter;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter da
         0: .line 436
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.sampleStats:Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getMin:()D
            putfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
         1: .line 437
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.sampleStats:Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getMax:()D
            putfield org.apache.commons.math3.random.EmpiricalDistribution.max:D
         2: .line 438
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.max:D
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
            dsub
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
            i2d
            ddiv
            putfield org.apache.commons.math3.random.EmpiricalDistribution.delta:D
         3: .line 441
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifne 5
         4: .line 442
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         5: .line 444
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         6: goto 10
         7: .line 445
      StackMap locals: int
      StackMap stack:
            new org.apache.commons.math3.stat.descriptive.SummaryStatistics
            dup
            invokespecial org.apache.commons.math3.stat.descriptive.SummaryStatistics.<init>:()V
            astore 3 /* stats */
        start local 3 // org.apache.commons.math3.stat.descriptive.SummaryStatistics stats
         8: .line 446
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
            iload 2 /* i */
            aload 3 /* stats */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
        end local 3 // org.apache.commons.math3.stat.descriptive.SummaryStatistics stats
         9: .line 444
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
            if_icmplt 7
        end local 2 // int i
        11: .line 450
            aload 1 /* da */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter.computeBinStats:()V
        12: .line 453
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
            newarray 7
            putfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
        13: .line 454
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            iconst_0
        14: .line 455
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.commons.math3.stat.descriptive.SummaryStatistics
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getN:()J
            l2d
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.sampleStats:Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getN:()J
            l2d
            ddiv
        15: .line 454
            dastore
        16: .line 456
            iconst_1
            istore 2 /* i */
        start local 2 // int i
        17: goto 22
        18: .line 457
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            iload 2 /* i */
            iconst_1
            isub
            daload
        19: .line 458
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.commons.math3.stat.descriptive.SummaryStatistics
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getN:()J
            l2d
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.sampleStats:Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getN:()J
            l2d
            ddiv
            dadd
        20: .line 457
            dastore
        21: .line 456
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
            iconst_1
            isub
            if_icmplt 18
        end local 2 // int i
        23: .line 460
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
            iconst_1
            isub
            dconst_1
            dastore
        24: .line 461
            return
        end local 1 // org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter da
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   25     0   this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0   25     1     da  Lorg/apache/commons/math3/random/EmpiricalDistribution$DataAdapter;
            6   11     2      i  I
            8    9     3  stats  Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
           17   23     2      i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      da    final

  private int findBin(double);
    descriptor: (D)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // double value
         0: .line 471
            dload 1 /* value */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
            dsub
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.delta:D
            ddiv
            invokestatic org.apache.commons.math3.util.FastMath.ceil:(D)D
            d2i
            iconst_1
            isub
            iconst_0
            invokestatic org.apache.commons.math3.util.FastMath.max:(II)I
         1: .line 472
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
            iconst_1
            isub
         2: .line 470
            invokestatic org.apache.commons.math3.util.FastMath.min:(II)I
            ireturn
        end local 1 // double value
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    3     1  value  D
    MethodParameters:
       Name  Flags
      value  

  public double getNextValue();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 484
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.loaded:Z
            ifne 2
         1: .line 485
            new org.apache.commons.math3.exception.MathIllegalStateException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.DISTRIBUTION_NOT_LOADED:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_0
            anewarray java.lang.Object
            invokespecial org.apache.commons.math3.exception.MathIllegalStateException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         2: .line 488
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.sample:()D
            dreturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalStateException

  public org.apache.commons.math3.stat.descriptive.StatisticalSummary getSampleStats();
    descriptor: ()Lorg/apache/commons/math3/stat/descriptive/StatisticalSummary;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 500
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.sampleStats:Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
            areturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public int getBinCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 509
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
            ireturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public java.util.List<org.apache.commons.math3.stat.descriptive.SummaryStatistics> getBinStats();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 520
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
            areturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
    Signature: ()Ljava/util/List<Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;>;

  public double[] getUpperBounds();
    descriptor: ()[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 537
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
            newarray 7
            astore 1 /* binUpperBounds */
        start local 1 // double[] binUpperBounds
         1: .line 538
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 539
      StackMap locals: double[] int
      StackMap stack:
            aload 1 /* binUpperBounds */
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.delta:D
            iload 2 /* i */
            iconst_1
            iadd
            i2d
            dmul
            dadd
            dastore
         4: .line 538
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
            iconst_1
            isub
            if_icmplt 3
        end local 2 // int i
         6: .line 541
            aload 1 /* binUpperBounds */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binCount:I
            iconst_1
            isub
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.max:D
            dastore
         7: .line 542
            aload 1 /* binUpperBounds */
            areturn
        end local 1 // double[] binUpperBounds
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            1    8     1  binUpperBounds  [D
            2    6     2               i  I

  public double[] getGeneratorUpperBounds();
    descriptor: ()[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 562
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            arraylength
            istore 1 /* len */
        start local 1 // int len
         1: .line 563
            iload 1 /* len */
            newarray 7
            astore 2 /* out */
        start local 2 // double[] out
         2: .line 564
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            iconst_0
            aload 2 /* out */
            iconst_0
            iload 1 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 565
            aload 2 /* out */
            areturn
        end local 2 // double[] out
        end local 1 // int len
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            1    4     1   len  I
            2    4     2   out  [D

  public boolean isLoaded();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 574
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.loaded:Z
            ireturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public void reSeed(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // long seed
         0: .line 584
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
            lload 1 /* seed */
            invokevirtual org.apache.commons.math3.random.RandomDataGenerator.reSeed:(J)V
         1: .line 585
            return
        end local 1 // long seed
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    2     1  seed  J
    MethodParameters:
      Name  Flags
      seed  

  public double probability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // double x
         0: .line 595
            dconst_0
            dreturn
        end local 1 // double x
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    1     1     x  D
    MethodParameters:
      Name  Flags
      x     

  public double density(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // double x
         0: .line 613
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
            dcmpg
            iflt 1
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.max:D
            dcmpl
            ifle 2
         1: .line 614
      StackMap locals:
      StackMap stack:
            dconst_0
            dreturn
         2: .line 616
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* x */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.findBin:(D)I
            istore 3 /* binIndex */
        start local 3 // int binIndex
         3: .line 617
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
            iload 3 /* binIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.commons.math3.stat.descriptive.SummaryStatistics
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.getKernel:(Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;)Lorg/apache/commons/math3/distribution/RealDistribution;
            astore 4 /* kernel */
        start local 4 // org.apache.commons.math3.distribution.RealDistribution kernel
         4: .line 618
            aload 4 /* kernel */
            dload 1 /* x */
            invokeinterface org.apache.commons.math3.distribution.RealDistribution.density:(D)D
            aload 0 /* this */
            iload 3 /* binIndex */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.pB:(I)D
            dmul
            aload 0 /* this */
            iload 3 /* binIndex */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.kB:(I)D
            ddiv
            dreturn
        end local 4 // org.apache.commons.math3.distribution.RealDistribution kernel
        end local 3 // int binIndex
        end local 1 // double x
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    5     1         x  D
            3    5     3  binIndex  I
            4    5     4    kernel  Lorg/apache/commons/math3/distribution/RealDistribution;
    MethodParameters:
      Name  Flags
      x     

  public double cumulativeProbability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=16, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // double x
         0: .line 637
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
            dcmpg
            ifge 2
         1: .line 638
            dconst_0
            dreturn
         2: .line 639
      StackMap locals:
      StackMap stack:
            dload 1 /* x */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.max:D
            dcmpl
            iflt 4
         3: .line 640
            dconst_1
            dreturn
         4: .line 642
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dload 1 /* x */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.findBin:(D)I
            istore 3 /* binIndex */
        start local 3 // int binIndex
         5: .line 643
            aload 0 /* this */
            iload 3 /* binIndex */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.pBminus:(I)D
            dstore 4 /* pBminus */
        start local 4 // double pBminus
         6: .line 644
            aload 0 /* this */
            iload 3 /* binIndex */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.pB:(I)D
            dstore 6 /* pB */
        start local 6 // double pB
         7: .line 645
            aload 0 /* this */
            dload 1 /* x */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.k:(D)Lorg/apache/commons/math3/distribution/RealDistribution;
            astore 8 /* kernel */
        start local 8 // org.apache.commons.math3.distribution.RealDistribution kernel
         8: .line 646
            aload 8 /* kernel */
            instanceof org.apache.commons.math3.distribution.ConstantRealDistribution
            ifeq 12
         9: .line 647
            dload 1 /* x */
            aload 8 /* kernel */
            invokeinterface org.apache.commons.math3.distribution.RealDistribution.getNumericalMean:()D
            dcmpg
            ifge 11
        10: .line 648
            dload 4 /* pBminus */
            dreturn
        11: .line 650
      StackMap locals: org.apache.commons.math3.random.EmpiricalDistribution double int double double org.apache.commons.math3.distribution.RealDistribution
      StackMap stack:
            dload 4 /* pBminus */
            dload 6 /* pB */
            dadd
            dreturn
        12: .line 653
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.getUpperBounds:()[D
            astore 9 /* binBounds */
        start local 9 // double[] binBounds
        13: .line 654
            aload 0 /* this */
            iload 3 /* binIndex */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.kB:(I)D
            dstore 10 /* kB */
        start local 10 // double kB
        14: .line 655
            iload 3 /* binIndex */
            ifne 15
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
            goto 16
      StackMap locals: double[] double
      StackMap stack:
        15: aload 9 /* binBounds */
            iload 3 /* binIndex */
            iconst_1
            isub
            daload
      StackMap locals:
      StackMap stack: double
        16: dstore 12 /* lower */
        start local 12 // double lower
        17: .line 657
            aload 8 /* kernel */
            dload 1 /* x */
            invokeinterface org.apache.commons.math3.distribution.RealDistribution.cumulativeProbability:(D)D
            aload 8 /* kernel */
            dload 12 /* lower */
            invokeinterface org.apache.commons.math3.distribution.RealDistribution.cumulativeProbability:(D)D
            dsub
            dload 10 /* kB */
            ddiv
        18: .line 656
            dstore 14 /* withinBinCum */
        start local 14 // double withinBinCum
        19: .line 658
            dload 4 /* pBminus */
            dload 6 /* pB */
            dload 14 /* withinBinCum */
            dmul
            dadd
            dreturn
        end local 14 // double withinBinCum
        end local 12 // double lower
        end local 10 // double kB
        end local 9 // double[] binBounds
        end local 8 // org.apache.commons.math3.distribution.RealDistribution kernel
        end local 6 // double pB
        end local 4 // double pBminus
        end local 3 // int binIndex
        end local 1 // double x
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   20     0          this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0   20     1             x  D
            5   20     3      binIndex  I
            6   20     4       pBminus  D
            7   20     6            pB  D
            8   20     8        kernel  Lorg/apache/commons/math3/distribution/RealDistribution;
           13   20     9     binBounds  [D
           14   20    10            kB  D
           17   20    12         lower  D
           19   20    14  withinBinCum  D
    MethodParameters:
      Name  Flags
      x     

  public double inverseCumulativeProbability(double);
    descriptor: (D)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=18, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // double p
         0: .line 683
            dload 1 /* p */
            dconst_0
            dcmpg
            iflt 1
            dload 1 /* p */
            dconst_1
            dcmpl
            ifle 2
         1: .line 684
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.OutOfRangeException
            dup
            dload 1 /* p */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.OutOfRangeException.<init>:(Ljava/lang/Number;Ljava/lang/Number;Ljava/lang/Number;)V
            athrow
         2: .line 687
      StackMap locals:
      StackMap stack:
            dload 1 /* p */
            dconst_0
            dcmpl
            ifne 4
         3: .line 688
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.getSupportLowerBound:()D
            dreturn
         4: .line 691
      StackMap locals:
      StackMap stack:
            dload 1 /* p */
            dconst_1
            dcmpl
            ifne 6
         5: .line 692
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.getSupportUpperBound:()D
            dreturn
         6: .line 695
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: .line 696
            goto 9
         8: .line 697
      StackMap locals: int
      StackMap stack:
            iinc 3 /* i */ 1
         9: .line 696
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.cumBinP:(I)D
            dload 1 /* p */
            dcmpg
            iflt 8
        10: .line 700
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
            iload 3 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.commons.math3.stat.descriptive.SummaryStatistics
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.getKernel:(Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;)Lorg/apache/commons/math3/distribution/RealDistribution;
            astore 4 /* kernel */
        start local 4 // org.apache.commons.math3.distribution.RealDistribution kernel
        11: .line 701
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.kB:(I)D
            dstore 5 /* kB */
        start local 5 // double kB
        12: .line 702
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.getUpperBounds:()[D
            astore 7 /* binBounds */
        start local 7 // double[] binBounds
        13: .line 703
            iload 3 /* i */
            ifne 14
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
            goto 15
      StackMap locals: org.apache.commons.math3.distribution.RealDistribution double double[]
      StackMap stack:
        14: aload 7 /* binBounds */
            iload 3 /* i */
            iconst_1
            isub
            daload
      StackMap locals:
      StackMap stack: double
        15: dstore 8 /* lower */
        start local 8 // double lower
        16: .line 704
            aload 4 /* kernel */
            dload 8 /* lower */
            invokeinterface org.apache.commons.math3.distribution.RealDistribution.cumulativeProbability:(D)D
            dstore 10 /* kBminus */
        start local 10 // double kBminus
        17: .line 705
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.pB:(I)D
            dstore 12 /* pB */
        start local 12 // double pB
        18: .line 706
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.pBminus:(I)D
            dstore 14 /* pBminus */
        start local 14 // double pBminus
        19: .line 707
            dload 1 /* p */
            dload 14 /* pBminus */
            dsub
            dstore 16 /* pCrit */
        start local 16 // double pCrit
        20: .line 708
            dload 16 /* pCrit */
            dconst_0
            dcmpg
            ifgt 22
        21: .line 709
            dload 8 /* lower */
            dreturn
        22: .line 711
      StackMap locals: org.apache.commons.math3.random.EmpiricalDistribution double int org.apache.commons.math3.distribution.RealDistribution double double[] double double double double double
      StackMap stack:
            aload 4 /* kernel */
            dload 10 /* kBminus */
            dload 16 /* pCrit */
            dload 5 /* kB */
            dmul
            dload 12 /* pB */
            ddiv
            dadd
            invokeinterface org.apache.commons.math3.distribution.RealDistribution.inverseCumulativeProbability:(D)D
            dreturn
        end local 16 // double pCrit
        end local 14 // double pBminus
        end local 12 // double pB
        end local 10 // double kBminus
        end local 8 // double lower
        end local 7 // double[] binBounds
        end local 5 // double kB
        end local 4 // org.apache.commons.math3.distribution.RealDistribution kernel
        end local 3 // int i
        end local 1 // double p
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   23     0       this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0   23     1          p  D
            7   23     3          i  I
           11   23     4     kernel  Lorg/apache/commons/math3/distribution/RealDistribution;
           12   23     5         kB  D
           13   23     7  binBounds  [D
           16   23     8      lower  D
           17   23    10    kBminus  D
           18   23    12         pB  D
           19   23    14    pBminus  D
           20   23    16      pCrit  D
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
      Name  Flags
      p     final

  public double getNumericalMean();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 719
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.sampleStats:Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getMean:()D
            dreturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public double getNumericalVariance();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 727
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.sampleStats:Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getVariance:()D
            dreturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public double getSupportLowerBound();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 735
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
            dreturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public double getSupportUpperBound();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 743
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.max:D
            dreturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public boolean isSupportLowerBoundInclusive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 751
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public boolean isSupportUpperBoundInclusive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 759
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public boolean isSupportConnected();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
         0: .line 767
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;

  public void reseedRandomGenerator(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // long seed
         0: .line 776
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
            lload 1 /* seed */
            invokevirtual org.apache.commons.math3.random.RandomDataGenerator.reSeed:(J)V
         1: .line 777
            return
        end local 1 // long seed
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    2     1  seed  J
    MethodParameters:
      Name  Flags
      seed  

  private double pB(int);
    descriptor: (I)D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // int i
         0: .line 786
            iload 1 /* i */
            ifne 1
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            iconst_0
            daload
            goto 2
         1: .line 787
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            iload 1 /* i */
            daload
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            iload 1 /* i */
            iconst_1
            isub
            daload
            dsub
         2: .line 786
      StackMap locals:
      StackMap stack: double
            dreturn
        end local 1 // int i
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  private double pBminus(int);
    descriptor: (I)D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // int i
         0: .line 797
            iload 1 /* i */
            ifne 1
            dconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            iload 1 /* i */
            iconst_1
            isub
            daload
      StackMap locals:
      StackMap stack: double
         2: dreturn
        end local 1 // int i
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  private double kB(int);
    descriptor: (I)D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // int i
         0: .line 809
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.getUpperBounds:()[D
            astore 2 /* binBounds */
        start local 2 // double[] binBounds
         1: .line 810
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
            iload 1 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.commons.math3.stat.descriptive.SummaryStatistics
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.getKernel:(Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;)Lorg/apache/commons/math3/distribution/RealDistribution;
            astore 3 /* kernel */
        start local 3 // org.apache.commons.math3.distribution.RealDistribution kernel
         2: .line 811
            iload 1 /* i */
            ifne 3
            aload 3 /* kernel */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.min:D
            aload 2 /* binBounds */
            iconst_0
            daload
            invokeinterface org.apache.commons.math3.distribution.RealDistribution.cumulativeProbability:(DD)D
            goto 4
         3: .line 812
      StackMap locals: double[] org.apache.commons.math3.distribution.RealDistribution
      StackMap stack:
            aload 3 /* kernel */
            aload 2 /* binBounds */
            iload 1 /* i */
            iconst_1
            isub
            daload
            aload 2 /* binBounds */
            iload 1 /* i */
            daload
            invokeinterface org.apache.commons.math3.distribution.RealDistribution.cumulativeProbability:(DD)D
         4: .line 811
      StackMap locals:
      StackMap stack: double
            dreturn
        end local 3 // org.apache.commons.math3.distribution.RealDistribution kernel
        end local 2 // double[] binBounds
        end local 1 // int i
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    5     1          i  I
            1    5     2  binBounds  [D
            2    5     3     kernel  Lorg/apache/commons/math3/distribution/RealDistribution;
    MethodParameters:
      Name  Flags
      i     

  private org.apache.commons.math3.distribution.RealDistribution k(double);
    descriptor: (D)Lorg/apache/commons/math3/distribution/RealDistribution;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // double x
         0: .line 822
            aload 0 /* this */
            dload 1 /* x */
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.findBin:(D)I
            istore 3 /* binIndex */
        start local 3 // int binIndex
         1: .line 823
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.binStats:Ljava/util/List;
            iload 3 /* binIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.apache.commons.math3.stat.descriptive.SummaryStatistics
            invokevirtual org.apache.commons.math3.random.EmpiricalDistribution.getKernel:(Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;)Lorg/apache/commons/math3/distribution/RealDistribution;
            areturn
        end local 3 // int binIndex
        end local 1 // double x
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    2     1         x  D
            1    2     3  binIndex  I
    MethodParameters:
      Name  Flags
      x     

  private double cumBinP(int);
    descriptor: (I)D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // int binIndex
         0: .line 833
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.upperBounds:[D
            iload 1 /* binIndex */
            daload
            dreturn
        end local 1 // int binIndex
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    1     1  binIndex  I
    MethodParameters:
          Name  Flags
      binIndex  

  protected org.apache.commons.math3.distribution.RealDistribution getKernel(org.apache.commons.math3.stat.descriptive.SummaryStatistics);
    descriptor: (Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;)Lorg/apache/commons/math3/distribution/RealDistribution;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=9, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
        start local 1 // org.apache.commons.math3.stat.descriptive.SummaryStatistics bStats
         0: .line 845
            aload 1 /* bStats */
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getN:()J
            lconst_1
            lcmp
            ifeq 1
            aload 1 /* bStats */
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getVariance:()D
            dconst_0
            dcmpl
            ifne 2
         1: .line 846
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.distribution.ConstantRealDistribution
            dup
            aload 1 /* bStats */
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getMean:()D
            invokespecial org.apache.commons.math3.distribution.ConstantRealDistribution.<init>:(D)V
            areturn
         2: .line 848
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.distribution.NormalDistribution
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.random.EmpiricalDistribution.randomData:Lorg/apache/commons/math3/random/RandomDataGenerator;
            invokevirtual org.apache.commons.math3.random.RandomDataGenerator.getRandomGenerator:()Lorg/apache/commons/math3/random/RandomGenerator;
         3: .line 849
            aload 1 /* bStats */
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getMean:()D
            aload 1 /* bStats */
            invokevirtual org.apache.commons.math3.stat.descriptive.SummaryStatistics.getStandardDeviation:()D
         4: .line 850
            ldc 1.0E-9
         5: .line 848
            invokespecial org.apache.commons.math3.distribution.NormalDistribution.<init>:(Lorg/apache/commons/math3/random/RandomGenerator;DDD)V
            areturn
        end local 1 // org.apache.commons.math3.stat.descriptive.SummaryStatistics bStats
        end local 0 // org.apache.commons.math3.random.EmpiricalDistribution this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/commons/math3/random/EmpiricalDistribution;
            0    6     1  bStats  Lorg/apache/commons/math3/stat/descriptive/SummaryStatistics;
    MethodParameters:
        Name  Flags
      bStats  
}
SourceFile: "EmpiricalDistribution.java"
NestMembers:
  org.apache.commons.math3.random.EmpiricalDistribution$ArrayDataAdapter  org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter  org.apache.commons.math3.random.EmpiricalDistribution$StreamDataAdapter
InnerClasses:
  private ArrayDataAdapter = org.apache.commons.math3.random.EmpiricalDistribution$ArrayDataAdapter of org.apache.commons.math3.random.EmpiricalDistribution
  private abstract DataAdapter = org.apache.commons.math3.random.EmpiricalDistribution$DataAdapter of org.apache.commons.math3.random.EmpiricalDistribution
  private StreamDataAdapter = org.apache.commons.math3.random.EmpiricalDistribution$StreamDataAdapter of org.apache.commons.math3.random.EmpiricalDistribution