Commit 3b46daa3 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'qatar/master'

* qatar/master:
  dsputil: remove debug message in dsputil_init().
  movdec: Avoid av_malloc(0) in stss
  build: Drop YASM-OBJS-FFT from SUBDIR_VARS.
  build: Drop unused X86-OBJS variable.
  avconv: remove debugging cruft from do_video_out().
  avconv: factorize setting stream_index for the output packet.
  frame{crc/md5}: set the stream timebase from codec timebase.
  apedec: remove unneeded #include of get_bits.h and associated macro
  apedec: av_fast_malloc() instead of av_realloc()
  apedec: fix handling of packet sizes that are not a multiple of 4 bytes

Conflicts:
	libavcodec/apedec.c
	tests/ref/fate/4xm-1
	tests/ref/fate/4xm-2
	tests/ref/fate/aasc
	tests/ref/fate/armovie-escape124
	tests/ref/fate/bethsoft-vid
	tests/ref/fate/cljr
	tests/ref/fate/creatureshock-avs
	tests/ref/fate/cscd
	tests/ref/fate/cvid-partial
	tests/ref/fate/deluxepaint-anm
	tests/ref/fate/dfa1
	tests/ref/fate/dfa10
	tests/ref/fate/dfa11
	tests/ref/fate/dfa2
	tests/ref/fate/dfa3
	tests/ref/fate/dfa4
	tests/ref/fate/dfa5
	tests/ref/fate/dfa6
	tests/ref/fate/dfa7
	tests/ref/fate/dfa8
	tests/ref/fate/dfa9
	tests/ref/fate/film-cvid-pcm-stereo-8bit
	tests/ref/fate/flic-af11-palette-change
	tests/ref/fate/flic-magiccarpet
	tests/ref/fate/fraps-v2
	tests/ref/fate/fraps-v3
	tests/ref/fate/h264-lossless
	tests/ref/fate/interplay-mve-16bit
	tests/ref/fate/interplay-mve-8bit
	tests/ref/fate/mimic
	tests/ref/fate/motionpixels
	tests/ref/fate/mpeg2-field-enc
	tests/ref/fate/msvideo1-16bit
	tests/ref/fate/mtv
	tests/ref/fate/nuv
	tests/ref/fate/pictor
	tests/ref/fate/prores-alpha
	tests/ref/fate/ptx
	tests/ref/fate/qtrle-16bit
	tests/ref/fate/qtrle-1bit
	tests/ref/fate/quickdraw
	tests/ref/fate/rpza
	tests/ref/fate/sierra-vmd
	tests/ref/fate/targa-conformance-CCM8
	tests/ref/fate/targa-conformance-UCM8
	tests/ref/fate/tiertex-seq
	tests/ref/fate/truemotion1-15
	tests/ref/fate/truemotion1-24
	tests/ref/fate/tscc-15bit
	tests/ref/fate/tscc-32bit
	tests/ref/fate/v210
	tests/ref/fate/vc1-ism
	tests/ref/fate/vc1_sa00040
	tests/ref/fate/vc1_sa00050
	tests/ref/fate/vc1_sa10091
	tests/ref/fate/vc1_sa20021
	tests/ref/fate/vmnc-16bit
	tests/ref/fate/vmnc-32bit
	tests/ref/fate/vp5
	tests/ref/fate/vp8-sign-bias
	tests/ref/fate/vqa-cc
	tests/ref/fate/wmv8-drm
	tests/ref/fate/yop
	tests/ref/fate/zmbv-8bit
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 670229ef 6f1a5e8d
......@@ -65,7 +65,7 @@ config.h: .config
@-tput sgr0 2>/dev/null
SUBDIR_VARS := OBJS FFLIBS CLEANFILES DIRS TESTPROGS EXAMPLES SKIPHEADERS \
ALTIVEC-OBJS MMX-OBJS NEON-OBJS X86-OBJS YASM-OBJS-FFT YASM-OBJS \
ALTIVEC-OBJS MMX-OBJS NEON-OBJS YASM-OBJS \
HOSTPROGS BUILT_HEADERS TESTOBJS ARCH_HEADERS ARMV6-OBJS TOOLS
define RESET
......
......@@ -1024,6 +1024,7 @@ static void write_frame(AVFormatContext *s, AVPacket *pkt, OutputStream *ost)
bsfc = bsfc->next;
}
pkt->stream_index = ost->index;
ret = av_interleaved_write_frame(s, pkt);
if (ret < 0) {
print_error("av_interleaved_write_frame()", ret);
......@@ -1082,7 +1083,6 @@ static int encode_audio_frame(AVFormatContext *s, OutputStream *ost,
ret = pkt.size;
if (got_packet) {
pkt.stream_index = ost->index;
if (pkt.pts != AV_NOPTS_VALUE)
pkt.pts = av_rescale_q(pkt.pts, enc->time_base, ost->st->time_base);
if (pkt.duration > 0)
......@@ -1363,7 +1363,6 @@ static void do_subtitle_out(AVFormatContext *s,
}
av_init_packet(&pkt);
pkt.stream_index = ost->index;
pkt.data = subtitle_out;
pkt.size = subtitle_out_size;
pkt.pts = av_rescale_q(sub->pts, AV_TIME_BASE_Q, ost->st->time_base);
......@@ -1487,7 +1486,6 @@ static void do_video_out(AVFormatContext *s,
ost->sync_opts = lrintf(sync_ipts);
} else if (vdelta > 1.1)
nb_frames = lrintf(vdelta);
//fprintf(stderr, "vdelta:%f, ost->sync_opts:%"PRId64", ost->sync_ipts:%f nb_frames:%d\n", vdelta, ost->sync_opts, get_sync_ipts(ost), nb_frames);
if (nb_frames == 0) {
++nb_frames_drop;
av_log(NULL, AV_LOG_VERBOSE, "*** drop!\n");
......@@ -1508,7 +1506,6 @@ static void do_video_out(AVFormatContext *s,
for (i = 0; i < nb_frames; i++) {
AVPacket pkt;
av_init_packet(&pkt);
pkt.stream_index = ost->index;
if (s->oformat->flags & AVFMT_RAWPICTURE &&
enc->codec->id == CODEC_ID_RAWVIDEO) {
......@@ -1542,10 +1539,7 @@ static void do_video_out(AVFormatContext *s,
big_picture.quality = quality;
if (!enc->me_threshold)
big_picture.pict_type = 0;
// big_picture.pts = AV_NOPTS_VALUE;
big_picture.pts = ost->sync_opts;
// big_picture.pts= av_rescale(ost->sync_opts, AV_TIME_BASE*(int64_t)enc->time_base.num, enc->time_base.den);
// av_log(NULL, AV_LOG_DEBUG, "%"PRId64" -> encoder\n", ost->sync_opts);
if (ost->forced_kf_index < ost->forced_kf_count &&
big_picture.pts >= ost->forced_kf_pts[ost->forced_kf_index]) {
big_picture.pict_type = AV_PICTURE_TYPE_I;
......@@ -1566,9 +1560,6 @@ static void do_video_out(AVFormatContext *s,
pkt.pts = av_rescale_q(ost->sync_opts, enc->time_base, ost->st->time_base);
if (enc->coded_frame->pts != AV_NOPTS_VALUE)
pkt.pts = av_rescale_q(enc->coded_frame->pts, enc->time_base, ost->st->time_base);
/*av_log(NULL, AV_LOG_DEBUG, "encoder -> %"PRId64"/%"PRId64"\n",
pkt.pts != AV_NOPTS_VALUE ? av_rescale(pkt.pts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1,
pkt.dts != AV_NOPTS_VALUE ? av_rescale(pkt.dts, enc->time_base.den, AV_TIME_BASE*(int64_t)enc->time_base.num) : -1);*/
if (enc->coded_frame->key_frame)
pkt.flags |= AV_PKT_FLAG_KEY;
......@@ -1577,8 +1568,7 @@ static void do_video_out(AVFormatContext *s,
write_frame(s, &pkt, ost);
*frame_size = ret;
video_size += ret;
// fprintf(stderr,"\nFrame: %3d size: %5d type: %d",
// enc->frame_number-1, ret, enc->pict_type);
/* if two pass, output log */
if (ost->logfile && enc->stats_out) {
fprintf(ost->logfile, "%s", enc->stats_out);
......@@ -1840,7 +1830,6 @@ static void flush_encoders(OutputStream *ost_table, int nb_ostreams)
stop_encoding = 1;
break;
}
pkt.stream_index = ost->index;
pkt.data = bit_buffer;
pkt.size = ret;
if (enc->coded_frame && enc->coded_frame->pts != AV_NOPTS_VALUE)
......@@ -1901,7 +1890,6 @@ static void do_streamcopy(InputStream *ist, OutputStream *ost, const AVPacket *p
ost->sync_opts++;
}
opkt.stream_index = ost->index;
if (pkt->pts != AV_NOPTS_VALUE)
opkt.pts = av_rescale_q(pkt->pts, ist->st->time_base, ost->st->time_base) - ost_tb_start_time;
else
......
......@@ -20,10 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#define BITSTREAM_READER_LE
#include "avcodec.h"
#include "dsputil.h"
#include "get_bits.h"
#include "bytestream.h"
#include "libavutil/audioconvert.h"
#include "libavutil/avassert.h"
......@@ -155,6 +153,7 @@ typedef struct APEContext {
uint8_t *data; ///< current frame data
uint8_t *data_end; ///< frame data end
int data_size; ///< frame data allocated size
const uint8_t *ptr; ///< current position in frame data
int error;
......@@ -171,6 +170,8 @@ static av_cold int ape_decode_close(AVCodecContext *avctx)
av_freep(&s->filterbuf[i]);
av_freep(&s->data);
s->data_size = 0;
return 0;
}
......@@ -814,7 +815,6 @@ static int ape_decode_frame(AVCodecContext *avctx, void *data,
int *got_frame_ptr, AVPacket *avpkt)
{
const uint8_t *buf = avpkt->data;
int buf_size = avpkt->size;
APEContext *s = avctx->priv_data;
int16_t *samples;
int i, ret;
......@@ -827,18 +827,23 @@ static int ape_decode_frame(AVCodecContext *avctx, void *data,
if(!s->samples){
uint32_t nblocks, offset;
int buf_size;
if (!buf_size) {
if (!avpkt->size) {
*got_frame_ptr = 0;
return 0;
}
if (buf_size < 8) {
if (avpkt->size < 8) {
av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
return AVERROR_INVALIDDATA;
}
buf_size = avpkt->size & ~3;
if (buf_size != avpkt->size) {
av_log(avctx, AV_LOG_WARNING, "packet size is not a multiple of 4. "
"extra bytes at the end will be skipped.\n");
}
av_free(s->data);
s->data = av_malloc(FFALIGN(buf_size, 4));
av_fast_malloc(&s->data, &s->data_size, buf_size);
if (!s->data)
return AVERROR(ENOMEM);
s->dsp.bswap_buf((uint32_t*)s->data, (const uint32_t*)buf, buf_size >> 2);
......@@ -873,12 +878,12 @@ static int ape_decode_frame(AVCodecContext *avctx, void *data,
return AVERROR_INVALIDDATA;
}
bytes_used = buf_size;
bytes_used = avpkt->size;
}
if (!s->data) {
*got_frame_ptr = 0;
return buf_size;
return avpkt->size;
}
blockstodecode = FFMIN(BLOCKS_PER_LOOP, s->samples);
......
......@@ -3177,8 +3177,6 @@ av_cold void dsputil_init(DSPContext* c, AVCodecContext *avctx)
}
break;
default:
av_log(avctx, AV_LOG_DEBUG, "Unsupported bit depth: %d\n", avctx->bits_per_raw_sample);
case 8:
BIT_DEPTH_FUNCS(8, _16);
break;
}
......
......@@ -97,8 +97,8 @@ OBJS-$(CONFIG_FLIC_DEMUXER) += flic.o
OBJS-$(CONFIG_FLV_DEMUXER) += flvdec.o
OBJS-$(CONFIG_FLV_MUXER) += flvenc.o avc.o
OBJS-$(CONFIG_FOURXM_DEMUXER) += 4xm.o
OBJS-$(CONFIG_FRAMECRC_MUXER) += framecrcenc.o
OBJS-$(CONFIG_FRAMEMD5_MUXER) += md5enc.o
OBJS-$(CONFIG_FRAMECRC_MUXER) += framecrcenc.o framehash.o
OBJS-$(CONFIG_FRAMEMD5_MUXER) += md5enc.o framehash.o
OBJS-$(CONFIG_GIF_MUXER) += gif.o
OBJS-$(CONFIG_GSM_DEMUXER) += gsmdec.o
OBJS-$(CONFIG_GXF_DEMUXER) += gxf.o
......
......@@ -21,13 +21,15 @@
#include "libavutil/adler32.h"
#include "avformat.h"
#include "internal.h"
static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
{
uint32_t crc = av_adler32_update(0, pkt->data, pkt->size);
char buf[256];
snprintf(buf, sizeof(buf), "%d, %"PRId64", %d, 0x%08x\n", pkt->stream_index, pkt->dts, pkt->size, crc);
snprintf(buf, sizeof(buf), "%d, %10"PRId64", %10"PRId64", %8d, %8d, 0x%08x\n",
pkt->stream_index, pkt->dts, pkt->pts, pkt->duration, pkt->size, crc);
avio_write(s->pb, buf, strlen(buf));
avio_flush(s->pb);
return 0;
......@@ -38,6 +40,7 @@ AVOutputFormat ff_framecrc_muxer = {
.long_name = NULL_IF_CONFIG_SMALL("framecrc testing format"),
.audio_codec = CODEC_ID_PCM_S16LE,
.video_codec = CODEC_ID_RAWVIDEO,
.write_header = ff_framehash_write_header,
.write_packet = framecrc_write_packet,
.flags = AVFMT_VARIABLE_FPS | AVFMT_TS_NONSTRICT,
};
/*
* Common functions for the frame{crc,md5} muxers
*
* This file is part of Libav.
*
* Libav is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* Libav is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "internal.h"
int ff_framehash_write_header(AVFormatContext *s)
{
int i;
for (i = 0; i < s->nb_streams; i++) {
AVStream *st = s->streams[i];
avpriv_set_pts_info(st, 64, st->codec->time_base.num, st->codec->time_base.den);
avio_printf(s->pb, "#tb %d: %d/%d\n", i, st->time_base.num, st->time_base.den);
avio_flush(s->pb);
}
return 0;
}
......@@ -306,4 +306,10 @@ int ff_add_param_change(AVPacket *pkt, int32_t channels,
uint64_t channel_layout, int32_t sample_rate,
int32_t width, int32_t height);
/**
* Set the timebase for each stream from the corresponding codec timebase and
* print it.
*/
int ff_framehash_write_header(AVFormatContext *s);
#endif /* AVFORMAT_INTERNAL_H */
......@@ -21,6 +21,7 @@
#include "libavutil/md5.h"
#include "avformat.h"
#include "internal.h"
#define PRIVSIZE 512
......@@ -89,7 +90,8 @@ static int framemd5_write_packet(struct AVFormatContext *s, AVPacket *pkt)
av_md5_init(s->priv_data);
av_md5_update(s->priv_data, pkt->data, pkt->size);
snprintf(buf, sizeof(buf) - 64, "%d, %"PRId64", %d, ", pkt->stream_index, pkt->dts, pkt->size);
snprintf(buf, sizeof(buf) - 64, "%d, %10"PRId64", %10"PRId64", %8d, %8d, ",
pkt->stream_index, pkt->dts, pkt->pts, pkt->duration, pkt->size);
md5_finish(s, buf);
return 0;
}
......@@ -100,6 +102,7 @@ AVOutputFormat ff_framemd5_muxer = {
.priv_data_size = PRIVSIZE,
.audio_codec = CODEC_ID_PCM_S16LE,
.video_codec = CODEC_ID_RAWVIDEO,
.write_header = ff_framehash_write_header,
.write_packet = framemd5_write_packet,
.flags = AVFMT_VARIABLE_FPS,
};
......
......@@ -1593,6 +1593,8 @@ static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom)
av_dlog(c->fc, "keyframe_count = %d\n", entries);
if (!entries)
return 0;
if (entries >= UINT_MAX / sizeof(int))
return AVERROR_INVALIDDATA;
sc->keyframes = av_malloc(entries * sizeof(int));
......
0, 0, 921600, 0xd82e4d57
0, 6000, 921600, 0x83f2349c
0, 12000, 921600, 0x70d87db0
0, 18000, 921600, 0x66d27b93
0, 24000, 921600, 0xb730941c
0, 30000, 921600, 0x15da4934
0, 36000, 921600, 0x1953968a
0, 42000, 921600, 0xf0d730a0
0, 48000, 921600, 0x35a7d30c
0, 54000, 921600, 0x33667f62
0, 60000, 921600, 0xf4707f6b
0, 66000, 921600, 0xaac6c392
0, 72000, 921600, 0x68397d16
0, 78000, 921600, 0xb2aa0450
0, 84000, 921600, 0xba25c62e
#tb 0: 1/15
0, 0, 0, 1, 921600, 0xd82e4d57
0, 1, 1, 1, 921600, 0x83f2349c
0, 2, 2, 1, 921600, 0x70d87db0
0, 3, 3, 1, 921600, 0x66d27b93
0, 4, 4, 1, 921600, 0xb730941c
0, 5, 5, 1, 921600, 0x15da4934
0, 6, 6, 1, 921600, 0x1953968a
0, 7, 7, 1, 921600, 0xf0d730a0
0, 8, 8, 1, 921600, 0x35a7d30c
0, 9, 9, 1, 921600, 0x33667f62
0, 10, 10, 1, 921600, 0xf4707f6b
0, 11, 11, 1, 921600, 0xaac6c392
0, 12, 12, 1, 921600, 0x68397d16
0, 13, 13, 1, 921600, 0xb2aa0450
0, 14, 14, 1, 921600, 0xba25c62e
This diff is collapsed.
0, 0, 259200, 0x7e91df07
1, 0, 2048, 0x3d042426
1, 4180, 2048, 0x5bcae456
0, 7200, 259200, 0x7e91df07
1, 8359, 2048, 0xb6043655
1, 12539, 2048, 0x6fdaffad
0, 14400, 259200, 0xc468c119
1, 16718, 2048, 0xf86700cb
1, 20898, 2048, 0x045e46c1
0, 21600, 259200, 0x0e058930
1, 25078, 2048, 0x000df0e5
0, 28800, 259200, 0xa0261310
1, 29257, 2048, 0x8f5f12fb
1, 33437, 2048, 0xd516f6b0
0, 36000, 259200, 0x78ca9aba
1, 37616, 2048, 0xa1fe2bd3
1, 41796, 2048, 0x3647087a
0, 43200, 259200, 0x4971f7b3
1, 45976, 2048, 0xd2ee584e
1, 50155, 2048, 0xf132088c
0, 50400, 259200, 0x7dc2cff7
1, 54335, 2048, 0x1efc0eb1
0, 57600, 259200, 0x8cbc53d5
1, 58514, 2048, 0xeb73f402
1, 62694, 2048, 0x75cb3d20
0, 64800, 259200, 0xcccd77e3
1, 66873, 2048, 0x85a501b6
1, 71053, 2048, 0xa4eb312d
0, 72000, 259200, 0x6b3e0fb3
1, 75233, 2048, 0xf0aaf8c7
0, 79200, 259200, 0x281dd175
1, 79412, 2048, 0x65371cda
1, 83592, 2048, 0x25512cd6
1, 87771, 2048, 0xc81410e3
1, 91951, 514, 0x57d77b94
#tb 0: 2/25
#tb 1: 1/22050
0, 0, 0, 1, 259200, 0x7e91df07
1, 0, 0, 1024, 2048, 0x3d042426
1, 1024, 1024, 1024, 2048, 0x5bcae456
0, 1, 1, 1, 259200, 0x7e91df07
1, 2048, 2048, 1024, 2048, 0xb6043655
1, 3072, 3072, 1024, 2048, 0x6fdaffad
0, 2, 2, 1, 259200, 0xc468c119
1, 4096, 4096, 1024, 2048, 0xf86700cb
1, 5120, 5120, 1024, 2048, 0x045e46c1
0, 3, 3, 1, 259200, 0x0e058930
1, 6144, 6144, 1024, 2048, 0x000df0e5
0, 4, 4, 1, 259200, 0xa0261310
1, 7168, 7168, 1024, 2048, 0x8f5f12fb
1, 8192, 8192, 1024, 2048, 0xd516f6b0
0, 5, 5, 1, 259200, 0x78ca9aba
1, 9216, 9216, 1024, 2048, 0xa1fe2bd3
1, 10240, 10240, 1024, 2048, 0x3647087a
0, 6, 6, 1, 259200, 0x4971f7b3
1, 11264, 11264, 1024, 2048, 0xd2ee584e
1, 12288, 12288, 1024, 2048, 0xf132088c
0, 7, 7, 1, 259200, 0x7dc2cff7
1, 13312, 13312, 1024, 2048, 0x1efc0eb1
0, 8, 8, 1, 259200, 0x8cbc53d5
1, 14336, 14336, 1024, 2048, 0xeb73f402
1, 15360, 15360, 1024, 2048, 0x75cb3d20
0, 9, 9, 1, 259200, 0xcccd77e3
1, 16384, 16384, 1024, 2048, 0x85a501b6
1, 17408, 17408, 1024, 2048, 0xa4eb312d
0, 10, 10, 1, 259200, 0x6b3e0fb3
1, 18432, 18432, 1024, 2048, 0xf0aaf8c7
0, 11, 11, 1, 259200, 0x281dd175
1, 19456, 19456, 1024, 2048, 0x65371cda
1, 20480, 20480, 1024, 2048, 0x25512cd6
1, 21504, 21504, 1024, 2048, 0xc81410e3
1, 22528, 22528, 257, 514, 0x57d77b94
0, 0, 168000, 0x45addf8f
0, 3600, 168000, 0x45addf8f
0, 7200, 168000, 0x45addf8f
0, 10800, 168000, 0x45addf8f
0, 14400, 168000, 0x45addf8f
0, 18000, 168000, 0x45addf8f
0, 21600, 168000, 0x45addf8f
0, 25200, 168000, 0x45addf8f
0, 28800, 168000, 0x45addf8f
0, 32400, 168000, 0x45addf8f
0, 36000, 168000, 0x45addf8f
0, 39600, 168000, 0x45addf8f
0, 43200, 168000, 0x8730699b
0, 46800, 168000, 0x08b095df
0, 50400, 168000, 0x203526e3
0, 54000, 168000, 0x0ebc5142
0, 57600, 168000, 0xd168e7c2
0, 61200, 168000, 0xcc7da0e6
0, 64800, 168000, 0x72ac60b8
0, 68400, 168000, 0xb691e27c
0, 72000, 168000, 0x646fa087
0, 75600, 168000, 0x404450a2
0, 79200, 168000, 0x5214c456
0, 82800, 168000, 0xaef602d3
#tb 0: 1/25
0, 0, 0, 1, 168000, 0x45addf8f
0, 1, 1, 1, 168000, 0x45addf8f
0, 2, 2, 1, 168000, 0x45addf8f
0, 3, 3, 1, 168000, 0x45addf8f
0, 4, 4, 1, 168000, 0x45addf8f
0, 5, 5, 1, 168000, 0x45addf8f
0, 6, 6, 1, 168000, 0x45addf8f
0, 7, 7, 1, 168000, 0x45addf8f
0, 8, 8, 1, 168000, 0x45addf8f
0, 9, 9, 1, 168000, 0x45addf8f
0, 10, 10, 1, 168000, 0x45addf8f
0, 11, 11, 1, 168000, 0x45addf8f
0, 12, 12, 1, 168000, 0x8730699b
0, 13, 13, 1, 168000, 0x08b095df
0, 14, 14, 1, 168000, 0x203526e3
0, 15, 15, 1, 168000, 0x0ebc5142
0, 16, 16, 1, 168000, 0xd168e7c2
0, 17, 17, 1, 168000, 0xcc7da0e6
0, 18, 18, 1, 168000, 0x72ac60b8
0, 19, 19, 1, 168000, 0xb691e27c
0, 20, 20, 1, 168000, 0x646fa087
0, 21, 21, 1, 168000, 0x404450a2
0, 22, 22, 1, 168000, 0x5214c456
0, 23, 23, 1, 168000, 0xaef602d3
This diff is collapsed.
0, 0, 115200, 0x375ec573
1, 0, 5936, 0x00000000
0, 6000, 115200, 0x375ec573
1, 6057, 5824, 0x00000000
0, 12000, 115200, 0x375ec573
1, 12000, 5936, 0x00000000
0, 18000, 115200, 0x375ec573
1, 18057, 5824, 0x00000000
0, 24000, 115200, 0x375ec573
1, 24000, 5936, 0x00000000
0, 30000, 115200, 0x375ec573
1, 30057, 5824, 0x00000000
0, 36000, 115200, 0x375ec573
1, 36000, 5936, 0x00000000
0, 42000, 115200, 0x375ec573
1, 42057, 5824, 0x0f06f5bb
0, 48000, 115200, 0x0b4d31bf
1, 48000, 5936, 0xb0dbfc46
0, 54000, 115200, 0xdd724598
1, 54057, 5824, 0x9daa9f9c
0, 60000, 115200, 0xc3077e75
1, 60000, 5936, 0x61400d2f
0, 66000, 115200, 0xbf70778a
1, 66057, 5824, 0x34a5b0e3
0, 72000, 115200, 0x117eb766
1, 72000, 5936, 0x6e546f72
0, 78000, 115200, 0x4617fbad
1, 78057, 5824, 0x4f093b35
0, 84000, 115200, 0x5f5b02d2
1, 84000, 5936, 0x95b5b599
0, 90000, 115200, 0x2a9c5325
1, 90057, 5824, 0x75e15e60
0, 96000, 115200, 0x14a89e2a
1, 96000, 5936, 0xd1077d39
0, 102000, 115200, 0xe69aa994
1, 102057, 5824, 0x956e21ca
0, 108000, 115200, 0xfbacf589
1, 108000, 5936, 0x33bac234
0, 114000, 115200, 0x1d714c6e
1, 114057, 5824, 0x5df37824
0, 120000, 115200, 0x6eff66cb
1, 120000, 5936, 0xc174af24
0, 126000, 115200, 0xee21c1cb
1, 126057, 5824, 0xe5dc2159
0, 132000, 115200, 0xce714ada
1, 132000, 5936, 0x63ffc8b1
0, 138000, 115200, 0xf89d56c3
1, 138057, 5824, 0xefe4c365
0, 144000, 115200, 0x65fd5e60
1, 144000, 5936, 0x2174304d
0, 150000, 115200, 0x0c256424
#tb 0: 1/15
#tb 1: 1/22050
0, 0, 0, 1, 115200, 0x375ec573
1, 0, 0, 1484, 5936, 0x00000000
0, 1, 1, 1, 115200, 0x375ec573
1, 1484, 1484, 1456, 5824, 0x00000000
0, 2, 2, 1, 115200, 0x375ec573
1, 2940, 2940, 1484, 5936, 0x00000000
0, 3, 3, 1, 115200, 0x375ec573
1, 4424, 4424, 1456, 5824, 0x00000000
0, 4, 4, 1, 115200, 0x375ec573
1, 5880, 5880, 1484, 5936, 0x00000000
0, 5, 5, 1, 115200, 0x375ec573
1, 7364, 7364, 1456, 5824, 0x00000000
0, 6, 6, 1, 115200, 0x375ec573
1, 8820, 8820, 1484, 5936, 0x00000000
0, 7, 7, 1, 115200, 0x375ec573
1, 10304, 10304, 1456, 5824, 0x0f06f5bb
0, 8, 8, 1, 115200, 0x0b4d31bf
1, 11760, 11760, 1484, 5936, 0xb0dbfc46
0, 9, 9, 1, 115200, 0xdd724598
1, 13244, 13244, 1456, 5824, 0x9daa9f9c
0, 10, 10, 1, 115200, 0xc3077e75
1, 14700, 14700, 1484, 5936, 0x61400d2f
0, 11, 11, 1, 115200, 0xbf70778a
1, 16184, 16184, 1456, 5824, 0x34a5b0e3
0, 12, 12, 1, 115200, 0x117eb766
1, 17640, 17640, 1484, 5936, 0x6e546f72
0, 13, 13, 1, 115200, 0x4617fbad
1, 19124, 19124, 1456, 5824, 0x4f093b35
0, 14, 14, 1, 115200, 0x5f5b02d2
1, 20580, 20580, 1484, 5936, 0x95b5b599
0, 15, 15, 1, 115200, 0x2a9c5325
1, 22064, 22064, 1456, 5824, 0x75e15e60
0, 16, 16, 1, 115200, 0x14a89e2a
1, 23520, 23520, 1484, 5936, 0xd1077d39
0, 17, 17, 1, 115200, 0xe69aa994
1, 25004, 25004, 1456, 5824, 0x956e21ca
0, 18, 18, 1, 115200, 0xfbacf589
1, 26460, 26460, 1484, 5936, 0x33bac234
0, 19, 19, 1, 115200, 0x1d714c6e
1, 27944, 27944, 1456, 5824, 0x5df37824
0, 20, 20, 1, 115200, 0x6eff66cb
1, 29400, 29400, 1484, 5936, 0xc174af24
0, 21, 21, 1, 115200, 0xee21c1cb
1, 30884, 30884, 1456, 5824, 0xe5dc2159
0, 22, 22, 1, 115200, 0xce714ada
1, 32340, 32340, 1484, 5936, 0x63ffc8b1
0, 23, 23, 1, 115200, 0xf89d56c3
1, 33824, 33824, 1456, 5824, 0xefe4c365
0, 24, 24, 1, 115200, 0x65fd5e60
1, 35280, 35280, 1484, 5936, 0x2174304d
0, 25, 25, 1, 115200, 0x0c256424
0, 0, 8064, 0xa307ed8c
0, 4800, 8064, 0xd2551927
0, 9600, 8064, 0x3264a799
0, 14400, 8064, 0x75da1393
0, 19200, 8064, 0x68665f59
0, 24000, 8064, 0xaf266a18
0, 28800, 8064, 0x4d4b69fd
0, 33600, 8064, 0x129d7e17
0, 38400, 8064, 0x78c56725
0, 43200, 8064, 0x59902cf1
0, 48000, 8064, 0x6e699c87
0, 52800, 8064, 0xc30692d7
0, 57600, 8064, 0x29c043e5
0, 62400, 8064, 0x61907704
0, 67200, 8064, 0xf9210630
0, 72000, 8064, 0xc0bdda08
0, 76800, 8064, 0x6171b96d
0, 81600, 8064, 0x082947cf
0, 86400, 8064, 0xf7bbf1ce
0, 91200, 8064, 0xe50e4436
0, 96000, 8064, 0x2a860844
0, 100800, 8064, 0xedcb502c
0, 105600, 8064, 0x448e3c7f
0, 110400, 8064, 0xf782f366
0, 115200, 8064, 0xf57f66a5
0, 120000, 8064, 0xdcc36939
0, 124800, 8064, 0x34959d99
0, 129600, 8064, 0xa5c20433
0, 134400, 8064, 0xf1364e9b
0, 139200, 8064, 0x232fe9c7
0, 144000, 8064, 0xdc068d5a
0, 148800, 8064, 0x4962e812
0, 153600, 8064, 0x36a6709b
0, 158400, 8064, 0xa2837bd8
0, 163200, 8064, 0x68612ddb
0, 168000, 8064, 0x8d76d1cb
0, 172800, 8064, 0x7707cfc7
#tb 0: 1/37800
0, 0, 0, 2016, 8064, 0xa307ed8c
0, 2016, 2016, 2016, 8064, 0xd2551927
0, 4032, 4032, 2016, 8064, 0x3264a799
0, 6048, 6048, 2016, 8064, 0x75da1393
0, 8064, 8064, 2016, 8064, 0x68665f59
0, 10080, 10080, 2016, 8064, 0xaf266a18
0, 12096, 12096, 2016, 8064, 0x4d4b69fd
0, 14112, 14112, 2016, 8064, 0x129d7e17
0, 16128, 16128, 2016, 8064, 0x78c56725
0, 18144, 18144, 2016, 8064, 0x59902cf1
0, 20160, 20160, 2016, 8064, 0x6e699c87
0, 22176, 22176, 2016, 8064, 0xc30692d7
0, 24192, 24192, 2016, 8064, 0x29c043e5
0, 26208, 26208, 2016, 8064, 0x61907704
0, 28224, 28224, 2016, 8064, 0xf9210630
0, 30240, 30240, 2016, 8064, 0xc0bdda08
0, 32256, 32256, 2016, 8064, 0x6171b96d
0, 34272, 34272, 2016, 8064, 0x082947cf
0, 36288, 36288, 2016, 8064, 0xf7bbf1ce
0, 38304, 38304, 2016, 8064, 0xe50e4436
0, 40320, 40320, 2016, 8064, 0x2a860844
0, 42336, 42336, 2016, 8064, 0xedcb502c
0, 44352, 44352, 2016, 8064, 0x448e3c7f
0, 46368, 46368, 2016, 8064, 0xf782f366
0, 48384, 48384, 2016, 8064, 0xf57f66a5
0, 50400, 50400, 2016, 8064, 0xdcc36939
0, 52416, 52416, 2016, 8064, 0x34959d99
0, 54432, 54432, 2016, 8064, 0xa5c20433
0, 56448, 56448, 2016, 8064, 0xf1364e9b
0, 58464, 58464, 2016, 8064, 0x232fe9c7
0, 60480, 60480, 2016, 8064, 0xdc068d5a
0, 62496, 62496, 2016, 8064, 0x4962e812
0, 64512, 64512, 2016, 8064, 0x36a6709b
0, 66528, 66528, 2016, 8064, 0xa2837bd8
0, 68544, 68544, 2016, 8064, 0x68612ddb
0, 70560, 70560, 2016, 8064, 0x8d76d1cb
0, 72576, 72576, 2016, 8064, 0x7707cfc7
This diff is collapsed.
0, 0, 122880, 0x4ed8123f
0, 9000, 122880, 0xc4c35304
0, 18000, 122880, 0xbd3015fd
0, 27000, 122880, 0xece5dbab
0, 36000, 122880, 0x13249f3f
0, 45000, 122880, 0x58f75895
0, 54000, 122880, 0xe6570f7d
0, 63000, 122880, 0xcce88145
0, 72000, 122880, 0x796f633c
0, 81000, 122880, 0x182c3cd3
0, 90000, 122880, 0x04b2513b
0, 99000, 122880, 0x6b7e2e42
0, 108000, 122880, 0x2fa47070
0, 117000, 122880, 0x7142919e
0, 126000, 122880, 0x8995337e
0, 135000, 122880, 0x5146ca20
0, 144000, 122880, 0x9aadb491
0, 153000, 122880, 0x2d5b0032
0, 162000, 122880, 0x5c7c8314
0, 171000, 122880, 0x2ba8253c
0, 180000, 122880, 0xd19d504b
0, 189000, 122880, 0x4ff15fd1
0, 198000, 122880, 0x76039f9f
0, 207000, 122880, 0xcce84d35
0, 216000, 122880, 0x68c5797c
0, 225000, 122880, 0xf1da4293
0, 234000, 122880, 0xf5f537f3
0, 243000, 122880, 0x8d3ffa94
0, 252000, 122880, 0x3ca9b69c
0, 261000, 122880, 0x21187f6c
0, 270000, 122880, 0xe5136e34
#tb 0: 1/10
0, 0, 0, 1, 122880, 0x4ed8123f
0, 1, 1, 1, 122880, 0xc4c35304
0, 2, 2, 1, 122880, 0xbd3015fd
0, 3, 3, 1, 122880, 0xece5dbab
0, 4, 4, 1, 122880, 0x13249f3f
0, 5, 5, 1, 122880, 0x58f75895
0, 6, 6, 1, 122880, 0xe6570f7d
0, 7, 7, 1, 122880, 0xcce88145
0, 8, 8, 1, 122880, 0x796f633c
0, 9, 9, 1, 122880, 0x182c3cd3
0, 10, 10, 1, 122880, 0x04b2513b
0, 11, 11, 1, 122880, 0x6b7e2e42
0, 12, 12, 1, 122880, 0x2fa47070
0, 13, 13, 1, 122880, 0x7142919e
0, 14, 14, 1, 122880, 0x8995337e
0, 15, 15, 1, 122880, 0x5146ca20
0, 16, 16, 1, 122880, 0x9aadb491
0, 17, 17, 1, 122880, 0x2d5b0032
0, 18, 18, 1, 122880, 0x5c7c8314
0, 19, 19, 1, 122880, 0x2ba8253c
0, 20, 20, 1, 122880, 0xd19d504b
0, 21, 21, 1, 122880, 0x4ff15fd1
0, 22, 22, 1, 122880, 0x76039f9f
0, 23, 23, 1, 122880, 0xcce84d35
0, 24, 24, 1, 122880, 0x68c5797c
0, 25, 25, 1, 122880, 0xf1da4293
0, 26, 26, 1, 122880, 0xf5f537f3
0, 27, 27, 1, 122880, 0x8d3ffa94
0, 28, 28, 1, 122880, 0x3ca9b69c
0, 29, 29, 1, 122880, 0x21187f6c
0, 30, 30, 1, 122880, 0xe5136e34
This diff is collapsed.
0, 0, 768000, 0x3032d0de
0, 3600, 768000, 0xc3be5922
0, 7200, 768000, 0xf530c476
0, 10800, 768000, 0x11c1fb8e
0, 14400, 768000, 0x72d12da9
0, 18000, 768000, 0x39c7a70d
0, 21600, 768000, 0x94bd32a4
0, 25200, 768000, 0x06dd5ba1
0, 28800, 768000, 0x9616ec95
0, 32400, 768000, 0x6df5b9e2
0, 36000, 768000, 0x7be7f60a
0, 39600, 768000, 0x2abc8623
0, 43200, 768000, 0x5678bfff
0, 46800, 768000, 0x24a03042
0, 50400, 768000, 0xfb011b23
0, 54000, 768000, 0x925ff5e9
0, 57600, 768000, 0x890e2a56
#tb 0: 1/25
0, 0, 0, 1, 768000, 0x3032d0de
0, 1, 1, 1, 768000, 0xc3be5922
0, 2, 2, 1, 768000, 0xf530c476
0, 3, 3, 1, 768000, 0x11c1fb8e
0, 4, 4, 1, 768000, 0x72d12da9
0, 5, 5, 1, 768000, 0x39c7a70d
0, 6, 6, 1, 768000, 0x94bd32a4
0, 7, 7, 1, 768000, 0x06dd5ba1
0, 8, 8, 1, 768000, 0x9616ec95
0, 9, 9, 1, 768000, 0x6df5b9e2
0, 10, 10, 1, 768000, 0x7be7f60a
0, 11, 11, 1, 768000, 0x2abc8623
0, 12, 12, 1, 768000, 0x5678bfff
0, 13, 13, 1, 768000, 0x24a03042
0, 14, 14, 1, 768000, 0xfb011b23
0, 15, 15, 1, 768000, 0x925ff5e9
0, 16, 16, 1, 768000, 0x890e2a56
0, 0, 230400, 0xd133e177
1, 0, 176400, 0xdd61578c
0, 3600, 230400, 0xe3501bb2
0, 7200, 230400, 0x44da84f0
0, 10800, 230400, 0xe0fd17ed
0, 14400, 230400, 0xef4e08c7
0, 18000, 230400, 0xf52f82b5
0, 21600, 230400, 0x05eb186c
0, 25200, 230400, 0x0653f05d
0, 28800, 230400, 0xde1a0735
0, 32400, 230400, 0x6045576e
0, 36000, 230400, 0xac9444c4
0, 39600, 230400, 0x5f7f82fb
0, 43200, 230400, 0xaf4718ce
0, 46800, 230400, 0x117d5787
0, 50400, 230400, 0x319ac1f5
0, 54000, 230400, 0xd05cb30a
0, 57600, 230400, 0x96107c72
0, 61200, 230400, 0x73ff0a30
0, 64800, 230400, 0x865d0f3e
0, 68400, 230400, 0x3384ad55
0, 72000, 230400, 0x6694b2ea
0, 75600, 230400, 0x324f5cb8
0, 79200, 230400, 0x2de7c12f
0, 82800, 230400, 0x57fedb1a
0, 86400, 230400, 0xf46f2abf
0, 90000, 230400, 0xe5fead9b
1, 90000, 176400, 0x0b9e6d67
0, 93600, 230400, 0x65764edb
0, 97200, 230400, 0xeabdcf53
0, 100800, 230400, 0xaeb659fc
0, 104400, 230400, 0x5ec97eb1
0, 108000, 230400, 0x2482abae
0, 111600, 230400, 0x297fb0c8
0, 115200, 230400, 0x57a52a3d
0, 118800, 230400, 0x44040e98
0, 122400, 230400, 0xa150e542
0, 126000, 230400, 0x0a1e1296
0, 129600, 230400, 0xf1085864
0, 133200, 230400, 0xe7a13b40
0, 136800, 230400, 0x759d384d
0, 140400, 230400, 0x72e08991
0, 144000, 230400, 0x10a4bbc9
0, 147600, 230400, 0xb258ac16
0, 151200, 230400, 0xde06facb
0, 154800, 230400, 0x94284e11
0, 158400, 230400, 0xedf23092
0, 162000, 230400, 0xc2be6319
0, 165600, 230400, 0x103a0b7b
0, 169200, 230400, 0x3415888b
0, 172800, 230400, 0x5ecaac75
0, 176400, 230400, 0xb9ba503e
0, 180000, 230400, 0xb20ccf57
1, 180000, 176400, 0x2793fad7
0, 183600, 230400, 0x0dba31ed
0, 187200, 230400, 0x91c5e7d4
0, 190800, 230400, 0x09ac954b
0, 194400, 230400, 0xe9c3d563
0, 198000, 230400, 0xf46eef67
0, 201600, 230400, 0x117f4b80
0, 205200, 230400, 0x61714860
0, 208800, 230400, 0x5c7112d0
0, 212400, 230400, 0xd42c51e7
0, 216000, 230400, 0x425f0c99
0, 219600, 230400, 0x4c398834
0, 223200, 230400, 0x237f89c2
0, 226800, 230400, 0xd2e29b05
0, 230400, 230400, 0x204a054b
0, 234000, 230400, 0x25a9faf7
0, 237600, 230400, 0x83f6c1a8
0, 241200, 230400, 0xe48321b9
0, 244800, 230400, 0x714c1005
0, 248400, 230400, 0x36cc58e9
0, 252000, 230400, 0x5e9ffdd9
0, 255600, 230400, 0x582b55dc
0, 259200, 230400, 0x139a7f39
0, 262800, 230400, 0xefb5f998
0, 266400, 230400, 0xeb736da8
0, 270000, 230400, 0x488f9847
1, 270000, 176400, 0xe2649a4a
0, 273600, 230400, 0x6ab20741
0, 277200, 230400, 0xa73686f0
0, 280800, 230400, 0x67878643
0, 284400, 230400, 0x83bb241b
0, 288000, 230400, 0xe6b70660
0, 291600, 230400, 0x87f5aca3
0, 295200, 230400, 0x29c79bc3
0, 298800, 230400, 0xcadbd70b
0, 302400, 230400, 0x8cdcfdee
0, 306000, 230400, 0x90aa0442
0, 309600, 230400, 0xa68e87b7
0, 313200, 230400, 0xa2c49e58
0, 316800, 230400, 0x9a9a4c55
0, 320400, 230400, 0x06b53aed
0, 324000, 230400, 0x79e1808a
0, 327600, 230400, 0x3e53a411
0, 331200, 230400, 0xfebc13ca
0, 334800, 230400, 0x1f1f443b
0, 338400, 230400, 0xd0db806a
0, 342000, 230400, 0x6f2aee94
0, 345600, 230400, 0xe8cc23ba
0, 349200, 230400, 0x2edf510b
0, 352800, 230400, 0x87118129
0, 356400, 230400, 0x1dd1709a
#tb 0: 1/25
#tb 1: 1/44100
0, 0, 0, 1, 230400, 0xd133e177
1, 0, 0, 44100, 176400, 0xdd61578c
0, 1, 1, 1, 230400, 0xe3501bb2
0, 2, 2, 1, 230400, 0x44da84f0
0, 3, 3, 1, 230400, 0xe0fd17ed
0, 4, 4, 1, 230400, 0xef4e08c7
0, 5, 5, 1, 230400, 0xf52f82b5
0, 6, 6, 1, 230400, 0x05eb186c
0, 7, 7, 1, 230400, 0x0653f05d
0, 8, 8, 1, 230400, 0xde1a0735
0, 9, 9, 1, 230400, 0x6045576e
0, 10, 10, 1, 230400, 0xac9444c4
0, 11, 11, 1, 230400, 0x5f7f82fb
0, 12, 12, 1, 230400, 0xaf4718ce
0, 13, 13, 1, 230400, 0x117d5787
0, 14, 14, 1, 230400, 0x319ac1f5
0, 15, 15, 1, 230400, 0xd05cb30a
0, 16, 16, 1, 230400, 0x96107c72
0, 17, 17, 1, 230400, 0x73ff0a30
0, 18, 18, 1, 230400, 0x865d0f3e
0, 19, 19, 1, 230400, 0x3384ad55
0, 20, 20, 1, 230400, 0x6694b2ea
0, 21, 21, 1, 230400, 0x324f5cb8
0, 22, 22, 1, 230400, 0x2de7c12f
0, 23, 23, 1, 230400, 0x57fedb1a
0, 24, 24, 1, 230400, 0xf46f2abf
0, 25, 25, 1, 230400, 0xe5fead9b
1, 44100, 44100, 44100, 176400, 0x0b9e6d67
0, 26, 26, 1, 230400, 0x65764edb
0, 27, 27, 1, 230400, 0xeabdcf53
0, 28, 28, 1, 230400, 0xaeb659fc
0, 29, 29, 1, 230400, 0x5ec97eb1
0, 30, 30, 1, 230400, 0x2482abae
0, 31, 31, 1, 230400, 0x297fb0c8
0, 32, 32, 1, 230400, 0x57a52a3d
0, 33, 33, 1, 230400, 0x44040e98
0, 34, 34, 1, 230400, 0xa150e542
0, 35, 35, 1, 230400, 0x0a1e1296
0, 36, 36, 1, 230400, 0xf1085864
0, 37, 37, 1, 230400, 0xe7a13b40
0, 38, 38, 1, 230400, 0x759d384d
0, 39, 39, 1, 230400, 0x72e08991
0, 40, 40, 1, 230400, 0x10a4bbc9
0, 41, 41, 1, 230400, 0xb258ac16
0, 42, 42, 1, 230400, 0xde06facb
0, 43, 43, 1, 230400, 0x94284e11
0, 44, 44, 1, 230400, 0xedf23092
0, 45, 45, 1, 230400, 0xc2be6319
0, 46, 46, 1, 230400, 0x103a0b7b
0, 47, 47, 1, 230400, 0x3415888b
0, 48, 48, 1, 230400, 0x5ecaac75
0, 49, 49, 1, 230400, 0xb9ba503e
0, 50, 50, 1, 230400, 0xb20ccf57
1, 88200, 88200, 44100, 176400, 0x2793fad7
0, 51, 51, 1, 230400, 0x0dba31ed
0, 52, 52, 1, 230400, 0x91c5e7d4
0, 53, 53, 1, 230400, 0x09ac954b
0, 54, 54, 1, 230400, 0xe9c3d563
0, 55, 55, 1, 230400, 0xf46eef67
0, 56, 56, 1, 230400, 0x117f4b80
0, 57, 57, 1, 230400, 0x61714860
0, 58, 58, 1, 230400, 0x5c7112d0
0, 59, 59, 1, 230400, 0xd42c51e7
0, 60, 60, 1, 230400, 0x425f0c99
0, 61, 61, 1, 230400, 0x4c398834
0, 62, 62, 1, 230400, 0x237f89c2
0, 63, 63, 1, 230400, 0xd2e29b05
0, 64, 64, 1, 230400, 0x204a054b
0, 65, 65, 1, 230400, 0x25a9faf7
0, 66, 66, 1, 230400, 0x83f6c1a8
0, 67, 67, 1, 230400, 0xe48321b9
0, 68, 68, 1, 230400, 0x714c1005
0, 69, 69, 1, 230400, 0x36cc58e9
0, 70, 70, 1, 230400, 0x5e9ffdd9
0, 71, 71, 1, 230400, 0x582b55dc
0, 72, 72, 1, 230400, 0x139a7f39
0, 73, 73, 1, 230400, 0xefb5f998
0, 74, 74, 1, 230400, 0xeb736da8
0, 75, 75, 1, 230400, 0x488f9847
1, 132300, 132300, 44100, 176400, 0xe2649a4a
0, 76, 76, 1, 230400, 0x6ab20741
0, 77, 77, 1, 230400, 0xa73686f0
0, 78, 78, 1, 230400, 0x67878643
0, 79, 79, 1, 230400, 0x83bb241b
0, 80, 80, 1, 230400, 0xe6b70660
0, 81, 81, 1, 230400, 0x87f5aca3
0, 82, 82, 1, 230400, 0x29c79bc3
0, 83, 83, 1, 230400, 0xcadbd70b
0, 84, 84, 1, 230400, 0x8cdcfdee
0, 85, 85, 1, 230400, 0x90aa0442
0, 86, 86, 1, 230400, 0xa68e87b7
0, 87, 87, 1, 230400, 0xa2c49e58
0, 88, 88, 1, 230400, 0x9a9a4c55
0, 89, 89, 1, 230400, 0x06b53aed
0, 90, 90, 1, 230400, 0x79e1808a
0, 91, 91, 1, 230400, 0x3e53a411
0, 92, 92, 1, 230400, 0xfebc13ca
0, 93, 93, 1, 230400, 0x1f1f443b
0, 94, 94, 1, 230400, 0xd0db806a
0, 95, 95, 1, 230400, 0x6f2aee94
0, 96, 96, 1, 230400, 0xe8cc23ba
0, 97, 97, 1, 230400, 0x2edf510b
0, 98, 98, 1, 230400, 0x87118129
0, 99, 99, 1, 230400, 0x1dd1709a
0, 0, 28800, 0x4a4efbbc
0, 6001, 28800, 0xc6c7e26a
0, 12002, 28800, 0x6cd40913
0, 18003, 28800, 0xa7b40fe9
0, 24004, 28800, 0x5e77fcc6
0, 30005, 28800, 0x9b3ef3f0
0, 36006, 28800, 0xe7031845
0, 42007, 28800, 0x2c15458d
0, 48008, 28800, 0xbc3d4abf
0, 54009, 28800, 0xf8755ac7
0, 60010, 28800, 0x64d0405b
0, 66011, 28800, 0x1e0c341d
0, 72012, 28800, 0x05ca3c2b
0, 78013, 28800, 0x28cb307f
0, 84014, 28800, 0x3a9855af
0, 90015, 28800, 0x92b63321
0, 96016, 28800, 0x85585151
0, 102017, 28800, 0x1ff01bf9
0, 108018, 28800, 0x4bab200f
0, 114019, 28800, 0xcf732ad7
0, 120020, 28800, 0xced00cff
0, 126021, 28800, 0xa69046fd
0, 132022, 28800, 0x5aa341c3
0, 138023, 28800, 0x87ef6219
#tb 0: 33339/500000
0, 0, 0, 1, 28800, 0x4a4efbbc
0, 1, 1, 1, 28800, 0xc6c7e26a
0, 2, 2, 1, 28800, 0x6cd40913
0, 3, 3, 1, 28800, 0xa7b40fe9
0, 4, 4, 1, 28800, 0x5e77fcc6
0, 5, 5, 1, 28800, 0x9b3ef3f0
0, 6, 6, 1, 28800, 0xe7031845
0, 7, 7, 1, 28800, 0x2c15458d
0, 8, 8, 1, 28800, 0xbc3d4abf
0, 9, 9, 1, 28800, 0xf8755ac7
0, 10, 10, 1, 28800, 0x64d0405b
0, 11, 11, 1, 28800, 0x1e0c341d
0, 12, 12, 1, 28800, 0x05ca3c2b
0, 13, 13, 1, 28800, 0x28cb307f
0, 14, 14, 1, 28800, 0x3a9855af
0, 15, 15, 1, 28800, 0x92b63321
0, 16, 16, 1, 28800, 0x85585151
0, 17, 17, 1, 28800, 0x1ff01bf9
0, 18, 18, 1, 28800, 0x4bab200f
0, 19, 19, 1, 28800, 0xcf732ad7
0, 20, 20, 1, 28800, 0xced00cff
0, 21, 21, 1, 28800, 0xa69046fd
0, 22, 22, 1, 28800, 0x5aa341c3
0, 23, 23, 1, 28800, 0x87ef6219
0, 0, 115200, 0x2f247f66
0, 3000, 115200, 0xf492929e
#tb 0: 33333/1000000
0, 0, 0, 1, 115200, 0x2f247f66
0, 1, 1, 1, 115200, 0xf492929e
This diff is collapsed.
0, 0, 134400, 0xc218b00c
1, 0, 17768, 0x07df135c
0, 10000, 134400, 0x114daf7c
0, 20000, 134400, 0xe14db24c
0, 30000, 134400, 0x88c71df7
0, 40000, 134400, 0xc98c09fc
0, 50000, 134400, 0xf7c2e7a9
0, 60000, 134400, 0xf54f304f
0, 70000, 134400, 0x67370fdd
1, 72522, 2220, 0x44953646
0, 80000, 134400, 0xe70f43cd
1, 81584, 2220, 0x256b3329
0, 90000, 134400, 0xad74c06f
1, 90645, 2222, 0x344d20c6
1, 99714, 2220, 0xd8ee20db
0, 100000, 134400, 0xef42fdf2
1, 108776, 2222, 0x46d70aa2
0, 110000, 134400, 0xa14cc4b8
1, 117845, 2220, 0xbe0a2213
0, 120000, 134400, 0xc6e57381
1, 126906, 2222, 0x4ee0fd07
0, 130000, 134400, 0x74b4804b
1, 135976, 2220, 0x709dfe87
0, 140000, 134400, 0xe0863d6f
1, 145037, 2222, 0xbb382521
0, 150000, 134400, 0x90b6d03c
1, 154106, 2220, 0x6dba1d2d
0, 160000, 134400, 0x3d0409fd
1, 163167, 2222, 0xbc4cdd6d
0, 170000, 134400, 0xc02e09a4
1, 172237, 2220, 0x54340d2c
0, 180000, 134400, 0xa3515997
1, 181298, 2220, 0x8925d335
0, 190000, 134400, 0xc0fda122
1, 190359, 2222, 0xa39bd15f
1, 199429, 2220, 0x6875f632
0, 200000, 134400, 0x5380d707
1, 208490, 2222, 0xda46be57
0, 210000, 134400, 0xcc19c085
1, 217559, 2220, 0xd591eb44
0, 220000, 134400, 0x8041e977
1, 226620, 2222, 0x33afd17f
0, 230000, 134400, 0xb96b2bea
1, 235690, 2220, 0xd97be03b
0, 240000, 134400, 0xcc977ca7
1, 244751, 2222, 0x3b71e82e
0, 250000, 134400, 0xe37abb34
1, 253820, 2220, 0x95fbec2b
0, 260000, 134400, 0xce488baa
1, 262882, 2220, 0xae3a1c1e
0, 270000, 134400, 0xa0734e8a
1, 271943, 2222, 0x46cd0973
0, 280000, 134400, 0x6b5ce0b0
1, 281012, 2220, 0x7b28f3f6
0, 290000, 134400, 0xf207f938
1, 290073, 2222, 0xa2a5bc47
1, 299143, 2220, 0x4727df63
0, 300000, 134400, 0xe10060f8
1, 308204, 2222, 0xdf53f4e2
0, 310000, 134400, 0xaebe6b37
1, 317273, 2220, 0x469c1e8f
0, 320000, 134400, 0x08ea5c75
1, 326335, 2222, 0x3c541799
0, 330000, 134400, 0x05c6b514
1, 335404, 2220, 0xc8d21fee
0, 340000, 134400, 0x68cb3703
1, 344465, 2222, 0x5f52126f
0, 350000, 134400, 0x48867fd0
1, 353535, 2220, 0x06a9ff18
0, 360000, 134400, 0xc53eda30
1, 362596, 2220, 0x84f9aa2b
0, 370000, 134400, 0x0c1b198d
1, 371657, 2222, 0xe0518c83
0, 380000, 134400, 0xc8ac5bc8
1, 380727, 2220, 0xc85ee26c
1, 389788, 2222, 0xda23fd2d
0, 390000, 134400, 0x9e35240d
1, 398857, 2220, 0x7ee2e818
0, 400000, 134400, 0x885d142f
1, 407918, 2222, 0x45eb0465
0, 410000, 134400, 0x207cb4ac
1, 416988, 2220, 0xf3e90549
0, 420000, 134400, 0x0abe748b
1, 426049, 2222, 0x17aacf3d
0, 430000, 134400, 0xf13e991b
1, 435118, 2220, 0x6cb7e325
0, 440000, 134400, 0x2544248d
1, 444180, 2220, 0x20164553
0, 450000, 134400, 0x5444bb22
1, 453241, 2222, 0x00000000
0, 460000, 134400, 0xc5a8f55a
1, 462310, 2220, 0x00000000
0, 470000, 134400, 0xe6006820
1, 471371, 2222, 0x00000000
0, 480000, 134400, 0x2a34239d
1, 480441, 2220, 0x00000000
1, 489502, 2222, 0x00000000
0, 490000, 134400, 0x26deac5b
1, 498571, 2220, 0x00000000
0, 500000, 134400, 0x82c2c0a9
1, 507633, 2222, 0x00000000
0, 510000, 134400, 0xcdd8daba
1, 516702, 2450, 0x00000000
0, 520000, 134400, 0x5a1a2105
1, 526702, 2450, 0x00000000
0, 530000, 134400, 0x2ad43604
1, 536702, 2450, 0x00000000
0, 540000, 134400, 0xa9b58f35
1, 546702, 2450, 0x00000000
0, 550000, 134400, 0x0e37a7a8
1, 556702, 2450, 0x00000000
0, 560000, 134400, 0xd288eef7
1, 566702, 2450, 0x00000000
1, 576702, 2450, 0x00000000
#tb 0: 1/9
#tb 1: 1/11025
0, 0, 0, 1, 134400, 0xc218b00c
1, 0, 0, 8884, 17768, 0x07df135c
0, 1, 1, 1, 134400, 0x114daf7c
0, 2, 2, 1, 134400, 0xe14db24c
0, 3, 3, 1, 134400, 0x88c71df7
0, 4, 4, 1, 134400, 0xc98c09fc
0, 5, 5, 1, 134400, 0xf7c2e7a9
0, 6, 6, 1, 134400, 0xf54f304f
0, 7, 7, 1, 134400, 0x67370fdd
1, 8884, 8884, 1110, 2220, 0x44953646
0, 8, 8, 1, 134400, 0xe70f43cd
1, 9994, 9994, 1110, 2220, 0x256b3329
0, 9, 9, 1, 134400, 0xad74c06f
1, 11104, 11104, 1111, 2222, 0x344d20c6
1, 12215, 12215, 1110, 2220, 0xd8ee20db
0, 10, 10, 1, 134400, 0xef42fdf2
1, 13325, 13325, 1111, 2222, 0x46d70aa2
0, 11, 11, 1, 134400, 0xa14cc4b8
1, 14436, 14436, 1110, 2220, 0xbe0a2213
0, 12, 12, 1, 134400, 0xc6e57381
1, 15546, 15546, 1111, 2222, 0x4ee0fd07
0, 13, 13, 1, 134400, 0x74b4804b
1, 16657, 16657, 1110, 2220, 0x709dfe87
0, 14, 14, 1, 134400, 0xe0863d6f
1, 17767, 17767, 1111, 2222, 0xbb382521
0, 15, 15, 1, 134400, 0x90b6d03c
1, 18878, 18878, 1110, 2220, 0x6dba1d2d
0, 16, 16, 1, 134400, 0x3d0409fd
1, 19988, 19988, 1111, 2222, 0xbc4cdd6d
0, 17, 17, 1, 134400, 0xc02e09a4
1, 21099, 21099, 1110, 2220, 0x54340d2c
0, 18, 18, 1, 134400, 0xa3515997
1, 22209, 22209, 1110, 2220, 0x8925d335
0, 19, 19, 1, 134400, 0xc0fda122
1, 23319, 23319, 1111, 2222, 0xa39bd15f
1, 24430, 24430, 1110, 2220, 0x6875f632
0, 20, 20, 1, 134400, 0x5380d707
1, 25540, 25540, 1111, 2222, 0xda46be57
0, 21, 21, 1, 134400, 0xcc19c085
1, 26651, 26651, 1110, 2220, 0xd591eb44
0, 22, 22, 1, 134400, 0x8041e977
1, 27761, 27761, 1111, 2222, 0x33afd17f
0, 23, 23, 1, 134400, 0xb96b2bea
1, 28872, 28872, 1110, 2220, 0xd97be03b
0, 24, 24, 1, 134400, 0xcc977ca7
1, 29982, 29982, 1111, 2222, 0x3b71e82e
0, 25, 25, 1, 134400, 0xe37abb34
1, 31093, 31093, 1110, 2220, 0x95fbec2b
0, 26, 26, 1, 134400, 0xce488baa
1, 32203, 32203, 1110, 2220, 0xae3a1c1e
0, 27, 27, 1, 134400, 0xa0734e8a
1, 33313, 33313, 1111, 2222, 0x46cd0973
0, 28, 28, 1, 134400, 0x6b5ce0b0
1, 34424, 34424, 1110, 2220, 0x7b28f3f6
0, 29, 29, 1, 134400, 0xf207f938
1, 35534, 35534, 1111, 2222, 0xa2a5bc47
1, 36645, 36645, 1110, 2220, 0x4727df63
0, 30, 30, 1, 134400, 0xe10060f8
1, 37755, 37755, 1111, 2222, 0xdf53f4e2
0, 31, 31, 1, 134400, 0xaebe6b37
1, 38866, 38866, 1110, 2220, 0x469c1e8f
0, 32, 32, 1, 134400, 0x08ea5c75
1, 39976, 39976, 1111, 2222, 0x3c541799
0, 33, 33, 1, 134400, 0x05c6b514
1, 41087, 41087, 1110, 2220, 0xc8d21fee
0, 34, 34, 1, 134400, 0x68cb3703
1, 42197, 42197, 1111, 2222, 0x5f52126f
0, 35, 35, 1, 134400, 0x48867fd0
1, 43308, 43308, 1110, 2220, 0x06a9ff18
0, 36, 36, 1, 134400, 0xc53eda30
1, 44418, 44418, 1110, 2220, 0x84f9aa2b
0, 37, 37, 1, 134400, 0x0c1b198d
1, 45528, 45528, 1111, 2222, 0xe0518c83
0, 38, 38, 1, 134400, 0xc8ac5bc8
1, 46639, 46639, 1110, 2220, 0xc85ee26c
1, 47749, 47749, 1111, 2222, 0xda23fd2d
0, 39, 39, 1, 134400, 0x9e35240d
1, 48860, 48860, 1110, 2220, 0x7ee2e818
0, 40, 40, 1, 134400, 0x885d142f
1, 49970, 49970, 1111, 2222, 0x45eb0465
0, 41, 41, 1, 134400, 0x207cb4ac
1, 51081, 51081, 1110, 2220, 0xf3e90549
0, 42, 42, 1, 134400, 0x0abe748b
1, 52191, 52191, 1111, 2222, 0x17aacf3d
0, 43, 43, 1, 134400, 0xf13e991b
1, 53302, 53302, 1110, 2220, 0x6cb7e325
0, 44, 44, 1, 134400, 0x2544248d
1, 54412, 54412, 1110, 2220, 0x20164553
0, 45, 45, 1, 134400, 0x5444bb22
1, 55522, 55522, 1111, 2222, 0x00000000
0, 46, 46, 1, 134400, 0xc5a8f55a
1, 56633, 56633, 1110, 2220, 0x00000000
0, 47, 47, 1, 134400, 0xe6006820
1, 57743, 57743, 1111, 2222, 0x00000000
0, 48, 48, 1, 134400, 0x2a34239d
1, 58854, 58854, 1110, 2220, 0x00000000
1, 59964, 59964, 1111, 2222, 0x00000000
0, 49, 49, 1, 134400, 0x26deac5b
1, 61075, 61075, 1110, 2220, 0x00000000
0, 50, 50, 1, 134400, 0x82c2c0a9
1, 62185, 62185, 1111, 2222, 0x00000000
0, 51, 51, 1, 134400, 0xcdd8daba
1, 63296, 63296, 1225, 2450, 0x00000000
0, 52, 52, 1, 134400, 0x5a1a2105
1, 64521, 64521, 1225, 2450, 0x00000000
0, 53, 53, 1, 134400, 0x2ad43604
1, 65746, 65746, 1225, 2450, 0x00000000
0, 54, 54, 1, 134400, 0xa9b58f35
1, 66971, 66971, 1225, 2450, 0x00000000
0, 55, 55, 1, 134400, 0x0e37a7a8
1, 68196, 68196, 1225, 2450, 0x00000000
0, 56, 56, 1, 134400, 0xd288eef7
1, 69421, 69421, 1225, 2450, 0x00000000
1, 70646, 70646, 1225, 2450, 0x00000000
0, 0, 460800, 0xb06f7841
0, 6000, 460800, 0x7ed06412
0, 12000, 460800, 0xe82b5c3d
0, 18000, 460800, 0x67284940
0, 24000, 460800, 0x17e2c544
0, 30000, 460800, 0x5dc65d36
0, 36000, 460800, 0x7de63f90
0, 42000, 460800, 0x15c8cf7d
0, 48000, 460800, 0xbffe4047
0, 54000, 460800, 0xcabcc150
0, 60000, 460800, 0xe8a17ebe
0, 66000, 460800, 0x27e94c03
0, 72000, 460800, 0x71c0f48e
0, 78000, 460800, 0x5fc8f783
0, 84000, 460800, 0xd23d336a
0, 90000, 460800, 0xadcfa9e0
0, 96000, 460800, 0x24222144
0, 102000, 460800, 0x88f28b2b
0, 108000, 460800, 0x52e13544
0, 114000, 460800, 0x7e724731
#tb 0: 1/15
0, 0, 0, 1, 460800, 0xb06f7841
0, 1, 1, 1, 460800, 0x7ed06412
0, 2, 2, 1, 460800, 0xe82b5c3d
0, 3, 3, 1, 460800, 0x67284940
0, 4, 4, 1, 460800, 0x17e2c544
0, 5, 5, 1, 460800, 0x5dc65d36
0, 6, 6, 1, 460800, 0x7de63f90
0, 7, 7, 1, 460800, 0x15c8cf7d
0, 8, 8, 1, 460800, 0xbffe4047
0, 9, 9, 1, 460800, 0xcabcc150
0, 10, 10, 1, 460800, 0xe8a17ebe
0, 11, 11, 1, 460800, 0x27e94c03
0, 12, 12, 1, 460800, 0x71c0f48e
0, 13, 13, 1, 460800, 0x5fc8f783
0, 14, 14, 1, 460800, 0xd23d336a
0, 15, 15, 1, 460800, 0xadcfa9e0
0, 16, 16, 1, 460800, 0x24222144
0, 17, 17, 1, 460800, 0x88f28b2b
0, 18, 18, 1, 460800, 0x52e13544
0, 19, 19, 1, 460800, 0x7e724731
0, 0, 823680, 0xddb8a306
1, 0, 7424, 0x18540b36
0, 7500, 823680, 0xa95375c8
1, 7576, 7296, 0x5acd2484
0, 15000, 823680, 0xa95375c8
1, 15020, 7424, 0xa1bc5c5a
0, 22500, 823680, 0xb6f78afe
1, 22596, 7296, 0x71a02ad1
0, 30000, 823680, 0xb6f78afe
1, 30041, 7424, 0x09cc32f2
0, 37500, 823680, 0x45b9c8f0
1, 37616, 7296, 0xa3451726
0, 45000, 823680, 0x45b9c8f0
1, 45061, 7296, 0x1eb40a18
0, 52500, 823680, 0x7653d8e9
1, 52506, 7424, 0xc55a2acf
0, 60000, 823680, 0x7653d8e9
1, 60082, 7296, 0x5b9fad3f
0, 67500, 823680, 0xf1e2fd73
1, 67527, 7424, 0xea651ae7
0, 75000, 823680, 0xf1e2fd73
1, 75102, 7296, 0x2bd5ddb6
0, 82500, 823680, 0x6d2deab3
1, 82547, 7424, 0xde4243b4
0, 90000, 823680, 0x6d2deab3
1, 90122, 7296, 0x358806d3
0, 97500, 823680, 0x37fd33ce
1, 97567, 7296, 0x511a144e
0, 105000, 823680, 0x37fd33ce
1, 105012, 7424, 0x887a3e84
0, 112500, 823680, 0x0a8e0ab9
1, 112588, 7296, 0xfeae2a0c
0, 120000, 823680, 0x0a8e0ab9
1, 120033, 7424, 0xa4ea5d22
0, 127500, 823680, 0x991bb2b0
1, 127608, 7296, 0xb3adf7fa
0, 135000, 823680, 0x991bb2b0
1, 135053, 7424, 0xce995dcc
0, 142500, 823680, 0xb8397c8c
1, 142629, 7296, 0x5b4cf574
0, 150000, 823680, 0xb8397c8c
1, 150073, 7296, 0x8a70eaf0
#tb 0: 1/12
#tb 1: 1/22050
0, 0, 0, 1, 823680, 0xddb8a306
1, 0, 0, 1856, 7424, 0x18540b36
0, 1, 1, 1, 823680, 0xa95375c8
1, 1856, 1856, 1824, 7296, 0x5acd2484
0, 2, 2, 1, 823680, 0xa95375c8
1, 3680, 3680, 1856, 7424, 0xa1bc5c5a
0, 3, 3, 1, 823680, 0xb6f78afe
1, 5536, 5536, 1824, 7296, 0x71a02ad1
0, 4, 4, 1, 823680, 0xb6f78afe
1, 7360, 7360, 1856, 7424, 0x09cc32f2
0, 5, 5, 1, 823680, 0x45b9c8f0
1, 9216, 9216, 1824, 7296, 0xa3451726
0, 6, 6, 1, 823680, 0x45b9c8f0
1, 11040, 11040, 1824, 7296, 0x1eb40a18
0, 7, 7, 1, 823680, 0x7653d8e9
1, 12864, 12864, 1856, 7424, 0xc55a2acf
0, 8, 8, 1, 823680, 0x7653d8e9
1, 14720, 14720, 1824, 7296, 0x5b9fad3f
0, 9, 9, 1, 823680, 0xf1e2fd73
1, 16544, 16544, 1856, 7424, 0xea651ae7
0, 10, 10, 1, 823680, 0xf1e2fd73
1, 18400, 18400, 1824, 7296, 0x2bd5ddb6
0, 11, 11, 1, 823680, 0x6d2deab3
1, 20224, 20224, 1856, 7424, 0xde4243b4
0, 12, 12, 1, 823680, 0x6d2deab3
1, 22080, 22080, 1824, 7296, 0x358806d3
0, 13, 13, 1, 823680, 0x37fd33ce
1, 23904, 23904, 1824, 7296, 0x511a144e
0, 14, 14, 1, 823680, 0x37fd33ce
1, 25728, 25728, 1856, 7424, 0x887a3e84
0, 15, 15, 1, 823680, 0x0a8e0ab9
1, 27584, 27584, 1824, 7296, 0xfeae2a0c
0, 16, 16, 1, 823680, 0x0a8e0ab9
1, 29408, 29408, 1856, 7424, 0xa4ea5d22
0, 17, 17, 1, 823680, 0x991bb2b0
1, 31264, 31264, 1824, 7296, 0xb3adf7fa
0, 18, 18, 1, 823680, 0x991bb2b0
1, 33088, 33088, 1856, 7424, 0xce995dcc
0, 19, 19, 1, 823680, 0xb8397c8c
1, 34944, 34944, 1824, 7296, 0x5b4cf574
0, 20, 20, 1, 823680, 0xb8397c8c
1, 36768, 36768, 1824, 7296, 0x8a70eaf0
This diff is collapsed.
0, 0, 64800, 0x63132a60
0, 3169, 64800, 0xb3c729a3
0, 6338, 64800, 0xa27b1e0e
0, 9507, 64800, 0xb9131d00
0, 12676, 64800, 0xaf9a1bae
0, 15845, 64800, 0x11e319c5
0, 19013, 64800, 0xee6e1e6b
0, 22182, 64800, 0x418417e9
0, 25351, 64800, 0x339d29f4
0, 28520, 64800, 0x198926c4
0, 31689, 64800, 0x439a3044
0, 34858, 64800, 0x0a4e38e1
0, 38027, 64800, 0x6e043e7e
0, 41196, 64800, 0xde434533
0, 44365, 64800, 0xb58a4ad1
0, 47534, 64800, 0xaa105710
0, 50702, 64800, 0x1723440c
0, 53871, 64800, 0x3b064116
0, 57040, 64800, 0x853f38e4
0, 60209, 64800, 0x52f53917
0, 63378, 64800, 0xea363e5a
0, 66547, 64800, 0x4d0a344e
0, 69716, 64800, 0xe49232fc
0, 72885, 64800, 0x747b1a02
0, 76054, 64800, 0xbaa82992
0, 79223, 64800, 0x8e9322db
0, 82391, 64800, 0x029a2fcf
0, 85560, 64800, 0xb9a62f6a
0, 88729, 64800, 0x553329fe
0, 91898, 64800, 0x9a052b5b
0, 95067, 64800, 0xe2ff2404
0, 98236, 64800, 0xaacd1b59
0, 101405, 64800, 0x17d820de
0, 104574, 64800, 0x1c9e312c
0, 107743, 64800, 0x84df3b99
0, 110912, 64800, 0xf7d13aa1
#tb 0: 3521/100000
0, 0, 0, 1, 64800, 0x63132a60
0, 1, 1, 1, 64800, 0xb3c729a3
0, 2, 2, 1, 64800, 0xa27b1e0e
0, 3, 3, 1, 64800, 0xb9131d00
0, 4, 4, 1, 64800, 0xaf9a1bae
0, 5, 5, 1, 64800, 0x11e319c5
0, 6, 6, 1, 64800, 0xee6e1e6b
0, 7, 7, 1, 64800, 0x418417e9
0, 8, 8, 1, 64800, 0x339d29f4
0, 9, 9, 1, 64800, 0x198926c4
0, 10, 10, 1, 64800, 0x439a3044
0, 11, 11, 1, 64800, 0x0a4e38e1
0, 12, 12, 1, 64800, 0x6e043e7e
0, 13, 13, 1, 64800, 0xde434533
0, 14, 14, 1, 64800, 0xb58a4ad1
0, 15, 15, 1, 64800, 0xaa105710
0, 16, 16, 1, 64800, 0x1723440c
0, 17, 17, 1, 64800, 0x3b064116
0, 18, 18, 1, 64800, 0x853f38e4
0, 19, 19, 1, 64800, 0x52f53917
0, 20, 20, 1, 64800, 0xea363e5a
0, 21, 21, 1, 64800, 0x4d0a344e
0, 22, 22, 1, 64800, 0xe49232fc
0, 23, 23, 1, 64800, 0x747b1a02
0, 24, 24, 1, 64800, 0xbaa82992
0, 25, 25, 1, 64800, 0x8e9322db
0, 26, 26, 1, 64800, 0x029a2fcf
0, 27, 27, 1, 64800, 0xb9a62f6a
0, 28, 28, 1, 64800, 0x553329fe
0, 29, 29, 1, 64800, 0x9a052b5b
0, 30, 30, 1, 64800, 0xe2ff2404
0, 31, 31, 1, 64800, 0xaacd1b59
0, 32, 32, 1, 64800, 0x17d820de
0, 33, 33, 1, 64800, 0x1c9e312c
0, 34, 34, 1, 64800, 0x84df3b99
0, 35, 35, 1, 64800, 0xf7d13aa1
0, 0, 230400, 0x03e25ead
1, 0, 11026, 0x27ad637c
0, 6000, 230400, 0x0a520ffd
0, 12000, 230400, 0x0b11a671
0, 18000, 230400, 0x7d3fce32
0, 24000, 230400, 0x1edb18cc
0, 30000, 230400, 0x1d470493
0, 36000, 230400, 0xe53ba01d
0, 42000, 230400, 0xc4df13c2
1, 45004, 1470, 0x4af4b7a3
0, 48000, 230400, 0x5febe6c9
1, 51004, 1470, 0x2601fc3b
0, 54000, 230400, 0xb0de2ed9
1, 57004, 1470, 0xd94ec488
0, 60000, 230400, 0x4991ee21
1, 63004, 1470, 0x5ffb6bdd
0, 66000, 230400, 0x6b367a75
1, 69004, 1470, 0xc5fece50
0, 72000, 230400, 0x1d406b55
1, 75004, 1470, 0xf4988a98
0, 78000, 230400, 0x2bbbf1d3
1, 81004, 1470, 0xa839620f
0, 84000, 230400, 0x2a5ee265
1, 87004, 1470, 0x800a77ff
0, 90000, 230400, 0x0ae9de8d
1, 93004, 1470, 0x8fc8a729
0, 96000, 230400, 0x567eabf8
1, 99004, 1470, 0x78708001
0, 102000, 230400, 0x00260e67
1, 105004, 1470, 0xb601958b
1, 111004, 1470, 0xb054d1d3
1, 117004, 1470, 0xce18bb41
1, 123004, 1470, 0x43d182f9
1, 129004, 1470, 0xe9448449
1, 135004, 1470, 0x175ea4b3
1, 141004, 1470, 0xf96b0e6a
1, 147004, 1470, 0x12cc42fb
#tb 0: 1/15
#tb 1: 1/11025
0, 0, 0, 1, 230400, 0x03e25ead
1, 0, 0, 5513, 11026, 0x27ad637c
0, 1, 1, 1, 230400, 0x0a520ffd
0, 2, 2, 1, 230400, 0x0b11a671
0, 3, 3, 1, 230400, 0x7d3fce32
0, 4, 4, 1, 230400, 0x1edb18cc
0, 5, 5, 1, 230400, 0x1d470493
0, 6, 6, 1, 230400, 0xe53ba01d
0, 7, 7, 1, 230400, 0xc4df13c2
1, 5513, 5513, 735, 1470, 0x4af4b7a3
0, 8, 8, 1, 230400, 0x5febe6c9
1, 6248, 6248, 735, 1470, 0x2601fc3b
0, 9, 9, 1, 230400, 0xb0de2ed9
1, 6983, 6983, 735, 1470, 0xd94ec488
0, 10, 10, 1, 230400, 0x4991ee21
1, 7718, 7718, 735, 1470, 0x5ffb6bdd
0, 11, 11, 1, 230400, 0x6b367a75
1, 8453, 8453, 735, 1470, 0xc5fece50
0, 12, 12, 1, 230400, 0x1d406b55
1, 9188, 9188, 735, 1470, 0xf4988a98
0, 13, 13, 1, 230400, 0x2bbbf1d3
1, 9923, 9923, 735, 1470, 0xa839620f
0, 14, 14, 1, 230400, 0x2a5ee265
1, 10658, 10658, 735, 1470, 0x800a77ff
0, 15, 15, 1, 230400, 0x0ae9de8d
1, 11393, 11393, 735, 1470, 0x8fc8a729
0, 16, 16, 1, 230400, 0x567eabf8
1, 12128, 12128, 735, 1470, 0x78708001
0, 17, 17, 1, 230400, 0x00260e67
1, 12863, 12863, 735, 1470, 0xb601958b
1, 13598, 13598, 735, 1470, 0xb054d1d3
1, 14333, 14333, 735, 1470, 0xce18bb41
1, 15068, 15068, 735, 1470, 0x43d182f9
1, 15803, 15803, 735, 1470, 0xe9448449
1, 16538, 16538, 735, 1470, 0x175ea4b3
1, 17273, 17273, 735, 1470, 0xf96b0e6a
1, 18008, 18008, 735, 1470, 0x12cc42fb
0, 0, 188892, 0x9f47a5ec
1, 0, 16372, 0xfaaab59d
0, 6000, 188892, 0xdece0269
0, 12000, 188892, 0xd097e86e
0, 18000, 188892, 0x1cf2de83
0, 24000, 188892, 0xb664fd10
0, 30000, 188892, 0xc654f4c1
1, 33154, 4028, 0xc2daed72
0, 36000, 188892, 0x5adac3ff
1, 41310, 5486, 0xf7fd794d
0, 42000, 188892, 0x5928954e
0, 48000, 188892, 0x5e4cad6c
1, 52420, 5790, 0xfd5a369f
0, 54000, 188892, 0xbbb5f11b
0, 60000, 188892, 0xcb6bbdee
1, 64145, 1068, 0x0b602cd0
0, 66000, 188892, 0xa5b3b316
1, 66307, 4908, 0xfe870aad
0, 72000, 188892, 0x9bf87b5d
1, 76246, 6062, 0x8a4d6e0f
0, 78000, 188892, 0xcc3981be
0, 84000, 188892, 0x2eb44dfa
1, 88522, 5402, 0x71fd352f
0, 90000, 188892, 0x11c861b9
0, 96000, 188892, 0x7c1b767b
1, 99461, 544, 0xeb766d34
1, 100563, 5906, 0x47ac7e08
0, 102000, 188892, 0x5078694c
0, 108000, 188892, 0xa24485c2
1, 112522, 5916, 0x0d26eb56
0, 114000, 188892, 0xc8016946
0, 120000, 188892, 0x71e3493b
1, 124502, 4006, 0x9941c71a
0, 126000, 188892, 0xa9771a0d
0, 132000, 188892, 0x98be33fd
1, 132615, 2100, 0xc9a2ee36
1, 136867, 5894, 0xd2ba4eaa
0, 138000, 188892, 0x193e4cda
0, 144000, 188892, 0x3b444fd1
1, 148803, 6090, 0xf43e73d0
0, 150000, 188892, 0x8bfe594c
0, 156000, 188892, 0xaab8267b
1, 161135, 2288, 0x5a8b7aa0
0, 162000, 188892, 0x03206c55
1, 165768, 3850, 0x7f66eb2c
0, 168000, 188892, 0x8ed7ea7d
1, 173564, 5796, 0xc5cf3ee8
0, 174000, 188892, 0x2a1bc3e1
0, 180000, 188892, 0xa6a12aa7
1, 185302, 6042, 0xed80136d
0, 186000, 188892, 0xa96ca4fa
0, 192000, 188892, 0x3e3a6d70
1, 197537, 684, 0xc42bd137
0, 198000, 188892, 0x47e173dd
1, 198922, 5436, 0xb7f8a6fd
0, 204000, 188892, 0xfcf183ba
1, 209930, 6098, 0xee6354a2
0, 210000, 188892, 0xf051be46
0, 216000, 188892, 0x8aa6b100
0, 222000, 188892, 0x36c86b01
1, 222278, 4838, 0x129e61d0
0, 228000, 188892, 0x15ae396e
1, 232075, 1074, 0x9da90634
0, 234000, 188892, 0xc876eabf
1, 234250, 6084, 0x8ffed952
0, 240000, 188892, 0xc5c65fae
0, 246000, 188892, 0x4feec932
1, 246571, 6038, 0xa07b4276
0, 252000, 188892, 0x21374e88
0, 258000, 188892, 0x52e689f1
1, 258798, 3176, 0xebef63c1
0, 264000, 188892, 0x9e2492e8
1, 265229, 2794, 0xbe1000db
0, 270000, 188892, 0xac841247
1, 270887, 6020, 0xd8e34961
0, 276000, 188892, 0x8467aab2
0, 282000, 188892, 0x552b6029
1, 283078, 6020, 0xc07cf461
0, 288000, 188892, 0x836eb46e
0, 294000, 188892, 0x93eb9f1b
1, 295268, 1538, 0xc975ae02
1, 298383, 4230, 0x0827111b
0, 300000, 188892, 0xa3661fdd
0, 306000, 188892, 0x433d22dd
1, 306949, 6084, 0x2cf0a407
0, 312000, 188892, 0xd64dbc4e
0, 318000, 188892, 0x4a2aa0e3
1, 319269, 5828, 0x12750279
0, 324000, 188892, 0xd98e4d4b
0, 330000, 188892, 0x00000000
1, 331071, 230, 0xc9c03f3b
1, 331536, 768, 0x6137a04d
#tb 0: 1/15
#tb 1: 1/22222
0, 0, 0, 1, 188892, 0x9f47a5ec
1, 0, 0, 8186, 16372, 0xfaaab59d
0, 1, 1, 1, 188892, 0xdece0269
0, 2, 2, 1, 188892, 0xd097e86e
0, 3, 3, 1, 188892, 0x1cf2de83
0, 4, 4, 1, 188892, 0xb664fd10
0, 5, 5, 1, 188892, 0xc654f4c1
1, 8186, 8186, 2014, 4028, 0xc2daed72
0, 6, 6, 1, 188892, 0x5adac3ff
1, 10200, 10200, 2743, 5486, 0xf7fd794d
0, 7, 7, 1, 188892, 0x5928954e
0, 8, 8, 1, 188892, 0x5e4cad6c
1, 12943, 12943, 2895, 5790, 0xfd5a369f
0, 9, 9, 1, 188892, 0xbbb5f11b
0, 10, 10, 1, 188892, 0xcb6bbdee
1, 15838, 15838, 534, 1068, 0x0b602cd0
0, 11, 11, 1, 188892, 0xa5b3b316
1, 16372, 16372, 2454, 4908, 0xfe870aad
0, 12, 12, 1, 188892, 0x9bf87b5d
1, 18826, 18826, 3031, 6062, 0x8a4d6e0f
0, 13, 13, 1, 188892, 0xcc3981be
0, 14, 14, 1, 188892, 0x2eb44dfa
1, 21857, 21857, 2701, 5402, 0x71fd352f
0, 15, 15, 1, 188892, 0x11c861b9
0, 16, 16, 1, 188892, 0x7c1b767b
1, 24558, 24558, 272, 544, 0xeb766d34
1, 24830, 24830, 2953, 5906, 0x47ac7e08
0, 17, 17, 1, 188892, 0x5078694c
0, 18, 18, 1, 188892, 0xa24485c2
1, 27783, 27783, 2958, 5916, 0x0d26eb56
0, 19, 19, 1, 188892, 0xc8016946
0, 20, 20, 1, 188892, 0x71e3493b
1, 30741, 30741, 2003, 4006, 0x9941c71a
0, 21, 21, 1, 188892, 0xa9771a0d
0, 22, 22, 1, 188892, 0x98be33fd
1, 32744, 32744, 1050, 2100, 0xc9a2ee36
1, 33794, 33794, 2947, 5894, 0xd2ba4eaa
0, 23, 23, 1, 188892, 0x193e4cda
0, 24, 24, 1, 188892, 0x3b444fd1
1, 36741, 36741, 3045, 6090, 0xf43e73d0
0, 25, 25, 1, 188892, 0x8bfe594c
0, 26, 26, 1, 188892, 0xaab8267b
1, 39786, 39786, 1144, 2288, 0x5a8b7aa0
0, 27, 27, 1, 188892, 0x03206c55
1, 40930, 40930, 1925, 3850, 0x7f66eb2c
0, 28, 28, 1, 188892, 0x8ed7ea7d
1, 42855, 42855, 2898, 5796, 0xc5cf3ee8
0, 29, 29, 1, 188892, 0x2a1bc3e1
0, 30, 30, 1, 188892, 0xa6a12aa7
1, 45753, 45753, 3021, 6042, 0xed80136d
0, 31, 31, 1, 188892, 0xa96ca4fa
0, 32, 32, 1, 188892, 0x3e3a6d70
1, 48774, 48774, 342, 684, 0xc42bd137
0, 33, 33, 1, 188892, 0x47e173dd
1, 49116, 49116, 2718, 5436, 0xb7f8a6fd
0, 34, 34, 1, 188892, 0xfcf183ba
1, 51834, 51834, 3049, 6098, 0xee6354a2
0, 35, 35, 1, 188892, 0xf051be46
0, 36, 36, 1, 188892, 0x8aa6b100
0, 37, 37, 1, 188892, 0x36c86b01
1, 54883, 54883, 2419, 4838, 0x129e61d0
0, 38, 38, 1, 188892, 0x15ae396e
1, 57302, 57302, 537, 1074, 0x9da90634
0, 39, 39, 1, 188892, 0xc876eabf
1, 57839, 57839, 3042, 6084, 0x8ffed952
0, 40, 40, 1, 188892, 0xc5c65fae
0, 41, 41, 1, 188892, 0x4feec932
1, 60881, 60881, 3019, 6038, 0xa07b4276
0, 42, 42, 1, 188892, 0x21374e88
0, 43, 43, 1, 188892, 0x52e689f1
1, 63900, 63900, 1588, 3176, 0xebef63c1
0, 44, 44, 1, 188892, 0x9e2492e8
1, 65488, 65488, 1397, 2794, 0xbe1000db
0, 45, 45, 1, 188892, 0xac841247
1, 66885, 66885, 3010, 6020, 0xd8e34961
0, 46, 46, 1, 188892, 0x8467aab2
0, 47, 47, 1, 188892, 0x552b6029
1, 69895, 69895, 3010, 6020, 0xc07cf461
0, 48, 48, 1, 188892, 0x836eb46e
0, 49, 49, 1, 188892, 0x93eb9f1b
1, 72905, 72905, 769, 1538, 0xc975ae02
1, 73674, 73674, 2115, 4230, 0x0827111b
0, 50, 50, 1, 188892, 0xa3661fdd
0, 51, 51, 1, 188892, 0x433d22dd
1, 75789, 75789, 3042, 6084, 0x2cf0a407
0, 52, 52, 1, 188892, 0xd64dbc4e
0, 53, 53, 1, 188892, 0x4a2aa0e3
1, 78831, 78831, 2914, 5828, 0x12750279
0, 54, 54, 1, 188892, 0xd98e4d4b
0, 55, 55, 1, 188892, 0x00000000
1, 81745, 81745, 115, 230, 0xc9c03f3b
1, 81860, 81860, 384, 768, 0x6137a04d
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0, 0, 36000, 0xd592781d
0, 1875, 36000, 0xd592781d
0, 3750, 36000, 0xd592781d
0, 5625, 23056, 0xde81f0d6
#tb 0: 1/90000
0, 0, 0, 1875, 36000, 0xd592781d
0, 1875, 1875, 1875, 36000, 0xd592781d
0, 3750, 3750, 1875, 36000, 0xd592781d
0, 5625, 5625, 1200, 23056, 0xde81f0d6
This diff is collapsed.
This diff is collapsed.
0, 0, 921600, 0xb69faa34
0, 11520, 921600, 0x38680829
0, 23040, 921600, 0xa7263c5a
0, 34560, 921600, 0xa784626a
0, 46080, 921600, 0xb4c47212
0, 57600, 921600, 0xd17285ea
0, 69120, 921600, 0xe9b33902
0, 80640, 921600, 0x215ea693
0, 92160, 921600, 0xe2ab6c7a
0, 103680, 921600, 0xf2867624
0, 115200, 921600, 0x607d78c1
0, 126720, 921600, 0x6e743bb7
0, 138240, 921600, 0x1fbf8f5a
0, 149760, 921600, 0xac6c912e
0, 161280, 921600, 0x556933bc
0, 172800, 921600, 0xda4c242b
0, 184320, 921600, 0xa6b32f83
0, 195840, 921600, 0x1ecc2996
0, 207360, 921600, 0xf1c3fc0f
0, 218880, 921600, 0x3f1db909
0, 230400, 921600, 0x7582fb93
0, 241920, 921600, 0x102ba261
0, 253440, 921600, 0xfbcf9de0
0, 264960, 921600, 0xe9ecb4d9
0, 276480, 921600, 0x7ee36a42
#tb 0: 16/125
0, 0, 0, 1, 921600, 0xb69faa34
0, 1, 1, 1, 921600, 0x38680829
0, 2, 2, 1, 921600, 0xa7263c5a
0, 3, 3, 1, 921600, 0xa784626a
0, 4, 4, 1, 921600, 0xb4c47212
0, 5, 5, 1, 921600, 0xd17285ea
0, 6, 6, 1, 921600, 0xe9b33902
0, 7, 7, 1, 921600, 0x215ea693
0, 8, 8, 1, 921600, 0xe2ab6c7a
0, 9, 9, 1, 921600, 0xf2867624
0, 10, 10, 1, 921600, 0x607d78c1
0, 11, 11, 1, 921600, 0x6e743bb7
0, 12, 12, 1, 921600, 0x1fbf8f5a
0, 13, 13, 1, 921600, 0xac6c912e
0, 14, 14, 1, 921600, 0x556933bc
0, 15, 15, 1, 921600, 0xda4c242b
0, 16, 16, 1, 921600, 0xa6b32f83
0, 17, 17, 1, 921600, 0x1ecc2996
0, 18, 18, 1, 921600, 0xf1c3fc0f
0, 19, 19, 1, 921600, 0x3f1db909
0, 20, 20, 1, 921600, 0x7582fb93
0, 21, 21, 1, 921600, 0x102ba261
0, 22, 22, 1, 921600, 0xfbcf9de0
0, 23, 23, 1, 921600, 0xe9ecb4d9
0, 24, 24, 1, 921600, 0x7ee36a42
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0, 0, 2359296, 0x30d4d24f
#tb 0: 1/25
0, 0, 0, 1, 2359296, 0x30d4d24f
This diff is collapsed.
This diff is collapsed.
0, 0, 1382400, 0x44373645
#tb 0: 1/25
#tb 1: 1/48000
0, 0, 0, 1, 1382400, 0x44373645
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0, 0, 230400, 0x6bc891ff
#tb 0: 1/25
0, 0, 0, 1, 230400, 0x6bc891ff
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment