├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── main.py ├── osr2mp4 ├── AudioProcess │ ├── AddAudio.py │ ├── CreateAudio.py │ ├── Hitsound.py │ ├── TODO.md │ ├── Utils.py │ └── __init__.py ├── CheckSystem │ ├── Health.py │ ├── HitObjectChecker.py │ ├── HitObjects │ │ ├── HitObject.py │ │ ├── Slider.py │ │ ├── Spinner.py │ │ └── __init__.py │ ├── HitresultEnum.py │ ├── Judgement.py │ ├── __init__.py │ ├── checkmain.py │ ├── getgrade.py │ └── mathhelper.py ├── EEnum │ ├── EAudio.py │ ├── EGrade.py │ ├── EImageFrom.py │ ├── EMods.py │ ├── EReplay.py │ ├── EState.py │ └── __init__.py ├── Exceptions.py ├── ImageProcess │ ├── Animation │ │ ├── __init__.py │ │ ├── alpha.py │ │ ├── easing.py │ │ ├── easings.py │ │ └── size.py │ ├── Curves │ │ ├── __init__.py │ │ ├── curves.py │ │ ├── generate_slider.py │ │ └── libcurves │ │ │ ├── Approximator.h │ │ │ ├── BezierApproximator.cpp │ │ │ ├── BezierApproximator.h │ │ │ ├── CatmullApproximator.cpp │ │ │ ├── CatmullApproximator.h │ │ │ ├── LinearApproximator.cpp │ │ │ ├── LinearApproximator.h │ │ │ ├── PerfectApproximator.cpp │ │ │ ├── PerfectApproximator.h │ │ │ ├── Vector2.cpp │ │ │ ├── Vector2.h │ │ │ ├── __init__.py │ │ │ ├── ccurves.cp37-win32.pyd │ │ │ ├── ccurves.cp37-win_amd64.pyd │ │ │ ├── ccurves.cpp │ │ │ ├── ccurves.cpython-37m-darwin.so │ │ │ ├── ccurves.pyx │ │ │ ├── curves.cpp │ │ │ ├── curves.h │ │ │ ├── rmshit.sh │ │ │ ├── setup.py │ │ │ └── z.py │ ├── Objects │ │ ├── Components │ │ │ ├── AScorebar.py │ │ │ ├── ArrowWarning.py │ │ │ ├── Background.py │ │ │ ├── Button.py │ │ │ ├── Cursor.py │ │ │ ├── Flashlight.py │ │ │ ├── Followpoints.py │ │ │ ├── Playfield.py │ │ │ ├── PlayingGrade.py │ │ │ ├── PlayingModIcons.py │ │ │ ├── Scorebar.py │ │ │ ├── ScorebarBG.py │ │ │ ├── Scoreboard.py │ │ │ ├── Sections.py │ │ │ ├── TimePie.py │ │ │ └── __init__.py │ │ ├── FrameObject.py │ │ ├── HitObjects │ │ │ ├── CircleNumber.py │ │ │ ├── Circles.py │ │ │ ├── Manager.py │ │ │ ├── Slider.py │ │ │ ├── Spinner.py │ │ │ └── __init__.py │ │ ├── RankingScreens │ │ │ ├── ARankingScreen.py │ │ │ ├── Menuback.py │ │ │ ├── ModIcons.py │ │ │ ├── RankingAccuracy.py │ │ │ ├── RankingCombo.py │ │ │ ├── RankingGrade.py │ │ │ ├── RankingGraph.py │ │ │ ├── RankingHitresults.py │ │ │ ├── RankingPanel.py │ │ │ ├── RankingReplay.py │ │ │ ├── RankingTitle.py │ │ │ └── __init__.py │ │ ├── Scores │ │ │ ├── ACounter.py │ │ │ ├── Accuracy.py │ │ │ ├── ComboCounter.py │ │ │ ├── Hitresult.py │ │ │ ├── HitresultCounter.py │ │ │ ├── PPCounter.py │ │ │ ├── ScoreCounter.py │ │ │ ├── ScoreNumbers.py │ │ │ ├── SpinBonusScore.py │ │ │ ├── StrainGraph.py │ │ │ ├── URBar.py │ │ │ └── __init__.py │ │ └── __init__.py │ ├── PrepareFrames │ │ ├── Components │ │ │ ├── ArrowWarning.py │ │ │ ├── Background.py │ │ │ ├── Button.py │ │ │ ├── Cursor.py │ │ │ ├── Flashlight.py │ │ │ ├── Followpoints.py │ │ │ ├── PlayingGrade.py │ │ │ ├── Scorebar.py │ │ │ ├── ScorebarBG.py │ │ │ ├── Scoreboard.py │ │ │ ├── Sections.py │ │ │ ├── Text.py │ │ │ └── __init__.py │ │ ├── Effects │ │ │ ├── ScoreboardEffect.py │ │ │ └── __init__.py │ │ ├── HitObjects │ │ │ ├── CircleNumber.py │ │ │ ├── Circles.py │ │ │ ├── Slider.py │ │ │ ├── Spinner.py │ │ │ └── __init__.py │ │ ├── RankingScreens │ │ │ ├── BackButton.py │ │ │ ├── ModIcons.py │ │ │ ├── RankingAccuracy.py │ │ │ ├── RankingCombo.py │ │ │ ├── RankingGrade.py │ │ │ ├── RankingGraph.py │ │ │ ├── RankingHitresults.py │ │ │ ├── RankingPanel.py │ │ │ ├── RankingReplay.py │ │ │ ├── RankingScore.py │ │ │ ├── RankingTitle.py │ │ │ ├── RankingUR.py │ │ │ └── __init__.py │ │ ├── Scores │ │ │ ├── Accuracy.py │ │ │ ├── ComboCounter.py │ │ │ ├── Hitresult.py │ │ │ ├── ScoreCounter.py │ │ │ ├── Scoreentry.py │ │ │ ├── SpinBonusScore.py │ │ │ ├── URArrow.py │ │ │ ├── URBar.py │ │ │ └── __init__.py │ │ ├── YImage.py │ │ └── __init__.py │ ├── __init__.py │ └── imageproc.py ├── InfoProcessor.py ├── Parser │ ├── __init__.py │ ├── jsonparser.py │ ├── osrparser.py │ ├── osuparser.py │ ├── scoresparser.py │ └── skinparser.py ├── Utils │ ├── Auto.py │ ├── HashBeatmap.py │ ├── Resolution.py │ ├── Setup.py │ ├── Timing.py │ ├── __init__.py │ ├── cubic_interp1d.py │ ├── getmods.py │ ├── maphash.py │ └── skip.py ├── VideoProcess │ ├── AFrames.py │ ├── CreateFrames.py │ ├── DiskUtils.py │ ├── Draw.py │ ├── FFmpegWriter │ │ ├── FrameWriter.cpp │ │ ├── FrameWriter.h │ │ ├── PyFrameWriter.cpp │ │ ├── PyFrameWriter.pyx │ │ ├── __init__.py │ │ ├── cap_ffmpeg_impl.h │ │ ├── cap_ffmpeg_legacy_api.h │ │ ├── include │ │ │ ├── libavcodec │ │ │ │ ├── ac3_parser.h │ │ │ │ ├── adts_parser.h │ │ │ │ ├── avcodec.h │ │ │ │ ├── avdct.h │ │ │ │ ├── avfft.h │ │ │ │ ├── bsf.h │ │ │ │ ├── codec.h │ │ │ │ ├── codec_desc.h │ │ │ │ ├── codec_id.h │ │ │ │ ├── codec_par.h │ │ │ │ ├── d3d11va.h │ │ │ │ ├── dirac.h │ │ │ │ ├── dv_profile.h │ │ │ │ ├── dxva2.h │ │ │ │ ├── jni.h │ │ │ │ ├── mediacodec.h │ │ │ │ ├── packet.h │ │ │ │ ├── qsv.h │ │ │ │ ├── vaapi.h │ │ │ │ ├── vdpau.h │ │ │ │ ├── version.h │ │ │ │ ├── videotoolbox.h │ │ │ │ ├── vorbis_parser.h │ │ │ │ └── xvmc.h │ │ │ ├── libavdevice │ │ │ │ ├── avdevice.h │ │ │ │ └── version.h │ │ │ ├── libavfilter │ │ │ │ ├── avfilter.h │ │ │ │ ├── buffersink.h │ │ │ │ ├── buffersrc.h │ │ │ │ └── version.h │ │ │ ├── libavformat │ │ │ │ ├── avformat.h │ │ │ │ ├── avio.h │ │ │ │ └── version.h │ │ │ ├── libavutil │ │ │ │ ├── adler32.h │ │ │ │ ├── aes.h │ │ │ │ ├── aes_ctr.h │ │ │ │ ├── attributes.h │ │ │ │ ├── audio_fifo.h │ │ │ │ ├── avassert.h │ │ │ │ ├── avconfig.h │ │ │ │ ├── avstring.h │ │ │ │ ├── avutil.h │ │ │ │ ├── base64.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bprint.h │ │ │ │ ├── bswap.h │ │ │ │ ├── buffer.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast5.h │ │ │ │ ├── channel_layout.h │ │ │ │ ├── common.h │ │ │ │ ├── cpu.h │ │ │ │ ├── crc.h │ │ │ │ ├── des.h │ │ │ │ ├── dict.h │ │ │ │ ├── display.h │ │ │ │ ├── dovi_meta.h │ │ │ │ ├── downmix_info.h │ │ │ │ ├── encryption_info.h │ │ │ │ ├── error.h │ │ │ │ ├── eval.h │ │ │ │ ├── ffversion.h │ │ │ │ ├── fifo.h │ │ │ │ ├── file.h │ │ │ │ ├── frame.h │ │ │ │ ├── hash.h │ │ │ │ ├── hdr_dynamic_metadata.h │ │ │ │ ├── hmac.h │ │ │ │ ├── hwcontext.h │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ ├── hwcontext_drm.h │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ ├── hwcontext_mediacodec.h │ │ │ │ ├── hwcontext_opencl.h │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ ├── hwcontext_vulkan.h │ │ │ │ ├── imgutils.h │ │ │ │ ├── intfloat.h │ │ │ │ ├── intreadwrite.h │ │ │ │ ├── lfg.h │ │ │ │ ├── log.h │ │ │ │ ├── lzo.h │ │ │ │ ├── macros.h │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ ├── mathematics.h │ │ │ │ ├── md5.h │ │ │ │ ├── mem.h │ │ │ │ ├── motion_vector.h │ │ │ │ ├── murmur3.h │ │ │ │ ├── opt.h │ │ │ │ ├── parseutils.h │ │ │ │ ├── pixdesc.h │ │ │ │ ├── pixelutils.h │ │ │ │ ├── pixfmt.h │ │ │ │ ├── random_seed.h │ │ │ │ ├── rational.h │ │ │ │ ├── rc4.h │ │ │ │ ├── replaygain.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── samplefmt.h │ │ │ │ ├── sha.h │ │ │ │ ├── sha512.h │ │ │ │ ├── spherical.h │ │ │ │ ├── stereo3d.h │ │ │ │ ├── tea.h │ │ │ │ ├── threadmessage.h │ │ │ │ ├── time.h │ │ │ │ ├── timecode.h │ │ │ │ ├── timestamp.h │ │ │ │ ├── tree.h │ │ │ │ ├── twofish.h │ │ │ │ ├── tx.h │ │ │ │ ├── version.h │ │ │ │ ├── video_enc_params.h │ │ │ │ └── xtea.h │ │ │ ├── libpostproc │ │ │ │ ├── postprocess.h │ │ │ │ └── version.h │ │ │ ├── libswresample │ │ │ │ ├── swresample.h │ │ │ │ └── version.h │ │ │ └── libswscale │ │ │ │ ├── swscale.h │ │ │ │ └── version.h │ │ ├── lib │ │ │ └── README.md │ │ ├── osr2mp4cv.cp37-win32.pyd │ │ ├── osr2mp4cv.cp37-win_amd64.pyd │ │ ├── osr2mp4cv.cpython-37m-darwin.so │ │ ├── setup.py │ │ ├── test.py │ │ └── testcodec.py │ ├── FrameWriter.py │ ├── Setup.py │ ├── __init__.py │ ├── calc.py │ └── smoothing.py ├── __init__.py ├── config.json ├── global_var.py ├── install.py ├── osr2mp4.py ├── osrparse │ ├── __init__.py │ ├── enums.py │ └── replay.py ├── ppsettings.json ├── res │ ├── Aller_Rg.ttf │ ├── Arial.ttf │ ├── bg.png │ ├── default │ │ ├── LICENCE.txt │ │ ├── applause.mp3 │ │ ├── approachcircle.png │ │ ├── approachcircle@2x.png │ │ ├── combobreak.mp3 │ │ ├── cursor-smoke.png │ │ ├── cursor-smoke@2x.png │ │ ├── cursor.png │ │ ├── cursor@2x.png │ │ ├── cursormiddle@2x.png │ │ ├── cursormiddler.png │ │ ├── cursortrail.png │ │ ├── cursortrail@2x.png │ │ ├── default-0.png │ │ ├── default-0@2x.png │ │ ├── default-1.png │ │ ├── default-1@2x.png │ │ ├── default-2.png │ │ ├── default-2@2x.png │ │ ├── default-3.png │ │ ├── default-3@2x.png │ │ ├── default-4.png │ │ ├── default-4@2x.png │ │ ├── default-5.png │ │ ├── default-5@2x.png │ │ ├── default-6.png │ │ ├── default-6@2x.png │ │ ├── default-7.png │ │ ├── default-7@2x.png │ │ ├── default-8.png │ │ ├── default-8@2x.png │ │ ├── default-9.png │ │ ├── default-9@2x.png │ │ ├── drum-hitclap.wav │ │ ├── drum-hitfinish.wav │ │ ├── drum-hitnormal.wav │ │ ├── drum-hitwhistle.wav │ │ ├── drum-sliderslide.wav │ │ ├── drum-slidertick.wav │ │ ├── drum-sliderwhistle.wav │ │ ├── editor-rate-arrow@2x.png │ │ ├── followpoint.png │ │ ├── followpoint@2x.png │ │ ├── hit0.png │ │ ├── hit0@2x.png │ │ ├── hit100.png │ │ ├── hit100@2x.png │ │ ├── hit100k.png │ │ ├── hit100k@2x.png │ │ ├── hit300.png │ │ ├── hit300@2x.png │ │ ├── hit300g.png │ │ ├── hit300g@2x.png │ │ ├── hit300k.png │ │ ├── hit300k@2x.png │ │ ├── hit50.png │ │ ├── hit50@2x.png │ │ ├── hitcircle.png │ │ ├── hitcircle@2x.png │ │ ├── hitcircleoverlay.png │ │ ├── hitcircleoverlay@2x.png │ │ ├── hitcircleselect.png │ │ ├── hitcircleselect@2x.png │ │ ├── inputoverlay-background.png │ │ ├── inputoverlay-background@2x.png │ │ ├── inputoverlay-key.png │ │ ├── inputoverlay-key@2x.png │ │ ├── menu-back.png │ │ ├── menu-back@2x.png │ │ ├── normal-hitclap.wav │ │ ├── normal-hitfinish.wav │ │ ├── normal-hitnormal.wav │ │ ├── normal-hitwhistle.wav │ │ ├── normal-sliderslide.wav │ │ ├── normal-slidertick.wav │ │ ├── normal-sliderwhistle.wav │ │ ├── particle100.png │ │ ├── particle100@2x.png │ │ ├── particle300.png │ │ ├── particle300@2x.png │ │ ├── particle50.png │ │ ├── particle50@2x.png │ │ ├── pause-back.png │ │ ├── pause-back@2x.png │ │ ├── pause-continue.png │ │ ├── pause-continue@2x.png │ │ ├── pause-replay.png │ │ ├── pause-replay@2x.png │ │ ├── pause-retry.png │ │ ├── pause-retry@2x.png │ │ ├── play-skip.png │ │ ├── play-skip@2x.png │ │ ├── play-unranked.png │ │ ├── play-unranked@2x.png │ │ ├── play-warningarrow.png │ │ ├── play-warningarrow@2x.png │ │ ├── ranking-A-small.png │ │ ├── ranking-A-small@2x.png │ │ ├── ranking-A.png │ │ ├── ranking-A@2x.png │ │ ├── ranking-B-small.png │ │ ├── ranking-B-small@2x.png │ │ ├── ranking-B.png │ │ ├── ranking-B@2x.png │ │ ├── ranking-C-small.png │ │ ├── ranking-C-small@2x.png │ │ ├── ranking-C.png │ │ ├── ranking-C@2x.png │ │ ├── ranking-D-small.png │ │ ├── ranking-D-small@2x.png │ │ ├── ranking-D.png │ │ ├── ranking-D@2x.png │ │ ├── ranking-S-small.png │ │ ├── ranking-S-small@2x.png │ │ ├── ranking-S.png │ │ ├── ranking-S@2x.png │ │ ├── ranking-SH-small.png │ │ ├── ranking-SH-small@2x.png │ │ ├── ranking-SH.png │ │ ├── ranking-SH@2x.png │ │ ├── ranking-X-small.png │ │ ├── ranking-X-small@2x.png │ │ ├── ranking-X.png │ │ ├── ranking-X@2x.png │ │ ├── ranking-XH-small.png │ │ ├── ranking-XH-small@2x.png │ │ ├── ranking-XH.png │ │ ├── ranking-XH@2x.png │ │ ├── ranking-accuracy.png │ │ ├── ranking-accuracy@2x.png │ │ ├── ranking-graph.png │ │ ├── ranking-graph@2x.png │ │ ├── ranking-maxcombo.png │ │ ├── ranking-maxcombo@2x.png │ │ ├── ranking-panel.png │ │ ├── ranking-panel@2x.png │ │ ├── ranking-perfect.png │ │ ├── ranking-perfect@2x.png │ │ ├── ranking-title.png │ │ ├── ranking-title@2x.png │ │ ├── reversearrow.png │ │ ├── reversearrow@2x.png │ │ ├── score-0.png │ │ ├── score-0@2x.png │ │ ├── score-1.png │ │ ├── score-1@2x.png │ │ ├── score-2.png │ │ ├── score-2@2x.png │ │ ├── score-3.png │ │ ├── score-3@2x.png │ │ ├── score-4.png │ │ ├── score-4@2x.png │ │ ├── score-5.png │ │ ├── score-5@2x.png │ │ ├── score-6.png │ │ ├── score-6@2x.png │ │ ├── score-7.png │ │ ├── score-7@2x.png │ │ ├── score-8.png │ │ ├── score-8@2x.png │ │ ├── score-9.png │ │ ├── score-9@2x.png │ │ ├── score-comma.png │ │ ├── score-comma@2x.png │ │ ├── score-dot.png │ │ ├── score-dot@2x.png │ │ ├── score-percent.png │ │ ├── score-percent@2x.png │ │ ├── score-x.png │ │ ├── score-x@2x.png │ │ ├── scorebar-bg.png │ │ ├── scorebar-bg@2x.png │ │ ├── scorebar-colour.png │ │ ├── scorebar-colour@2x.png │ │ ├── scorebar-marker.png │ │ ├── scorebar-marker@2x.png │ │ ├── scoreentry-0.png │ │ ├── scoreentry-0@2x.png │ │ ├── scoreentry-1.png │ │ ├── scoreentry-1@2x.png │ │ ├── scoreentry-2.png │ │ ├── scoreentry-2@2x.png │ │ ├── scoreentry-3.png │ │ ├── scoreentry-3@2x.png │ │ ├── scoreentry-4.png │ │ ├── scoreentry-4@2x.png │ │ ├── scoreentry-5.png │ │ ├── scoreentry-5@2x.png │ │ ├── scoreentry-6.png │ │ ├── scoreentry-6@2x.png │ │ ├── scoreentry-7.png │ │ ├── scoreentry-7@2x.png │ │ ├── scoreentry-8.png │ │ ├── scoreentry-8@2x.png │ │ ├── scoreentry-9.png │ │ ├── scoreentry-9@2x.png │ │ ├── scoreentry-comma.png │ │ ├── scoreentry-comma@2x.png │ │ ├── scoreentry-dot.png │ │ ├── scoreentry-dot@2x.png │ │ ├── scoreentry-percent.png │ │ ├── scoreentry-percent@2x.png │ │ ├── scoreentry-x.png │ │ ├── scoreentry-x@2x.png │ │ ├── section-fail.png │ │ ├── section-fail@2x.png │ │ ├── section-pass.png │ │ ├── section-pass@2x.png │ │ ├── sectionfail.mp3 │ │ ├── sectionpass.mp3 │ │ ├── selection-mod-autoplay.png │ │ ├── selection-mod-autoplay@2x.png │ │ ├── selection-mod-cinema.png │ │ ├── selection-mod-cinema@2x.png │ │ ├── selection-mod-doubletime.png │ │ ├── selection-mod-doubletime@2x.png │ │ ├── selection-mod-easy.png │ │ ├── selection-mod-easy@2x.png │ │ ├── selection-mod-fadein.png │ │ ├── selection-mod-fadein@2x.png │ │ ├── selection-mod-flashlight.png │ │ ├── selection-mod-flashlight@2x.png │ │ ├── selection-mod-halftime.png │ │ ├── selection-mod-halftime@2x.png │ │ ├── selection-mod-hardrock.png │ │ ├── selection-mod-hardrock@2x.png │ │ ├── selection-mod-hidden.png │ │ ├── selection-mod-hidden@2x.png │ │ ├── selection-mod-key4.png │ │ ├── selection-mod-key4@2x.png │ │ ├── selection-mod-key5.png │ │ ├── selection-mod-key5@2x.png │ │ ├── selection-mod-key6.png │ │ ├── selection-mod-key6@2x.png │ │ ├── selection-mod-key7.png │ │ ├── selection-mod-key7@2x.png │ │ ├── selection-mod-key8.png │ │ ├── selection-mod-key8@2x.png │ │ ├── selection-mod-nightcore.png │ │ ├── selection-mod-nightcore@2x.png │ │ ├── selection-mod-nofail.png │ │ ├── selection-mod-nofail@2x.png │ │ ├── selection-mod-perfect.png │ │ ├── selection-mod-perfect@2x.png │ │ ├── selection-mod-random.png │ │ ├── selection-mod-random@2x.png │ │ ├── selection-mod-relax.png │ │ ├── selection-mod-relax2.png │ │ ├── selection-mod-relax2@2x.png │ │ ├── selection-mod-relax@2x.png │ │ ├── selection-mod-spunout.png │ │ ├── selection-mod-spunout@2x.png │ │ ├── selection-mod-suddendeath.png │ │ ├── selection-mod-suddendeath@2x.png │ │ ├── selection-mod-target.png │ │ ├── selection-mod-target@2x.png │ │ ├── selection-mode-over.png │ │ ├── selection-mode-over@2x.png │ │ ├── selection-mode.png │ │ ├── selection-mode@2x.png │ │ ├── selection-mods-over.png │ │ ├── selection-mods-over@2x.png │ │ ├── selection-mods.png │ │ ├── selection-mods@2x.png │ │ ├── selection-options-over.png │ │ ├── selection-options-over@2x.png │ │ ├── selection-options.png │ │ ├── selection-options@2x.png │ │ ├── selection-random-over.png │ │ ├── selection-random-over@2x.png │ │ ├── selection-random.png │ │ ├── selection-random@2x.png │ │ ├── selection-selectoptions-over.png │ │ ├── selection-selectoptions-over@2x.png │ │ ├── selection-selectoptions.png │ │ ├── selection-selectoptions@2x.png │ │ ├── skin.ini │ │ ├── sliderb0.png │ │ ├── sliderb0@2x.png │ │ ├── sliderb1.png │ │ ├── sliderb1@2x.png │ │ ├── sliderb2.png │ │ ├── sliderb2@2x.png │ │ ├── sliderb3.png │ │ ├── sliderb3@2x.png │ │ ├── sliderb4.png │ │ ├── sliderb4@2x.png │ │ ├── sliderb5.png │ │ ├── sliderb5@2x.png │ │ ├── sliderb6.png │ │ ├── sliderb6@2x.png │ │ ├── sliderb7.png │ │ ├── sliderb7@2x.png │ │ ├── sliderb8.png │ │ ├── sliderb8@2x.png │ │ ├── sliderb9.png │ │ ├── sliderb9@2x.png │ │ ├── sliderfollowcircle.png │ │ ├── sliderfollowcircle@2x.png │ │ ├── sliderscorepoint.png │ │ ├── sliderscorepoint@2x.png │ │ ├── soft-hitclap.wav │ │ ├── soft-hitfinish.wav │ │ ├── soft-hitnormal.wav │ │ ├── soft-hitwhistle.wav │ │ ├── soft-sliderslide.wav │ │ ├── soft-slidertick.wav │ │ ├── soft-sliderwhistle.wav │ │ ├── spinner-approachcircle.png │ │ ├── spinner-approachcircle@2x.png │ │ ├── spinner-bottom.png │ │ ├── spinner-clear.png │ │ ├── spinner-clear@2x.png │ │ ├── spinner-middle.png │ │ ├── spinner-middle2.png │ │ ├── spinner-middle2@2x.png │ │ ├── spinner-middle@2x.png │ │ ├── spinner-osu.png │ │ ├── spinner-spin.png │ │ ├── spinner-spin@2x.png │ │ ├── spinner-top.png │ │ ├── spinnerbonus.wav │ │ ├── spinnerspin.wav │ │ ├── star.png │ │ ├── star2.png │ │ ├── star2@2x.png │ │ └── star@2x.png │ ├── hitresulttemplate.png │ ├── pptemplate.png │ ├── scoreentry-0.png │ ├── scoreentry-0@2x.png │ ├── scoreentry-1.png │ ├── scoreentry-1@2x.png │ ├── scoreentry-2.png │ ├── scoreentry-2@2x.png │ ├── scoreentry-3.png │ ├── scoreentry-3@2x.png │ ├── scoreentry-4.png │ ├── scoreentry-4@2x.png │ ├── scoreentry-5.png │ ├── scoreentry-5@2x.png │ ├── scoreentry-6.png │ ├── scoreentry-6@2x.png │ ├── scoreentry-7.png │ ├── scoreentry-7@2x.png │ ├── scoreentry-8.png │ ├── scoreentry-8@2x.png │ ├── scoreentry-9.png │ ├── scoreentry-9@2x.png │ ├── scoreentry-comma.png │ ├── scoreentry-comma@2x.png │ ├── scoreentry-dot.png │ ├── scoreentry-dot@2x.png │ ├── scoreentry-percent.png │ ├── scoreentry-percent@2x.png │ ├── scoreentry-x.png │ └── scoreentry-x@2x.png ├── settings.json └── strainsettings.json ├── requirements.txt ├── res ├── Audio codec list.txt └── Video codec list.txt ├── setup.py ├── testmain.py └── tests ├── __init__.py ├── audionametest.py ├── diffmultiplier_test.py ├── framestest_delete.py ├── helper.py ├── is2btest.py ├── loadskintest.py ├── modcombinations_test.py ├── moddiff_test.py ├── notelocktest.py ├── osr2mp4test ├── Dummies │ ├── ComponentDummy.py │ ├── SettingDummy.py │ └── __init__.py ├── InfoProcessTest.py ├── __init__.py └── bruh2.py ├── parse_nonlazy_timetest.py ├── parseskintest.py ├── rankingscreencomparetest_delete.py ├── rankingscreentest_delete.py ├── resources ├── 1reimei.osr ├── 1reimei.osu ├── 1reimei2.osr ├── 1reimei3.osr ├── 2dearbrave.osr ├── 2dearbrave.osu ├── 2dearbrave1.osr ├── 2dearbrave2.osr ├── 2reimei.osr ├── 2reimei.osu ├── 2tool.osr ├── 2tool.osu ├── 2tool1.osr ├── 2yomi.osr ├── 2yomi.osu ├── 2yomi1.osr ├── 3dearbrave.osr ├── 3dearbrave.osu ├── 3yomi.osr ├── 3yomi.osu ├── 3yomi1.osr ├── 3yomi2.osr ├── 3yomi3.osr ├── 3yomi4.osr ├── 3yomi5.osr ├── 3yomi6.osr ├── 4dearbrave.osr ├── 4dearbrave.osu ├── 4dearbrave1.osr ├── 4dearbrave2.osr ├── 4dearbrave3.osr ├── 4yomi.osr ├── 4yomi.osu ├── 4yomi1.osr ├── 4yomi2.osr ├── 5dearbrave.osr ├── 5dearbrave.osu ├── 5dearbrave1.osr ├── 5dearbrave2.osr ├── 5dearbrave3.osr ├── 5dearbrave4.osr ├── 5dearbrave5.osr ├── 5dearbrave6.osr ├── 5dearbrave7.osr ├── 69kikoku.osr ├── 69kikoku.osu ├── 69reimei.osr ├── 69reimei.osu ├── 69tool.osr ├── 69tool.osu ├── 69yomi.osr ├── 69yomi.osu ├── 70kikoku.osr ├── 70kikoku.osu ├── 70tool.osr ├── 70tool.osu ├── 71kikoku.osr ├── 71kikoku.osu ├── 71tool.osr ├── 71tool.osu ├── 72kikoku.osr ├── 72kikoku.osu ├── 72tool.osr ├── 72tool.osu ├── 72yomi.osr ├── 72yomi.osu ├── 73kikoku.osr ├── 73kikoku.osu ├── 73tool.osr ├── 73tool.osu ├── 73yomi.osr ├── 73yomi.osu ├── 74kikoku.osr ├── 74kikoku.osu ├── 74tool.osr ├── 74tool.osu ├── 74yomi.osr ├── 74yomi.osu ├── 75tool.osr ├── 75tool.osu ├── 75yomi.osr ├── 75yomi.osu ├── 76tool.osr ├── 76tool.osu ├── 76yomi.osr ├── 76yomi.osu ├── 77yomi.osr ├── 77yomi.osu ├── K A Z M A S A - Bon Appetit S (Oldskool HappyHardcore Remix) (Short Ver.) (BarkingMadDog) [blend s (220 bpm)].osu ├── a_hisa - Logical Stimulus (Naidaaka) [owo].osu ├── ascension.osr ├── ascension.osu ├── audiodearbrave.osu ├── audiodearbraveexpect.txt ├── audioyomi.osu ├── audioyomi2.osu ├── audioyomi2expect.txt ├── audioyomi3.osu ├── audioyomi3expect.txt ├── audioyomi4.osu ├── audioyomi4expect.txt ├── audioyomiexpect.txt ├── badeustack.osr ├── badeustack.osu ├── blends.osr ├── blends.osu ├── blends2.osr ├── blends2.osu ├── bubble.osr ├── bubble.osu ├── config.json ├── config10.json ├── config11.json ├── config2.json ├── config3.json ├── config4.json ├── config5.json ├── config6.json ├── config7.json ├── dareka.osr ├── dareka.osu ├── date.osr ├── date.osu ├── dearbrave.osr ├── dearbrave.osu ├── dearbrave1.osr ├── dearbrave1.osu ├── dearbrave2.osr ├── dearbrave3.osr ├── dearbrave4.osr ├── dearbrave5.osr ├── dearbrave6.osr ├── dearbrave7.osr ├── dearbrave8.osr ├── degrees.osu ├── dtar.txt ├── dtod.txt ├── etude.osr ├── etude.osu ├── frames │ ├── 2syunnaccuracy.png │ ├── 2syunnarrowwarning.png │ ├── 2syunnbg.png │ ├── 2syunncircle.png │ ├── 2syunncombocounter.png │ ├── 2syunncursor.png │ ├── 2syunncursor_trail.png │ ├── 2syunncursormiddle.png │ ├── 2syunnfpmanager.png │ ├── 2syunnframeat0.png │ ├── 2syunnframeat10.png │ ├── 2syunnframeat100.png │ ├── 2syunnframeat20.png │ ├── 2syunnframeat30.png │ ├── 2syunnframeat40.png │ ├── 2syunnframeat50.png │ ├── 2syunnframeat60.png │ ├── 2syunnframeat70.png │ ├── 2syunnframeat80.png │ ├── 2syunnframeat90.png │ ├── 2syunnhitcirclenumber.png │ ├── 2syunninputoverlayBG.png │ ├── 2syunnkey.png │ ├── 2syunnmenuback.png │ ├── 2syunnmouse.png │ ├── 2syunnrankingaccuracy.png │ ├── 2syunnrankingbruh.png │ ├── 2syunnrankingbruh1.png │ ├── 2syunnrankingcombo.png │ ├── 2syunnrankinggrades.png │ ├── 2syunnrankinggraph.png │ ├── 2syunnrankingpanel.png │ ├── 2syunnrankingreplay.png │ ├── 2syunnrankingscore.png │ ├── 2syunnrankingtitle.png │ ├── 2syunnscorebar.png │ ├── 2syunnscorebarbg.png │ ├── 2syunnscoreboard.png │ ├── 2syunnscoreboardeffect.png │ ├── 2syunnscoreboardscore.png │ ├── 2syunnscorecounter.png │ ├── 2syunnscoreentry.png │ ├── 2syunnsections.png │ ├── 2syunnslider.png │ ├── 2syunnspinbonus.png │ ├── 2syunnurbar.png │ ├── 3syunnframeat0.png │ ├── 3syunnframeat10.png │ ├── 3syunnframeat100.png │ ├── 3syunnframeat20.png │ ├── 3syunnframeat30.png │ ├── 3syunnframeat40.png │ ├── 3syunnframeat50.png │ ├── 3syunnframeat60.png │ ├── 3syunnframeat70.png │ ├── 3syunnframeat80.png │ ├── 3syunnframeat90.png │ ├── 3velieraccuracy.png │ ├── 3velierarrowwarning.png │ ├── 3velierbg.png │ ├── 3veliercircle.png │ ├── 3veliercombocounter.png │ ├── 3veliercursor.png │ ├── 3veliercursor_trail.png │ ├── 3veliercursormiddle.png │ ├── 3velierfpmanager.png │ ├── 3velierhitcirclenumber.png │ ├── 3velierinputoverlayBG.png │ ├── 3velierkey.png │ ├── 3veliermenuback.png │ ├── 3veliermouse.png │ ├── 3velierrankingaccuracy.png │ ├── 3velierrankingcombo.png │ ├── 3velierrankinggrades.png │ ├── 3velierrankinggraph.png │ ├── 3velierrankingpanel.png │ ├── 3velierrankingreplay.png │ ├── 3velierrankingscore.png │ ├── 3velierrankingtitle.png │ ├── 3velierscorebar.png │ ├── 3velierscorebarbg.png │ ├── 3velierscoreboard.png │ ├── 3velierscoreboardeffect.png │ ├── 3velierscoreboardscore.png │ ├── 3velierscorecounter.png │ ├── 3velierscoreentry.png │ ├── 3veliersections.png │ ├── 3velierslider.png │ ├── 3velierspinbonus.png │ ├── 3velierurbar.png │ ├── 4syunnspinner.png │ ├── syunnaccuracy.png │ ├── syunnarrowwarning.png │ ├── syunnbg.png │ ├── syunncircle.png │ ├── syunncombocounter.png │ ├── syunncursor.png │ ├── syunncursor_trail.png │ ├── syunncursormiddle.png │ ├── syunnfpmanager.png │ ├── syunnframeat0.png │ ├── syunnframeat10.png │ ├── syunnframeat100.png │ ├── syunnframeat20.png │ ├── syunnframeat30.png │ ├── syunnframeat40.png │ ├── syunnframeat50.png │ ├── syunnframeat60.png │ ├── syunnframeat70.png │ ├── syunnframeat80.png │ ├── syunnframeat90.png │ ├── syunnhitcirclenumber.png │ ├── syunninputoverlayBG.png │ ├── syunnkey.png │ ├── syunnmenuback.png │ ├── syunnmouse.png │ ├── syunnrankingaccuracy.png │ ├── syunnrankingbruh.png │ ├── syunnrankingbruh1.png │ ├── syunnrankingcombo.png │ ├── syunnrankinggrades.png │ ├── syunnrankinggraph.png │ ├── syunnrankingpanel.png │ ├── syunnrankingreplay.png │ ├── syunnrankingscore.png │ ├── syunnrankingtitle.png │ ├── syunnscorebar.png │ ├── syunnscorebarbg.png │ ├── syunnscoreboard.png │ ├── syunnscoreboardeffect.png │ ├── syunnscoreboardscore.png │ ├── syunnscorecounter.png │ ├── syunnscoreentry.png │ ├── syunnsections.png │ ├── syunnslider.png │ ├── syunnspinbonus.png │ └── syunnurbar.png ├── future.osr ├── future.osu ├── galaxy.osr ├── galaxy.osu ├── heyroniistack.osr ├── heyroniistack.osu ├── htar.txt ├── htod.txt ├── len.osr ├── len.osu ├── logic.osr ├── logic.osu ├── milkcrown.osr ├── milkcrown.osu ├── mods.txt ├── modsexpect.txt ├── mope.osu ├── natsukoi.osu ├── natsukoi2.osu ├── nobore.osr ├── nobore.osu ├── notelock.osr ├── onegai.osr ├── onegai.osu ├── orignalframes │ ├── syunnexpect.png │ ├── syunnexpect.txt │ ├── syunnexpect1.png │ ├── syunnexpect1.txt │ ├── syunnexpect10.png │ ├── syunnexpect10.txt │ ├── syunnexpect10epsilon.txt │ ├── syunnexpect11.png │ ├── syunnexpect11.txt │ ├── syunnexpect11epsilon.txt │ ├── syunnexpect12.png │ ├── syunnexpect12.txt │ ├── syunnexpect12epsilon.txt │ ├── syunnexpect1epsilon.txt │ ├── syunnexpect2.png │ ├── syunnexpect2.txt │ ├── syunnexpect2epsilon.txt │ ├── syunnexpect3.png │ ├── syunnexpect3.txt │ ├── syunnexpect3epsilon.txt │ ├── syunnexpect5.png │ ├── syunnexpect5.txt │ ├── syunnexpect5epsilon.txt │ ├── syunnexpect6.png │ ├── syunnexpect6.txt │ ├── syunnexpect6epsilon.txt │ ├── syunnexpect7.png │ ├── syunnexpect7.txt │ ├── syunnexpect7epsilon.txt │ ├── syunnexpect8.png │ ├── syunnexpect8.txt │ ├── syunnexpect8epsilon.txt │ ├── syunnexpect9.png │ ├── syunnexpect9.txt │ ├── syunnexpect9epsilon.txt │ └── syunnexpectepsilon.txt ├── realdate.osr ├── realdate.osu ├── realexit.osr ├── realexit.osu ├── realfallen.osr ├── realfallen.osu ├── realkaede.osr ├── realkaede.osu ├── realkikoku.osr ├── realkikoku.osu ├── realmagnolia.osr ├── realmagnolia.osu ├── realtool.osr ├── realtool.osu ├── realyomi.osr ├── realyomi.osu ├── reimei.osr ├── reimei.osu ├── sanae.osr ├── sanae.osu ├── settings.json ├── settings10.json ├── settings11.json ├── settings2.json ├── settings3.json ├── settings4.json ├── settings5.json ├── settings6.json ├── settings7.json ├── shige copy │ ├── Click-Short.wav │ ├── MenuHit.wav │ ├── approachcircle.png │ ├── arrow-generic.png │ ├── arrow-pause.png │ ├── arrow-warning.png │ ├── artists.txt │ ├── button-left.png │ ├── button-left@2x.png │ ├── button-middle.png │ ├── button-middle@2x.png │ ├── button-right.png │ ├── button-right@2x.png │ ├── check-off.wav │ ├── check-on.wav │ ├── click-close.wav │ ├── click-short-confirm.wav │ ├── comboburst.png │ ├── comboburst.wav │ ├── count1.png │ ├── count1s.wav │ ├── count2.png │ ├── count2s.wav │ ├── count3.png │ ├── count3s.wav │ ├── cursor-smoke.png │ ├── cursor-smoke@2x.png │ ├── cursor.png │ ├── cursor@2x.png │ ├── cursormiddle.png │ ├── cursortrail.png │ ├── default-0.png │ ├── default-0@2x.png │ ├── default-1.png │ ├── default-1@2x.png │ ├── default-2.png │ ├── default-2@2x.png │ ├── default-3.png │ ├── default-3@2x.png │ ├── default-4.png │ ├── default-4@2x.png │ ├── default-5.png │ ├── default-5@2x.png │ ├── default-6.png │ ├── default-6@2x.png │ ├── default-7.png │ ├── default-7@2x.png │ ├── default-8.png │ ├── default-8@2x.png │ ├── default-9.png │ ├── default-9@2x.png │ ├── drum-hitclap.wav │ ├── drum-hitfinish.wav │ ├── drum-hitnormal.wav │ ├── drum-sliderslide.wav │ ├── drum-slidertick.wav │ ├── drum-sliderwhistle.wav │ ├── followpoint-0.png │ ├── followpoint-1.png │ ├── followpoint-2.png │ ├── followpoint-3.png │ ├── followpoint-4.png │ ├── followpoint-5.png │ ├── followpoint-6.png │ ├── followpoint-7.png │ ├── followpoint.png │ ├── go.png │ ├── gos.wav │ ├── hit0.png │ ├── hit100.png │ ├── hit100k.png │ ├── hit300-0.png │ ├── hit300.png │ ├── hit300g-0.png │ ├── hit300g.png │ ├── hit300k-0.png │ ├── hit300k.png │ ├── hit50.png │ ├── hit50k.png │ ├── hitcircle.png │ ├── hitcircle@2x.png │ ├── hitcircleoverlay.png │ ├── hitcircleoverlay@2x.png │ ├── inputoverlay-background.png │ ├── inputoverlay-key.png │ ├── inputoverlay-key@2x.png │ ├── menu-back-hover.wav │ ├── menu-back.png │ ├── metronomehigh.wav │ ├── metronomelow.wav │ ├── normal-hitclap.wav │ ├── normal-hitfinish.wav │ ├── normal-hitnormal.wav │ ├── normal-hitwhistle.wav │ ├── normal-hitwistle.wav │ ├── normal-sliderslide.wav │ ├── normal-sliderwhistle.wav │ ├── pause-back.png │ ├── pause-back@2x.png │ ├── pause-continue-hover.wav │ ├── pause-continue.png │ ├── pause-continue@2x.png │ ├── pause-replay.png │ ├── pause-replay@2x.png │ ├── pause-retry-hover.wav │ ├── pause-retry.png │ ├── pause-retry@2x.png │ ├── playfield.png │ ├── ranking-A-small.png │ ├── ranking-A-small@2x.png │ ├── ranking-A.png │ ├── ranking-B-small.png │ ├── ranking-B-small@2x.png │ ├── ranking-B.png │ ├── ranking-C-small.png │ ├── ranking-C-small@2x.png │ ├── ranking-C.png │ ├── ranking-D-small.png │ ├── ranking-D-small@2x.png │ ├── ranking-D.png │ ├── ranking-S-small.png │ ├── ranking-S-small@2x.png │ ├── ranking-S.png │ ├── ranking-SH-small.png │ ├── ranking-SH-small@2x.png │ ├── ranking-SH.png │ ├── ranking-X-small.png │ ├── ranking-X-small@2x.png │ ├── ranking-X.png │ ├── ranking-XH-small.png │ ├── ranking-XH-small@2x.png │ ├── ranking-XH.png │ ├── ranking-accuracy.png │ ├── ranking-accuracy@2x.png │ ├── ranking-graph.png │ ├── ranking-graph@2x.png │ ├── ranking-maxcombo.png │ ├── ranking-maxcombo@2x.png │ ├── ranking-perfect.png │ ├── ranking-perfect@2x.png │ ├── ranking-title.png │ ├── ranking-title@2x.png │ ├── ranking-winner.png │ ├── ranking-winner@2x.png │ ├── ready.png │ ├── reversearrow.png │ ├── reversearrow@2x.png │ ├── score-0.png │ ├── score-0@2x.png │ ├── score-1.png │ ├── score-1@2x.png │ ├── score-2.png │ ├── score-2@2x.png │ ├── score-3.png │ ├── score-3@2x.png │ ├── score-4.png │ ├── score-4@2x.png │ ├── score-5.png │ ├── score-5@2x.png │ ├── score-6.png │ ├── score-6@2x.png │ ├── score-7.png │ ├── score-7@2x.png │ ├── score-8.png │ ├── score-8@2x.png │ ├── score-9.png │ ├── score-9@2x.png │ ├── score-comma.png │ ├── score-comma@2x.png │ ├── score-dot.png │ ├── score-dot@2x.png │ ├── score-percent.png │ ├── score-x.png │ ├── score-x@2x.png │ ├── scorebar-bg.png │ ├── scorebar-colour.png │ ├── scorebar-colour@2x.png │ ├── scoreentry-0.png │ ├── scoreentry-0@2x.png │ ├── scoreentry-1.png │ ├── scoreentry-1@2x.png │ ├── scoreentry-2.png │ ├── scoreentry-2@2x.png │ ├── scoreentry-3.png │ ├── scoreentry-3@2x.png │ ├── scoreentry-4.png │ ├── scoreentry-4@2x.png │ ├── scoreentry-5.png │ ├── scoreentry-5@2x.png │ ├── scoreentry-6.png │ ├── scoreentry-6@2x.png │ ├── scoreentry-7.png │ ├── scoreentry-7@2x.png │ ├── scoreentry-8.png │ ├── scoreentry-8@2x.png │ ├── scoreentry-9.png │ ├── scoreentry-9@2x.png │ ├── scoreentry-comma.png │ ├── scoreentry-comma@2x.png │ ├── scoreentry-dot.png │ ├── scoreentry-dot@2x.png │ ├── scoreentry-percent.png │ ├── scoreentry-percent@2x.png │ ├── scoreentry-x.png │ ├── scoreentry-x@2x.png │ ├── sectionpass.mp3 │ ├── select-difficulty.wav │ ├── select-expand.wav │ ├── selection-mod-autoplay.png │ ├── selection-mod-autoplay@2x.png │ ├── selection-mod-cinema.png │ ├── selection-mod-cinema@2x.png │ ├── selection-mod-doubletime.png │ ├── selection-mod-doubletime@2x.png │ ├── selection-mod-easy.png │ ├── selection-mod-easy@2x.png │ ├── selection-mod-fadein.png │ ├── selection-mod-fadein@2x.png │ ├── selection-mod-flashlight.png │ ├── selection-mod-flashlight@2x.png │ ├── selection-mod-halftime.png │ ├── selection-mod-halftime@2x.png │ ├── selection-mod-hardrock.png │ ├── selection-mod-hardrock@2x.png │ ├── selection-mod-hidden.png │ ├── selection-mod-hidden@2x.png │ ├── selection-mod-key4.png │ ├── selection-mod-key4@2x.png │ ├── selection-mod-key5.png │ ├── selection-mod-key5@2x.png │ ├── selection-mod-key6.png │ ├── selection-mod-key6@2x.png │ ├── selection-mod-key7.png │ ├── selection-mod-key7@2x.png │ ├── selection-mod-key8.png │ ├── selection-mod-key8@2x.png │ ├── selection-mod-keycoop.png │ ├── selection-mod-keycoop@2x.png │ ├── selection-mod-nightcore.png │ ├── selection-mod-nightcore@2x.png │ ├── selection-mod-nofail.png │ ├── selection-mod-nofail@2x.png │ ├── selection-mod-perfect.png │ ├── selection-mod-perfect@2x.png │ ├── selection-mod-random.png │ ├── selection-mod-random@2x.png │ ├── selection-mod-relax.png │ ├── selection-mod-relax2.png │ ├── selection-mod-relax2@2x.png │ ├── selection-mod-relax@2x.png │ ├── selection-mod-scorev2.png │ ├── selection-mod-scorev2@2x.png │ ├── selection-mod-spunout.png │ ├── selection-mod-spunout@2x.png │ ├── selection-mod-suddendeath.png │ ├── selection-mod-suddendeath@2x.png │ ├── selection-mod-target.png │ ├── selection-mod-target@2x.png │ ├── selection-mode-over.png │ ├── selection-mode-over@2x.png │ ├── selection-mods-over.png │ ├── selection-mods-over@2x.png │ ├── selection-mods.png │ ├── selection-mods@2x.png │ ├── selection-options-over.png │ ├── selection-options-over@2x.png │ ├── selection-options.png │ ├── selection-options@2x.png │ ├── selection-random-over.png │ ├── selection-random-over@2x.png │ ├── selection-random.png │ ├── selection-random@2x.png │ ├── selection-tab.png │ ├── skin.ini │ ├── sliderb.png │ ├── sliderb@2x.png │ ├── sliderendcircle.png │ ├── sliderfollowcircle.png │ ├── sliderfollowcircle@2x.png │ ├── sliderpoint10.png │ ├── sliderpoint30.png │ ├── sliderstartcircle.png │ ├── sliderstartcircleoverlay.png │ ├── soft-hitnormal.wav │ ├── soft-hitnormalh.wav │ ├── soft-hitnormalhh.wav │ ├── soft-hitsoft.wav │ ├── soft-sliderwhistle.wav │ ├── softl-hitfinish.wav │ ├── softl-hitwhistle.wav │ ├── spinner-approachcircle.png │ ├── spinner-approachcircle@2x.png │ ├── spinner-background.png │ ├── spinner-background@2x.png │ ├── spinner-bottom.png │ ├── spinner-circle.png │ ├── spinner-circle@2x.png │ ├── spinner-clear.png │ ├── spinner-metre.png │ ├── spinner-middle.png │ ├── spinner-middle2.png │ ├── spinner-osu.png │ ├── spinner-rpm.png │ ├── spinner-spin.png │ ├── spinner-top.png │ ├── spinnerbonus.wav │ ├── spinnerspin.mp3 │ ├── star.png │ ├── star2.png │ ├── test.png │ ├── welcome_text.png │ ├── welcome_text@2x.png │ └── whoosh.wav ├── skin.ini ├── skininis │ ├── skin-2.ini │ ├── skin-2.ini.result │ ├── skin-3.ini │ ├── skin-3.ini.result │ ├── skin-5.ini │ ├── skin-5.ini.result │ ├── skin.ini │ └── skin.ini.result ├── skintests │ └── Hank Hill │ │ └── scorebar-colour@2x.png ├── syunn.osr ├── syunn │ ├── SYUNN - Megalara Garuda (Callionet) [Inner Oni].osu │ ├── SYUNN - Megalara Garuda (Callionet) [Intensity].osu │ ├── SYUNN - Megalara Garuda (Callionet) [Spy].osu │ ├── SYUNN - Megalara Garuda (Callionet) [fanzhen0019].osu │ ├── SYUNN - Megalara Garuda (Callionet) [rustbell].osu │ ├── audio.mp3 │ └── don't_steal_my_BG.png ├── technical.osr ├── technical.osu ├── technical1.osr ├── tewi.osu ├── tool.osr ├── tool.osu ├── tool1.osr ├── tool2.osr ├── tool3.osr ├── tool4.osr ├── tool5.osr ├── trackedday.osr ├── trackedday.osu ├── vaxeistack.osr ├── vaxeistack.osu ├── velier.osr ├── velier │ ├── #stagefile.jpg │ ├── Grand Finale.mp3 │ ├── Uetsu Shi - Firmament Castle Velier (Cherry Blossom) [EX'S ULTIMATE CHALLENGE].osu │ ├── Uetsu Shi - Firmament Castle Velier (Cherry Blossom) [Grand Finale 2013].osu │ ├── Uetsu Shi - Firmament Castle Velier (Cherry Blossom) [Grand Finale 2015].osu │ ├── soft-hitclap.wav │ └── soft-hitclap2.wav ├── willstack.osr ├── willstack.osu ├── woeystack.osr ├── woeystack.osu ├── yomi.osr ├── yomi.osu ├── yomi1.osr └── yomi2.osr ├── scoretest.py ├── sliderfollowtest.py ├── specificframecomparetest_delete.py ├── specificframetest_delete.py ├── spinnerpositiontest.py ├── stacktest.py ├── utils.py └── videotest_delete.py /.gitattributes: -------------------------------------------------------------------------------- 1 | osr2mp4/VideoProcess/FFmpegWriter/include/* linguist-vendored 2 | -------------------------------------------------------------------------------- /osr2mp4/AudioProcess/TODO.md: -------------------------------------------------------------------------------- 1 | ### Fix 2 | 3 | ### Implement 4 | - Add AudioLeadin 5 | -------------------------------------------------------------------------------- /osr2mp4/AudioProcess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/AudioProcess/__init__.py -------------------------------------------------------------------------------- /osr2mp4/CheckSystem/HitObjects/HitObject.py: -------------------------------------------------------------------------------- 1 | class HitObject: 2 | diff = None 3 | mods = None 4 | -------------------------------------------------------------------------------- /osr2mp4/CheckSystem/HitObjects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/CheckSystem/HitObjects/__init__.py -------------------------------------------------------------------------------- /osr2mp4/CheckSystem/HitresultEnum.py: -------------------------------------------------------------------------------- 1 | from enum import Enum 2 | 3 | 4 | class Resulthit(Enum): 5 | Miss = 0 6 | Meh = 50 7 | Good = 100 8 | Great = 300 9 | -------------------------------------------------------------------------------- /osr2mp4/CheckSystem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/CheckSystem/__init__.py -------------------------------------------------------------------------------- /osr2mp4/EEnum/EGrade.py: -------------------------------------------------------------------------------- 1 | from enum import IntEnum 2 | 3 | 4 | class Grade(IntEnum): 5 | SS = 0 6 | S = 1 7 | A = 2 8 | B = 3 9 | C = 4 10 | D = 5 11 | -------------------------------------------------------------------------------- /osr2mp4/EEnum/EReplay.py: -------------------------------------------------------------------------------- 1 | from enum import IntEnum 2 | 3 | 4 | class Replays(IntEnum): 5 | CURSOR_X = 0 6 | CURSOR_Y = 1 7 | KEYS_PRESSED = 2 8 | TIMES = 3 9 | -------------------------------------------------------------------------------- /osr2mp4/EEnum/EState.py: -------------------------------------------------------------------------------- 1 | from enum import IntEnum 2 | 3 | 4 | class States(IntEnum): 5 | NORMAL = 0 6 | NOTELOCK = 1 7 | FADEOUT = 2 8 | -------------------------------------------------------------------------------- /osr2mp4/EEnum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/EEnum/__init__.py -------------------------------------------------------------------------------- /osr2mp4/ImageProcess/Animation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/ImageProcess/Animation/__init__.py -------------------------------------------------------------------------------- /osr2mp4/ImageProcess/Curves/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/ImageProcess/Curves/__init__.py -------------------------------------------------------------------------------- /osr2mp4/ImageProcess/Curves/libcurves/rmshit.sh: -------------------------------------------------------------------------------- 1 | rm -r build/ 2 | rm -r cmake-build-debug/ 3 | rm ccurves.cpython-37m-darwin.so 4 | rm -r __pycache__ 5 | rm ccurves.cpp 6 | -------------------------------------------------------------------------------- /osr2mp4/ImageProcess/Curves/libcurves/z.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | import sys 3 | 4 | 5 | subprocess.check_call([sys.executable, "setup.py", "build_ext", "--inplace"]) 6 | -------------------------------------------------------------------------------- /osr2mp4/ImageProcess/Objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/ImageProcess/Objects/__init__.py -------------------------------------------------------------------------------- /osr2mp4/ImageProcess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/ImageProcess/__init__.py -------------------------------------------------------------------------------- /osr2mp4/Parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/Parser/__init__.py -------------------------------------------------------------------------------- /osr2mp4/Parser/jsonparser.py: -------------------------------------------------------------------------------- 1 | import json 2 | 3 | def read(filename): 4 | with open(filename, 'r', encoding='utf-8') as file: 5 | data = json.load(file) 6 | 7 | return data 8 | -------------------------------------------------------------------------------- /osr2mp4/Utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/Utils/__init__.py -------------------------------------------------------------------------------- /osr2mp4/VideoProcess/FFmpegWriter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/VideoProcess/FFmpegWriter/__init__.py -------------------------------------------------------------------------------- /osr2mp4/VideoProcess/FFmpegWriter/lib/README.md: -------------------------------------------------------------------------------- 1 | Add shared libraries here\n 2 | -------------------------------------------------------------------------------- /osr2mp4/VideoProcess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/VideoProcess/__init__.py -------------------------------------------------------------------------------- /osr2mp4/osrparse/__init__.py: -------------------------------------------------------------------------------- 1 | from .replay import parse_replay_file, parse_replay 2 | -------------------------------------------------------------------------------- /osr2mp4/res/Aller_Rg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/Aller_Rg.ttf -------------------------------------------------------------------------------- /osr2mp4/res/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/Arial.ttf -------------------------------------------------------------------------------- /osr2mp4/res/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/bg.png -------------------------------------------------------------------------------- /osr2mp4/res/default/applause.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/applause.mp3 -------------------------------------------------------------------------------- /osr2mp4/res/default/approachcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/approachcircle.png -------------------------------------------------------------------------------- /osr2mp4/res/default/approachcircle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/approachcircle@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/combobreak.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/combobreak.mp3 -------------------------------------------------------------------------------- /osr2mp4/res/default/cursor-smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/cursor-smoke.png -------------------------------------------------------------------------------- /osr2mp4/res/default/cursor-smoke@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/cursor-smoke@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/cursor.png -------------------------------------------------------------------------------- /osr2mp4/res/default/cursor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/cursor@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/cursormiddle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/cursormiddle@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/cursormiddler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/cursormiddler.png -------------------------------------------------------------------------------- /osr2mp4/res/default/cursortrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/cursortrail.png -------------------------------------------------------------------------------- /osr2mp4/res/default/cursortrail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/cursortrail@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-0.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-0@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-1.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-1@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-2.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-2@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-3.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-3@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-4.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-4@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-5.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-5@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-6.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-6@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-7.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-7@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-8.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-8@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-9.png -------------------------------------------------------------------------------- /osr2mp4/res/default/default-9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/default-9@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/drum-hitclap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/drum-hitclap.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/drum-hitfinish.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/drum-hitfinish.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/drum-hitnormal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/drum-hitnormal.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/drum-hitwhistle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/drum-hitwhistle.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/drum-sliderslide.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/drum-sliderslide.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/drum-slidertick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/drum-slidertick.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/drum-sliderwhistle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/drum-sliderwhistle.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/editor-rate-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/editor-rate-arrow@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/followpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/followpoint.png -------------------------------------------------------------------------------- /osr2mp4/res/default/followpoint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/followpoint@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit0.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit0@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit100.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit100@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit100k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit100k.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit100k@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit100k@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit300.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit300@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit300@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit300g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit300g.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit300g@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit300g@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit300k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit300k.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit300k@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit300k@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit50.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hit50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hit50@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hitcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hitcircle.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hitcircle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hitcircle@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hitcircleoverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hitcircleoverlay.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hitcircleoverlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hitcircleoverlay@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hitcircleselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hitcircleselect.png -------------------------------------------------------------------------------- /osr2mp4/res/default/hitcircleselect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/hitcircleselect@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/inputoverlay-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/inputoverlay-key.png -------------------------------------------------------------------------------- /osr2mp4/res/default/inputoverlay-key@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/inputoverlay-key@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/menu-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/menu-back.png -------------------------------------------------------------------------------- /osr2mp4/res/default/menu-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/menu-back@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/normal-hitclap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/normal-hitclap.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/normal-hitfinish.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/normal-hitfinish.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/normal-hitnormal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/normal-hitnormal.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/normal-hitwhistle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/normal-hitwhistle.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/normal-sliderslide.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/normal-sliderslide.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/normal-slidertick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/normal-slidertick.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/normal-sliderwhistle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/normal-sliderwhistle.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/particle100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/particle100.png -------------------------------------------------------------------------------- /osr2mp4/res/default/particle100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/particle100@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/particle300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/particle300.png -------------------------------------------------------------------------------- /osr2mp4/res/default/particle300@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/particle300@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/particle50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/particle50.png -------------------------------------------------------------------------------- /osr2mp4/res/default/particle50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/particle50@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/pause-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/pause-back.png -------------------------------------------------------------------------------- /osr2mp4/res/default/pause-back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/pause-back@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/pause-continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/pause-continue.png -------------------------------------------------------------------------------- /osr2mp4/res/default/pause-continue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/pause-continue@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/pause-replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/pause-replay.png -------------------------------------------------------------------------------- /osr2mp4/res/default/pause-replay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/pause-replay@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/pause-retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/pause-retry.png -------------------------------------------------------------------------------- /osr2mp4/res/default/pause-retry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/pause-retry@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/play-skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/play-skip.png -------------------------------------------------------------------------------- /osr2mp4/res/default/play-skip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/play-skip@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/play-unranked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/play-unranked.png -------------------------------------------------------------------------------- /osr2mp4/res/default/play-unranked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/play-unranked@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/play-warningarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/play-warningarrow.png -------------------------------------------------------------------------------- /osr2mp4/res/default/play-warningarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/play-warningarrow@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-A-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-A-small.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-A-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-A-small@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-A.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-A@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-A@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-B-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-B-small.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-B-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-B-small@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-B.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-B@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-B@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-C-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-C-small.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-C-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-C-small@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-C.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-C@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-C@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-D-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-D-small.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-D-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-D-small@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-D.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-D@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-D@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-S-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-S-small.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-S-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-S-small@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-S.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-S@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-S@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-SH-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-SH-small.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-SH-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-SH-small@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-SH.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-SH@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-SH@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-X-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-X-small.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-X-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-X-small@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-X.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-X@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-X@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-XH-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-XH-small.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-XH-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-XH-small@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-XH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-XH.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-XH@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-XH@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-accuracy.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-accuracy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-accuracy@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-graph.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-graph@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-graph@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-maxcombo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-maxcombo.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-maxcombo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-maxcombo@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-panel.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-panel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-panel@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-perfect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-perfect.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-perfect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-perfect@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-title.png -------------------------------------------------------------------------------- /osr2mp4/res/default/ranking-title@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/ranking-title@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/reversearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/reversearrow.png -------------------------------------------------------------------------------- /osr2mp4/res/default/reversearrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/reversearrow@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-0.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-0@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-1.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-1@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-2.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-2@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-3.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-3@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-4.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-4@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-5.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-5@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-6.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-6@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-7.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-7@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-8.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-8@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-9.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-9@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-comma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-comma.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-comma@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-comma@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-dot.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-dot@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-percent.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-percent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-percent@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/score-x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/score-x@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scorebar-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scorebar-bg.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scorebar-bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scorebar-bg@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scorebar-colour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scorebar-colour.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scorebar-colour@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scorebar-colour@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scorebar-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scorebar-marker.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scorebar-marker@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scorebar-marker@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-0.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-0@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-1.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-1@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-2.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-2@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-3.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-3@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-4.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-4@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-5.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-5@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-6.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-6@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-7.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-7@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-8.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-8@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-9.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-9@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-comma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-comma.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-comma@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-comma@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-dot.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-dot@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-percent.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-percent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-percent@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/scoreentry-x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/scoreentry-x@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/section-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/section-fail.png -------------------------------------------------------------------------------- /osr2mp4/res/default/section-fail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/section-fail@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/section-pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/section-pass.png -------------------------------------------------------------------------------- /osr2mp4/res/default/section-pass@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/section-pass@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sectionfail.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sectionfail.mp3 -------------------------------------------------------------------------------- /osr2mp4/res/default/sectionpass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sectionpass.mp3 -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-cinema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-cinema.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-easy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-easy.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-easy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-easy@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-fadein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-fadein.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-hidden.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-key4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-key4.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-key4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-key4@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-key5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-key5.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-key5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-key5@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-key6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-key6.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-key6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-key6@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-key7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-key7.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-key7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-key7@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-key8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-key8.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-key8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-key8@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-nofail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-nofail.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-perfect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-perfect.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-random.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-relax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-relax.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-relax2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-relax2.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-spunout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-spunout.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mod-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mod-target.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mode-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mode-over.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mode.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mode@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mods-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mods-over.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mods.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-mods@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-mods@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-options.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-options@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-options@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-random-over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-random-over.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-random.png -------------------------------------------------------------------------------- /osr2mp4/res/default/selection-random@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/selection-random@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb0.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb0@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb1.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb1@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb2.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb2@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb3.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb3@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb4.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb4@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb5.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb5@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb6.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb6@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb7.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb7@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb8.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb8@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb9.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderb9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderb9@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderfollowcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderfollowcircle.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderfollowcircle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderfollowcircle@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderscorepoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderscorepoint.png -------------------------------------------------------------------------------- /osr2mp4/res/default/sliderscorepoint@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/sliderscorepoint@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/soft-hitclap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/soft-hitclap.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/soft-hitfinish.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/soft-hitfinish.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/soft-hitnormal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/soft-hitnormal.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/soft-hitwhistle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/soft-hitwhistle.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/soft-sliderslide.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/soft-sliderslide.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/soft-slidertick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/soft-slidertick.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/soft-sliderwhistle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/soft-sliderwhistle.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-bottom.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-clear.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-clear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-clear@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-middle.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-middle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-middle2.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-middle2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-middle2@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-middle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-middle@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-osu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-osu.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-spin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-spin.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-spin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-spin@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinner-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinner-top.png -------------------------------------------------------------------------------- /osr2mp4/res/default/spinnerbonus.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinnerbonus.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/spinnerspin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/spinnerspin.wav -------------------------------------------------------------------------------- /osr2mp4/res/default/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/star.png -------------------------------------------------------------------------------- /osr2mp4/res/default/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/star2.png -------------------------------------------------------------------------------- /osr2mp4/res/default/star2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/star2@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/default/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/default/star@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/hitresulttemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/hitresulttemplate.png -------------------------------------------------------------------------------- /osr2mp4/res/pptemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/pptemplate.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-0.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-0@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-1.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-1@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-2.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-2@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-3.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-3@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-4.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-4@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-5.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-5@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-6.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-6@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-7.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-7@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-8.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-8@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-9.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-9@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-comma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-comma.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-comma@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-comma@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-dot.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-dot@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-percent.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-percent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-percent@2x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-x.png -------------------------------------------------------------------------------- /osr2mp4/res/scoreentry-x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/osr2mp4/res/scoreentry-x@2x.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/__init__.py -------------------------------------------------------------------------------- /tests/osr2mp4test/Dummies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/osr2mp4test/Dummies/__init__.py -------------------------------------------------------------------------------- /tests/osr2mp4test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/osr2mp4test/__init__.py -------------------------------------------------------------------------------- /tests/resources/1reimei.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/1reimei.osr -------------------------------------------------------------------------------- /tests/resources/1reimei2.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/1reimei2.osr -------------------------------------------------------------------------------- /tests/resources/1reimei3.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/1reimei3.osr -------------------------------------------------------------------------------- /tests/resources/2dearbrave.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/2dearbrave.osr -------------------------------------------------------------------------------- /tests/resources/2dearbrave1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/2dearbrave1.osr -------------------------------------------------------------------------------- /tests/resources/2dearbrave2.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/2dearbrave2.osr -------------------------------------------------------------------------------- /tests/resources/2reimei.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/2reimei.osr -------------------------------------------------------------------------------- /tests/resources/2tool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/2tool.osr -------------------------------------------------------------------------------- /tests/resources/2tool1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/2tool1.osr -------------------------------------------------------------------------------- /tests/resources/2yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/2yomi.osr -------------------------------------------------------------------------------- /tests/resources/2yomi1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/2yomi1.osr -------------------------------------------------------------------------------- /tests/resources/3dearbrave.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/3dearbrave.osr -------------------------------------------------------------------------------- /tests/resources/3yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/3yomi.osr -------------------------------------------------------------------------------- /tests/resources/3yomi1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/3yomi1.osr -------------------------------------------------------------------------------- /tests/resources/3yomi2.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/3yomi2.osr -------------------------------------------------------------------------------- /tests/resources/3yomi3.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/3yomi3.osr -------------------------------------------------------------------------------- /tests/resources/3yomi4.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/3yomi4.osr -------------------------------------------------------------------------------- /tests/resources/3yomi5.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/3yomi5.osr -------------------------------------------------------------------------------- /tests/resources/3yomi6.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/3yomi6.osr -------------------------------------------------------------------------------- /tests/resources/4dearbrave.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/4dearbrave.osr -------------------------------------------------------------------------------- /tests/resources/4dearbrave1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/4dearbrave1.osr -------------------------------------------------------------------------------- /tests/resources/4dearbrave2.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/4dearbrave2.osr -------------------------------------------------------------------------------- /tests/resources/4dearbrave3.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/4dearbrave3.osr -------------------------------------------------------------------------------- /tests/resources/4yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/4yomi.osr -------------------------------------------------------------------------------- /tests/resources/4yomi1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/4yomi1.osr -------------------------------------------------------------------------------- /tests/resources/4yomi2.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/4yomi2.osr -------------------------------------------------------------------------------- /tests/resources/5dearbrave.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/5dearbrave.osr -------------------------------------------------------------------------------- /tests/resources/5dearbrave1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/5dearbrave1.osr -------------------------------------------------------------------------------- /tests/resources/5dearbrave2.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/5dearbrave2.osr -------------------------------------------------------------------------------- /tests/resources/5dearbrave3.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/5dearbrave3.osr -------------------------------------------------------------------------------- /tests/resources/5dearbrave4.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/5dearbrave4.osr -------------------------------------------------------------------------------- /tests/resources/5dearbrave5.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/5dearbrave5.osr -------------------------------------------------------------------------------- /tests/resources/5dearbrave6.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/5dearbrave6.osr -------------------------------------------------------------------------------- /tests/resources/5dearbrave7.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/5dearbrave7.osr -------------------------------------------------------------------------------- /tests/resources/69kikoku.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/69kikoku.osr -------------------------------------------------------------------------------- /tests/resources/69reimei.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/69reimei.osr -------------------------------------------------------------------------------- /tests/resources/69tool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/69tool.osr -------------------------------------------------------------------------------- /tests/resources/69yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/69yomi.osr -------------------------------------------------------------------------------- /tests/resources/70kikoku.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/70kikoku.osr -------------------------------------------------------------------------------- /tests/resources/70tool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/70tool.osr -------------------------------------------------------------------------------- /tests/resources/71kikoku.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/71kikoku.osr -------------------------------------------------------------------------------- /tests/resources/71tool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/71tool.osr -------------------------------------------------------------------------------- /tests/resources/72kikoku.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/72kikoku.osr -------------------------------------------------------------------------------- /tests/resources/72tool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/72tool.osr -------------------------------------------------------------------------------- /tests/resources/72yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/72yomi.osr -------------------------------------------------------------------------------- /tests/resources/73kikoku.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/73kikoku.osr -------------------------------------------------------------------------------- /tests/resources/73tool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/73tool.osr -------------------------------------------------------------------------------- /tests/resources/73yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/73yomi.osr -------------------------------------------------------------------------------- /tests/resources/74kikoku.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/74kikoku.osr -------------------------------------------------------------------------------- /tests/resources/74tool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/74tool.osr -------------------------------------------------------------------------------- /tests/resources/74yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/74yomi.osr -------------------------------------------------------------------------------- /tests/resources/75tool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/75tool.osr -------------------------------------------------------------------------------- /tests/resources/75yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/75yomi.osr -------------------------------------------------------------------------------- /tests/resources/76tool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/76tool.osr -------------------------------------------------------------------------------- /tests/resources/76yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/76yomi.osr -------------------------------------------------------------------------------- /tests/resources/77yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/77yomi.osr -------------------------------------------------------------------------------- /tests/resources/ascension.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/ascension.osr -------------------------------------------------------------------------------- /tests/resources/audiodearbraveexpect.txt: -------------------------------------------------------------------------------- 1 | [['soft-hitnormal', 'normal-slidertick', 'soft-slidernormal'], []] -------------------------------------------------------------------------------- /tests/resources/audioyomi2expect.txt: -------------------------------------------------------------------------------- 1 | [['drum-hitnormal10', 'drum-hitfinish10', 'drum-hitnormal11', 'drum-hitfinish11', 'normal-slidertick', 'drum-slidernormal10'], []] -------------------------------------------------------------------------------- /tests/resources/audioyomi3expect.txt: -------------------------------------------------------------------------------- 1 | [['drum-hitnormal7', 'drum-hitwhistle7', 'drum-hitfinish7', 'drum-hitnormal16', 'normal-slidertick', 'drum-slidernormal7'], []] -------------------------------------------------------------------------------- /tests/resources/audioyomi4expect.txt: -------------------------------------------------------------------------------- 1 | [['drum-hitnormal11', 'drum-hitclap11'], []] -------------------------------------------------------------------------------- /tests/resources/audioyomiexpect.txt: -------------------------------------------------------------------------------- 1 | [['drum-hitnormal8', 'drum-hitwhistle8', 'drum-hitfinish8'], []] -------------------------------------------------------------------------------- /tests/resources/badeustack.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/badeustack.osr -------------------------------------------------------------------------------- /tests/resources/blends.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/blends.osr -------------------------------------------------------------------------------- /tests/resources/blends2.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/blends2.osr -------------------------------------------------------------------------------- /tests/resources/bubble.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/bubble.osr -------------------------------------------------------------------------------- /tests/resources/dareka.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/dareka.osr -------------------------------------------------------------------------------- /tests/resources/date.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/date.osr -------------------------------------------------------------------------------- /tests/resources/dearbrave.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/dearbrave.osr -------------------------------------------------------------------------------- /tests/resources/dearbrave1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/dearbrave1.osr -------------------------------------------------------------------------------- /tests/resources/dearbrave2.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/dearbrave2.osr -------------------------------------------------------------------------------- /tests/resources/dearbrave3.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/dearbrave3.osr -------------------------------------------------------------------------------- /tests/resources/dearbrave4.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/dearbrave4.osr -------------------------------------------------------------------------------- /tests/resources/dearbrave5.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/dearbrave5.osr -------------------------------------------------------------------------------- /tests/resources/dearbrave6.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/dearbrave6.osr -------------------------------------------------------------------------------- /tests/resources/dearbrave7.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/dearbrave7.osr -------------------------------------------------------------------------------- /tests/resources/dearbrave8.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/dearbrave8.osr -------------------------------------------------------------------------------- /tests/resources/dtar.txt: -------------------------------------------------------------------------------- 1 | 5 2 | 5.53 3 | 6.07 4 | 6.6 5 | 7.13 6 | 7.67 7 | 8.33 8 | 9 9 | 9.67 10 | 10.33 11 | 11 -------------------------------------------------------------------------------- /tests/resources/dtod.txt: -------------------------------------------------------------------------------- 1 | 4.42 2 | 5.08 3 | 5.75 4 | 6.42 5 | 7.08 6 | 7.75 7 | 8.42 8 | 9.08 9 | 9.75 10 | 10.42 11 | 11.08 -------------------------------------------------------------------------------- /tests/resources/etude.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/etude.osr -------------------------------------------------------------------------------- /tests/resources/frames/2syunnaccuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnaccuracy.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnarrowwarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnarrowwarning.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnbg.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunncircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunncircle.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunncombocounter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunncombocounter.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunncursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunncursor.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunncursor_trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunncursor_trail.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunncursormiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunncursormiddle.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnfpmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnfpmanager.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat0.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat10.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat100.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat20.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat30.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat40.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat50.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat60.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat70.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat80.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnframeat90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnframeat90.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnkey.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnmenuback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnmenuback.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnmouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnmouse.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnrankingbruh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnrankingbruh.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnrankingbruh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnrankingbruh1.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnrankingcombo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnrankingcombo.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnrankinggraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnrankinggraph.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnrankingpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnrankingpanel.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnrankingscore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnrankingscore.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnrankingtitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnrankingtitle.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnscorebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnscorebar.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnscorebarbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnscorebarbg.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnscoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnscoreboard.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnscorecounter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnscorecounter.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnscoreentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnscoreentry.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnsections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnsections.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnslider.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnspinbonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnspinbonus.png -------------------------------------------------------------------------------- /tests/resources/frames/2syunnurbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/2syunnurbar.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat0.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat10.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat100.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat20.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat30.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat40.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat50.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat60.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat70.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat80.png -------------------------------------------------------------------------------- /tests/resources/frames/3syunnframeat90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3syunnframeat90.png -------------------------------------------------------------------------------- /tests/resources/frames/3velieraccuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velieraccuracy.png -------------------------------------------------------------------------------- /tests/resources/frames/3velierbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velierbg.png -------------------------------------------------------------------------------- /tests/resources/frames/3veliercircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3veliercircle.png -------------------------------------------------------------------------------- /tests/resources/frames/3veliercursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3veliercursor.png -------------------------------------------------------------------------------- /tests/resources/frames/3velierfpmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velierfpmanager.png -------------------------------------------------------------------------------- /tests/resources/frames/3velierkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velierkey.png -------------------------------------------------------------------------------- /tests/resources/frames/3veliermenuback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3veliermenuback.png -------------------------------------------------------------------------------- /tests/resources/frames/3veliermouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3veliermouse.png -------------------------------------------------------------------------------- /tests/resources/frames/3velierscorebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velierscorebar.png -------------------------------------------------------------------------------- /tests/resources/frames/3velierscorebarbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velierscorebarbg.png -------------------------------------------------------------------------------- /tests/resources/frames/3velierscoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velierscoreboard.png -------------------------------------------------------------------------------- /tests/resources/frames/3velierscoreentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velierscoreentry.png -------------------------------------------------------------------------------- /tests/resources/frames/3veliersections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3veliersections.png -------------------------------------------------------------------------------- /tests/resources/frames/3velierslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velierslider.png -------------------------------------------------------------------------------- /tests/resources/frames/3velierspinbonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velierspinbonus.png -------------------------------------------------------------------------------- /tests/resources/frames/3velierurbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/3velierurbar.png -------------------------------------------------------------------------------- /tests/resources/frames/4syunnspinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/4syunnspinner.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnaccuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnaccuracy.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnarrowwarning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnarrowwarning.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnbg.png -------------------------------------------------------------------------------- /tests/resources/frames/syunncircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunncircle.png -------------------------------------------------------------------------------- /tests/resources/frames/syunncombocounter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunncombocounter.png -------------------------------------------------------------------------------- /tests/resources/frames/syunncursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunncursor.png -------------------------------------------------------------------------------- /tests/resources/frames/syunncursor_trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunncursor_trail.png -------------------------------------------------------------------------------- /tests/resources/frames/syunncursormiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunncursormiddle.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnfpmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnfpmanager.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat0.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat10.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat100.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat20.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat30.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat40.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat50.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat60.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat70.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat80.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnframeat90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnframeat90.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnkey.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnmenuback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnmenuback.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnmouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnmouse.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnrankingbruh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnrankingbruh.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnrankingbruh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnrankingbruh1.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnrankingcombo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnrankingcombo.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnrankinggrades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnrankinggrades.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnrankinggraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnrankinggraph.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnrankingpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnrankingpanel.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnrankingreplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnrankingreplay.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnrankingscore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnrankingscore.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnrankingtitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnrankingtitle.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnscorebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnscorebar.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnscorebarbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnscorebarbg.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnscoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnscoreboard.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnscorecounter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnscorecounter.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnscoreentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnscoreentry.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnsections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnsections.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnslider.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnspinbonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnspinbonus.png -------------------------------------------------------------------------------- /tests/resources/frames/syunnurbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/frames/syunnurbar.png -------------------------------------------------------------------------------- /tests/resources/future.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/future.osr -------------------------------------------------------------------------------- /tests/resources/galaxy.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/galaxy.osr -------------------------------------------------------------------------------- /tests/resources/heyroniistack.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/heyroniistack.osr -------------------------------------------------------------------------------- /tests/resources/htar.txt: -------------------------------------------------------------------------------- 1 | -5 2 | -3.67 3 | -2.33 4 | -1 5 | 0.33 6 | 1.67 7 | 3.33 8 | 5 9 | 6.33 10 | 7.67 11 | 9 -------------------------------------------------------------------------------- /tests/resources/htod.txt: -------------------------------------------------------------------------------- 1 | -4.42 2 | -3.08 3 | -1.75 4 | -0.42 5 | 0.92 6 | 2.25 7 | 3.58 8 | 4.92 9 | 6.25 10 | 7.58 11 | 8.92 -------------------------------------------------------------------------------- /tests/resources/len.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/len.osr -------------------------------------------------------------------------------- /tests/resources/logic.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/logic.osr -------------------------------------------------------------------------------- /tests/resources/milkcrown.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/milkcrown.osr -------------------------------------------------------------------------------- /tests/resources/mods.txt: -------------------------------------------------------------------------------- 1 | HD 2 | HDHR 3 | NM 4 | (HD)HR 5 | HD(HR) 6 | HDDTHR 7 | RX 8 | HD(DT)(HR) 9 | HD(HRDT) 10 | (HD)HR(DT) 11 | -------------------------------------------------------------------------------- /tests/resources/nobore.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/nobore.osr -------------------------------------------------------------------------------- /tests/resources/notelock.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/notelock.osr -------------------------------------------------------------------------------- /tests/resources/onegai.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/onegai.osr -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/orignalframes/syunnexpect.png -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect.txt: -------------------------------------------------------------------------------- 1 | 103904 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect1.txt: -------------------------------------------------------------------------------- 1 | 103571 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect10.txt: -------------------------------------------------------------------------------- 1 | 93293 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect10epsilon.txt: -------------------------------------------------------------------------------- 1 | 14.328435272126587 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect11.txt: -------------------------------------------------------------------------------- 1 | 93626 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect11epsilon.txt: -------------------------------------------------------------------------------- 1 | 11.766159146235438 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect12.txt: -------------------------------------------------------------------------------- 1 | 94126 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect12epsilon.txt: -------------------------------------------------------------------------------- 1 | 12.985763345505129 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect1epsilon.txt: -------------------------------------------------------------------------------- 1 | 13.276693183794123 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect2.txt: -------------------------------------------------------------------------------- 1 | 87571 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect2epsilon.txt: -------------------------------------------------------------------------------- 1 | 14.482044427056165 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect3.txt: -------------------------------------------------------------------------------- 1 | 107126 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect3epsilon.txt: -------------------------------------------------------------------------------- 1 | 5.587196791862285 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect5.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect5epsilon.txt: -------------------------------------------------------------------------------- 1 | 55.176835499023916 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect6.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect6epsilon.txt: -------------------------------------------------------------------------------- 1 | 65.41999527208394 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect7.txt: -------------------------------------------------------------------------------- 1 | 82793 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect7epsilon.txt: -------------------------------------------------------------------------------- 1 | 10.509323378542861 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect8.txt: -------------------------------------------------------------------------------- 1 | 93015 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect8epsilon.txt: -------------------------------------------------------------------------------- 1 | 13.780244740045209 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect9.txt: -------------------------------------------------------------------------------- 1 | 93126 2 | -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpect9epsilon.txt: -------------------------------------------------------------------------------- 1 | 12.845982220483394 -------------------------------------------------------------------------------- /tests/resources/orignalframes/syunnexpectepsilon.txt: -------------------------------------------------------------------------------- 1 | 9.793813032516084 -------------------------------------------------------------------------------- /tests/resources/realdate.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/realdate.osr -------------------------------------------------------------------------------- /tests/resources/realexit.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/realexit.osr -------------------------------------------------------------------------------- /tests/resources/realfallen.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/realfallen.osr -------------------------------------------------------------------------------- /tests/resources/realkaede.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/realkaede.osr -------------------------------------------------------------------------------- /tests/resources/realkikoku.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/realkikoku.osr -------------------------------------------------------------------------------- /tests/resources/realmagnolia.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/realmagnolia.osr -------------------------------------------------------------------------------- /tests/resources/realtool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/realtool.osr -------------------------------------------------------------------------------- /tests/resources/realyomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/realyomi.osr -------------------------------------------------------------------------------- /tests/resources/reimei.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/reimei.osr -------------------------------------------------------------------------------- /tests/resources/sanae.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/sanae.osr -------------------------------------------------------------------------------- /tests/resources/shige copy/Click-Short.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/Click-Short.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/MenuHit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/MenuHit.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/approachcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/approachcircle.png -------------------------------------------------------------------------------- /tests/resources/shige copy/arrow-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/arrow-generic.png -------------------------------------------------------------------------------- /tests/resources/shige copy/arrow-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/arrow-pause.png -------------------------------------------------------------------------------- /tests/resources/shige copy/arrow-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/arrow-warning.png -------------------------------------------------------------------------------- /tests/resources/shige copy/button-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/button-left.png -------------------------------------------------------------------------------- /tests/resources/shige copy/button-left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/button-left@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/button-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/button-middle.png -------------------------------------------------------------------------------- /tests/resources/shige copy/button-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/button-right.png -------------------------------------------------------------------------------- /tests/resources/shige copy/check-off.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/check-off.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/check-on.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/check-on.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/click-close.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/click-close.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/comboburst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/comboburst.png -------------------------------------------------------------------------------- /tests/resources/shige copy/comboburst.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/comboburst.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/count1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/count1.png -------------------------------------------------------------------------------- /tests/resources/shige copy/count1s.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/count1s.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/count2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/count2.png -------------------------------------------------------------------------------- /tests/resources/shige copy/count2s.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/count2s.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/count3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/count3.png -------------------------------------------------------------------------------- /tests/resources/shige copy/count3s.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/count3s.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/cursor-smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/cursor-smoke.png -------------------------------------------------------------------------------- /tests/resources/shige copy/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/cursor.png -------------------------------------------------------------------------------- /tests/resources/shige copy/cursor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/cursor@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/cursormiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/cursormiddle.png -------------------------------------------------------------------------------- /tests/resources/shige copy/cursortrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/cursortrail.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-0.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-0@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-1.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-1@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-2.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-2@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-3.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-3@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-4.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-4@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-5.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-5@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-6.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-6@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-7.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-7@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-8.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-8@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-9.png -------------------------------------------------------------------------------- /tests/resources/shige copy/default-9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/default-9@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/drum-hitclap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/drum-hitclap.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/drum-hitfinish.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/drum-hitfinish.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/drum-hitnormal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/drum-hitnormal.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/followpoint-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/followpoint-0.png -------------------------------------------------------------------------------- /tests/resources/shige copy/followpoint-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/followpoint-1.png -------------------------------------------------------------------------------- /tests/resources/shige copy/followpoint-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/followpoint-2.png -------------------------------------------------------------------------------- /tests/resources/shige copy/followpoint-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/followpoint-3.png -------------------------------------------------------------------------------- /tests/resources/shige copy/followpoint-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/followpoint-4.png -------------------------------------------------------------------------------- /tests/resources/shige copy/followpoint-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/followpoint-5.png -------------------------------------------------------------------------------- /tests/resources/shige copy/followpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/followpoint.png -------------------------------------------------------------------------------- /tests/resources/shige copy/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/go.png -------------------------------------------------------------------------------- /tests/resources/shige copy/gos.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/gos.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/hit0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit0.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hit100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit100.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hit100k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit100k.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hit300-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit300-0.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hit300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit300.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hit300g-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit300g-0.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hit300g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit300g.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hit300k-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit300k-0.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hit300k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit300k.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hit50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit50.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hit50k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hit50k.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hitcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hitcircle.png -------------------------------------------------------------------------------- /tests/resources/shige copy/hitcircle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/hitcircle@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/menu-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/menu-back.png -------------------------------------------------------------------------------- /tests/resources/shige copy/metronomelow.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/metronomelow.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/pause-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/pause-back.png -------------------------------------------------------------------------------- /tests/resources/shige copy/pause-replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/pause-replay.png -------------------------------------------------------------------------------- /tests/resources/shige copy/pause-retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/pause-retry.png -------------------------------------------------------------------------------- /tests/resources/shige copy/playfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/playfield.png -------------------------------------------------------------------------------- /tests/resources/shige copy/ranking-A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/ranking-A.png -------------------------------------------------------------------------------- /tests/resources/shige copy/ranking-B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/ranking-B.png -------------------------------------------------------------------------------- /tests/resources/shige copy/ranking-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/ranking-C.png -------------------------------------------------------------------------------- /tests/resources/shige copy/ranking-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/ranking-D.png -------------------------------------------------------------------------------- /tests/resources/shige copy/ranking-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/ranking-S.png -------------------------------------------------------------------------------- /tests/resources/shige copy/ranking-SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/ranking-SH.png -------------------------------------------------------------------------------- /tests/resources/shige copy/ranking-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/ranking-X.png -------------------------------------------------------------------------------- /tests/resources/shige copy/ranking-XH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/ranking-XH.png -------------------------------------------------------------------------------- /tests/resources/shige copy/ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/ready.png -------------------------------------------------------------------------------- /tests/resources/shige copy/reversearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/reversearrow.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-0.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-0@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-1.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-1@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-2.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-2@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-3.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-3@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-4.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-4@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-5.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-5@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-6.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-6@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-7.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-7@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-8.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-8@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-9.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-9@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-comma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-comma.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-dot.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-dot@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/score-x@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/score-x@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scorebar-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scorebar-bg.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-0.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-1.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-2.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-3.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-4.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-5.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-6.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-7.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-8.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-9.png -------------------------------------------------------------------------------- /tests/resources/shige copy/scoreentry-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/scoreentry-x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/sectionpass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/sectionpass.mp3 -------------------------------------------------------------------------------- /tests/resources/shige copy/sliderb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/sliderb.png -------------------------------------------------------------------------------- /tests/resources/shige copy/sliderb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/sliderb@2x.png -------------------------------------------------------------------------------- /tests/resources/shige copy/soft-hitsoft.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/soft-hitsoft.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/spinner-osu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/spinner-osu.png -------------------------------------------------------------------------------- /tests/resources/shige copy/spinner-rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/spinner-rpm.png -------------------------------------------------------------------------------- /tests/resources/shige copy/spinner-spin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/spinner-spin.png -------------------------------------------------------------------------------- /tests/resources/shige copy/spinner-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/spinner-top.png -------------------------------------------------------------------------------- /tests/resources/shige copy/spinnerbonus.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/spinnerbonus.wav -------------------------------------------------------------------------------- /tests/resources/shige copy/spinnerspin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/spinnerspin.mp3 -------------------------------------------------------------------------------- /tests/resources/shige copy/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/star.png -------------------------------------------------------------------------------- /tests/resources/shige copy/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/star2.png -------------------------------------------------------------------------------- /tests/resources/shige copy/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/test.png -------------------------------------------------------------------------------- /tests/resources/shige copy/welcome_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/welcome_text.png -------------------------------------------------------------------------------- /tests/resources/shige copy/whoosh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/shige copy/whoosh.wav -------------------------------------------------------------------------------- /tests/resources/skininis/skin-3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/skininis/skin-3.ini -------------------------------------------------------------------------------- /tests/resources/syunn.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/syunn.osr -------------------------------------------------------------------------------- /tests/resources/syunn/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/syunn/audio.mp3 -------------------------------------------------------------------------------- /tests/resources/syunn/don't_steal_my_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/syunn/don't_steal_my_BG.png -------------------------------------------------------------------------------- /tests/resources/technical.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/technical.osr -------------------------------------------------------------------------------- /tests/resources/technical1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/technical1.osr -------------------------------------------------------------------------------- /tests/resources/tool.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/tool.osr -------------------------------------------------------------------------------- /tests/resources/tool1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/tool1.osr -------------------------------------------------------------------------------- /tests/resources/tool2.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/tool2.osr -------------------------------------------------------------------------------- /tests/resources/tool3.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/tool3.osr -------------------------------------------------------------------------------- /tests/resources/tool4.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/tool4.osr -------------------------------------------------------------------------------- /tests/resources/tool5.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/tool5.osr -------------------------------------------------------------------------------- /tests/resources/trackedday.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/trackedday.osr -------------------------------------------------------------------------------- /tests/resources/vaxeistack.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/vaxeistack.osr -------------------------------------------------------------------------------- /tests/resources/velier.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/velier.osr -------------------------------------------------------------------------------- /tests/resources/velier/#stagefile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/velier/#stagefile.jpg -------------------------------------------------------------------------------- /tests/resources/velier/Grand Finale.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/velier/Grand Finale.mp3 -------------------------------------------------------------------------------- /tests/resources/velier/soft-hitclap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/velier/soft-hitclap.wav -------------------------------------------------------------------------------- /tests/resources/velier/soft-hitclap2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/velier/soft-hitclap2.wav -------------------------------------------------------------------------------- /tests/resources/willstack.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/willstack.osr -------------------------------------------------------------------------------- /tests/resources/woeystack.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/woeystack.osr -------------------------------------------------------------------------------- /tests/resources/yomi.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/yomi.osr -------------------------------------------------------------------------------- /tests/resources/yomi1.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/yomi1.osr -------------------------------------------------------------------------------- /tests/resources/yomi2.osr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uyitroa/osr2mp4-core/89d8ef8f4c6748a78b5ea7055468e47cae101695/tests/resources/yomi2.osr --------------------------------------------------------------------------------