{
  "type": "Program",
  "body": [
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "Subscriber",
            "range": [
              9,
              19
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 19
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "Subscriber",
            "range": [
              9,
              19
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 19
              }
            }
          },
          "range": [
            9,
            19
          ],
          "loc": {
            "start": {
              "line": 1,
              "column": 9
            },
            "end": {
              "line": 1,
              "column": 19
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../Subscriber",
        "raw": "'../Subscriber'",
        "range": [
          27,
          42
        ],
        "loc": {
          "start": {
            "line": 1,
            "column": 27
          },
          "end": {
            "line": 1,
            "column": 42
          }
        }
      },
      "range": [
        0,
        43
      ],
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 43
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * Buffers the source Observable values until the size hits the maximum\n * `bufferSize` given.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when its size reaches `bufferSize`.</span>\n *\n * <img src=\"./img/bufferCount.png\" width=\"100%\">\n *\n * Buffers a number of values from the source Observable by `bufferSize` then\n * emits the buffer and clears it, and starts a new buffer each\n * `startBufferEvery` values. If `startBufferEvery` is not provided or is\n * `null`, then new buffers are started immediately at the start of the source\n * and when each buffer closes and is emitted.\n *\n * @example <caption>Emit the last two click events as an array</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var buffered = clicks.bufferCount(2);\n * buffered.subscribe(x => console.log(x));\n *\n * @example <caption>On every click, emit the last two click events as an array</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var buffered = clicks.bufferCount(2, 1);\n * buffered.subscribe(x => console.log(x));\n *\n * @see {@link buffer}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link pairwise}\n * @see {@link windowCount}\n *\n * @param {number} bufferSize The maximum size of the buffer emitted.\n * @param {number} [startBufferEvery] Interval at which to start a new buffer.\n * For example if `startBufferEvery` is `2`, then a new buffer will be started\n * on every other value from the source. A new buffer is started at the\n * beginning of the source by default.\n * @return {Observable<T[]>} An Observable of arrays of buffered values.\n * @method bufferCount\n * @owner Observable\n ",
          "range": [
            44,
            1772
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 0
            },
            "end": {
              "line": 42,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "bufferCount",
          "range": [
            1789,
            1800
          ],
          "loc": {
            "start": {
              "line": 43,
              "column": 16
            },
            "end": {
              "line": 43,
              "column": 27
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "bufferSize",
            "range": [
              1801,
              1811
            ],
            "loc": {
              "start": {
                "line": 43,
                "column": 28
              },
              "end": {
                "line": 43,
                "column": 38
              }
            }
          },
          {
            "type": "Identifier",
            "name": "startBufferEvery",
            "range": [
              1813,
              1829
            ],
            "loc": {
              "start": {
                "line": 43,
                "column": 40
              },
              "end": {
                "line": 43,
                "column": 56
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "IfStatement",
              "test": {
                "type": "BinaryExpression",
                "operator": "===",
                "left": {
                  "type": "Identifier",
                  "name": "startBufferEvery",
                  "range": [
                    1841,
                    1857
                  ],
                  "loc": {
                    "start": {
                      "line": 44,
                      "column": 8
                    },
                    "end": {
                      "line": 44,
                      "column": 24
                    }
                  }
                },
                "right": {
                  "type": "UnaryExpression",
                  "operator": "void",
                  "argument": {
                    "type": "Literal",
                    "value": 0,
                    "raw": "0",
                    "range": [
                      1867,
                      1868
                    ],
                    "loc": {
                      "start": {
                        "line": 44,
                        "column": 34
                      },
                      "end": {
                        "line": 44,
                        "column": 35
                      }
                    }
                  },
                  "prefix": true,
                  "range": [
                    1862,
                    1868
                  ],
                  "loc": {
                    "start": {
                      "line": 44,
                      "column": 29
                    },
                    "end": {
                      "line": 44,
                      "column": 35
                    }
                  }
                },
                "range": [
                  1841,
                  1868
                ],
                "loc": {
                  "start": {
                    "line": 44,
                    "column": 8
                  },
                  "end": {
                    "line": 44,
                    "column": 35
                  }
                }
              },
              "consequent": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "Identifier",
                        "name": "startBufferEvery",
                        "range": [
                          1872,
                          1888
                        ],
                        "loc": {
                          "start": {
                            "line": 44,
                            "column": 39
                          },
                          "end": {
                            "line": 44,
                            "column": 55
                          }
                        }
                      },
                      "right": {
                        "type": "Literal",
                        "value": null,
                        "raw": "null",
                        "range": [
                          1891,
                          1895
                        ],
                        "loc": {
                          "start": {
                            "line": 44,
                            "column": 58
                          },
                          "end": {
                            "line": 44,
                            "column": 62
                          }
                        }
                      },
                      "range": [
                        1872,
                        1895
                      ],
                      "loc": {
                        "start": {
                          "line": 44,
                          "column": 39
                        },
                        "end": {
                          "line": 44,
                          "column": 62
                        }
                      }
                    },
                    "range": [
                      1872,
                      1896
                    ],
                    "loc": {
                      "start": {
                        "line": 44,
                        "column": 39
                      },
                      "end": {
                        "line": 44,
                        "column": 63
                      }
                    }
                  }
                ],
                "range": [
                  1870,
                  1898
                ],
                "loc": {
                  "start": {
                    "line": 44,
                    "column": 37
                  },
                  "end": {
                    "line": 44,
                    "column": 65
                  }
                }
              },
              "alternate": null,
              "range": [
                1837,
                1898
              ],
              "loc": {
                "start": {
                  "line": 44,
                  "column": 4
                },
                "end": {
                  "line": 44,
                  "column": 65
                }
              }
            },
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      1910,
                      1914
                    ],
                    "loc": {
                      "start": {
                        "line": 45,
                        "column": 11
                      },
                      "end": {
                        "line": 45,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      1915,
                      1919
                    ],
                    "loc": {
                      "start": {
                        "line": 45,
                        "column": 16
                      },
                      "end": {
                        "line": 45,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    1910,
                    1919
                  ],
                  "loc": {
                    "start": {
                      "line": 45,
                      "column": 11
                    },
                    "end": {
                      "line": 45,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "BufferCountOperator",
                      "range": [
                        1924,
                        1943
                      ],
                      "loc": {
                        "start": {
                          "line": 45,
                          "column": 25
                        },
                        "end": {
                          "line": 45,
                          "column": 44
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "bufferSize",
                        "range": [
                          1944,
                          1954
                        ],
                        "loc": {
                          "start": {
                            "line": 45,
                            "column": 45
                          },
                          "end": {
                            "line": 45,
                            "column": 55
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "startBufferEvery",
                        "range": [
                          1956,
                          1972
                        ],
                        "loc": {
                          "start": {
                            "line": 45,
                            "column": 57
                          },
                          "end": {
                            "line": 45,
                            "column": 73
                          }
                        }
                      }
                    ],
                    "range": [
                      1920,
                      1973
                    ],
                    "loc": {
                      "start": {
                        "line": 45,
                        "column": 21
                      },
                      "end": {
                        "line": 45,
                        "column": 74
                      }
                    }
                  }
                ],
                "range": [
                  1910,
                  1974
                ],
                "loc": {
                  "start": {
                    "line": 45,
                    "column": 11
                  },
                  "end": {
                    "line": 45,
                    "column": 75
                  }
                }
              },
              "range": [
                1903,
                1975
              ],
              "loc": {
                "start": {
                  "line": 45,
                  "column": 4
                },
                "end": {
                  "line": 45,
                  "column": 76
                }
              }
            }
          ],
          "range": [
            1831,
            1977
          ],
          "loc": {
            "start": {
              "line": 43,
              "column": 58
            },
            "end": {
              "line": 46,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          1780,
          1977
        ],
        "loc": {
          "start": {
            "line": 43,
            "column": 7
          },
          "end": {
            "line": 46,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Buffers the source Observable values until the size hits the maximum\n * `bufferSize` given.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when its size reaches `bufferSize`.</span>\n *\n * <img src=\"./img/bufferCount.png\" width=\"100%\">\n *\n * Buffers a number of values from the source Observable by `bufferSize` then\n * emits the buffer and clears it, and starts a new buffer each\n * `startBufferEvery` values. If `startBufferEvery` is not provided or is\n * `null`, then new buffers are started immediately at the start of the source\n * and when each buffer closes and is emitted.\n *\n * @example <caption>Emit the last two click events as an array</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var buffered = clicks.bufferCount(2);\n * buffered.subscribe(x => console.log(x));\n *\n * @example <caption>On every click, emit the last two click events as an array</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var buffered = clicks.bufferCount(2, 1);\n * buffered.subscribe(x => console.log(x));\n *\n * @see {@link buffer}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link pairwise}\n * @see {@link windowCount}\n *\n * @param {number} bufferSize The maximum size of the buffer emitted.\n * @param {number} [startBufferEvery] Interval at which to start a new buffer.\n * For example if `startBufferEvery` is `2`, then a new buffer will be started\n * on every other value from the source. A new buffer is started at the\n * beginning of the source by default.\n * @return {Observable<T[]>} An Observable of arrays of buffered values.\n * @method bufferCount\n * @owner Observable\n ",
            "range": [
              44,
              1772
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 0
              },
              "end": {
                "line": 42,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        1773,
        1977
      ],
      "loc": {
        "start": {
          "line": 43,
          "column": 0
        },
        "end": {
          "line": 46,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Buffers the source Observable values until the size hits the maximum\n * `bufferSize` given.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when its size reaches `bufferSize`.</span>\n *\n * <img src=\"./img/bufferCount.png\" width=\"100%\">\n *\n * Buffers a number of values from the source Observable by `bufferSize` then\n * emits the buffer and clears it, and starts a new buffer each\n * `startBufferEvery` values. If `startBufferEvery` is not provided or is\n * `null`, then new buffers are started immediately at the start of the source\n * and when each buffer closes and is emitted.\n *\n * @example <caption>Emit the last two click events as an array</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var buffered = clicks.bufferCount(2);\n * buffered.subscribe(x => console.log(x));\n *\n * @example <caption>On every click, emit the last two click events as an array</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var buffered = clicks.bufferCount(2, 1);\n * buffered.subscribe(x => console.log(x));\n *\n * @see {@link buffer}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link pairwise}\n * @see {@link windowCount}\n *\n * @param {number} bufferSize The maximum size of the buffer emitted.\n * @param {number} [startBufferEvery] Interval at which to start a new buffer.\n * For example if `startBufferEvery` is `2`, then a new buffer will be started\n * on every other value from the source. A new buffer is started at the\n * beginning of the source by default.\n * @return {Observable<T[]>} An Observable of arrays of buffered values.\n * @method bufferCount\n * @owner Observable\n ",
          "range": [
            44,
            1772
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 0
            },
            "end": {
              "line": 42,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "BufferCountOperator",
            "range": [
              1982,
              2001
            ],
            "loc": {
              "start": {
                "line": 47,
                "column": 4
              },
              "end": {
                "line": 47,
                "column": 23
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "BufferCountOperator",
                      "range": [
                        2032,
                        2051
                      ],
                      "loc": {
                        "start": {
                          "line": 48,
                          "column": 13
                        },
                        "end": {
                          "line": 48,
                          "column": 32
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "bufferSize",
                        "range": [
                          2052,
                          2062
                        ],
                        "loc": {
                          "start": {
                            "line": 48,
                            "column": 33
                          },
                          "end": {
                            "line": 48,
                            "column": 43
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "startBufferEvery",
                        "range": [
                          2064,
                          2080
                        ],
                        "loc": {
                          "start": {
                            "line": 48,
                            "column": 45
                          },
                          "end": {
                            "line": 48,
                            "column": 61
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2092,
                                  2096
                                ],
                                "loc": {
                                  "start": {
                                    "line": 49,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 49,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "bufferSize",
                                "range": [
                                  2097,
                                  2107
                                ],
                                "loc": {
                                  "start": {
                                    "line": 49,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 49,
                                    "column": 23
                                  }
                                }
                              },
                              "range": [
                                2092,
                                2107
                              ],
                              "loc": {
                                "start": {
                                  "line": 49,
                                  "column": 8
                                },
                                "end": {
                                  "line": 49,
                                  "column": 23
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "bufferSize",
                              "range": [
                                2110,
                                2120
                              ],
                              "loc": {
                                "start": {
                                  "line": 49,
                                  "column": 26
                                },
                                "end": {
                                  "line": 49,
                                  "column": 36
                                }
                              }
                            },
                            "range": [
                              2092,
                              2120
                            ],
                            "loc": {
                              "start": {
                                "line": 49,
                                "column": 8
                              },
                              "end": {
                                "line": 49,
                                "column": 36
                              }
                            }
                          },
                          "range": [
                            2092,
                            2121
                          ],
                          "loc": {
                            "start": {
                              "line": 49,
                              "column": 8
                            },
                            "end": {
                              "line": 49,
                              "column": 37
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2130,
                                  2134
                                ],
                                "loc": {
                                  "start": {
                                    "line": 50,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 50,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "startBufferEvery",
                                "range": [
                                  2135,
                                  2151
                                ],
                                "loc": {
                                  "start": {
                                    "line": 50,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 50,
                                    "column": 29
                                  }
                                }
                              },
                              "range": [
                                2130,
                                2151
                              ],
                              "loc": {
                                "start": {
                                  "line": 50,
                                  "column": 8
                                },
                                "end": {
                                  "line": 50,
                                  "column": 29
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "startBufferEvery",
                              "range": [
                                2154,
                                2170
                              ],
                              "loc": {
                                "start": {
                                  "line": 50,
                                  "column": 32
                                },
                                "end": {
                                  "line": 50,
                                  "column": 48
                                }
                              }
                            },
                            "range": [
                              2130,
                              2170
                            ],
                            "loc": {
                              "start": {
                                "line": 50,
                                "column": 8
                              },
                              "end": {
                                "line": 50,
                                "column": 48
                              }
                            }
                          },
                          "range": [
                            2130,
                            2171
                          ],
                          "loc": {
                            "start": {
                              "line": 50,
                              "column": 8
                            },
                            "end": {
                              "line": 50,
                              "column": 49
                            }
                          }
                        }
                      ],
                      "range": [
                        2082,
                        2177
                      ],
                      "loc": {
                        "start": {
                          "line": 48,
                          "column": 63
                        },
                        "end": {
                          "line": 51,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      2023,
                      2177
                    ],
                    "loc": {
                      "start": {
                        "line": 48,
                        "column": 4
                      },
                      "end": {
                        "line": 51,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "BufferCountOperator",
                            "range": [
                              2182,
                              2201
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 4
                              },
                              "end": {
                                "line": 52,
                                "column": 23
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2202,
                              2211
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 24
                              },
                              "end": {
                                "line": 52,
                                "column": 33
                              }
                            }
                          },
                          "range": [
                            2182,
                            2211
                          ],
                          "loc": {
                            "start": {
                              "line": 52,
                              "column": 4
                            },
                            "end": {
                              "line": 52,
                              "column": 33
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            2212,
                            2216
                          ],
                          "loc": {
                            "start": {
                              "line": 52,
                              "column": 34
                            },
                            "end": {
                              "line": 52,
                              "column": 38
                            }
                          }
                        },
                        "range": [
                          2182,
                          2216
                        ],
                        "loc": {
                          "start": {
                            "line": 52,
                            "column": 4
                          },
                          "end": {
                            "line": 52,
                            "column": 38
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              2229,
                              2239
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 51
                              },
                              "end": {
                                "line": 52,
                                "column": 61
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              2241,
                              2247
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 63
                              },
                              "end": {
                                "line": 52,
                                "column": 69
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "source",
                                    "range": [
                                      2266,
                                      2272
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 53,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 53,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_subscribe",
                                    "range": [
                                      2273,
                                      2283
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 53,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 53,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    2266,
                                    2283
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 53,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 53,
                                      "column": 32
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "BufferCountSubscriber",
                                      "range": [
                                        2288,
                                        2309
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 53,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 53,
                                          "column": 58
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          2310,
                                          2320
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 53,
                                            "column": 59
                                          },
                                          "end": {
                                            "line": 53,
                                            "column": 69
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2322,
                                            2326
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 53,
                                              "column": 71
                                            },
                                            "end": {
                                              "line": 53,
                                              "column": 75
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "bufferSize",
                                          "range": [
                                            2327,
                                            2337
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 53,
                                              "column": 76
                                            },
                                            "end": {
                                              "line": 53,
                                              "column": 86
                                            }
                                          }
                                        },
                                        "range": [
                                          2322,
                                          2337
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 53,
                                            "column": 71
                                          },
                                          "end": {
                                            "line": 53,
                                            "column": 86
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2339,
                                            2343
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 53,
                                              "column": 88
                                            },
                                            "end": {
                                              "line": 53,
                                              "column": 92
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "startBufferEvery",
                                          "range": [
                                            2344,
                                            2360
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 53,
                                              "column": 93
                                            },
                                            "end": {
                                              "line": 53,
                                              "column": 109
                                            }
                                          }
                                        },
                                        "range": [
                                          2339,
                                          2360
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 53,
                                            "column": 88
                                          },
                                          "end": {
                                            "line": 53,
                                            "column": 109
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      2284,
                                      2361
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 53,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 53,
                                        "column": 110
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2266,
                                  2362
                                ],
                                "loc": {
                                  "start": {
                                    "line": 53,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 53,
                                    "column": 111
                                  }
                                }
                              },
                              "range": [
                                2259,
                                2363
                              ],
                              "loc": {
                                "start": {
                                  "line": 53,
                                  "column": 8
                                },
                                "end": {
                                  "line": 53,
                                  "column": 112
                                }
                              }
                            }
                          ],
                          "range": [
                            2249,
                            2369
                          ],
                          "loc": {
                            "start": {
                              "line": 52,
                              "column": 71
                            },
                            "end": {
                              "line": 54,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2219,
                          2369
                        ],
                        "loc": {
                          "start": {
                            "line": 52,
                            "column": 41
                          },
                          "end": {
                            "line": 54,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2182,
                        2369
                      ],
                      "loc": {
                        "start": {
                          "line": 52,
                          "column": 4
                        },
                        "end": {
                          "line": 54,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2182,
                      2370
                    ],
                    "loc": {
                      "start": {
                        "line": 52,
                        "column": 4
                      },
                      "end": {
                        "line": 54,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "BufferCountOperator",
                      "range": [
                        2382,
                        2401
                      ],
                      "loc": {
                        "start": {
                          "line": 55,
                          "column": 11
                        },
                        "end": {
                          "line": 55,
                          "column": 30
                        }
                      }
                    },
                    "range": [
                      2375,
                      2402
                    ],
                    "loc": {
                      "start": {
                        "line": 55,
                        "column": 4
                      },
                      "end": {
                        "line": 55,
                        "column": 31
                      }
                    }
                  }
                ],
                "range": [
                  2017,
                  2404
                ],
                "loc": {
                  "start": {
                    "line": 47,
                    "column": 39
                  },
                  "end": {
                    "line": 56,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2005,
                2404
              ],
              "loc": {
                "start": {
                  "line": 47,
                  "column": 27
                },
                "end": {
                  "line": 56,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              2005,
              2406
            ],
            "loc": {
              "start": {
                "line": 47,
                "column": 27
              },
              "end": {
                "line": 56,
                "column": 3
              }
            }
          },
          "range": [
            1982,
            2407
          ],
          "loc": {
            "start": {
              "line": 47,
              "column": 4
            },
            "end": {
              "line": 56,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        1978,
        2408
      ],
      "loc": {
        "start": {
          "line": 47,
          "column": 0
        },
        "end": {
          "line": 56,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2409,
            2500
          ],
          "loc": {
            "start": {
              "line": 57,
              "column": 0
            },
            "end": {
              "line": 61,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "BufferCountSubscriber",
            "range": [
              2505,
              2526
            ],
            "loc": {
              "start": {
                "line": 62,
                "column": 4
              },
              "end": {
                "line": 62,
                "column": 25
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    2540,
                    2546
                  ],
                  "loc": {
                    "start": {
                      "line": 62,
                      "column": 39
                    },
                    "end": {
                      "line": 62,
                      "column": 45
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          2554,
                          2563
                        ],
                        "loc": {
                          "start": {
                            "line": 63,
                            "column": 4
                          },
                          "end": {
                            "line": 63,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "BufferCountSubscriber",
                          "range": [
                            2564,
                            2585
                          ],
                          "loc": {
                            "start": {
                              "line": 63,
                              "column": 14
                            },
                            "end": {
                              "line": 63,
                              "column": 35
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            2587,
                            2593
                          ],
                          "loc": {
                            "start": {
                              "line": 63,
                              "column": 37
                            },
                            "end": {
                              "line": 63,
                              "column": 43
                            }
                          }
                        }
                      ],
                      "range": [
                        2554,
                        2594
                      ],
                      "loc": {
                        "start": {
                          "line": 63,
                          "column": 4
                        },
                        "end": {
                          "line": 63,
                          "column": 44
                        }
                      }
                    },
                    "range": [
                      2554,
                      2595
                    ],
                    "loc": {
                      "start": {
                        "line": 63,
                        "column": 4
                      },
                      "end": {
                        "line": 63,
                        "column": 45
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "BufferCountSubscriber",
                      "range": [
                        2609,
                        2630
                      ],
                      "loc": {
                        "start": {
                          "line": 64,
                          "column": 13
                        },
                        "end": {
                          "line": 64,
                          "column": 34
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          2631,
                          2642
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 35
                          },
                          "end": {
                            "line": 64,
                            "column": 46
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "bufferSize",
                        "range": [
                          2644,
                          2654
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 48
                          },
                          "end": {
                            "line": 64,
                            "column": 58
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "startBufferEvery",
                        "range": [
                          2656,
                          2672
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 60
                          },
                          "end": {
                            "line": 64,
                            "column": 76
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  2684,
                                  2690
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  2691,
                                  2695
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                2684,
                                2695
                              ],
                              "loc": {
                                "start": {
                                  "line": 65,
                                  "column": 8
                                },
                                "end": {
                                  "line": 65,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  2696,
                                  2700
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  2702,
                                  2713
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              2684,
                              2714
                            ],
                            "loc": {
                              "start": {
                                "line": 65,
                                "column": 8
                              },
                              "end": {
                                "line": 65,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            2684,
                            2715
                          ],
                          "loc": {
                            "start": {
                              "line": 65,
                              "column": 8
                            },
                            "end": {
                              "line": 65,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2724,
                                  2728
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "bufferSize",
                                "range": [
                                  2729,
                                  2739
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 23
                                  }
                                }
                              },
                              "range": [
                                2724,
                                2739
                              ],
                              "loc": {
                                "start": {
                                  "line": 66,
                                  "column": 8
                                },
                                "end": {
                                  "line": 66,
                                  "column": 23
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "bufferSize",
                              "range": [
                                2742,
                                2752
                              ],
                              "loc": {
                                "start": {
                                  "line": 66,
                                  "column": 26
                                },
                                "end": {
                                  "line": 66,
                                  "column": 36
                                }
                              }
                            },
                            "range": [
                              2724,
                              2752
                            ],
                            "loc": {
                              "start": {
                                "line": 66,
                                "column": 8
                              },
                              "end": {
                                "line": 66,
                                "column": 36
                              }
                            }
                          },
                          "range": [
                            2724,
                            2753
                          ],
                          "loc": {
                            "start": {
                              "line": 66,
                              "column": 8
                            },
                            "end": {
                              "line": 66,
                              "column": 37
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2762,
                                  2766
                                ],
                                "loc": {
                                  "start": {
                                    "line": 67,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 67,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "startBufferEvery",
                                "range": [
                                  2767,
                                  2783
                                ],
                                "loc": {
                                  "start": {
                                    "line": 67,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 67,
                                    "column": 29
                                  }
                                }
                              },
                              "range": [
                                2762,
                                2783
                              ],
                              "loc": {
                                "start": {
                                  "line": 67,
                                  "column": 8
                                },
                                "end": {
                                  "line": 67,
                                  "column": 29
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "startBufferEvery",
                              "range": [
                                2786,
                                2802
                              ],
                              "loc": {
                                "start": {
                                  "line": 67,
                                  "column": 32
                                },
                                "end": {
                                  "line": 67,
                                  "column": 48
                                }
                              }
                            },
                            "range": [
                              2762,
                              2802
                            ],
                            "loc": {
                              "start": {
                                "line": 67,
                                "column": 8
                              },
                              "end": {
                                "line": 67,
                                "column": 48
                              }
                            }
                          },
                          "range": [
                            2762,
                            2803
                          ],
                          "loc": {
                            "start": {
                              "line": 67,
                              "column": 8
                            },
                            "end": {
                              "line": 67,
                              "column": 49
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2812,
                                  2816
                                ],
                                "loc": {
                                  "start": {
                                    "line": 68,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 68,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "buffers",
                                "range": [
                                  2817,
                                  2824
                                ],
                                "loc": {
                                  "start": {
                                    "line": 68,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 68,
                                    "column": 20
                                  }
                                }
                              },
                              "range": [
                                2812,
                                2824
                              ],
                              "loc": {
                                "start": {
                                  "line": 68,
                                  "column": 8
                                },
                                "end": {
                                  "line": 68,
                                  "column": 20
                                }
                              }
                            },
                            "right": {
                              "type": "ArrayExpression",
                              "elements": [],
                              "range": [
                                2827,
                                2829
                              ],
                              "loc": {
                                "start": {
                                  "line": 68,
                                  "column": 23
                                },
                                "end": {
                                  "line": 68,
                                  "column": 25
                                }
                              }
                            },
                            "range": [
                              2812,
                              2829
                            ],
                            "loc": {
                              "start": {
                                "line": 68,
                                "column": 8
                              },
                              "end": {
                                "line": 68,
                                "column": 25
                              }
                            }
                          },
                          "range": [
                            2812,
                            2830
                          ],
                          "loc": {
                            "start": {
                              "line": 68,
                              "column": 8
                            },
                            "end": {
                              "line": 68,
                              "column": 26
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2839,
                                  2843
                                ],
                                "loc": {
                                  "start": {
                                    "line": 69,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 69,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "count",
                                "range": [
                                  2844,
                                  2849
                                ],
                                "loc": {
                                  "start": {
                                    "line": 69,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 69,
                                    "column": 18
                                  }
                                }
                              },
                              "range": [
                                2839,
                                2849
                              ],
                              "loc": {
                                "start": {
                                  "line": 69,
                                  "column": 8
                                },
                                "end": {
                                  "line": 69,
                                  "column": 18
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": 0,
                              "raw": "0",
                              "range": [
                                2852,
                                2853
                              ],
                              "loc": {
                                "start": {
                                  "line": 69,
                                  "column": 21
                                },
                                "end": {
                                  "line": 69,
                                  "column": 22
                                }
                              }
                            },
                            "range": [
                              2839,
                              2853
                            ],
                            "loc": {
                              "start": {
                                "line": 69,
                                "column": 8
                              },
                              "end": {
                                "line": 69,
                                "column": 22
                              }
                            }
                          },
                          "range": [
                            2839,
                            2854
                          ],
                          "loc": {
                            "start": {
                              "line": 69,
                              "column": 8
                            },
                            "end": {
                              "line": 69,
                              "column": 23
                            }
                          }
                        }
                      ],
                      "range": [
                        2674,
                        2860
                      ],
                      "loc": {
                        "start": {
                          "line": 64,
                          "column": 78
                        },
                        "end": {
                          "line": 70,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      2600,
                      2860
                    ],
                    "loc": {
                      "start": {
                        "line": 64,
                        "column": 4
                      },
                      "end": {
                        "line": 70,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "BufferCountSubscriber",
                            "range": [
                              2865,
                              2886
                            ],
                            "loc": {
                              "start": {
                                "line": 71,
                                "column": 4
                              },
                              "end": {
                                "line": 71,
                                "column": 25
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2887,
                              2896
                            ],
                            "loc": {
                              "start": {
                                "line": 71,
                                "column": 26
                              },
                              "end": {
                                "line": 71,
                                "column": 35
                              }
                            }
                          },
                          "range": [
                            2865,
                            2896
                          ],
                          "loc": {
                            "start": {
                              "line": 71,
                              "column": 4
                            },
                            "end": {
                              "line": 71,
                              "column": 35
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_next",
                          "range": [
                            2897,
                            2902
                          ],
                          "loc": {
                            "start": {
                              "line": 71,
                              "column": 36
                            },
                            "end": {
                              "line": 71,
                              "column": 41
                            }
                          }
                        },
                        "range": [
                          2865,
                          2902
                        ],
                        "loc": {
                          "start": {
                            "line": 71,
                            "column": 4
                          },
                          "end": {
                            "line": 71,
                            "column": 41
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              2915,
                              2920
                            ],
                            "loc": {
                              "start": {
                                "line": 71,
                                "column": 54
                              },
                              "end": {
                                "line": 71,
                                "column": 59
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "count",
                                    "range": [
                                      2936,
                                      2941
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 72,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 72,
                                        "column": 17
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "UpdateExpression",
                                    "operator": "++",
                                    "argument": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          2944,
                                          2948
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 72,
                                            "column": 20
                                          },
                                          "end": {
                                            "line": 72,
                                            "column": 24
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "count",
                                        "range": [
                                          2949,
                                          2954
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 72,
                                            "column": 25
                                          },
                                          "end": {
                                            "line": 72,
                                            "column": 30
                                          }
                                        }
                                      },
                                      "range": [
                                        2944,
                                        2954
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 72,
                                          "column": 20
                                        },
                                        "end": {
                                          "line": 72,
                                          "column": 30
                                        }
                                      }
                                    },
                                    "prefix": false,
                                    "range": [
                                      2944,
                                      2956
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 72,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 72,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    2936,
                                    2956
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 72,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 72,
                                      "column": 32
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                2932,
                                2957
                              ],
                              "loc": {
                                "start": {
                                  "line": 72,
                                  "column": 8
                                },
                                "end": {
                                  "line": 72,
                                  "column": 33
                                }
                              }
                            },
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "_a",
                                    "range": [
                                      2970,
                                      2972
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 14
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "ThisExpression",
                                    "range": [
                                      2975,
                                      2979
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 17
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "range": [
                                    2970,
                                    2979
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 73,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 73,
                                      "column": 21
                                    }
                                  }
                                },
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "destination",
                                    "range": [
                                      2981,
                                      2992
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 23
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 34
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "Identifier",
                                      "name": "_a",
                                      "range": [
                                        2995,
                                        2997
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 73,
                                          "column": 39
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        2998,
                                        3009
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 40
                                        },
                                        "end": {
                                          "line": 73,
                                          "column": 51
                                        }
                                      }
                                    },
                                    "range": [
                                      2995,
                                      3009
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 37
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 51
                                      }
                                    }
                                  },
                                  "range": [
                                    2981,
                                    3009
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 73,
                                      "column": 23
                                    },
                                    "end": {
                                      "line": 73,
                                      "column": 51
                                    }
                                  }
                                },
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "bufferSize",
                                    "range": [
                                      3011,
                                      3021
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 53
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 63
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "Identifier",
                                      "name": "_a",
                                      "range": [
                                        3024,
                                        3026
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 66
                                        },
                                        "end": {
                                          "line": 73,
                                          "column": 68
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "bufferSize",
                                      "range": [
                                        3027,
                                        3037
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 69
                                        },
                                        "end": {
                                          "line": 73,
                                          "column": 79
                                        }
                                      }
                                    },
                                    "range": [
                                      3024,
                                      3037
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 66
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 79
                                      }
                                    }
                                  },
                                  "range": [
                                    3011,
                                    3037
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 73,
                                      "column": 53
                                    },
                                    "end": {
                                      "line": 73,
                                      "column": 79
                                    }
                                  }
                                },
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "startBufferEvery",
                                    "range": [
                                      3039,
                                      3055
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 81
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 97
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "Identifier",
                                      "name": "_a",
                                      "range": [
                                        3058,
                                        3060
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 100
                                        },
                                        "end": {
                                          "line": 73,
                                          "column": 102
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "startBufferEvery",
                                      "range": [
                                        3061,
                                        3077
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 103
                                        },
                                        "end": {
                                          "line": 73,
                                          "column": 119
                                        }
                                      }
                                    },
                                    "range": [
                                      3058,
                                      3077
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 100
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 119
                                      }
                                    }
                                  },
                                  "range": [
                                    3039,
                                    3077
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 73,
                                      "column": 81
                                    },
                                    "end": {
                                      "line": 73,
                                      "column": 119
                                    }
                                  }
                                },
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "buffers",
                                    "range": [
                                      3079,
                                      3086
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 121
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 128
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "Identifier",
                                      "name": "_a",
                                      "range": [
                                        3089,
                                        3091
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 131
                                        },
                                        "end": {
                                          "line": 73,
                                          "column": 133
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "buffers",
                                      "range": [
                                        3092,
                                        3099
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 134
                                        },
                                        "end": {
                                          "line": 73,
                                          "column": 141
                                        }
                                      }
                                    },
                                    "range": [
                                      3089,
                                      3099
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 131
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 141
                                      }
                                    }
                                  },
                                  "range": [
                                    3079,
                                    3099
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 73,
                                      "column": 121
                                    },
                                    "end": {
                                      "line": 73,
                                      "column": 141
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                2966,
                                3100
                              ],
                              "loc": {
                                "start": {
                                  "line": 73,
                                  "column": 8
                                },
                                "end": {
                                  "line": 73,
                                  "column": 142
                                }
                              }
                            },
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "startOn",
                                    "range": [
                                      3113,
                                      3120
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 74,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 74,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "ConditionalExpression",
                                    "test": {
                                      "type": "BinaryExpression",
                                      "operator": "==",
                                      "left": {
                                        "type": "Identifier",
                                        "name": "startBufferEvery",
                                        "range": [
                                          3124,
                                          3140
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 74,
                                            "column": 23
                                          },
                                          "end": {
                                            "line": 74,
                                            "column": 39
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": null,
                                        "raw": "null",
                                        "range": [
                                          3144,
                                          3148
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 74,
                                            "column": 43
                                          },
                                          "end": {
                                            "line": 74,
                                            "column": 47
                                          }
                                        }
                                      },
                                      "range": [
                                        3124,
                                        3148
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 74,
                                          "column": 23
                                        },
                                        "end": {
                                          "line": 74,
                                          "column": 47
                                        }
                                      }
                                    },
                                    "consequent": {
                                      "type": "Identifier",
                                      "name": "bufferSize",
                                      "range": [
                                        3152,
                                        3162
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 74,
                                          "column": 51
                                        },
                                        "end": {
                                          "line": 74,
                                          "column": 61
                                        }
                                      }
                                    },
                                    "alternate": {
                                      "type": "Identifier",
                                      "name": "startBufferEvery",
                                      "range": [
                                        3165,
                                        3181
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 74,
                                          "column": 64
                                        },
                                        "end": {
                                          "line": 74,
                                          "column": 80
                                        }
                                      }
                                    },
                                    "range": [
                                      3123,
                                      3181
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 74,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 74,
                                        "column": 80
                                      }
                                    }
                                  },
                                  "range": [
                                    3113,
                                    3181
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 74,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 74,
                                      "column": 80
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                3109,
                                3182
                              ],
                              "loc": {
                                "start": {
                                  "line": 74,
                                  "column": 8
                                },
                                "end": {
                                  "line": 74,
                                  "column": 81
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "BinaryExpression",
                                "operator": "===",
                                "left": {
                                  "type": "BinaryExpression",
                                  "operator": "%",
                                  "left": {
                                    "type": "Identifier",
                                    "name": "count",
                                    "range": [
                                      3195,
                                      3200
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 17
                                      }
                                    }
                                  },
                                  "right": {
                                    "type": "Identifier",
                                    "name": "startOn",
                                    "range": [
                                      3203,
                                      3210
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 27
                                      }
                                    }
                                  },
                                  "range": [
                                    3195,
                                    3210
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 75,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 75,
                                      "column": 27
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Literal",
                                  "value": 0,
                                  "raw": "0",
                                  "range": [
                                    3215,
                                    3216
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 75,
                                      "column": 32
                                    },
                                    "end": {
                                      "line": 75,
                                      "column": 33
                                    }
                                  }
                                },
                                "range": [
                                  3195,
                                  3216
                                ],
                                "loc": {
                                  "start": {
                                    "line": 75,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 75,
                                    "column": 33
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "buffers",
                                          "range": [
                                            3232,
                                            3239
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 76,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 76,
                                              "column": 19
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "push",
                                          "range": [
                                            3240,
                                            3244
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 76,
                                              "column": 20
                                            },
                                            "end": {
                                              "line": 76,
                                              "column": 24
                                            }
                                          }
                                        },
                                        "range": [
                                          3232,
                                          3244
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 76,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 76,
                                            "column": 24
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "ArrayExpression",
                                          "elements": [],
                                          "range": [
                                            3245,
                                            3247
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 76,
                                              "column": 25
                                            },
                                            "end": {
                                              "line": 76,
                                              "column": 27
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3232,
                                        3248
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 76,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 76,
                                          "column": 28
                                        }
                                      }
                                    },
                                    "range": [
                                      3232,
                                      3249
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 76,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 76,
                                        "column": 29
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3218,
                                  3259
                                ],
                                "loc": {
                                  "start": {
                                    "line": 75,
                                    "column": 35
                                  },
                                  "end": {
                                    "line": 77,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                3191,
                                3259
                              ],
                              "loc": {
                                "start": {
                                  "line": 75,
                                  "column": 8
                                },
                                "end": {
                                  "line": 77,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "ForStatement",
                              "init": {
                                "type": "VariableDeclaration",
                                "declarations": [
                                  {
                                    "type": "VariableDeclarator",
                                    "id": {
                                      "type": "Identifier",
                                      "name": "i",
                                      "range": [
                                        3277,
                                        3278
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 78,
                                          "column": 17
                                        },
                                        "end": {
                                          "line": 78,
                                          "column": 18
                                        }
                                      }
                                    },
                                    "init": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "Identifier",
                                        "name": "buffers",
                                        "range": [
                                          3281,
                                          3288
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 78,
                                            "column": 21
                                          },
                                          "end": {
                                            "line": 78,
                                            "column": 28
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "length",
                                        "range": [
                                          3289,
                                          3295
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 78,
                                            "column": 29
                                          },
                                          "end": {
                                            "line": 78,
                                            "column": 35
                                          }
                                        }
                                      },
                                      "range": [
                                        3281,
                                        3295
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 78,
                                          "column": 21
                                        },
                                        "end": {
                                          "line": 78,
                                          "column": 35
                                        }
                                      }
                                    },
                                    "range": [
                                      3277,
                                      3295
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 78,
                                        "column": 17
                                      },
                                      "end": {
                                        "line": 78,
                                        "column": 35
                                      }
                                    }
                                  }
                                ],
                                "kind": "var",
                                "range": [
                                  3273,
                                  3295
                                ],
                                "loc": {
                                  "start": {
                                    "line": 78,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 78,
                                    "column": 35
                                  }
                                }
                              },
                              "test": {
                                "type": "UpdateExpression",
                                "operator": "--",
                                "argument": {
                                  "type": "Identifier",
                                  "name": "i",
                                  "range": [
                                    3297,
                                    3298
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 78,
                                      "column": 37
                                    },
                                    "end": {
                                      "line": 78,
                                      "column": 38
                                    }
                                  }
                                },
                                "prefix": false,
                                "range": [
                                  3297,
                                  3300
                                ],
                                "loc": {
                                  "start": {
                                    "line": 78,
                                    "column": 37
                                  },
                                  "end": {
                                    "line": 78,
                                    "column": 40
                                  }
                                }
                              },
                              "update": null,
                              "body": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "VariableDeclaration",
                                    "declarations": [
                                      {
                                        "type": "VariableDeclarator",
                                        "id": {
                                          "type": "Identifier",
                                          "name": "buffer",
                                          "range": [
                                            3321,
                                            3327
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 79,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 79,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "init": {
                                          "type": "MemberExpression",
                                          "computed": true,
                                          "object": {
                                            "type": "Identifier",
                                            "name": "buffers",
                                            "range": [
                                              3330,
                                              3337
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 79,
                                                "column": 25
                                              },
                                              "end": {
                                                "line": 79,
                                                "column": 32
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "i",
                                            "range": [
                                              3338,
                                              3339
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 79,
                                                "column": 33
                                              },
                                              "end": {
                                                "line": 79,
                                                "column": 34
                                              }
                                            }
                                          },
                                          "range": [
                                            3330,
                                            3340
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 79,
                                              "column": 25
                                            },
                                            "end": {
                                              "line": 79,
                                              "column": 35
                                            }
                                          }
                                        },
                                        "range": [
                                          3321,
                                          3340
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 79,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 79,
                                            "column": 35
                                          }
                                        }
                                      }
                                    ],
                                    "kind": "var",
                                    "range": [
                                      3317,
                                      3341
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 79,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 79,
                                        "column": 36
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "buffer",
                                          "range": [
                                            3354,
                                            3360
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 80,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 80,
                                              "column": 18
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "push",
                                          "range": [
                                            3361,
                                            3365
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 80,
                                              "column": 19
                                            },
                                            "end": {
                                              "line": 80,
                                              "column": 23
                                            }
                                          }
                                        },
                                        "range": [
                                          3354,
                                          3365
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 80,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 80,
                                            "column": 23
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "value",
                                          "range": [
                                            3366,
                                            3371
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 80,
                                              "column": 24
                                            },
                                            "end": {
                                              "line": 80,
                                              "column": 29
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3354,
                                        3372
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 80,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 80,
                                          "column": 30
                                        }
                                      }
                                    },
                                    "range": [
                                      3354,
                                      3373
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 80,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 80,
                                        "column": 31
                                      }
                                    }
                                  },
                                  {
                                    "type": "IfStatement",
                                    "test": {
                                      "type": "BinaryExpression",
                                      "operator": "===",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "buffer",
                                          "range": [
                                            3390,
                                            3396
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 81,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 81,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "length",
                                          "range": [
                                            3397,
                                            3403
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 81,
                                              "column": 23
                                            },
                                            "end": {
                                              "line": 81,
                                              "column": 29
                                            }
                                          }
                                        },
                                        "range": [
                                          3390,
                                          3403
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 81,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 81,
                                            "column": 29
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Identifier",
                                        "name": "bufferSize",
                                        "range": [
                                          3408,
                                          3418
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 81,
                                            "column": 34
                                          },
                                          "end": {
                                            "line": 81,
                                            "column": 44
                                          }
                                        }
                                      },
                                      "range": [
                                        3390,
                                        3418
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 81,
                                          "column": 16
                                        },
                                        "end": {
                                          "line": 81,
                                          "column": 44
                                        }
                                      }
                                    },
                                    "consequent": {
                                      "type": "BlockStatement",
                                      "body": [
                                        {
                                          "type": "ExpressionStatement",
                                          "expression": {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "Identifier",
                                                "name": "buffers",
                                                "range": [
                                                  3438,
                                                  3445
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 82,
                                                    "column": 16
                                                  },
                                                  "end": {
                                                    "line": 82,
                                                    "column": 23
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "splice",
                                                "range": [
                                                  3446,
                                                  3452
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 82,
                                                    "column": 24
                                                  },
                                                  "end": {
                                                    "line": 82,
                                                    "column": 30
                                                  }
                                                }
                                              },
                                              "range": [
                                                3438,
                                                3452
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 82,
                                                  "column": 16
                                                },
                                                "end": {
                                                  "line": 82,
                                                  "column": 30
                                                }
                                              }
                                            },
                                            "arguments": [
                                              {
                                                "type": "Identifier",
                                                "name": "i",
                                                "range": [
                                                  3453,
                                                  3454
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 82,
                                                    "column": 31
                                                  },
                                                  "end": {
                                                    "line": 82,
                                                    "column": 32
                                                  }
                                                }
                                              },
                                              {
                                                "type": "Literal",
                                                "value": 1,
                                                "raw": "1",
                                                "range": [
                                                  3456,
                                                  3457
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 82,
                                                    "column": 34
                                                  },
                                                  "end": {
                                                    "line": 82,
                                                    "column": 35
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              3438,
                                              3458
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 82,
                                                "column": 16
                                              },
                                              "end": {
                                                "line": 82,
                                                "column": 36
                                              }
                                            }
                                          },
                                          "range": [
                                            3438,
                                            3459
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 82,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 82,
                                              "column": 37
                                            }
                                          }
                                        },
                                        {
                                          "type": "ExpressionStatement",
                                          "expression": {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "Identifier",
                                                "name": "destination",
                                                "range": [
                                                  3476,
                                                  3487
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 83,
                                                    "column": 16
                                                  },
                                                  "end": {
                                                    "line": 83,
                                                    "column": 27
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "next",
                                                "range": [
                                                  3488,
                                                  3492
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 83,
                                                    "column": 28
                                                  },
                                                  "end": {
                                                    "line": 83,
                                                    "column": 32
                                                  }
                                                }
                                              },
                                              "range": [
                                                3476,
                                                3492
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 83,
                                                  "column": 16
                                                },
                                                "end": {
                                                  "line": 83,
                                                  "column": 32
                                                }
                                              }
                                            },
                                            "arguments": [
                                              {
                                                "type": "Identifier",
                                                "name": "buffer",
                                                "range": [
                                                  3493,
                                                  3499
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 83,
                                                    "column": 33
                                                  },
                                                  "end": {
                                                    "line": 83,
                                                    "column": 39
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              3476,
                                              3500
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 83,
                                                "column": 16
                                              },
                                              "end": {
                                                "line": 83,
                                                "column": 40
                                              }
                                            }
                                          },
                                          "range": [
                                            3476,
                                            3501
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 83,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 83,
                                              "column": 41
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3420,
                                        3515
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 81,
                                          "column": 46
                                        },
                                        "end": {
                                          "line": 84,
                                          "column": 13
                                        }
                                      }
                                    },
                                    "alternate": null,
                                    "range": [
                                      3386,
                                      3515
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 81,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 84,
                                        "column": 13
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3303,
                                  3525
                                ],
                                "loc": {
                                  "start": {
                                    "line": 78,
                                    "column": 43
                                  },
                                  "end": {
                                    "line": 85,
                                    "column": 9
                                  }
                                }
                              },
                              "range": [
                                3268,
                                3525
                              ],
                              "loc": {
                                "start": {
                                  "line": 78,
                                  "column": 8
                                },
                                "end": {
                                  "line": 85,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            2922,
                            3531
                          ],
                          "loc": {
                            "start": {
                              "line": 71,
                              "column": 61
                            },
                            "end": {
                              "line": 86,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2905,
                          3531
                        ],
                        "loc": {
                          "start": {
                            "line": 71,
                            "column": 44
                          },
                          "end": {
                            "line": 86,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2865,
                        3531
                      ],
                      "loc": {
                        "start": {
                          "line": 71,
                          "column": 4
                        },
                        "end": {
                          "line": 86,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2865,
                      3532
                    ],
                    "loc": {
                      "start": {
                        "line": 71,
                        "column": 4
                      },
                      "end": {
                        "line": 86,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "BufferCountSubscriber",
                            "range": [
                              3537,
                              3558
                            ],
                            "loc": {
                              "start": {
                                "line": 87,
                                "column": 4
                              },
                              "end": {
                                "line": 87,
                                "column": 25
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3559,
                              3568
                            ],
                            "loc": {
                              "start": {
                                "line": 87,
                                "column": 26
                              },
                              "end": {
                                "line": 87,
                                "column": 35
                              }
                            }
                          },
                          "range": [
                            3537,
                            3568
                          ],
                          "loc": {
                            "start": {
                              "line": 87,
                              "column": 4
                            },
                            "end": {
                              "line": 87,
                              "column": 35
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_complete",
                          "range": [
                            3569,
                            3578
                          ],
                          "loc": {
                            "start": {
                              "line": 87,
                              "column": 36
                            },
                            "end": {
                              "line": 87,
                              "column": 45
                            }
                          }
                        },
                        "range": [
                          3537,
                          3578
                        ],
                        "loc": {
                          "start": {
                            "line": 87,
                            "column": 4
                          },
                          "end": {
                            "line": 87,
                            "column": 45
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "destination",
                                    "range": [
                                      3607,
                                      3618
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 88,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 88,
                                        "column": 23
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3621,
                                        3625
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 88,
                                          "column": 26
                                        },
                                        "end": {
                                          "line": 88,
                                          "column": 30
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        3626,
                                        3637
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 88,
                                          "column": 31
                                        },
                                        "end": {
                                          "line": 88,
                                          "column": 42
                                        }
                                      }
                                    },
                                    "range": [
                                      3621,
                                      3637
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 88,
                                        "column": 26
                                      },
                                      "end": {
                                        "line": 88,
                                        "column": 42
                                      }
                                    }
                                  },
                                  "range": [
                                    3607,
                                    3637
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 88,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 88,
                                      "column": 42
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                3603,
                                3638
                              ],
                              "loc": {
                                "start": {
                                  "line": 88,
                                  "column": 8
                                },
                                "end": {
                                  "line": 88,
                                  "column": 43
                                }
                              }
                            },
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "buffers",
                                    "range": [
                                      3651,
                                      3658
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 89,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 89,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3661,
                                        3665
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 89,
                                          "column": 22
                                        },
                                        "end": {
                                          "line": 89,
                                          "column": 26
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "buffers",
                                      "range": [
                                        3666,
                                        3673
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 89,
                                          "column": 27
                                        },
                                        "end": {
                                          "line": 89,
                                          "column": 34
                                        }
                                      }
                                    },
                                    "range": [
                                      3661,
                                      3673
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 89,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 89,
                                        "column": 34
                                      }
                                    }
                                  },
                                  "range": [
                                    3651,
                                    3673
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 89,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 89,
                                      "column": 34
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                3647,
                                3674
                              ],
                              "loc": {
                                "start": {
                                  "line": 89,
                                  "column": 8
                                },
                                "end": {
                                  "line": 89,
                                  "column": 35
                                }
                              }
                            },
                            {
                              "type": "WhileStatement",
                              "test": {
                                "type": "BinaryExpression",
                                "operator": ">",
                                "left": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "buffers",
                                    "range": [
                                      3690,
                                      3697
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 90,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 90,
                                        "column": 22
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "length",
                                    "range": [
                                      3698,
                                      3704
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 90,
                                        "column": 23
                                      },
                                      "end": {
                                        "line": 90,
                                        "column": 29
                                      }
                                    }
                                  },
                                  "range": [
                                    3690,
                                    3704
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 90,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 90,
                                      "column": 29
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Literal",
                                  "value": 0,
                                  "raw": "0",
                                  "range": [
                                    3707,
                                    3708
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 90,
                                      "column": 32
                                    },
                                    "end": {
                                      "line": 90,
                                      "column": 33
                                    }
                                  }
                                },
                                "range": [
                                  3690,
                                  3708
                                ],
                                "loc": {
                                  "start": {
                                    "line": 90,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 90,
                                    "column": 33
                                  }
                                }
                              },
                              "body": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "VariableDeclaration",
                                    "declarations": [
                                      {
                                        "type": "VariableDeclarator",
                                        "id": {
                                          "type": "Identifier",
                                          "name": "buffer",
                                          "range": [
                                            3728,
                                            3734
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 91,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 91,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "init": {
                                          "type": "CallExpression",
                                          "callee": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "Identifier",
                                              "name": "buffers",
                                              "range": [
                                                3737,
                                                3744
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 91,
                                                  "column": 25
                                                },
                                                "end": {
                                                  "line": 91,
                                                  "column": 32
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "shift",
                                              "range": [
                                                3745,
                                                3750
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 91,
                                                  "column": 33
                                                },
                                                "end": {
                                                  "line": 91,
                                                  "column": 38
                                                }
                                              }
                                            },
                                            "range": [
                                              3737,
                                              3750
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 91,
                                                "column": 25
                                              },
                                              "end": {
                                                "line": 91,
                                                "column": 38
                                              }
                                            }
                                          },
                                          "arguments": [],
                                          "range": [
                                            3737,
                                            3752
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 91,
                                              "column": 25
                                            },
                                            "end": {
                                              "line": 91,
                                              "column": 40
                                            }
                                          }
                                        },
                                        "range": [
                                          3728,
                                          3752
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 91,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 91,
                                            "column": 40
                                          }
                                        }
                                      }
                                    ],
                                    "kind": "var",
                                    "range": [
                                      3724,
                                      3753
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 91,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 91,
                                        "column": 41
                                      }
                                    }
                                  },
                                  {
                                    "type": "IfStatement",
                                    "test": {
                                      "type": "BinaryExpression",
                                      "operator": ">",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "buffer",
                                          "range": [
                                            3770,
                                            3776
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 92,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 92,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "length",
                                          "range": [
                                            3777,
                                            3783
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 92,
                                              "column": 23
                                            },
                                            "end": {
                                              "line": 92,
                                              "column": 29
                                            }
                                          }
                                        },
                                        "range": [
                                          3770,
                                          3783
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 92,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 92,
                                            "column": 29
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": 0,
                                        "raw": "0",
                                        "range": [
                                          3786,
                                          3787
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 92,
                                            "column": 32
                                          },
                                          "end": {
                                            "line": 92,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "range": [
                                        3770,
                                        3787
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 92,
                                          "column": 16
                                        },
                                        "end": {
                                          "line": 92,
                                          "column": 33
                                        }
                                      }
                                    },
                                    "consequent": {
                                      "type": "BlockStatement",
                                      "body": [
                                        {
                                          "type": "ExpressionStatement",
                                          "expression": {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "Identifier",
                                                "name": "destination",
                                                "range": [
                                                  3807,
                                                  3818
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 93,
                                                    "column": 16
                                                  },
                                                  "end": {
                                                    "line": 93,
                                                    "column": 27
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "next",
                                                "range": [
                                                  3819,
                                                  3823
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 93,
                                                    "column": 28
                                                  },
                                                  "end": {
                                                    "line": 93,
                                                    "column": 32
                                                  }
                                                }
                                              },
                                              "range": [
                                                3807,
                                                3823
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 93,
                                                  "column": 16
                                                },
                                                "end": {
                                                  "line": 93,
                                                  "column": 32
                                                }
                                              }
                                            },
                                            "arguments": [
                                              {
                                                "type": "Identifier",
                                                "name": "buffer",
                                                "range": [
                                                  3824,
                                                  3830
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 93,
                                                    "column": 33
                                                  },
                                                  "end": {
                                                    "line": 93,
                                                    "column": 39
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              3807,
                                              3831
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 93,
                                                "column": 16
                                              },
                                              "end": {
                                                "line": 93,
                                                "column": 40
                                              }
                                            }
                                          },
                                          "range": [
                                            3807,
                                            3832
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 93,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 93,
                                              "column": 41
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3789,
                                        3846
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 92,
                                          "column": 35
                                        },
                                        "end": {
                                          "line": 94,
                                          "column": 13
                                        }
                                      }
                                    },
                                    "alternate": null,
                                    "range": [
                                      3766,
                                      3846
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 92,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 94,
                                        "column": 13
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3710,
                                  3856
                                ],
                                "loc": {
                                  "start": {
                                    "line": 90,
                                    "column": 35
                                  },
                                  "end": {
                                    "line": 95,
                                    "column": 9
                                  }
                                }
                              },
                              "range": [
                                3683,
                                3856
                              ],
                              "loc": {
                                "start": {
                                  "line": 90,
                                  "column": 8
                                },
                                "end": {
                                  "line": 95,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "Identifier",
                                        "name": "_super",
                                        "range": [
                                          3865,
                                          3871
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 96,
                                            "column": 8
                                          },
                                          "end": {
                                            "line": 96,
                                            "column": 14
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "prototype",
                                        "range": [
                                          3872,
                                          3881
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 96,
                                            "column": 15
                                          },
                                          "end": {
                                            "line": 96,
                                            "column": 24
                                          }
                                        }
                                      },
                                      "range": [
                                        3865,
                                        3881
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 96,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 96,
                                          "column": 24
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "_complete",
                                      "range": [
                                        3882,
                                        3891
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 96,
                                          "column": 25
                                        },
                                        "end": {
                                          "line": 96,
                                          "column": 34
                                        }
                                      }
                                    },
                                    "range": [
                                      3865,
                                      3891
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 96,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 96,
                                        "column": 34
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "call",
                                    "range": [
                                      3892,
                                      3896
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 96,
                                        "column": 35
                                      },
                                      "end": {
                                        "line": 96,
                                        "column": 39
                                      }
                                    }
                                  },
                                  "range": [
                                    3865,
                                    3896
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 96,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 96,
                                      "column": 39
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "ThisExpression",
                                    "range": [
                                      3897,
                                      3901
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 96,
                                        "column": 40
                                      },
                                      "end": {
                                        "line": 96,
                                        "column": 44
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3865,
                                  3902
                                ],
                                "loc": {
                                  "start": {
                                    "line": 96,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 96,
                                    "column": 45
                                  }
                                }
                              },
                              "range": [
                                3865,
                                3903
                              ],
                              "loc": {
                                "start": {
                                  "line": 96,
                                  "column": 8
                                },
                                "end": {
                                  "line": 96,
                                  "column": 46
                                }
                              }
                            }
                          ],
                          "range": [
                            3593,
                            3909
                          ],
                          "loc": {
                            "start": {
                              "line": 87,
                              "column": 60
                            },
                            "end": {
                              "line": 97,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3581,
                          3909
                        ],
                        "loc": {
                          "start": {
                            "line": 87,
                            "column": 48
                          },
                          "end": {
                            "line": 97,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3537,
                        3909
                      ],
                      "loc": {
                        "start": {
                          "line": 87,
                          "column": 4
                        },
                        "end": {
                          "line": 97,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3537,
                      3910
                    ],
                    "loc": {
                      "start": {
                        "line": 87,
                        "column": 4
                      },
                      "end": {
                        "line": 97,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "BufferCountSubscriber",
                      "range": [
                        3922,
                        3943
                      ],
                      "loc": {
                        "start": {
                          "line": 98,
                          "column": 11
                        },
                        "end": {
                          "line": 98,
                          "column": 32
                        }
                      }
                    },
                    "range": [
                      3915,
                      3944
                    ],
                    "loc": {
                      "start": {
                        "line": 98,
                        "column": 4
                      },
                      "end": {
                        "line": 98,
                        "column": 33
                      }
                    }
                  }
                ],
                "range": [
                  2548,
                  3946
                ],
                "loc": {
                  "start": {
                    "line": 62,
                    "column": 47
                  },
                  "end": {
                    "line": 99,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2530,
                3946
              ],
              "loc": {
                "start": {
                  "line": 62,
                  "column": 29
                },
                "end": {
                  "line": 99,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "Subscriber",
                "range": [
                  3947,
                  3957
                ],
                "loc": {
                  "start": {
                    "line": 99,
                    "column": 2
                  },
                  "end": {
                    "line": 99,
                    "column": 12
                  }
                }
              }
            ],
            "range": [
              2530,
              3958
            ],
            "loc": {
              "start": {
                "line": 62,
                "column": 29
              },
              "end": {
                "line": 99,
                "column": 13
              }
            }
          },
          "range": [
            2505,
            3959
          ],
          "loc": {
            "start": {
              "line": 62,
              "column": 4
            },
            "end": {
              "line": 99,
              "column": 14
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        2501,
        3960
      ],
      "loc": {
        "start": {
          "line": 62,
          "column": 0
        },
        "end": {
          "line": 99,
          "column": 15
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2409,
            2500
          ],
          "loc": {
            "start": {
              "line": 57,
              "column": 0
            },
            "end": {
              "line": 61,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=bufferCount.js.map",
          "range": [
            3961,
            4000
          ],
          "loc": {
            "start": {
              "line": 100,
              "column": 0
            },
            "end": {
              "line": 100,
              "column": 39
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    3960
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 99,
      "column": 15
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Buffers the source Observable values until the size hits the maximum\n * `bufferSize` given.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when its size reaches `bufferSize`.</span>\n *\n * <img src=\"./img/bufferCount.png\" width=\"100%\">\n *\n * Buffers a number of values from the source Observable by `bufferSize` then\n * emits the buffer and clears it, and starts a new buffer each\n * `startBufferEvery` values. If `startBufferEvery` is not provided or is\n * `null`, then new buffers are started immediately at the start of the source\n * and when each buffer closes and is emitted.\n *\n * @example <caption>Emit the last two click events as an array</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var buffered = clicks.bufferCount(2);\n * buffered.subscribe(x => console.log(x));\n *\n * @example <caption>On every click, emit the last two click events as an array</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var buffered = clicks.bufferCount(2, 1);\n * buffered.subscribe(x => console.log(x));\n *\n * @see {@link buffer}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link pairwise}\n * @see {@link windowCount}\n *\n * @param {number} bufferSize The maximum size of the buffer emitted.\n * @param {number} [startBufferEvery] Interval at which to start a new buffer.\n * For example if `startBufferEvery` is `2`, then a new buffer will be started\n * on every other value from the source. A new buffer is started at the\n * beginning of the source by default.\n * @return {Observable<T[]>} An Observable of arrays of buffered values.\n * @method bufferCount\n * @owner Observable\n ",
      "range": [
        44,
        1772
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 42,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        2409,
        2500
      ],
      "loc": {
        "start": {
          "line": 57,
          "column": 0
        },
        "end": {
          "line": 61,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=bufferCount.js.map",
      "range": [
        3961,
        4000
      ],
      "loc": {
        "start": {
          "line": 100,
          "column": 0
        },
        "end": {
          "line": 100,
          "column": 39
        }
      }
    }
  ]
}