├── .changeset ├── README.md └── config.json ├── .coderabbit.yaml ├── .commitlintrc.json ├── .gitattributes ├── .github ├── actions │ ├── setup-emsdk │ │ └── action.yml │ ├── setup-node │ │ └── action.yml │ ├── setup │ │ └── action.yml │ └── test │ │ └── action.yml └── workflows │ ├── deploy.yml │ ├── preview-release.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .lintstagedrc.json ├── .node-version ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .simple-git-hooks.json ├── .vscode ├── c_cpp_properties.json ├── extensions.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── biome.json ├── copy-files-from-to.json ├── index.html ├── main.ts ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── scripts ├── babel-plugin-emscripten-patch.ts ├── build-cjs.ts ├── build-iife.ts ├── build-miniprogram.ts └── sync-emsdk.sh ├── src ├── bindings │ ├── barcodeFormat.ts │ ├── barcodeSymbol.ts │ ├── binarizer.ts │ ├── characterSet.ts │ ├── contentType.ts │ ├── eanAddOnSymbol.ts │ ├── ecLevel.ts │ ├── exposedReaderBindings.ts │ ├── exposedWriterBindings.ts │ ├── index.ts │ ├── position.ts │ ├── readResult.ts │ ├── readerOptions.ts │ ├── textMode.ts │ ├── vector.ts │ ├── writeResult.ts │ └── writerOptions.ts ├── cpp │ ├── .clang-format │ ├── CMakeLists.txt │ ├── LICENSE │ └── ZXingWasm.cpp ├── full │ ├── index.ts │ └── zxing_full.d.ts ├── global.d.ts ├── imageData.d.ts ├── reader │ ├── index.ts │ └── zxing_reader.d.ts ├── share.ts ├── wasm.d.ts └── writer │ ├── index.ts │ └── zxing_writer.d.ts ├── tests ├── __snapshots__ │ ├── aztec-1 │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #128 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #217 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── Historico │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── HistoricoLong │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── Z1-sequence4of7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abc-19x19C │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abc-37x37 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abc-inverted │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abc-mirrored │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── az-thick │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── az-thin │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dlusbs │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── gs1-figure-4.15.1-2-31x31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── hello │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── lorem-075x075 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── lorem-105x105 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── lorem-131x131 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── lorem-151x151 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── mixed-ecis-41x41 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── padding_bs │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── partial-quiet-zone │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── readerinit-compact-15x15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── readerinit-full-19x19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── rune-1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── rune-223 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── rune-64 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── rune-68 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── summary.json │ │ ├── tableShifts │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── tag │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── texte │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ ├── aztec-2 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── codabar-1 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── codabar-2 │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── code128-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── code128-2 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 27 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 32 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 35 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 36 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 37 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 38 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── #444 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── code128-3 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── code39-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── code39-2 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── summary.json │ │ └── wide │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ ├── code39-3 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── code93-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── databarltd-1 │ │ ├── 00 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── datamatrix-1 │ │ ├── #378 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 0123456789 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 144x144_wrong │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── C40 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── EDIFACT │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── GUID │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── HelloWorld_Text_L_Kaywa │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── HelloWorld_Text_L_Kaywa_1_error_byte │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── HelloWorld_Text_L_Kaywa_2_error_byte │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── HelloWorld_Text_L_Kaywa_3_error_byte │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── HelloWorld_Text_L_Kaywa_4_error_byte │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── X12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-18x8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-26x12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-32x8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-36x12-mirrored │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-36x12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-36x16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-48x16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-52x52-IDAutomation │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-52x52 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcdefg-64x64 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcdefg │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── eci-mixed │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── eci │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── gs1-figure-4.15.1-2-32x32 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── mod-size-1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── readerinit │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── summary.json │ │ └── zxing_URL_L_Kayway │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ ├── datamatrix-2 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── datamatrix-3 │ │ ├── #749 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── OldDetectorFallback │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-0 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-a │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-c │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-d │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-e │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-f │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-h │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-i │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-j │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-k │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── datamatrix-4 │ │ ├── abcd-120x8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-144x8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-36x20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-40x26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-44x20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-48x22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-48x24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-48x26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-48x8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-64x12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-64x16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-64x20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-64x24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-64x26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-64x8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-80x8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-88x12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── abcd-96x8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-e-d-c-edifice │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── dm-e-d-c-ultrakain │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── gs1-figure-4.15.1-2-44x20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── dxfilmedge-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── ean13-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 29 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 30 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 34 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 35 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 36 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 37 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── #526 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── ean13-2 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 27 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── ean13-3 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 30 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 34 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 36 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 38 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 41 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 43 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 44 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 45 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 47 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 52 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 53 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── ean13-4 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── ean13-extension-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 32 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 33 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 38 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── ean8-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── single-line │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── falsepositives-1 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #245 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #570 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 1x1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 1x100 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── MQR-falsepositive │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── falsepositives-2 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── itf-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── #220 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── #853 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 1-slanted │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── summary.json │ │ └── with-tail │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ ├── itf-2 │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── maxicode-1 │ │ ├── MODE2 │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── MODE3 │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── MODE4 │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── MODE5 │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── MODE6 │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── Wikipedia │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── mode4-mixed-ecis │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── mode4-mixed-sets │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── mode5-sequence2of3 │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ └── summary.json │ ├── maxicode-2 │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ └── slow-0.json │ │ └── summary.json │ ├── microqrcode-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── M1-Numeric │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── M2-Alpha │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── M2-Numeric │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── M3-Binary │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── M3-Kanji │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── M3-Mixed │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── M4-Binary │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── M4-Mixed │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── MQR-needs-br-update │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── NoQuietZone │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── pdf417-1 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03-aliased │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03-cut-bot │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03-cut-top │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03-flipped │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03-rot90 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12-mixed-ecis │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13-readerinit │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── pdf417-2 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── pdf417-3 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── qrcode-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── qrcode-2 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 27 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 29 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 30 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 32 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 33 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 34 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 35 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #128 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #1314 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #142 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #199 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #199b │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #253 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #258 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #709 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── #940 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 30a │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── estimate-tilt │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── fix-finderpattern-order │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── fix-traceline │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── gs1-figure-4.15.1-2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── high-res-1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── qr-circles-1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── qr-inv-1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── qr-inv-2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── qr-model-1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── qrcode-3 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 27 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 30 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 33 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 37 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 40 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 42 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── qrcode-4 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 27 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 29 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 30 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 32 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 33 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 34 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 36 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 39 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 40 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 41 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 42 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 43 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 46 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 48 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── qrcode-5 │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── qrcode-6 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── rmqrcode-1 │ │ ├── R17x139 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── R7x43-H │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ ├── R7x43-H_inverted │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── fast-270.json │ │ │ ├── fast-90.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ ├── slow-180.json │ │ │ ├── slow-270.json │ │ │ └── slow-90.json │ │ └── summary.json │ ├── rss14-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── rss14-2 │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 0120358468019312 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── rssexpanded-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 27 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 29 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 30 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 32 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── #384 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 10-corrected │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── rssexpanded-2 │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3_01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3_02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3_05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3_06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3_07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3_09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4_00 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4_02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4_03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4_04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── rssexpanded-3 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 27 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 29 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 30 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 32 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 33 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 34 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 35 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 36 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 37 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 38 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 39 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 40 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 41 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 42 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 43 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 44 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 45 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 46 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 47 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 48 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 49 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 50 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 51 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 52 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 53 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 54 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 55 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 56 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 57 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 58 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 59 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 60 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 61 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 62 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 63 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 64 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 65 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 66 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 67 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 68 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 69 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 70 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 71 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 72 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 73 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 74 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 75 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 76 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 77 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 78 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 79 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 80 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 81 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 82 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 83 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 84 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 85 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 86 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 87 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 88 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 89 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 90 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 91 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 92 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 93 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 94 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 95 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 96 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 97 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 98 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 99 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 100 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 101 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 102 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 103 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 104 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 105 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 106 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 107 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 108 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 109 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 110 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 111 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 112 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 113 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 114 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 115 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 116 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 117 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 108-corrected │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── rssexpandedstacked-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 27 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 29 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 30 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 32 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 33 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 34 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 35 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 36 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 37 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 38 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 39 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 40 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 41 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 42 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 43 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 44 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 45 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 46 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 47 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 48 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 49 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 50 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 51 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 52 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 53 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 54 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 55 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 56 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 57 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 58 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 59 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 60 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 61 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 62 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 63 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 64 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 55-corrected │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── rssexpandedstacked-2 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 1000 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── upca-1 │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 27 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 29 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 35 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── upca-2 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 29 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 32 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 33 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 34 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 35 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 37 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 38 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 39 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 41 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 42 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 45 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 46 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 48 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 49 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 50 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 51 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── upca-3 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── upca-4 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 3 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 5 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 6 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 7 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── upca-5 │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 13 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 15 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 22 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 25 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 27 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 29 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 30 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 32 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 33 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 34 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 35 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 04 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 07 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 09 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── upca-extension-1 │ │ ├── 8 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 9 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 19 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── upce-1 │ │ ├── 1 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 2 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 4 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── pure-0.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ ├── upce-2 │ │ ├── 10 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 11 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 12 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 14 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 16 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 17 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 18 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 20 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 21 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 23 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 24 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 26 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 28 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 29 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 31 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 33 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 34 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 35 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 37 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 38 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 39 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 41 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 01 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 02 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 03 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 05 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 06 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ ├── 08 │ │ │ ├── fast-0.json │ │ │ ├── fast-180.json │ │ │ ├── slow-0.json │ │ │ └── slow-180.json │ │ └── summary.json │ └── upce-3 │ │ ├── 10 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ ├── 11 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ ├── 01 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ ├── 02 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ ├── 03 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ ├── 04 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ ├── 05 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ ├── 06 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ ├── 07 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ ├── 08 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ ├── 09 │ │ ├── fast-0.json │ │ ├── fast-180.json │ │ ├── slow-0.json │ │ └── slow-180.json │ │ └── summary.json ├── blackbox.test.ts ├── issue.test.ts ├── samples │ └── qrcode │ │ └── wikipedia.png ├── testEntries.ts ├── unit.test.ts └── utils.ts ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.pkg.json ├── typedoc.json └── vite.config.ts /.node-version: -------------------------------------------------------------------------------- 1 | lts/* -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | public-hoist-pattern[]=@changesets/config 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-1/abc-inverted/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-1/abc-inverted/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-1/abc-inverted/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-1/abc-inverted/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-2/20/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-2/20/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-2/20/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-2/20/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-2/20/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-2/20/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-2/20/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/aztec-2/20/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/codabar-2/03/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/codabar-2/03/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/codabar-2/04/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/codabar-2/04/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/codabar-2/04/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/codabar-2/04/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/code128-2/12/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/code128-2/12/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/code128-2/28/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/code128-2/37/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/code128-2/37/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/#378/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/#378/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/#378/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/#378/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/#378/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/#378/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/C40/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/C40/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/C40/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/EDIFACT/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/EDIFACT/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/EDIFACT/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/GUID/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/GUID/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/GUID/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/X12/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/X12/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/X12/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/abcdefg/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/abcdefg/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/abcdefg/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/eci/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/eci/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-1/eci/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/01/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/01/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/01/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/02/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/02/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/02/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/03/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/03/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/03/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/04/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/04/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/04/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/09/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/09/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/09/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/10/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/10/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/10/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/11/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/11/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/11/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/12/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/12/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/12/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/13/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/13/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/13/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/14/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/14/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/14/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/16/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/16/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/16/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/17/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/17/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/17/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/18/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/18/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-2/18/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/#749/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/#749/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/#749/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-0/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-0/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-0/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-1/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-1/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-1/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-2/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-2/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-2/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-3/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-3/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-3/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-4/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-4/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-4/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-5/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-5/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-5/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-6/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-6/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-6/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-7/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-7/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-7/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-8/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-8/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-8/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-9/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-9/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-9/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-a/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-a/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-a/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-c/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-c/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-c/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-d/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-d/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-d/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-e/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-e/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-e/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-f/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-f/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-f/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-h/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-h/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-h/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-i/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-i/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-i/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-j/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-j/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-j/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-k/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-k/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/datamatrix-3/dm-k/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/dxfilmedge-1/1/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/dxfilmedge-1/1/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/dxfilmedge-1/2/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/dxfilmedge-1/2/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/dxfilmedge-1/3/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/20/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/20/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/23/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/34/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/34/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/34/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/34/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/35/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/35/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/36/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/36/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/36/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/36/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/37/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/37/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-1/8/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/01/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/01/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/01/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/01/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/02/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/02/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/02/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/02/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/03/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/03/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/04/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/04/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/05/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/05/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/09/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/09/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/10/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/10/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/10/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/10/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/11/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/11/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/11/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/11/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/12/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/12/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/12/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/12/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/17/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/17/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/17/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/17/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/21/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/21/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/21/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/21/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/22/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/22/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/22/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/22/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/23/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/23/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/24/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/24/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/24/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/24/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/25/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/25/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/25/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/25/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/26/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/26/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/26/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/26/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/28/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-2/28/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-3/30/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/03/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/03/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/03/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/03/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/04/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/04/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/05/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/05/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/07/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/07/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/08/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/08/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/08/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/08/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/09/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/09/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/10/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/10/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/10/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/10/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/11/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/12/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/12/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/12/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/12/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/14/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/14/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/16/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/16/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/16/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/16/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/17/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/17/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/17/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/17/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/18/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/18/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/19/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/19/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/19/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/19/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/21/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/21/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/21/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/21/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/22/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/22/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/22/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-4/22/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-extension-1/2/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-extension-1/2/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-extension-1/38/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/ean13-extension-1/38/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/#245/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/#245/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/#245/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/#245/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/#570/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/#570/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/#570/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/#570/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/01/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/01/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/01/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/01/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/01/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/01/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/01/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/01/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/02/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/02/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/02/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/02/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/02/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/02/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/02/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/02/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/03/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/03/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/03/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/03/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/03/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/03/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/03/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/03/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/04/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/04/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/04/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/04/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/04/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/04/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/04/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/04/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/05/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/05/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/05/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/05/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/05/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/05/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/05/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/05/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/06/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/06/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/06/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/06/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/06/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/06/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/06/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/06/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/07/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/07/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/07/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/07/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/07/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/07/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/07/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/07/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/08/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/08/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/08/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/08/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/08/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/08/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/08/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/08/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/09/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/09/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/09/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/09/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/09/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/09/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/09/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/09/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/10/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/10/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/10/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/10/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/10/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/10/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/10/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/10/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/11/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/11/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/11/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/11/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/11/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/11/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/11/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/11/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/12/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/12/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/12/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/12/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/12/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/12/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/12/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/12/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/13/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/13/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/13/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/13/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/13/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/13/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/13/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/13/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/14/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/14/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/14/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/14/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/14/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/14/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/14/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/14/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/15/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/15/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/15/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/15/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/15/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/15/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/15/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/15/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/16/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/16/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/16/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/16/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/16/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/16/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/16/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/16/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/17/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/17/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/17/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/17/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/17/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/17/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/17/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/17/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/18/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/18/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/18/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/18/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/18/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/18/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/18/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/18/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/19/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/19/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/19/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/19/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/19/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/19/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/19/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/19/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/1x1/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/1x1/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/1x1/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/1x1/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/1x1/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/1x1/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/1x1/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/1x1/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/1x100/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/1x100/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/20/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/20/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/20/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/20/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/20/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/20/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/20/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/20/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/21/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/21/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/21/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/21/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/21/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/21/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/21/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/21/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/22/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/22/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/22/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/22/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/22/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/22/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/22/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-1/22/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/01/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/01/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/01/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/01/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/01/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/01/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/01/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/01/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/02/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/02/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/02/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/02/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/02/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/02/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/02/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/02/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/03/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/03/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/03/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/03/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/03/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/03/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/03/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/03/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/04/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/04/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/04/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/04/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/04/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/04/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/04/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/04/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/05/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/05/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/05/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/05/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/05/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/05/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/05/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/05/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/06/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/06/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/06/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/06/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/06/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/06/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/06/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/06/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/07/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/07/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/07/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/07/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/07/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/07/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/07/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/07/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/08/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/08/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/08/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/08/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/08/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/08/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/08/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/08/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/09/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/09/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/09/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/09/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/09/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/09/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/09/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/09/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/10/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/10/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/10/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/10/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/10/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/10/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/10/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/10/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/11/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/11/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/11/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/11/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/11/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/11/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/11/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/11/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/12/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/12/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/12/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/12/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/12/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/12/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/12/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/12/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/13/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/13/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/13/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/13/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/13/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/13/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/13/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/13/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/14/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/14/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/14/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/14/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/14/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/14/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/14/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/14/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/15/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/15/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/15/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/15/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/15/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/15/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/15/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/15/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/16/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/16/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/falsepositives-2/16/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/itf-1/#220/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/itf-1/#220/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/maxicode-2/01/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/maxicode-2/01/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/maxicode-2/03/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/maxicode-2/03/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/maxicode-2/04/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/maxicode-2/04/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/maxicode-2/05/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/maxicode-2/05/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/microqrcode-1/12/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/microqrcode-1/12/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/microqrcode-1/12/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/microqrcode-1/12/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/01/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/01/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/02/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/02/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/03-rot90/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/03/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/03/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/04/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/04/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/05/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/05/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/06/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/06/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/07/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/07/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/09/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/09/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/10/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/10/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/11/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-1/11/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/01/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/01/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/02/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/02/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/03/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/03/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/04/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/04/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/05/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/05/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/06/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/06/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/07/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/07/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/08/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/08/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/09/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/09/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/10/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/10/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/11/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/11/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/12/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/12/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/13/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/13/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/14/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/14/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/15/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/15/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/16/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/16/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/17/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/17/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/18/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/18/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/19/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/19/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/20/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/20/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/21/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/21/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/22/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/22/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/23/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/23/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/24/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/24/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/25/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-2/25/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/01/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/01/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/02/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/02/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/03/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/03/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/04/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/04/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/05/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/05/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/06/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/06/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/07/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/07/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/08/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/08/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/09/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/09/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/10/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/10/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/11/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/11/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/12/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/12/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/16/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/16/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/17/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/17/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/18/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/18/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/19/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/pdf417-3/19/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/#709/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/#709/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/#709/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/#709/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/12/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/12/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/12/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/12/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/12/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/12/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/12/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/12/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/13/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/13/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/13/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/13/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/13/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/13/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/13/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/13/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/28/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/28/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/28/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/28/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/28/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/28/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/28/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/28/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/qr-inv-1/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-2/qr-inv-2/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/05/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/05/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/05/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/05/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/05/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/05/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/05/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/05/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/06/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/06/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/06/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/06/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/06/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/06/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/06/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/06/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/08/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/08/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/08/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/08/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/08/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/08/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/08/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/08/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/09/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/09/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/09/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/09/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/09/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/09/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/09/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/09/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/13/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/13/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/13/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/13/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/13/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/13/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/13/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/13/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/30/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/30/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/30/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/30/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/30/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/30/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/30/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/30/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/31/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/31/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/31/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/31/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/31/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/31/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/31/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/31/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/32/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/32/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/32/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/32/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/32/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/32/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/32/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/32/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/33/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/33/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/33/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/33/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/33/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/33/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/33/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/33/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/34/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/34/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/34/fast-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/34/fast-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/34/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/34/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/34/slow-270.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/qrcode-4/34/slow-90.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/11/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/11/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/11/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/11/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/15/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/15/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/15/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/15/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/21/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/22/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/22/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/22/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/22/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/rss14-2/8/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-1/12/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-1/12/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-1/4/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/01/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/01/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/01/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/01/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/02/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/02/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/04/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/04/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/04/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/04/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/06/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/06/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/06/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/06/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/08/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/08/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/08/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/08/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/10/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/10/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/10/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/10/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/11/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/11/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/11/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/11/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/15/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/15/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/15/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/15/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/25/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/28/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/28/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/28/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/28/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/31/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/31/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/31/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/31/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/32/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/32/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/34/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/34/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/34/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/34/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/35/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/35/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/37/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/38/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/38/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/38/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/38/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/41/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/41/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/41/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/41/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/48/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/48/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/48/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/48/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/49/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/49/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/50/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/50/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/50/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-2/50/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/01/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/01/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/01/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/01/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/02/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/02/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/02/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/02/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/03/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/03/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/03/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/03/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/04/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/04/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/04/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/04/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/05/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/05/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/05/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/05/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/06/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/06/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/06/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/06/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/07/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/07/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/07/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/07/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/08/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/08/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/08/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/08/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/09/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/09/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/09/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/09/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/10/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/10/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/10/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/10/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/11/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/11/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/13/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/13/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/14/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/14/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/16/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-3/16/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/1/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/1/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/1/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/1/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/12/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/12/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/15/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/15/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/16/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/16/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/2/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/2/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/2/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/2/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/3/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/3/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/3/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/3/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/4/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/4/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/4/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/4/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/5/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/5/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/5/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/5/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/6/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/6/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/6/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/6/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/7/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/7/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/9/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/9/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/9/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-4/9/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/01/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/01/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/01/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/01/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/02/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/02/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/02/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/02/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/06/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/06/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/06/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/06/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/07/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/07/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/07/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/07/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/09/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/16/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/16/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/16/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/16/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/19/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/19/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/19/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/19/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/23/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/23/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/23/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/23/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/25/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/25/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/25/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/25/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/26/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/26/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/26/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/26/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/27/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/27/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/27/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/27/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/29/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/29/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/29/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/29/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/30/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/31/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/31/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/32/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/32/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/32/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upca-5/32/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/02/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/02/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/02/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/02/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/14/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/20/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/20/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/20/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/20/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/24/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/26/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/26/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/33/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/33/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/35/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/35/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/35/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/35/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/38/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/38/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/38/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/38/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/39/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/39/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/41/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/41/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/41/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-2/41/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/02/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/04/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/04/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/04/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/04/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/06/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/06/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/06/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/06/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/08/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/08/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/08/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/08/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/10/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/10/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/11/fast-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/11/fast-180.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/11/slow-0.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/upce-3/11/slow-180.json: -------------------------------------------------------------------------------- 1 | null 2 | --------------------------------------------------------------------------------