Skip to main content

General simulation data file format.

Project description

GSD

The GSD file format is the native file format for HOOMD-blue. GSD files store trajectories of the HOOMD-blue system state in a binary file with efficient random access to frames. GSD allows all particle and topology properties to vary from one frame to the next. Use the GSD Python API to specify the initial condition for a HOOMD-blue simulation or analyze trajectory output with a script. Read a GSD trajectory with a visualization tool to explore the behavior of the simulation.

Resources

HOOMD examples

Create a hoomd gsd file.

>>> s = gsd.hoomd.Snapshot()
>>> s.particles.N = 4
>>> s.particles.types = ['A', 'B']
>>> s.particles.typeid = [0,0,1,1]
>>> s.particles.position = [[0,0,0],[1,1,1], [-1,-1,-1], [1,-1,-1]]
>>> s.configuration.box = [3, 3, 3, 0, 0, 0]
>>> traj = gsd.hoomd.open(name='test.gsd', mode='wb')
>>> traj.append(s)

Append frames to a gsd file:

>>> def create_frame(i):
...     s = gsd.hoomd.Snapshot();
...     s.configuration.step = i;
...     s.particles.N = 4+i;
...     s.particles.position = numpy.random.random(size=(4+i,3))
...     return s;
>>> with gsd.hoomd.open('test.gsd', 'ab') as t:
...     t.extend( (create_frame(i) for i in range(10)) )
...     print(len(t))
11

Randomly index frames:

>>> with gsd.hoomd.open('test.gsd', 'rb') as t:
...     snap = t[5]
...     print(snap.configuration.step)
4
...     print(snap.particles.N)
8
...     print(snap.particles.position)
[[ 0.56993282  0.42243481  0.5502916 ]
 [ 0.36892486  0.38167036  0.27310368]
 [ 0.04739023  0.13603486  0.196539  ]
 [ 0.120232    0.91591144  0.99463677]
 [ 0.79806316  0.16991436  0.15228257]
 [ 0.13724308  0.14253527  0.02505   ]
 [ 0.39287439  0.82519054  0.01613089]
 [ 0.23150323  0.95167434  0.7715748 ]]

Slice frames:

>>> with gsd.hoomd.open('test.gsd', 'rb') as t:
...     for s in t[5:-2]:
...         print(s.configuration.step, end=' ')
4 5 6 7

File layer examples

with gsd.fl.open(name='file.gsd', mode='wb') as f:
    f.write_chunk(name='position', data=numpy.array([[1,2,3],[4,5,6]], dtype=numpy.float32));
    f.write_chunk(name='angle', data=numpy.array([0, 1], dtype=numpy.float32));
    f.write_chunk(name='box', data=numpy.array([10, 10, 10], dtype=numpy.float32));
    f.end_frame()
with gsd.fl.open(name='file.gsd', mode='rb') as f:
    for i in range(1,f.nframes):
        position = f.read_chunk(frame=i, name='position');
        do_something(position);

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gsd-2.5.1.tar.gz (136.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

gsd-2.5.1-cp310-cp310-win_amd64.whl (93.3 kB view details)

Uploaded CPython 3.10Windows x86-64

gsd-2.5.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (357.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

gsd-2.5.1-cp310-cp310-macosx_11_0_arm64.whl (94.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

gsd-2.5.1-cp310-cp310-macosx_10_9_x86_64.whl (102.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

gsd-2.5.1-cp39-cp39-win_amd64.whl (93.0 kB view details)

Uploaded CPython 3.9Windows x86-64

gsd-2.5.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (355.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

gsd-2.5.1-cp39-cp39-macosx_11_0_arm64.whl (94.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

gsd-2.5.1-cp39-cp39-macosx_10_9_x86_64.whl (102.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

gsd-2.5.1-cp38-cp38-win_amd64.whl (93.0 kB view details)

Uploaded CPython 3.8Windows x86-64

gsd-2.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (387.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

gsd-2.5.1-cp38-cp38-macosx_11_0_arm64.whl (93.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

gsd-2.5.1-cp38-cp38-macosx_10_9_x86_64.whl (101.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

gsd-2.5.1-cp37-cp37m-win_amd64.whl (91.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

gsd-2.5.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (335.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

gsd-2.5.1-cp37-cp37m-macosx_10_9_x86_64.whl (99.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

gsd-2.5.1-cp36-cp36m-win_amd64.whl (91.7 kB view details)

Uploaded CPython 3.6mWindows x86-64

gsd-2.5.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (336.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64manylinux: glibc 2.5+ x86-64

gsd-2.5.1-cp36-cp36m-macosx_10_9_x86_64.whl (100.1 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file gsd-2.5.1.tar.gz.

File metadata

  • Download URL: gsd-2.5.1.tar.gz
  • Upload date:
  • Size: 136.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1.tar.gz
Algorithm Hash digest
SHA256 76bf228b1d8e95e7d6a334e8cc7712c0bd8c256148007f7ce88a489c21996593
MD5 dce4399297603c45991c6ba8fefaefbd
BLAKE2b-256 bd6555fec6a39f02aae7c460ce2bbceb7159ce2a3ba461738dd66a8b15a643b0

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 93.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4c4118f6fde5fd0d87462a5af413ae9fba89b2b42b1fb4329be2547e264208de
MD5 d5970a04a8b77980398b015d01a82d15
BLAKE2b-256 965aeb0d42b25596bec059e89d50902b6e7f1b46bc23e205e83d5139a74c5a9c

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.5.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ac5913037b28a2692278421e7dde36628890600cdb05f51d07b8653ee20c9391
MD5 5f188da4339d94399fae17c516a2ade5
BLAKE2b-256 e9dbd0a5e5cbdafc3bf25493a77faed38a9f3ee620acc70e757ec7cd11edd677

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 94.8 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b3ed0e1fe6f013c88f7bf34b5d2aacc63f523434d6ce52d12e87b5fe66f3834
MD5 8da0d67b336a72fefa53e51f2495f8d7
BLAKE2b-256 65fa78fe3a820792055e699bed3c3c069358e864786c28893a7545bde34ab2e5

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 102.8 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd4c56e5f281d9aa045aee6f4de760ecb21783ad295aaba54dfac142238e1670
MD5 311779658133665b145e7a91eb11ebc7
BLAKE2b-256 c7a9f272e68b5354e9bace8c93c111be7bd1499dd981a5a71dc5f8bcebe35137

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e14e1687131e440318604c1e438f2e6dafdeeb8055b19ec84b7dda78d3cf1bdc
MD5 f732541766ec7e8eee812910510c6661
BLAKE2b-256 e5667597d4771550d1375cdd6671e3f6fb25f12504ef89bdbe805355a37977ab

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.5.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4ef7a653e59052bb56a4424160af8d59e35bb019ef175e73a3bc55fc34cf55b4
MD5 a1131cb696855c03470d71217c9afe1f
BLAKE2b-256 51db18ee81d9541832b816474ec7b372fa880218b535cba91e17835cb7ea8f8a

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 94.4 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b0c56ecb71bed9b636caa6d3141f7def5d6557777c3013ebbbf363ad8cee4ea
MD5 6d4f4de8b363bf72334f371048a479b4
BLAKE2b-256 dc04de78440ff7f7cdb5813ca6f3ac4a378d726af8f85e69008cdd443e5b84fb

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 102.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c4e11caac6ba459c9db4d5a03cf18bbcfb2dc08fcaf80d365095083e5a3e0d5
MD5 072510969f42baf2b7e7c423ea6dc44a
BLAKE2b-256 37feacd7cc1277f68d64503168a95f2a3d9d2362b0aabc429de42ac2f2c30e3b

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 821f67b2652af5e416e38a6c570cf951959b1cbd86fb5279033b230b5569ea60
MD5 4bea3e63103109dab69e4d5685a26dc7
BLAKE2b-256 7d13449f35c811dfe450f9deb5cf0fbd0de6132beabd35f49cc17fc12bde0c30

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.5.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5d89c65d6292a88dcfd34ac7dabbc91298d5f9066be74e13a199fde41aa7e89b
MD5 3fd44871755a6161fb9c2b97c281fca2
BLAKE2b-256 6d1ef12e4b6ed9ba84649266b4b92d9731fdc20881809397af810881e6aad2ac

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 93.5 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d360628f59146d687c06a4048e8d5e777b61c47d7ee4c4ff03d9dc258045092b
MD5 fdda70908581b29ae304a89ea7c6fb12
BLAKE2b-256 611fb9a24418cab518a2c3c37d681fcd0ef0bf99ee12bd1d3176691dc372af02

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 101.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bdfd3759e184cc8d6019980ab5d19dc95f27437bf853c1c1c4df16c0a4a69d57
MD5 120c0728162023514bd0c414efcdaf07
BLAKE2b-256 8cfaa4bbc688b388ef8240654c60f734d8abf9153dbc412f7c33baf2c02d54b9

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 91.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 49cd7618c2d2cca68b4f8572ed194960ae42f94663a3d940d0f6e5807c902fc3
MD5 5c19c6377168fe4412a25e7058e9231b
BLAKE2b-256 dbdc641a6c9a273fdb6aa08e46b0725022c904f72bf0166a751acdf7ff85af40

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.5.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a5d96f95aa6e03dcf53f17de8533d5fe3bb4061aad5f52d8095e08e0579f5b4c
MD5 42c4cc1ebdfec8d4ac2ee3683396d939
BLAKE2b-256 69c10c9679a65b7eddeccd15f3b2dd19f015c6c17a25ff41e72db04cd787a6df

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 99.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a243701f2bc6616a8f70cde0b75d547a892961ad2ab75f38237d98c0bd9c43ef
MD5 d10eb03c7748364f78007103f48b1a55
BLAKE2b-256 59b8981250d19377b9d49f3a65a3e4f01c9fd60e59350f37ef372e9db97aea79

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 91.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8d067a4fef7703ea58e69dded97907d6b961d33807d4eccd280339ede2a4e509
MD5 4fddff764c15b3a178260e3916390f2b
BLAKE2b-256 38f2334b4d79a64c1a4599919e73577003fbc726be54b6a52b7d9e68c8c23f49

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for gsd-2.5.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a118a6e951dd421e556067d24d41ebc23bb80044ad88e69eb21d61879667ab2b
MD5 89db194a1aff6566c6bb81b96cbadf90
BLAKE2b-256 48a90caff089b3a4310440ce701fc907e43f72335c935406ccb3136445737cd3

See more details on using hashes here.

File details

Details for the file gsd-2.5.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gsd-2.5.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 100.1 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for gsd-2.5.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f81088df61ab468c92c7ea0e69a60d9d9ca99c325e680862b1c480f48c11d5c
MD5 c4555fafcd0128e753fdc453b2be6d5f
BLAKE2b-256 46a7b3fdf3a90fadd93fffb08869e522dfc0a079e64c9b471ef7c6d28330b5fd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page