Reflex wrapper for the MUI X DataGrid (v8) React component with polars LazyFrame support
Project description
reflex-mui-datagrid
Reflex wrapper for the MUI X DataGrid (v8) React component, with built-in polars LazyFrame support and optional genomic data visualization via polars-bio.
Installation
uv add reflex-mui-datagrid
For genomic data support (VCF/BAM files), install with the [bio] extra:
uv add "reflex-mui-datagrid[bio]"
Requires Python >= 3.12, Reflex >= 0.8.27, and polars >= 1.0.
Quick Start
The fastest way to visualize a polars DataFrame or LazyFrame is the show_dataframe helper:
import polars as pl
import reflex as rx
from reflex_mui_datagrid import show_dataframe
df = pl.read_csv("my_data.csv")
def index() -> rx.Component:
return show_dataframe(df, height="500px")
app = rx.App()
app.add_page(index)
That single call handles column type detection, dropdown filters for low-cardinality columns, row IDs, JSON serialization, and the MUI toolbar -- all automatically.
With State (for reactive updates)
For grids that update in response to user actions, use lazyframe_to_datagrid inside a rx.State event handler:
import polars as pl
import reflex as rx
from reflex_mui_datagrid import data_grid, lazyframe_to_datagrid
class State(rx.State):
rows: list[dict] = []
columns: list[dict] = []
def load_data(self) -> None:
lf = pl.LazyFrame({
"id": [1, 2, 3],
"name": ["Alice", "Bob", "Charlie"],
"score": [95, 82, 91],
})
self.rows, col_defs = lazyframe_to_datagrid(lf)
self.columns = [c.dict() for c in col_defs]
def index() -> rx.Component:
return data_grid(
rows=State.rows,
columns=State.columns,
show_toolbar=True,
height="400px",
)
app = rx.App()
app.add_page(index, on_load=State.load_data)
The show_dataframe Helper
show_dataframe is designed for polars users who want to quickly visualize a DataFrame without wiring up Reflex state. It accepts a pl.DataFrame or pl.LazyFrame and returns a ready-to-render component:
from reflex_mui_datagrid import show_dataframe
# Basic usage -- just pass a DataFrame
grid = show_dataframe(df)
# With options
grid = show_dataframe(
df,
height="600px",
density="compact",
show_toolbar=True,
limit=1000, # collect at most 1000 rows
column_descriptions={"score": "Final exam score (0-100)"},
show_description_in_header=True, # show descriptions as subtitles
column_header_height=70, # taller headers for subtitles
)
Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
data |
LazyFrame | DataFrame |
required | The polars data to visualize |
height |
str |
"600px" |
CSS height of the grid container |
width |
str |
"100%" |
CSS width of the grid container |
show_toolbar |
bool |
True |
Show MUI toolbar (columns, filters, density, export) |
density |
str | None |
None |
"comfortable", "compact", or "standard" |
limit |
int | None |
None |
Max rows to collect from LazyFrame |
column_descriptions |
dict | None |
None |
{column: description} for header tooltips |
show_description_in_header |
bool |
False |
Show descriptions as subtitles in headers |
column_header_height |
int | None |
None |
Header height in px (useful with description subtitles) |
checkbox_selection |
bool |
False |
Show checkbox column for row selection |
on_row_click |
EventHandler | None |
None |
Handler called when a row is clicked |
When to use show_dataframe vs lazyframe_to_datagrid:
- Use
show_dataframefor quick prototyping, static dashboards, or when you just want to see your data. - Use
lazyframe_to_datagridinsiderx.Statewhen the grid data needs to change in response to user actions (filtering server-side, loading different files, etc.).
What You Get
- MUI X DataGrid v8 (Community edition, MIT) with
@mui/materialv7 show_dataframe()helper -- one-liner to turn any polars DataFrame or LazyFrame into a fully-featured interactive grid- Polars LazyFrame integration --
lazyframe_to_datagrid()converts any LazyFrame to DataGrid-ready rows and column definitions in one call - Automatic column type detection -- polars dtypes map to DataGrid types (
number,boolean,date,dateTime,string) with sensible default widths - Automatic dropdown filters -- low-cardinality string columns and
Categorical/Enumdtypes becomesingleSelectcolumns with dropdown filters - JSON-safe serialization -- temporal columns become ISO strings,
Listcolumns become comma-joined strings,Structcolumns become strings - Column, row, and selection events -- handlers for row click, cell click, sorting, filtering, pagination, and row selection
- Expandable row detail panels -- click a chevron to reveal additional fields below any row, with configurable badge rendering and custom colors
- Rich detail renderers --
detail_renderersprop supports six renderer types for structured row data:key_value_list,metric_list,badge_list,percentile_spread,bell_curve, andtext. Optional Plotly-based bell curve charts whenreact-plotly.jsis available (auto-fallback to div-based spread)
Server-Side Scroll-Loading (Large Datasets)
For datasets too large to load into the browser at once (millions of rows), the LazyFrameGridMixin provides a complete server-side solution with scroll-driven infinite loading, filtering, and sorting -- all backed by a polars LazyFrame that is never fully collected into memory.
Quick Example
from pathlib import Path
from reflex_mui_datagrid import LazyFrameGridMixin, lazyframe_grid, scan_file
class MyState(LazyFrameGridMixin, rx.State):
def load_data(self):
lf, descriptions = scan_file(Path("my_genome.vcf"))
yield from self.set_lazyframe(lf, descriptions)
def index() -> rx.Component:
return rx.box(
rx.button("Load", on_click=MyState.load_data, loading=MyState.lf_grid_loading),
rx.cond(MyState.lf_grid_loaded, lazyframe_grid(MyState)),
)
That's it -- you get server-side filtering, sorting, and infinite scroll-loading with no additional wiring.
scan_file -- Auto-Detect File Format
scan_file opens any supported file as a polars LazyFrame and extracts column descriptions where available:
from reflex_mui_datagrid import scan_file
# VCF -- auto-extracts column descriptions from headers
lf, descriptions = scan_file(Path("variants.vcf"))
# Parquet -- no descriptions, but LazyFrame is ready
lf, descriptions = scan_file(Path("data.parquet"))
# Also supports: .csv, .tsv, .json, .ndjson, .ipc, .arrow, .feather
LazyFrameGridMixin -- State Mixin
LazyFrameGridMixin is a Reflex state mixin (mixin=True) that provides all the state variables and event handlers needed for server-side browsing. Inherit from it and rx.State in your state class -- each subclass gets its own independent set of lf_grid_* vars, so multiple grids on the same page do not interfere:
class MyState(LazyFrameGridMixin, rx.State):
# Your own state vars
file_available: bool = False
def load_data(self):
lf, descriptions = scan_file(Path("data.parquet"))
yield from self.set_lazyframe(lf, descriptions, chunk_size=500)
State variables (all prefixed lf_grid_ to avoid collisions):
| Variable | Type | Description |
|---|---|---|
lf_grid_rows |
list[dict] |
Currently loaded rows |
lf_grid_columns |
list[dict] |
Column definitions |
lf_grid_row_count |
int |
Total rows matching current filter |
lf_grid_loading |
bool |
Loading indicator |
lf_grid_loaded |
bool |
Whether data has been loaded |
lf_grid_stats |
str |
Last refresh timing info |
lf_grid_selected_info |
str |
Detail string for clicked row |
set_lazyframe parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
lf |
pl.LazyFrame |
required | The LazyFrame to browse |
descriptions |
dict[str, str] | None |
None |
Column descriptions for tooltips |
chunk_size |
int |
200 |
Rows per scroll chunk |
value_options_max_unique |
int |
500 |
Max distinct values for dropdown filter (queried from full dataset) |
eager_value_options_row_limit |
int |
50000 |
Row count threshold for eager value options computation |
column_overrides |
dict[str, dict[str, Any]] | None |
None |
Per-column property overrides (widths, renderers, etc.) |
Column Overrides
The column_overrides parameter lets you customize auto-generated column definitions without reaching into internal cache. Overrides are applied before storing in the cache, so they survive all internal operations (value options computation, filter upgrades).
Keys are field names, values are dicts of camelCase ColumnDef properties:
class MyState(LazyFrameGridMixin, rx.State):
def load_data(self):
lf = pl.scan_parquet("pgs_scores.parquet")
yield from self.set_lazyframe(lf, column_overrides={
# Render PGS IDs as links to the PGS Catalog
"pgs_id": {
"width": 140,
"cellRendererType": "url",
"cellRendererConfig": {
"baseUrl": "https://www.pgscatalog.org/score/",
"suffixUrl": "/",
"color": "#1565c0",
},
},
# Custom widths for numeric columns
"n_variants": {"width": 110},
# Flexible width for text columns
"trait_reported": {"minWidth": 150, "flex": 2},
# Hide internal columns
"ftp_link": {"hide": True},
})
Supported override properties include width, minWidth, maxWidth, flex, hide, cellRendererType, cellRendererConfig, type, headerName, and any other ColumnDef attribute in camelCase.
Cell Renderers
Columns can use built-in cell renderers via cellRendererType and cellRendererConfig. These work both in column_overrides (for server-side grids) and in ColumnDef (for client-side grids).
URL renderer (cellRendererType: "url"):
| Config key | Type | Default | Description |
|---|---|---|---|
baseUrl |
str |
"" |
Prefix prepended to the cell value |
suffixUrl |
str |
"" |
Suffix appended after the cell value |
labelField |
str |
-- | Row field to use as link text (defaults to cell value) |
target |
str |
"_blank" |
HTML target attribute |
color |
str |
"inherit" |
CSS color for the link |
The URL is constructed as baseUrl + cellValue + suffixUrl. For example, with baseUrl: "https://www.ebi.ac.uk/gwas/variants/" and a cell value of rs2032563, the link points to https://www.ebi.ac.uk/gwas/variants/rs2032563.
Badge renderer (cellRendererType: "badge"):
| Config key | Type | Description |
|---|---|---|
color |
str |
Default text color |
bgColor |
str |
Default background color |
colorMap |
dict |
{value: color} per-value text colors |
bgColorMap |
dict |
{value: bgColor} per-value background colors |
borderRadius |
str |
CSS border-radius (default "16px") |
padding |
str |
CSS padding (default "4px 8px") |
Progress bar renderer (cellRendererType: "progress_bar"):
| Config key | Type | Default | Description |
|---|---|---|---|
minValue |
number |
0 |
Minimum value for scaling |
maxValue |
number |
100 |
Maximum value for scaling |
color |
str |
"#1976d2" |
Bar fill color |
trackColor |
str |
"#e0e0e0" |
Track background color |
height |
str |
"8px" |
Bar height |
showValue |
bool |
true |
Show numeric value next to bar |
lazyframe_grid -- Pre-Wired UI Component
Returns a data_grid(...) with all server-side handlers already connected:
from reflex_mui_datagrid import lazyframe_grid, lazyframe_grid_stats_bar, lazyframe_grid_detail_box
def my_page() -> rx.Component:
return rx.fragment(
lazyframe_grid_stats_bar(MyState), # row count + timing bar
lazyframe_grid(MyState, height="600px"),
lazyframe_grid_detail_box(MyState), # clicked row details
)
lazyframe_grid parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
state_cls |
type |
required | Your state class inheriting LazyFrameGridMixin |
height |
str |
"600px" |
CSS height |
width |
str |
"100%" |
CSS width |
density |
str |
"compact" |
Grid density |
column_header_height |
int |
70 |
Header height in px |
scroll_end_threshold |
int |
260 |
Pixels from bottom to trigger next chunk |
show_toolbar |
bool |
False |
Show MUI toolbar. Disabled by default for server-side LazyFrame grids because toolbar export/search only operate on browser-loaded rows. |
show_description_in_header |
bool |
True |
Show column descriptions as subtitles |
show_filter_panel |
bool |
True |
Show the filter panel below the grid, including active filter summary and clear-all controls |
show_filter_presets |
bool |
True |
Show JSON preset copy/download/upload controls inside the filter panel |
debug_log |
bool |
True |
Browser console debug logging |
on_row_click |
EventHandler | None |
None |
Override default row-click handler |
detail_columns |
list[str] | None |
None |
Fields to show in the expandable detail panel |
detail_height |
int | None |
None |
Fixed pixel height for the detail panel (auto-computed if None) |
detail_labels |
dict[str, str] | None |
None |
{field: label} display labels for detail panel fields |
detail_badge_fields |
list[str] | None |
None |
Fields rendered as pipe-delimited colored badges |
detail_badge_colors |
dict[str, list[str]] | None |
None |
Custom {text: [fg, bg]} badge colors |
By default, lazyframe_grid renders a compact filter panel below the grid. It shows the active filter/sort summary, a Clear All button, and JSON preset controls for copying, downloading, or uploading saved filters.
Hide the whole panel when you want only the grid UI:
lazyframe_grid(MyState, show_filter_panel=False)
Keep the filter summary and Clear All button, but hide JSON saving/loading:
lazyframe_grid(MyState, show_filter_presets=False)
Expandable Row Detail Panels
The DataGrid supports expandable detail panels that show additional data below each row when clicked. This brings MUI X Pro's detail panel capability to the Community edition using the virtualizer's setPanels API.
When detail_columns is provided, an expander chevron column appears. Clicking it reveals a panel below that row with the specified fields displayed as label-value pairs.
data_grid(
rows=State.rows,
columns=State.columns,
detail_columns=["description", "notes", "tags"],
detail_labels={
"description": "Full Description",
"notes": "Internal Notes",
"tags": "Categories",
},
detail_height=180,
height="600px",
)
Badge fields render pipe-delimited values ("High | Urgent | Critical") as colored inline badges instead of plain text. The built-in color heuristic maps common terms (risk levels, quality tiers, percentiles) to semantic colors. You can override colors per badge text:
data_grid(
rows=State.rows,
columns=State.columns,
detail_columns=["summary", "risk_hint", "notes"],
detail_badge_fields=["summary", "risk_hint"],
detail_badge_colors={
"High Risk": ["#c62828", "#ffcdd2"],
"Low Risk": ["#2e7d32", "#c8e6c9"],
},
height="600px",
)
With lazyframe_grid, the same props are available:
lazyframe_grid(
MyState,
detail_columns=["interpretation", "reference_source"],
detail_badge_fields=["interpretation"],
detail_labels={"interpretation": "Clinical Interpretation"},
)
Detail panel props reference:
| Prop | Type | Description |
|---|---|---|
detail_columns |
list[str] |
Field names to display in the detail panel. Can reference any key in the row data, not just visible grid columns. When provided, an expander chevron column is added. |
detail_height |
int |
Fixed pixel height for the panel. When omitted, auto-computed from the number of detail columns. |
detail_labels |
dict[str, str] |
{field: label} mapping for display labels. Falls back to the column's headerName or the raw field name. |
detail_badge_fields |
list[str] |
Fields whose values are split on | and rendered as colored badges. |
detail_badge_colors |
dict[str, list[str]] |
Custom colors keyed by badge text. Each value is [foreground_color, background_color]. Unmatched text falls back to the built-in heuristic. |
detail_renderers |
dict[str, dict] |
Maps field names to rich renderer configs. See Rich Detail Renderers below. |
Rich Detail Renderers
The detail_renderers prop maps field names to renderer configurations that render structured JSON row data as rich UI elements inside detail panels. Six renderer types are available:
| Type | Input Data | Description |
|---|---|---|
text |
str |
Plain text (default fallback). |
key_value_list |
list[TonedItem] |
Labeled rows with optional tone-colored values. |
metric_list |
list[TonedItem] |
Tone-colored metric cards in a flex row. |
badge_list |
list[TonedItem] |
Inline pill badges with semantic colors. |
percentile_spread |
PercentileData |
Horizontal track with markers and bands (div-based). |
bell_curve |
PercentileData |
Plotly normal-distribution chart with markers, bands, and a "your score" line. Falls back to percentile_spread when Plotly is unavailable. |
Each item supports a tone ("neutral", "good", "info", "warning", "danger") that maps to accessible color pairs.
from reflex_mui_datagrid import data_grid, TonedItem, PercentileData
# Row data includes structured fields (hidden from grid columns):
row = {
"id": 1,
"name": "Coronary artery disease",
"risk_details": [
TonedItem(label="Best estimate", value="68.2%", tone="warning").model_dump(),
TonedItem(label="Confidence", value="High", tone="good").model_dump(),
],
"percentiles": PercentileData(
score=68.2,
items=[
TonedItem(label="EUR", value=68.2).model_dump(),
TonedItem(label="EAS", value=45.1, tone="info").model_dump(),
],
summary="Models agree.",
).model_dump(),
}
data_grid(
rows=[row],
columns=[...],
detail_columns=["risk_details", "percentiles"],
detail_renderers={
"risk_details": {"type": "key_value_list"},
"percentiles": {
"type": "bell_curve",
"scaleMin": 0,
"scaleMax": 100,
"bands": [{"from": 25, "to": 75, "label": "average range"}],
},
},
detail_height=420,
)
The DetailRendererConfig and PercentileBand models provide validation and IDE autocomplete, but plain dicts work too.
Bell curve with Plotly: The bell_curve renderer dynamically imports react-plotly.js. If the npm package is not installed, it automatically falls back to the div-based percentile_spread. To ensure Plotly is available, include PlotlyDetailSupport.create() in your component tree:
from reflex_mui_datagrid import PlotlyDetailSupport
def index() -> rx.Component:
return rx.fragment(
PlotlyDetailSupport.create(),
data_grid(..., detail_renderers={"pct": {"type": "bell_curve"}}),
)
Multiple Independent Grids
Because LazyFrameGridMixin is a Reflex mixin (mixin=True), you can have multiple independent grids on the same page -- each subclass gets its own lf_grid_* state vars:
class ParquetGrid(LazyFrameGridMixin, rx.State):
def load(self):
yield from self.set_lazyframe(pl.scan_parquet("data.parquet"))
class CsvGrid(LazyFrameGridMixin, rx.State):
def load(self):
yield from self.set_lazyframe(pl.scan_csv("data.csv"))
# ParquetGrid.lf_grid_rows and CsvGrid.lf_grid_rows are independent
How It Works
set_lazyframestores the LazyFrame in a module-level cache (never serialised into Reflex state), computes the schema, total row count, and low-cardinality filter options from a bounded sample.- Only the first chunk of rows is collected and sent to the frontend.
- As the user scrolls near the bottom,
handle_lf_grid_scroll_endcollects the next chunk and appends it. - Filter and sort changes reset to page 0 and re-query the LazyFrame with Polars expressions -- no full-table collect.
Genomic Data Visualization
polars-bio reads genomic file formats (VCF, BAM, GFF, FASTA, FASTQ, and more) as polars LazyFrames. Since show_dataframe accepts any polars LazyFrame, you can build an interactive genomic browser with the same API used for ordinary tables.
Extra Dependencies
Install with the [bio] extra to pull in polars-bio:
uv add "reflex-mui-datagrid[bio]"
This adds polars-bio >= 0.23.0, which provides scan_vcf(), scan_bam(), scan_gff(), and other genomic file readers.
Quick VCF Visualization
Because polars_bio.scan_vcf() returns a polars LazyFrame, you can pass it straight to show_dataframe:
import polars_bio as pb
import reflex as rx
from reflex_mui_datagrid import show_dataframe
lf = pb.scan_vcf("variants.vcf")
def index() -> rx.Component:
return show_dataframe(lf, density="compact", height="540px")
That is all you need -- column types, dropdown filters for low-cardinality fields like filter and genotype, row IDs, and the MUI toolbar are all set up automatically.
VCF with Column Descriptions from Headers
For richer display, bio_lazyframe_to_datagrid automatically extracts column descriptions from VCF INFO/FORMAT headers and shows them as tooltips or subtitles in the column headers:
import polars_bio as pb
import reflex as rx
from reflex_mui_datagrid import bio_lazyframe_to_datagrid, data_grid
class State(rx.State):
rows: list[dict] = []
columns: list[dict] = []
def load_vcf(self) -> None:
lf = pb.scan_vcf("variants.vcf")
self.rows, col_defs = bio_lazyframe_to_datagrid(lf)
self.columns = [c.dict() for c in col_defs]
def index() -> rx.Component:
return data_grid(
rows=State.rows,
columns=State.columns,
show_toolbar=True,
show_description_in_header=True, # VCF descriptions as subtitles
density="compact",
column_header_height=70,
height="540px",
)
app = rx.App()
app.add_page(index, on_load=State.load_vcf)
bio_lazyframe_to_datagrid merges three sources of column descriptions:
- VCF specification -- standard fields (chrom, start, ref, alt, qual, filter, etc.)
- INFO fields -- descriptions from the file's
##INFOheader lines - FORMAT fields -- descriptions from the file's
##FORMATheader lines
CLI Viewer
The package includes a CLI entrypoint that can launch an interactive viewer for VCF and other tabular formats without writing any app code.
Install as a global uv tool:
uv tool install "reflex-mui-datagrid[bio]"
This installs both commands:
reflex-mui-datagrid(full name)biogrid(bio-focused alias)
Open a file in your browser:
reflex-mui-datagrid path/to/variants.vcf
# bio-focused alias
biogrid path/to/variants.vcf
Useful options:
reflex-mui-datagrid path/to/variants.vcf --limit 5000 --port 3005 --title "Tumor Cohort VCF"
# bio-focused alias
biogrid path/to/variants.vcf --limit 5000 --port 3005 --title "Tumor Cohort VCF"
The CLI auto-detects file formats by extension and currently supports:
- Genomics (via
polars-bio):vcf,bam,gff,bed,fasta,fastq - Tabular:
csv,tsv,parquet,json,ndjson,ipc/arrow/feather
Running the Example
The project uses uv workspaces. The example app is a workspace member with a demo entrypoint:
uv sync
uv run demo
The demo has six tabs:
| Tab | Description |
|---|---|
| PRS Results | Polygenic Risk Scores with rich detail panels: key-value risk assessment, metric cards, bell curve percentile chart, and badge warnings |
| PRS (Lazy + Overrides) | Same PRS data via LazyFrameGridMixin with column_overrides -- PGS IDs as clickable links to the PGS Catalog, custom column widths |
| Employee Data | 20-row inline polars LazyFrame with sorting, dropdown filters, checkbox selection |
| Genomic Variants (VCF) | 793 variants loaded via polars_bio.scan_vcf(), column descriptions from VCF headers |
| Longevity Map | Server-side parquet browsing via LazyFrameGridMixin, rsIDs linked to GWAS Catalog |
| Full Genome (Server-Side) | ~4.5M variants with server-side scroll-loading, filtering, and sorting via LazyFrameGridMixin |
API Reference
See docs/api.md for the full API reference.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file reflex_mui_datagrid-0.2.7.tar.gz.
File metadata
- Download URL: reflex_mui_datagrid-0.2.7.tar.gz
- Upload date:
- Size: 59.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"26.04","id":"resolute","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd3d11cf7e2cc400333fb2224b623af3012917aeace3d853aea7ce0ce6241113
|
|
| MD5 |
2bbd7f2a745cc1db363e5f777e6f485c
|
|
| BLAKE2b-256 |
1eaba2c49f550a26b0669158e6887efb53d641e4e1e2c93baae1dcc3ad1a85ed
|
File details
Details for the file reflex_mui_datagrid-0.2.7-py3-none-any.whl.
File metadata
- Download URL: reflex_mui_datagrid-0.2.7-py3-none-any.whl
- Upload date:
- Size: 64.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"26.04","id":"resolute","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d87a6b7f1857bca3010065aa333d5cdcb1f4a4a2ffb11fb42cb68c779cb8c51
|
|
| MD5 |
ba6e10839b6df445f9b15943ba8d7a4e
|
|
| BLAKE2b-256 |
53de34dd4d2cc59100a6e5f226c0d844c1223490f0c08eeaf4e74145330345da
|