From cb9830c2399ea42f310c39d4d35f3e2ce197ccab Mon Sep 17 00:00:00 2001 From: 0xevolve Date: Wed, 15 May 2024 14:20:52 +0100 Subject: [PATCH] eth setup --- rust/.gitignore | 3 + rust/Cargo.lock | 4064 +++++++++++++++++++++++++ rust/Cargo.toml | 51 + rust/abis/FastHypERC20.json | 858 ++++++ rust/abis/FastHypERC20Collateral.json | 605 ++++ rust/abis/Mailbox.json | 446 +++ rust/abis/TestMultisigIsm.json | 103 + rust/abis/TestRecipient.json | 232 ++ rust/build.rs | 39 + rust/src/lib.rs | 1 + rust/tests/constants.rs | 7 + rust/tests/contracts/eth/bind/mod.rs | 10 + rust/tests/contracts/eth/deploy.rs | 36 + rust/tests/contracts/eth/mod.rs | 8 + rust/tests/contracts/eth/setup.rs | 39 + rust/tests/contracts/eth/types.rs | 12 + rust/tests/contracts/mod.rs | 1 + rust/tests/mailbox.rs | 2 + 18 files changed, 6517 insertions(+) create mode 100644 rust/.gitignore create mode 100644 rust/Cargo.lock create mode 100644 rust/Cargo.toml create mode 100644 rust/abis/FastHypERC20.json create mode 100644 rust/abis/FastHypERC20Collateral.json create mode 100644 rust/abis/Mailbox.json create mode 100644 rust/abis/TestMultisigIsm.json create mode 100644 rust/abis/TestRecipient.json create mode 100644 rust/build.rs create mode 100644 rust/src/lib.rs create mode 100644 rust/tests/constants.rs create mode 100644 rust/tests/contracts/eth/bind/mod.rs create mode 100644 rust/tests/contracts/eth/deploy.rs create mode 100644 rust/tests/contracts/eth/mod.rs create mode 100644 rust/tests/contracts/eth/setup.rs create mode 100644 rust/tests/contracts/eth/types.rs create mode 100644 rust/tests/contracts/mod.rs create mode 100644 rust/tests/mailbox.rs diff --git a/rust/.gitignore b/rust/.gitignore new file mode 100644 index 0000000..266a5cb --- /dev/null +++ b/rust/.gitignore @@ -0,0 +1,3 @@ +tests/contracts/eth/bind/*.rs +!tests/contracts/eth/bind/mod.rs +target/ \ No newline at end of file diff --git a/rust/Cargo.lock b/rust/Cargo.lock new file mode 100644 index 0000000..0c34d59 --- /dev/null +++ b/rust/Cargo.lock @@ -0,0 +1,4064 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "Inflector" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" +dependencies = [ + "lazy_static", + "regex", +] + +[[package]] +name = "addr2line" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "aes" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures", +] + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anyhow" +version = "1.0.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3" +dependencies = [ + "backtrace", +] + +[[package]] +name = "ark-ff" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba" +dependencies = [ + "ark-ff-asm", + "ark-ff-macros", + "ark-serialize", + "ark-std", + "derivative", + "digest", + "itertools 0.10.5", + "num-bigint", + "num-traits", + "paste", + "rustc_version", + "zeroize", +] + +[[package]] +name = "ark-ff-asm" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348" +dependencies = [ + "quote", + "syn 1.0.109", +] + +[[package]] +name = "ark-ff-macros" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565" +dependencies = [ + "num-bigint", + "num-traits", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "ark-serialize" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" +dependencies = [ + "ark-std", + "digest", + "num-bigint", +] + +[[package]] +name = "ark-std" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" +dependencies = [ + "num-traits", + "rand", +] + +[[package]] +name = "arrayvec" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" + +[[package]] +name = "ascii-canvas" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" +dependencies = [ + "term", +] + +[[package]] +name = "async-trait" +version = "0.1.80" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "async_io_stream" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c" +dependencies = [ + "futures", + "pharos", + "rustc_version", +] + +[[package]] +name = "auto_impl" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c87f3f15e7794432337fc718554eaa4dc8f04c9677a950ffe366f20a162ae42" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "autocfg" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" + +[[package]] +name = "backtrace" +version = "0.3.71" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "base16ct" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64ct" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" + +[[package]] +name = "bech32" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445" + +[[package]] +name = "bigdecimal" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6773ddc0eafc0e509fb60e48dff7f450f8e674a0686ae8605e8d9901bd5eefa" +dependencies = [ + "num-bigint", + "num-integer", + "num-traits", + "serde", +] + +[[package]] +name = "bit-set" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" + +[[package]] +name = "bitvec" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "bs58" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +dependencies = [ + "sha2", + "tinyvec", +] + +[[package]] +name = "bumpalo" +version = "3.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" + +[[package]] +name = "byte-slice-cast" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" +dependencies = [ + "serde", +] + +[[package]] +name = "bzip2" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8" +dependencies = [ + "bzip2-sys", + "libc", +] + +[[package]] +name = "bzip2-sys" +version = "0.1.11+1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" +dependencies = [ + "cc", + "libc", + "pkg-config", +] + +[[package]] +name = "camino" +version = "1.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo-platform" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24b1f0365a6c6bb4020cd05806fd0d33c44d38046b8bd7f0e40814b9763cabfc" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror", +] + +[[package]] +name = "cc" +version = "1.0.97" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4" +dependencies = [ + "jobserver", + "libc", + "once_cell", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chrono" +version = "0.4.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "num-traits", + "serde", + "windows-targets 0.52.5", +] + +[[package]] +name = "cipher" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +dependencies = [ + "crypto-common", + "inout", +] + +[[package]] +name = "coins-bip32" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b6be4a5df2098cd811f3194f64ddb96c267606bffd9689ac7b0160097b01ad3" +dependencies = [ + "bs58", + "coins-core", + "digest", + "hmac", + "k256", + "serde", + "sha2", + "thiserror", +] + +[[package]] +name = "coins-bip39" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3db8fba409ce3dc04f7d804074039eb68b960b0829161f8e06c95fea3f122528" +dependencies = [ + "bitvec", + "coins-bip32", + "hmac", + "once_cell", + "pbkdf2 0.12.2", + "rand", + "sha2", + "thiserror", +] + +[[package]] +name = "coins-core" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5286a0843c21f8367f7be734f89df9b822e0321d8bcce8d6e735aadff7d74979" +dependencies = [ + "base64 0.21.7", + "bech32", + "bs58", + "digest", + "generic-array", + "hex", + "ripemd", + "serde", + "serde_derive", + "sha2", + "sha3", + "thiserror", +] + +[[package]] +name = "const-hex" +version = "1.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ba00838774b4ab0233e355d26710fbfc8327a05c017f6dc4873f876d1f79f78" +dependencies = [ + "cfg-if", + "cpufeatures", + "hex", + "proptest", + "serde", +] + +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + +[[package]] +name = "constant_time_eq" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" + +[[package]] +name = "cpufeatures" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504" +dependencies = [ + "libc", +] + +[[package]] +name = "crc32fast" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + +[[package]] +name = "crypto-bigint" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" +dependencies = [ + "generic-array", + "rand_core", + "subtle", + "zeroize", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "ctr" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" +dependencies = [ + "cipher", +] + +[[package]] +name = "darling" +version = "0.20.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.20.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.63", +] + +[[package]] +name = "darling_macro" +version = "0.20.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "data-encoding" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" + +[[package]] +name = "der" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +dependencies = [ + "const-oid", + "zeroize", +] + +[[package]] +name = "deranged" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +dependencies = [ + "powerfmt", + "serde", +] + +[[package]] +name = "derivative" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "derive_more" +version = "0.99.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "const-oid", + "crypto-common", + "subtle", +] + +[[package]] +name = "dirs" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-next" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" +dependencies = [ + "cfg-if", + "dirs-sys-next", +] + +[[package]] +name = "dirs-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.48.0", +] + +[[package]] +name = "dirs-sys-next" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" +dependencies = [ + "libc", + "redox_users", + "winapi", +] + +[[package]] +name = "dunce" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" + +[[package]] +name = "ecdsa" +version = "0.16.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" +dependencies = [ + "der", + "digest", + "elliptic-curve", + "rfc6979", + "signature", + "spki", +] + +[[package]] +name = "either" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2" + +[[package]] +name = "elliptic-curve" +version = "0.13.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" +dependencies = [ + "base16ct", + "crypto-bigint", + "digest", + "ff", + "generic-array", + "group", + "pkcs8", + "rand_core", + "sec1", + "subtle", + "zeroize", +] + +[[package]] +name = "ena" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" +dependencies = [ + "log", +] + +[[package]] +name = "encoding_rs" +version = "0.8.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "enr" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a3d8dc56e02f954cac8eb489772c552c473346fc34f67412bb6244fd647f7e4" +dependencies = [ + "base64 0.21.7", + "bytes", + "hex", + "k256", + "log", + "rand", + "rlp", + "serde", + "sha3", + "zeroize", +] + +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + +[[package]] +name = "errno" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "eth-keystore" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fda3bf123be441da5260717e0661c25a2fd9cb2b2c1d20bf2e05580047158ab" +dependencies = [ + "aes", + "ctr", + "digest", + "hex", + "hmac", + "pbkdf2 0.11.0", + "rand", + "scrypt", + "serde", + "serde_json", + "sha2", + "sha3", + "thiserror", + "uuid", +] + +[[package]] +name = "ethabi" +version = "18.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7413c5f74cc903ea37386a8965a936cbeb334bd270862fdece542c1b2dcbc898" +dependencies = [ + "ethereum-types", + "hex", + "once_cell", + "regex", + "serde", + "serde_json", + "sha3", + "thiserror", + "uint", +] + +[[package]] +name = "ethbloom" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60" +dependencies = [ + "crunchy", + "fixed-hash", + "impl-codec", + "impl-rlp", + "impl-serde", + "scale-info", + "tiny-keccak", +] + +[[package]] +name = "ethereum-types" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee" +dependencies = [ + "ethbloom", + "fixed-hash", + "impl-codec", + "impl-rlp", + "impl-serde", + "primitive-types", + "scale-info", + "uint", +] + +[[package]] +name = "ethers" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "816841ea989f0c69e459af1cf23a6b0033b19a55424a1ea3a30099becdb8dec0" +dependencies = [ + "ethers-addressbook", + "ethers-contract", + "ethers-core", + "ethers-etherscan", + "ethers-middleware", + "ethers-providers", + "ethers-signers", + "ethers-solc", +] + +[[package]] +name = "ethers-addressbook" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5495afd16b4faa556c3bba1f21b98b4983e53c1755022377051a975c3b021759" +dependencies = [ + "ethers-core", + "once_cell", + "serde", + "serde_json", +] + +[[package]] +name = "ethers-contract" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fceafa3578c836eeb874af87abacfb041f92b4da0a78a5edd042564b8ecdaaa" +dependencies = [ + "const-hex", + "ethers-contract-abigen", + "ethers-contract-derive", + "ethers-core", + "ethers-providers", + "futures-util", + "once_cell", + "pin-project", + "serde", + "serde_json", + "thiserror", +] + +[[package]] +name = "ethers-contract-abigen" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04ba01fbc2331a38c429eb95d4a570166781f14290ef9fdb144278a90b5a739b" +dependencies = [ + "Inflector", + "const-hex", + "dunce", + "ethers-core", + "ethers-etherscan", + "eyre", + "prettyplease", + "proc-macro2", + "quote", + "regex", + "reqwest", + "serde", + "serde_json", + "syn 2.0.63", + "toml", + "walkdir", +] + +[[package]] +name = "ethers-contract-derive" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87689dcabc0051cde10caaade298f9e9093d65f6125c14575db3fd8c669a168f" +dependencies = [ + "Inflector", + "const-hex", + "ethers-contract-abigen", + "ethers-core", + "proc-macro2", + "quote", + "serde_json", + "syn 2.0.63", +] + +[[package]] +name = "ethers-core" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82d80cc6ad30b14a48ab786523af33b37f28a8623fc06afd55324816ef18fb1f" +dependencies = [ + "arrayvec", + "bytes", + "cargo_metadata", + "chrono", + "const-hex", + "elliptic-curve", + "ethabi", + "generic-array", + "k256", + "num_enum", + "once_cell", + "open-fastrlp", + "rand", + "rlp", + "serde", + "serde_json", + "strum", + "syn 2.0.63", + "tempfile", + "thiserror", + "tiny-keccak", + "unicode-xid", +] + +[[package]] +name = "ethers-etherscan" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e79e5973c26d4baf0ce55520bd732314328cabe53193286671b47144145b9649" +dependencies = [ + "chrono", + "ethers-core", + "reqwest", + "semver", + "serde", + "serde_json", + "thiserror", + "tracing", +] + +[[package]] +name = "ethers-middleware" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48f9fdf09aec667c099909d91908d5eaf9be1bd0e2500ba4172c1d28bfaa43de" +dependencies = [ + "async-trait", + "auto_impl", + "ethers-contract", + "ethers-core", + "ethers-etherscan", + "ethers-providers", + "ethers-signers", + "futures-channel", + "futures-locks", + "futures-util", + "instant", + "reqwest", + "serde", + "serde_json", + "thiserror", + "tokio", + "tracing", + "tracing-futures", + "url", +] + +[[package]] +name = "ethers-providers" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6434c9a33891f1effc9c75472e12666db2fa5a0fec4b29af6221680a6fe83ab2" +dependencies = [ + "async-trait", + "auto_impl", + "base64 0.21.7", + "bytes", + "const-hex", + "enr", + "ethers-core", + "futures-core", + "futures-timer", + "futures-util", + "hashers", + "http", + "instant", + "jsonwebtoken", + "once_cell", + "pin-project", + "reqwest", + "serde", + "serde_json", + "thiserror", + "tokio", + "tokio-tungstenite", + "tracing", + "tracing-futures", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "ws_stream_wasm", +] + +[[package]] +name = "ethers-signers" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "228875491c782ad851773b652dd8ecac62cda8571d3bc32a5853644dd26766c2" +dependencies = [ + "async-trait", + "coins-bip32", + "coins-bip39", + "const-hex", + "elliptic-curve", + "eth-keystore", + "ethers-core", + "rand", + "sha2", + "thiserror", + "tracing", +] + +[[package]] +name = "ethers-solc" +version = "2.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66244a771d9163282646dbeffe0e6eca4dda4146b6498644e678ac6089b11edd" +dependencies = [ + "cfg-if", + "const-hex", + "dirs", + "dunce", + "ethers-core", + "glob", + "home", + "md-5", + "num_cpus", + "once_cell", + "path-slash", + "rayon", + "regex", + "semver", + "serde", + "serde_json", + "solang-parser", + "svm-rs", + "thiserror", + "tiny-keccak", + "tokio", + "tracing", + "walkdir", + "yansi", +] + +[[package]] +name = "eyre" +version = "0.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" +dependencies = [ + "indenter", + "once_cell", +] + +[[package]] +name = "fastrand" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" + +[[package]] +name = "ff" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" +dependencies = [ + "rand_core", + "subtle", +] + +[[package]] +name = "fixed-hash" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" +dependencies = [ + "byteorder", + "rand", + "rustc-hex", + "static_assertions", +] + +[[package]] +name = "fixedbitset" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" + +[[package]] +name = "flate2" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "form_urlencoded" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "fs2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "futures" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" + +[[package]] +name = "futures-executor" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" + +[[package]] +name = "futures-locks" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45ec6fe3675af967e67c5536c0b9d44e34e6c52f86bedc4ea49c5317b8e94d06" +dependencies = [ + "futures-channel", + "futures-task", +] + +[[package]] +name = "futures-macro" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "futures-sink" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" + +[[package]] +name = "futures-task" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" + +[[package]] +name = "futures-timer" +version = "3.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" +dependencies = [ + "gloo-timers", + "send_wrapper 0.4.0", +] + +[[package]] +name = "futures-util" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", + "zeroize", +] + +[[package]] +name = "getrandom" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", +] + +[[package]] +name = "gimli" +version = "0.28.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" + +[[package]] +name = "glob" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" + +[[package]] +name = "gloo-timers" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" +dependencies = [ + "futures-channel", + "futures-core", + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "group" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" +dependencies = [ + "ff", + "rand_core", + "subtle", +] + +[[package]] +name = "h2" +version = "0.3.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap 2.2.6", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" + +[[package]] +name = "hashers" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2bca93b15ea5a746f220e56587f71e73c6165eab783df9e26590069953e3c30" +dependencies = [ + "fxhash", +] + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "hermit-abi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest", +] + +[[package]] +name = "home" +version = "0.5.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "http" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" +dependencies = [ + "bytes", + "http", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "hyper" +version = "0.14.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "socket2", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" +dependencies = [ + "futures-util", + "http", + "hyper", + "rustls", + "tokio", + "tokio-rustls", +] + +[[package]] +name = "hyperlane-starknet" +version = "0.0.2" +dependencies = [ + "anyhow", + "ethers", + "eyre", + "rstest", + "serde", + "serde_json", + "starknet", + "thiserror", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "impl-codec" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f" +dependencies = [ + "parity-scale-codec", +] + +[[package]] +name = "impl-rlp" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808" +dependencies = [ + "rlp", +] + +[[package]] +name = "impl-serde" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd" +dependencies = [ + "serde", +] + +[[package]] +name = "impl-trait-for-tuples" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "indenter" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" +dependencies = [ + "equivalent", + "hashbrown 0.14.5", +] + +[[package]] +name = "inout" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" +dependencies = [ + "generic-array", +] + +[[package]] +name = "instant" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "ipnet" +version = "2.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" + +[[package]] +name = "itertools" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" + +[[package]] +name = "jobserver" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" +dependencies = [ + "libc", +] + +[[package]] +name = "js-sys" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "jsonwebtoken" +version = "8.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" +dependencies = [ + "base64 0.21.7", + "pem", + "ring 0.16.20", + "serde", + "serde_json", + "simple_asn1", +] + +[[package]] +name = "k256" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "956ff9b67e26e1a6a866cb758f12c6f8746208489e3e4a4b5580802f2f0a587b" +dependencies = [ + "cfg-if", + "ecdsa", + "elliptic-curve", + "once_cell", + "sha2", + "signature", +] + +[[package]] +name = "keccak" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" +dependencies = [ + "cpufeatures", +] + +[[package]] +name = "lalrpop" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55cb077ad656299f160924eb2912aa147d7339ea7d69e1b5517326fdcec3c1ca" +dependencies = [ + "ascii-canvas", + "bit-set", + "ena", + "itertools 0.11.0", + "lalrpop-util", + "petgraph", + "regex", + "regex-syntax", + "string_cache", + "term", + "tiny-keccak", + "unicode-xid", + "walkdir", +] + +[[package]] +name = "lalrpop-util" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553" +dependencies = [ + "regex-automata", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "libc" +version = "0.2.154" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" + +[[package]] +name = "libm" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" + +[[package]] +name = "libredox" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" +dependencies = [ + "bitflags 2.5.0", + "libc", +] + +[[package]] +name = "linux-raw-sys" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" + +[[package]] +name = "lock_api" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" + +[[package]] +name = "md-5" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +dependencies = [ + "cfg-if", + "digest", +] + +[[package]] +name = "memchr" +version = "2.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "miniz_oxide" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" +dependencies = [ + "adler", +] + +[[package]] +name = "mio" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.48.0", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "num-bigint" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + +[[package]] +name = "num-integer" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", + "libm", +] + +[[package]] +name = "num_cpus" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "num_enum" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" +dependencies = [ + "num_enum_derive", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "object" +version = "0.32.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + +[[package]] +name = "open-fastrlp" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" +dependencies = [ + "arrayvec", + "auto_impl", + "bytes", + "ethereum-types", + "open-fastrlp-derive", +] + +[[package]] +name = "open-fastrlp-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "003b2be5c6c53c1cfeb0a238b8a1c3915cd410feb684457a36c10038f764bb1c" +dependencies = [ + "bytes", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "parity-scale-codec" +version = "3.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "306800abfa29c7f16596b5970a588435e3d5b3149683d00c12b699cc19f895ee" +dependencies = [ + "arrayvec", + "bitvec", + "byte-slice-cast", + "impl-trait-for-tuples", + "parity-scale-codec-derive", + "serde", +] + +[[package]] +name = "parity-scale-codec-derive" +version = "3.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d830939c76d294956402033aee57a6da7b438f2294eb94864c37b0569053a42c" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "parking_lot" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets 0.52.5", +] + +[[package]] +name = "password-hash" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700" +dependencies = [ + "base64ct", + "rand_core", + "subtle", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "path-slash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42" + +[[package]] +name = "pbkdf2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" +dependencies = [ + "digest", + "hmac", + "password-hash", + "sha2", +] + +[[package]] +name = "pbkdf2" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" +dependencies = [ + "digest", + "hmac", +] + +[[package]] +name = "pem" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" +dependencies = [ + "base64 0.13.1", +] + +[[package]] +name = "percent-encoding" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" + +[[package]] +name = "petgraph" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" +dependencies = [ + "fixedbitset", + "indexmap 2.2.6", +] + +[[package]] +name = "pharos" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414" +dependencies = [ + "futures", + "rustc_version", +] + +[[package]] +name = "phf" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" +dependencies = [ + "phf_macros", + "phf_shared 0.11.2", +] + +[[package]] +name = "phf_generator" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" +dependencies = [ + "phf_shared 0.11.2", + "rand", +] + +[[package]] +name = "phf_macros" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" +dependencies = [ + "phf_generator", + "phf_shared 0.11.2", + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher", +] + +[[package]] +name = "phf_shared" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" +dependencies = [ + "siphasher", +] + +[[package]] +name = "pin-project" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der", + "spki", +] + +[[package]] +name = "pkg-config" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "prettyplease" +version = "0.2.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e" +dependencies = [ + "proc-macro2", + "syn 2.0.63", +] + +[[package]] +name = "primitive-types" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" +dependencies = [ + "fixed-hash", + "impl-codec", + "impl-rlp", + "impl-serde", + "scale-info", + "uint", +] + +[[package]] +name = "proc-macro-crate" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" +dependencies = [ + "toml_edit 0.21.1", +] + +[[package]] +name = "proc-macro2" +version = "1.0.82" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "proptest" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" +dependencies = [ + "bitflags 2.5.0", + "lazy_static", + "num-traits", + "rand", + "rand_chacha", + "rand_xorshift", + "regex-syntax", + "unarray", +] + +[[package]] +name = "quote" +version = "1.0.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rand_xorshift" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" +dependencies = [ + "rand_core", +] + +[[package]] +name = "rayon" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "redox_syscall" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" +dependencies = [ + "bitflags 2.5.0", +] + +[[package]] +name = "redox_users" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891" +dependencies = [ + "getrandom", + "libredox", + "thiserror", +] + +[[package]] +name = "regex" +version = "1.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" + +[[package]] +name = "relative-path" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" + +[[package]] +name = "reqwest" +version = "0.11.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" +dependencies = [ + "base64 0.21.7", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "hyper-rustls", + "ipnet", + "js-sys", + "log", + "mime", + "once_cell", + "percent-encoding", + "pin-project-lite", + "rustls", + "rustls-pemfile", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "system-configuration", + "tokio", + "tokio-rustls", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "webpki-roots", + "winreg", +] + +[[package]] +name = "rfc6979" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" +dependencies = [ + "hmac", + "subtle", +] + +[[package]] +name = "ring" +version = "0.16.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +dependencies = [ + "cc", + "libc", + "once_cell", + "spin 0.5.2", + "untrusted 0.7.1", + "web-sys", + "winapi", +] + +[[package]] +name = "ring" +version = "0.17.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" +dependencies = [ + "cc", + "cfg-if", + "getrandom", + "libc", + "spin 0.9.8", + "untrusted 0.9.0", + "windows-sys 0.52.0", +] + +[[package]] +name = "ripemd" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f" +dependencies = [ + "digest", +] + +[[package]] +name = "rlp" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" +dependencies = [ + "bytes", + "rlp-derive", + "rustc-hex", +] + +[[package]] +name = "rlp-derive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e33d7b2abe0c340d8797fe2907d3f20d3b5ea5908683618bfe80df7f621f672a" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "rstest" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199" +dependencies = [ + "futures", + "futures-timer", + "rstest_macros", + "rustc_version", +] + +[[package]] +name = "rstest_macros" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605" +dependencies = [ + "cfg-if", + "glob", + "proc-macro2", + "quote", + "regex", + "relative-path", + "rustc_version", + "syn 2.0.63", + "unicode-ident", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" + +[[package]] +name = "rustc-hex" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" + +[[package]] +name = "rustc_version" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +dependencies = [ + "semver", +] + +[[package]] +name = "rustix" +version = "0.38.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" +dependencies = [ + "bitflags 2.5.0", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustls" +version = "0.21.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" +dependencies = [ + "log", + "ring 0.17.8", + "rustls-webpki", + "sct", +] + +[[package]] +name = "rustls-pemfile" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +dependencies = [ + "base64 0.21.7", +] + +[[package]] +name = "rustls-webpki" +version = "0.101.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" +dependencies = [ + "ring 0.17.8", + "untrusted 0.9.0", +] + +[[package]] +name = "rustversion" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" + +[[package]] +name = "ryu" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + +[[package]] +name = "salsa20" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" +dependencies = [ + "cipher", +] + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "scale-info" +version = "2.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eca070c12893629e2cc820a9761bedf6ce1dcddc9852984d1dc734b8bd9bd024" +dependencies = [ + "cfg-if", + "derive_more", + "parity-scale-codec", + "scale-info-derive", +] + +[[package]] +name = "scale-info-derive" +version = "2.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d35494501194174bda522a32605929eefc9ecf7e0a326c26db1fdd85881eb62" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "scrypt" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f9e24d2b632954ded8ab2ef9fea0a0c769ea56ea98bddbafbad22caeeadf45d" +dependencies = [ + "hmac", + "pbkdf2 0.11.0", + "salsa20", + "sha2", +] + +[[package]] +name = "sct" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" +dependencies = [ + "ring 0.17.8", + "untrusted 0.9.0", +] + +[[package]] +name = "sec1" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" +dependencies = [ + "base16ct", + "der", + "generic-array", + "pkcs8", + "subtle", + "zeroize", +] + +[[package]] +name = "semver" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" +dependencies = [ + "serde", +] + +[[package]] +name = "send_wrapper" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0" + +[[package]] +name = "send_wrapper" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" + +[[package]] +name = "serde" +version = "1.0.202" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.202" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "serde_json" +version = "1.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_json_pythonic" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62212da9872ca2a0cad0093191ee33753eddff9266cbbc1b4a602d13a3a768db" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_spanned" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_with" +version = "2.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07ff71d2c147a7b57362cead5e22f772cd52f6ab31cfcd9edcd7f6aeb2a0afbe" +dependencies = [ + "base64 0.13.1", + "chrono", + "hex", + "indexmap 1.9.3", + "serde", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "2.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "881b6f881b17d13214e5d494c939ebab463d01264ce1811e9d4ac3a882e7695f" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "sha1" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha2" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha3" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" +dependencies = [ + "digest", + "keccak", +] + +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "digest", + "rand_core", +] + +[[package]] +name = "simple_asn1" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" +dependencies = [ + "num-bigint", + "num-traits", + "thiserror", + "time", +] + +[[package]] +name = "siphasher" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + +[[package]] +name = "slab" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallvec" +version = "1.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" + +[[package]] +name = "socket2" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "solang-parser" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c425ce1c59f4b154717592f0bdf4715c3a1d55058883622d3157e1f0908a5b26" +dependencies = [ + "itertools 0.11.0", + "lalrpop", + "lalrpop-util", + "phf", + "thiserror", + "unicode-xid", +] + +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + +[[package]] +name = "spin" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" + +[[package]] +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +dependencies = [ + "base64ct", + "der", +] + +[[package]] +name = "starknet" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20b9a7b7bfd87287af85854f7458b8170ba6aa59c39113436532b7ff3d2fcbd8" +dependencies = [ + "starknet-accounts", + "starknet-contract", + "starknet-core", + "starknet-crypto", + "starknet-ff", + "starknet-macros", + "starknet-providers", + "starknet-signers", +] + +[[package]] +name = "starknet-accounts" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2095d7584608ae1707bd1cf2889368ab3734d9f54e4fcef4765cba1f3b3f7618" +dependencies = [ + "async-trait", + "auto_impl", + "starknet-core", + "starknet-providers", + "starknet-signers", + "thiserror", +] + +[[package]] +name = "starknet-contract" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb3b73d437b4d62241612d13fce612602de6684c149cccf696e76a20757e2156" +dependencies = [ + "serde", + "serde_json", + "serde_with", + "starknet-accounts", + "starknet-core", + "starknet-providers", + "thiserror", +] + +[[package]] +name = "starknet-core" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ed286d637e34fb8ae1cd2f9615120ec8ff38d1cffd311ed7fdd497cdd2bd01f" +dependencies = [ + "base64 0.21.7", + "flate2", + "hex", + "serde", + "serde_json", + "serde_json_pythonic", + "serde_with", + "sha3", + "starknet-crypto", + "starknet-ff", +] + +[[package]] +name = "starknet-crypto" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e2c30c01e8eb0fc913c4ee3cf676389fffc1d1182bfe5bb9670e4e72e968064" +dependencies = [ + "crypto-bigint", + "hex", + "hmac", + "num-bigint", + "num-integer", + "num-traits", + "rfc6979", + "sha2", + "starknet-crypto-codegen", + "starknet-curve", + "starknet-ff", + "zeroize", +] + +[[package]] +name = "starknet-crypto-codegen" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbc159a1934c7be9761c237333a57febe060ace2bc9e3b337a59a37af206d19f" +dependencies = [ + "starknet-curve", + "starknet-ff", + "syn 2.0.63", +] + +[[package]] +name = "starknet-curve" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1c383518bb312751e4be80f53e8644034aa99a0afb29d7ac41b89a997db875b" +dependencies = [ + "starknet-ff", +] + +[[package]] +name = "starknet-ff" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7abf1b44ec5b18d87c1ae5f54590ca9d0699ef4dd5b2ffa66fc97f24613ec585" +dependencies = [ + "ark-ff", + "bigdecimal", + "crypto-bigint", + "getrandom", + "hex", + "num-bigint", + "serde", +] + +[[package]] +name = "starknet-macros" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95d549d3078bdbe775d0deaa8ddb57a19942989ce7c1f2dfd60beeb322bb4945" +dependencies = [ + "starknet-core", + "syn 2.0.63", +] + +[[package]] +name = "starknet-providers" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6abf40ffcbe3b887b4d5cfc8ab73170c816b4aa78d1d4ad59abd3fb3b0f53cd" +dependencies = [ + "async-trait", + "auto_impl", + "ethereum-types", + "flate2", + "log", + "reqwest", + "serde", + "serde_json", + "serde_with", + "starknet-core", + "thiserror", + "url", +] + +[[package]] +name = "starknet-signers" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e9a2bd4fd66090003c3b7f0d76476e5b63cd44f6a49ede2442673f4427d5a40" +dependencies = [ + "async-trait", + "auto_impl", + "crypto-bigint", + "eth-keystore", + "rand", + "starknet-core", + "starknet-crypto", + "thiserror", +] + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "string_cache" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b" +dependencies = [ + "new_debug_unreachable", + "once_cell", + "parking_lot", + "phf_shared 0.10.0", + "precomputed-hash", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "strum" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29" +dependencies = [ + "strum_macros", +] + +[[package]] +name = "strum_macros" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.63", +] + +[[package]] +name = "subtle" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" + +[[package]] +name = "svm-rs" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11297baafe5fa0c99d5722458eac6a5e25c01eb1b8e5cd137f54079093daa7a4" +dependencies = [ + "dirs", + "fs2", + "hex", + "once_cell", + "reqwest", + "semver", + "serde", + "serde_json", + "sha2", + "thiserror", + "url", + "zip", +] + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.63" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf5be731623ca1a1fb7d8be6f261a3be6d3e2337b8a1f97be944d020c8fcb704" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" + +[[package]] +name = "system-configuration" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "tempfile" +version = "3.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" +dependencies = [ + "cfg-if", + "fastrand", + "rustix", + "windows-sys 0.52.0", +] + +[[package]] +name = "term" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" +dependencies = [ + "dirs-next", + "rustversion", + "winapi", +] + +[[package]] +name = "thiserror" +version = "1.0.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "time" +version = "0.3.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +dependencies = [ + "deranged", + "itoa", + "num-conv", + "powerfmt", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" + +[[package]] +name = "time-macros" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tiny-keccak" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" +dependencies = [ + "crunchy", +] + +[[package]] +name = "tinyvec" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.37.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" +dependencies = [ + "backtrace", + "bytes", + "libc", + "mio", + "num_cpus", + "pin-project-lite", + "socket2", + "windows-sys 0.48.0", +] + +[[package]] +name = "tokio-rustls" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" +dependencies = [ + "futures-util", + "log", + "rustls", + "tokio", + "tokio-rustls", + "tungstenite", + "webpki-roots", +] + +[[package]] +name = "tokio-util" +version = "0.7.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit 0.22.12", +] + +[[package]] +name = "toml_datetime" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_edit" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" +dependencies = [ + "indexmap 2.2.6", + "toml_datetime", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.22.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3328d4f68a705b2a4498da1d580585d39a6510f98318a2cec3018a7ec61ddef" +dependencies = [ + "indexmap 2.2.6", + "serde", + "serde_spanned", + "toml_datetime", + "winnow 0.6.8", +] + +[[package]] +name = "tower-service" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" + +[[package]] +name = "tracing" +version = "0.1.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +dependencies = [ + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "tracing-core" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +dependencies = [ + "once_cell", +] + +[[package]] +name = "tracing-futures" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" +dependencies = [ + "pin-project", + "tracing", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "tungstenite" +version = "0.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" +dependencies = [ + "byteorder", + "bytes", + "data-encoding", + "http", + "httparse", + "log", + "rand", + "rustls", + "sha1", + "thiserror", + "url", + "utf-8", +] + +[[package]] +name = "typenum" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" + +[[package]] +name = "uint" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" +dependencies = [ + "byteorder", + "crunchy", + "hex", + "static_assertions", +] + +[[package]] +name = "unarray" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" + +[[package]] +name = "unicode-bidi" +version = "0.3.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "unicode-normalization" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-xid" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" + +[[package]] +name = "untrusted" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "uuid" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" +dependencies = [ + "getrandom", + "serde", +] + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.63", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.63", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" + +[[package]] +name = "web-sys" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki-roots" +version = "0.25.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" +dependencies = [ + "windows-sys 0.52.0", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ + "windows-targets 0.52.5", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.5", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" +dependencies = [ + "windows_aarch64_gnullvm 0.52.5", + "windows_aarch64_msvc 0.52.5", + "windows_i686_gnu 0.52.5", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.5", + "windows_x86_64_gnu 0.52.5", + "windows_x86_64_gnullvm 0.52.5", + "windows_x86_64_msvc 0.52.5", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" + +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + +[[package]] +name = "ws_stream_wasm" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7999f5f4217fe3818726b66257a4475f71e74ffd190776ad053fa159e50737f5" +dependencies = [ + "async_io_stream", + "futures", + "js-sys", + "log", + "pharos", + "rustc_version", + "send_wrapper 0.6.0", + "thiserror", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "yansi" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" + +[[package]] +name = "zeroize" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d" +dependencies = [ + "zeroize_derive", +] + +[[package]] +name = "zeroize_derive" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.63", +] + +[[package]] +name = "zip" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" +dependencies = [ + "aes", + "byteorder", + "bzip2", + "constant_time_eq", + "crc32fast", + "crossbeam-utils", + "flate2", + "hmac", + "pbkdf2 0.11.0", + "sha1", + "time", + "zstd", +] + +[[package]] +name = "zstd" +version = "0.11.2+zstd.1.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" +dependencies = [ + "zstd-safe", +] + +[[package]] +name = "zstd-safe" +version = "5.0.2+zstd.1.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" +dependencies = [ + "libc", + "zstd-sys", +] + +[[package]] +name = "zstd-sys" +version = "2.0.10+zstd.1.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa" +dependencies = [ + "cc", + "pkg-config", +] diff --git a/rust/Cargo.toml b/rust/Cargo.toml new file mode 100644 index 0000000..2925352 --- /dev/null +++ b/rust/Cargo.toml @@ -0,0 +1,51 @@ +[package] +name = "hyperlane-starknet" +version = "0.0.2" +authors = [ + "byeongsu-hong ", + "Eric ", + "Steve ", +] +edition = "2021" +license = "Apache-2.0" +repository = "https://github.com/astraly-labs/hyperlane-starknet" +homepage = "https://www.hyperlane.xyz/" +documentation = "https://docs.hyperlane.xyz/" +keywords = ["hyperlane", "starknet", "cairo"] + +[profile.test] +opt-level = 2 +overflow-checks = true + +[profile.release] +codegen-units = 1 +debug = false +debug-assertions = false +incremental = false +lto = true +opt-level = 3 +overflow-checks = true +panic = "abort" +rpath = false + +[lib] +crate-type = ["cdylib", "rlib"] + +[dependencies] +starknet = "0.10.0" + +[dev_dependencies] +starknet = "0.10.0" +ethers = "2.0.7" +serde = { version = "1.0.162", default-features = false, features = ["derive"] } +serde_json = "1.0.96" + +# utilities +thiserror = { version = "1.0.37" } +anyhow = { version = "1.0.71", features = ["backtrace"] } +eyre = { version = "0.6.8" } + +rstest = "0.18.2" + +[build-dependencies] +ethers = "2.0.7" diff --git a/rust/abis/FastHypERC20.json b/rust/abis/FastHypERC20.json new file mode 100644 index 0000000..dceb8ad --- /dev/null +++ b/rust/abis/FastHypERC20.json @@ -0,0 +1,858 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "FastHypERC20", + "sourceName": "contracts/FastHypERC20.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "uint8", + "name": "__decimals", + "type": "uint8" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint32", + "name": "domain", + "type": "uint32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "gas", + "type": "uint256" + } + ], + "name": "DestinationGasSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "interchainGasPaymaster", + "type": "address" + } + ], + "name": "InterchainGasPaymasterSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "module", + "type": "address" + } + ], + "name": "InterchainSecurityModuleSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "mailbox", + "type": "address" + } + ], + "name": "MailboxSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint32", + "name": "origin", + "type": "uint32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "recipient", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "ReceivedTransferRemote", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint32", + "name": "domain", + "type": "uint32" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "router", + "type": "bytes32" + } + ], + "name": "RemoteRouterEnrolled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint32", + "name": "destination", + "type": "uint32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "recipient", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SentTransferRemote", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "value", + "type": "uint256" + } + ], + "name": "Transfer", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "owner", + "type": "address" + }, + { + "internalType": "address", + "name": "spender", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "subtractedValue", + "type": "uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "", + "type": "uint32" + } + ], + "name": "destinationGas", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "domains", + "outputs": [ + { + "internalType": "uint32[]", + "name": "", + "type": "uint32[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_domain", + "type": "uint32" + }, + { + "internalType": "bytes32", + "name": "_router", + "type": "bytes32" + } + ], + "name": "enrollRemoteRouter", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32[]", + "name": "_domains", + "type": "uint32[]" + }, + { + "internalType": "bytes32[]", + "name": "_addresses", + "type": "bytes32[]" + } + ], + "name": "enrollRemoteRouters", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "fastTransferId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_destination", + "type": "uint32" + }, + { + "internalType": "bytes32", + "name": "_recipient", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "_amountOrId", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_fastFee", + "type": "uint256" + } + ], + "name": "fastTransferRemote", + "outputs": [ + { + "internalType": "bytes32", + "name": "messageId", + "type": "bytes32" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_fastFee", + "type": "uint256" + }, + { + "internalType": "uint32", + "name": "_origin", + "type": "uint32" + }, + { + "internalType": "uint256", + "name": "_fastTransferId", + "type": "uint256" + } + ], + "name": "fillFastTransfer", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_origin", + "type": "uint32" + }, + { + "internalType": "bytes32", + "name": "_sender", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "_message", + "type": "bytes" + } + ], + "name": "handle", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "spender", + "type": "address" + }, + { + "internalType": "uint256", + "name": "addedValue", + "type": "uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_mailbox", + "type": "address" + }, + { + "internalType": "address", + "name": "_interchainGasPaymaster", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_totalSupply", + "type": "uint256" + }, + { + "internalType": "string", + "name": "_name", + "type": "string" + }, + { + "internalType": "string", + "name": "_symbol", + "type": "string" + } + ], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "interchainGasPaymaster", + "outputs": [ + { + "internalType": "contract IInterchainGasPaymaster", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "interchainSecurityModule", + "outputs": [ + { + "internalType": "contract IInterchainSecurityModule", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "mailbox", + "outputs": [ + { + "internalType": "contract IMailbox", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_destinationDomain", + "type": "uint32" + } + ], + "name": "quoteGasPayment", + "outputs": [ + { + "internalType": "uint256", + "name": "_gasPayment", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_domain", + "type": "uint32" + } + ], + "name": "routers", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "uint32", + "name": "domain", + "type": "uint32" + }, + { + "internalType": "uint256", + "name": "gas", + "type": "uint256" + } + ], + "internalType": "struct GasRouter.GasRouterConfig[]", + "name": "gasConfigs", + "type": "tuple[]" + } + ], + "name": "setDestinationGas", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_interchainGasPaymaster", + "type": "address" + } + ], + "name": "setInterchainGasPaymaster", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_module", + "type": "address" + } + ], + "name": "setInterchainSecurityModule", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_mailbox", + "type": "address" + } + ], + "name": "setMailbox", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "from", + "type": "address" + }, + { + "internalType": "address", + "name": "to", + "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_destination", + "type": "uint32" + }, + { + "internalType": "bytes32", + "name": "_recipient", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "_amountOrId", + "type": "uint256" + } + ], + "name": "transferRemote", + "outputs": [ + { + "internalType": "bytes32", + "name": "messageId", + "type": "bytes32" + } + ], + "stateMutability": "payable", + "type": "function" + } + ], + "bytecode": "0x60a06040523480156200001157600080fd5b5060405162004ae238038062004ae2833981810160405281019062000037919062000091565b808060ff1660808160ff16815250505050620000c3565b600080fd5b600060ff82169050919050565b6200006b8162000053565b81146200007757600080fd5b50565b6000815190506200008b8162000060565b92915050565b600060208284031215620000aa57620000a96200004e565b5b6000620000ba848285016200007a565b91505092915050565b608051614a03620000df6000396000610a7c0152614a036000f3fe6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063d5438eae116100a0578063f1bd6f0a1161006f578063f1bd6f0a1461072c578063f2ed8c5314610755578063f2fde38b14610792578063f3c61d6b146107bb578063f5f09f2e146107e4576101ee565b8063d5438eae14610670578063dd62ed3e1461069b578063de523cf3146106d8578063e9198bf914610703576101ee565b8063a478333b116100dc578063a478333b146105b6578063a9059cbb146105e1578063b1bd64361461061e578063b49c53a714610647576101ee565b80638da5cb5b146104fa57806395d89b41146105255780639ab8367e14610550578063a457c2d714610579576101ee565b8063395093511161018557806370a082311161015457806370a0823114610439578063715018a614610476578063775313a11461048d57806381b4e8b4146104ca576101ee565b8063395093511461037d57806339bb4ad9146103ba578063440df4f4146103e557806356d5d47514610410576101ee565b80631b177491116101c15780631b177491146102af57806323b872dd146102d85780632ead72f614610315578063313ce56714610352576101ee565b806306fdde03146101f3578063095ea7b31461021e5780630e72cc061461025b57806318160ddd14610284575b600080fd5b3480156101ff57600080fd5b50610208610814565b6040516102159190612cb1565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612d7b565b6108a6565b6040516102529190612dd6565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612df1565b6108c9565b005b34801561029057600080fd5b506102996108dd565b6040516102a69190612e2d565b60405180910390f35b3480156102bb57600080fd5b506102d660048036038101906102d19190612e84565b6108e7565b005b3480156102e457600080fd5b506102ff60048036038101906102fa9190612eff565b610a20565b60405161030c9190612dd6565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612f52565b610a4f565b6040516103499190612f98565b60405180910390f35b34801561035e57600080fd5b50610367610a78565b6040516103749190612fcf565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612d7b565b610aa0565b6040516103b19190612dd6565b60405180910390f35b3480156103c657600080fd5b506103cf610ad7565b6040516103dc9190613049565b60405180910390f35b3480156103f157600080fd5b506103fa610afd565b6040516104079190613122565b60405180910390f35b34801561041c57600080fd5b50610437600480360381019061043291906131d5565b610b0e565b005b34801561044557600080fd5b50610460600480360381019061045b9190612df1565b610c19565b60405161046d9190612e2d565b60405180910390f35b34801561048257600080fd5b5061048b610c62565b005b34801561049957600080fd5b506104b460048036038101906104af9190612f52565b610c76565b6040516104c19190612e2d565b60405180910390f35b6104e460048036038101906104df9190613249565b610c8e565b6040516104f19190612f98565b60405180910390f35b34801561050657600080fd5b5061050f610ca5565b60405161051c91906132ab565b60405180910390f35b34801561053157600080fd5b5061053a610ccf565b6040516105479190612cb1565b60405180910390f35b34801561055c57600080fd5b50610577600480360381019061057291906133f6565b610d61565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612d7b565b610eba565b6040516105ad9190612dd6565b60405180910390f35b3480156105c257600080fd5b506105cb610f31565b6040516105d89190612e2d565b60405180910390f35b3480156105ed57600080fd5b5061060860048036038101906106039190612d7b565b610f37565b6040516106159190612dd6565b60405180910390f35b34801561062a57600080fd5b50610645600480360381019061064091906134ff565b610f5a565b005b34801561065357600080fd5b5061066e6004803603810190610669919061354c565b610fd9565b005b34801561067c57600080fd5b50610685610fef565b60405161069291906135ad565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd91906135c8565b611015565b6040516106cf9190612e2d565b60405180910390f35b3480156106e457600080fd5b506106ed61109c565b6040516106fa9190613629565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906136f0565b6110c2565b005b34801561073857600080fd5b50610753600480360381019061074e9190612df1565b61118b565b005b34801561076157600080fd5b5061077c60048036038101906107779190612f52565b61119f565b6040516107899190612e2d565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190612df1565b611265565b005b3480156107c757600080fd5b506107e260048036038101906107dd9190612df1565b6112e8565b005b6107fe60048036038101906107f99190613771565b6112fc565b60405161080b9190612f98565b60405180910390f35b60606036805461082390613807565b80601f016020809104026020016040519081016040528092919081815260200182805461084f90613807565b801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b5050505050905090565b6000806108b1611393565b90506108be81858561139b565b600191505092915050565b6108d1611564565b6108da816115e2565b50565b6000603554905090565b60006108f6838387878a6116e8565b9050600073ffffffffffffffffffffffffffffffffffffffff16610100600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613884565b60405180910390fd5b33610100600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a033385876109fe91906138d3565b611724565b610a18868587610a1391906138d3565b611732565b505050505050565b600080610a2b611393565b9050610a38858285611740565b610a438585856117cc565b60019150509392505050565b600080610a6c8363ffffffff1660ca611a4590919063ffffffff16565b91505080915050919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610aab611393565b9050610acc818585610abd8589611015565b610ac79190613907565b61139b565b600191505092915050565b609860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060610b0960ca611a6c565b905090565b609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613987565b60405180910390fd5b8383610baa8282611b35565b60405180608001604052806043815260200161498b6043913990610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb9190612cb1565b60405180910390fd5b50610c1186868686611b4a565b505050505050565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c6a611564565b610c746000611b5c565b565b60fe6020528060005260406000206000915090505481565b6000610c9c84848434611c22565b90509392505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060378054610cde90613807565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0a90613807565b8015610d575780601f10610d2c57610100808354040283529160200191610d57565b820191906000526020600020905b815481529060010190602001808311610d3a57829003601f168201915b5050505050905090565b60008060019054906101000a900460ff16159050808015610d925750600160008054906101000a900460ff1660ff16105b80610dbf5750610da130611c90565b158015610dbe5750600160008054906101000a900460ff1660ff16145b5b610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df590613a19565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610e3b576001600060016101000a81548160ff0219169083151502179055505b610e458686611cb3565b610e4f8383611d18565b610e593385611d75565b8015610eb25760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610ea99190613a74565b60405180910390a15b505050505050565b600080610ec5611393565b90506000610ed38286611015565b905083811015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90613b01565b60405180910390fd5b610f25828686840361139b565b60019250505092915050565b60ff5481565b600080610f42611393565b9050610f4f8185856117cc565b600191505092915050565b610f62611564565b60005b82829050811015610fd457610fc0838383818110610f8657610f85613b21565b5b9050604002016000016020810190610f9e9190612f52565b848484818110610fb157610fb0613b21565b5b90506040020160200135611ecc565b600181610fcd9190613907565b9050610f65565b505050565b610fe1611564565b610feb8282611f32565b5050565b609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110ca611564565b818190508484905014611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990613b9c565b60405180910390fd5b600084849050905060005b818110156111835761116f86868381811061113b5761113a613b21565b5b90506020020160208101906111509190612f52565b85858481811061116357611162613b21565b5b90506020020135611f32565b60018161117c9190613907565b905061111d565b505050505050565b611193611564565b61119c81611f90565b50565b6000609860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a69297938360fe60008663ffffffff1663ffffffff168152602001908152602001600020546040518363ffffffff1660e01b815260040161121d929190613bcb565b602060405180830381865afa15801561123a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125e9190613c09565b9050919050565b61126d611564565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613ca8565b60405180910390fd5b6112e581611b5c565b50565b6112f0611564565b6112f981612061565b50565b60008060ff5490506001816113119190613907565b60ff819055506000611330858560018561132b9190613907565b612132565b905061134887611341888885612169565b3433612198565b9250858763ffffffff167fd229aacb94204188fe8042965fa6b269c62dc5818b21238779ab64bdd17efeec876040516113819190612e2d565b60405180910390a35050949350505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613d3a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090613dcc565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115579190612e2d565b60405180910390a3505050565b61156c611393565b73ffffffffffffffffffffffffffffffffffffffff1661158a610ca5565b73ffffffffffffffffffffffffffffffffffffffff16146115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790613e38565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806116225750611621816121d0565b5b611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613ea4565b60405180910390fd5b80609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167ffec811ed4e60aebdaf7a79cad8a97196bf56e35362f039705598226d30c9d24860405160405180910390a250565b60008585858585604051602001611703959493929190613f63565b60405160208183030381529060405280519060200120905095945050505050565b61172e82826121f3565b5050565b61173c8282611d75565b5050565b600061174c8484611015565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117c657818110156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af9061400e565b60405180910390fd5b6117c5848484840361139b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361183b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611832906140a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190614132565b60405180910390fd5b6118b58383836123c2565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561193c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611933906141c4565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a2c9190612e2d565b60405180910390a3611a3f8484846123c7565b50505050565b600080611a618360001b856000016123cc90919063ffffffff16565b915091509250929050565b60606000611a798361241b565b9050805167ffffffffffffffff811115611a9657611a956132cb565b5b604051908082528060200260200182016040528015611ac45781602001602082028036833780820191505090505b50915060005b8151811015611b2e57818181518110611ae657611ae5613b21565b5b6020026020010151838281518110611b0157611b00613b21565b5b602002602001019063ffffffff16908163ffffffff16815250508080611b26906141e4565b915050611aca565b5050919050565b600081611b4184610a4f565b14905092915050565b611b56848484846124d8565b50505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611c2e84612563565b9050611c4686611c3f878785612169565b8533612198565b9150848663ffffffff167fd229aacb94204188fe8042965fa6b269c62dc5818b21238779ab64bdd17efeec86604051611c7f9190612e2d565b60405180910390a350949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf99061429e565b60405180910390fd5b611d0b81611f90565b611d1482612586565b5050565b600060019054906101000a900460ff16611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e9061429e565b60405180910390fd5b611d7182826125e9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb9061430a565b60405180910390fd5b611df0600083836123c2565b8060356000828254611e029190613907565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611eb49190612e2d565b60405180910390a3611ec8600083836123c7565b5050565b8060fe60008463ffffffff1663ffffffff168152602001908152602001600020819055508163ffffffff167f90563f253ecb04527a6a7ae1a8cbe2bdc6caefb39d5f7b06a973cf5e7f8035a482604051611f269190612e2d565b60405180910390a25050565b611f4e8263ffffffff168260ca61265c9092919063ffffffff16565b8163ffffffff167f97fd51fef1f80c854cbd0150c248e8b2ac4ecdc97cc05e742b5f61c9f4dc645882604051611f849190612f98565b60405180910390a25050565b80611f9a816121d0565b611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613ea4565b60405180910390fd5b81609860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167fb87f5a0bface22cde699143559fb99f990ae54eea236995fc54178af91af859f60405160405180910390a25050565b8061206b816121d0565b6120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a190613ea4565b60405180910390fd5b81609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f7a61e573722ff8b205c8962b59d37e7d30573f368965597a844a94872204ebd760405160405180910390a25050565b606061213e3385611724565b828260405160200161215192919061432a565b60405160208183030381529060405290509392505050565b6060838383604051602001612180939291906143bb565b60405160208183030381529060405290509392505050565b60006121c6858560fe60008963ffffffff1663ffffffff16815260200190815260200160002054868661267d565b9050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990614466565b60405180910390fd5b61226e826000836123c2565b6000603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec906144f8565b60405180910390fd5b818103603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603560008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123a99190612e2d565b60405180910390a36123bd836000846123c7565b505050565b505050565b505050565b60008060008460020160008581526020019081526020016000205490506000801b810361240b576123fd8585612728565b6000801b9250925050612414565b60018192509250505b9250929050565b6060600061242b83600001612748565b90508067ffffffffffffffff811115612447576124466132cb565b5b6040519080825280602002602001820160405280156124755781602001602082028036833780820191505090505b50915060005b818110156124d15761249c818560000160000161275d90919063ffffffff16565b60001c8382815181106124b2576124b1613b21565b5b60200260200101818152505080806124c9906141e4565b91505061247b565b5050919050565b60006124e48383612774565b905060006124f2848461279d565b905036600061250186866127c9565b9150915061251a612511856127ea565b848a85856127f7565b838863ffffffff167fba20947a325f450d232530e5f5fce293e7963499d5309a07cee84a269f2f15a6856040516125519190612e2d565b60405180910390a35050505050505050565b606061256f33836121f3565b604051806020016040528060008152509050919050565b600060019054906101000a900460ff166125d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cc9061429e565b60405180910390fd5b6125de81612061565b6125e661281a565b50565b600060019054906101000a900460ff16612638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262f9061429e565b60405180910390fd5b816036908161264791906146ba565b50806037908161265791906146ba565b505050565b6126778260001b82856000016128739092919063ffffffff16565b50505050565b600061268986866128ae565b9050609860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166311bf2c1884838988876040518663ffffffff1660e01b81526004016126ed949392919061478c565b6000604051808303818588803b15801561270657600080fd5b505af115801561271a573d6000803e3d6000fd5b505050505095945050505050565b6000612740828460000161296790919063ffffffff16565b905092915050565b60006127568260000161297e565b9050919050565b600061276c8360000183612993565b905092915050565b6000828260009060209261278a939291906147db565b906127959190614821565b905092915050565b600082826020906040926127b3939291906147db565b906127be9190614821565b60001c905092915050565b366000838360409080926127df939291906147db565b915091509250929050565b60008160001c9050919050565b600061280686868686866129be565b90506128128186611732565b505050505050565b600060019054906101000a900460ff16612869576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128609061429e565b60405180910390fd5b612871612a7c565b565b600081846002016000858152602001908152602001600020819055506128a58385600001612add90919063ffffffff16565b90509392505050565b6000806128ba84612af4565b9050609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fa31de018583866040518463ffffffff1660e01b815260040161291b939291906148ca565b6020604051808303816000875af115801561293a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061295e919061491d565b91505092915050565b60006129768360000183612b7d565b905092915050565b600061298c82600001612ba0565b9050919050565b60008260000182815481106129ab576129aa613b21565b5b9060005260206000200154905092915050565b60008083839050036129d257859050612a73565b60008084848101906129e4919061494a565b91509150600061010060006129fc89858c888f6116e8565b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612a6c57809350505050612a73565b8893505050505b95945050505050565b600060019054906101000a900460ff16612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac29061429e565b60405180910390fd5b612adb612ad6611393565b611b5c565b565b6000612aec8360000183612bb1565b905092915050565b6000806000612b138463ffffffff1660ca611a4590919063ffffffff16565b915091508160405180608001604052806043815260200161498b6043913990612b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b699190612cb1565b60405180910390fd5b508092505050919050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b6000612bbd8383612b7d565b612c16578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c1b565b600090505b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c5b578082015181840152602081019050612c40565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c8382612c21565b612c8d8185612c2c565b9350612c9d818560208601612c3d565b612ca681612c67565b840191505092915050565b60006020820190508181036000830152612ccb8184612c78565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d1282612ce7565b9050919050565b612d2281612d07565b8114612d2d57600080fd5b50565b600081359050612d3f81612d19565b92915050565b6000819050919050565b612d5881612d45565b8114612d6357600080fd5b50565b600081359050612d7581612d4f565b92915050565b60008060408385031215612d9257612d91612cdd565b5b6000612da085828601612d30565b9250506020612db185828601612d66565b9150509250929050565b60008115159050919050565b612dd081612dbb565b82525050565b6000602082019050612deb6000830184612dc7565b92915050565b600060208284031215612e0757612e06612cdd565b5b6000612e1584828501612d30565b91505092915050565b612e2781612d45565b82525050565b6000602082019050612e426000830184612e1e565b92915050565b600063ffffffff82169050919050565b612e6181612e48565b8114612e6c57600080fd5b50565b600081359050612e7e81612e58565b92915050565b600080600080600060a08688031215612ea057612e9f612cdd565b5b6000612eae88828901612d30565b9550506020612ebf88828901612d66565b9450506040612ed088828901612d66565b9350506060612ee188828901612e6f565b9250506080612ef288828901612d66565b9150509295509295909350565b600080600060608486031215612f1857612f17612cdd565b5b6000612f2686828701612d30565b9350506020612f3786828701612d30565b9250506040612f4886828701612d66565b9150509250925092565b600060208284031215612f6857612f67612cdd565b5b6000612f7684828501612e6f565b91505092915050565b6000819050919050565b612f9281612f7f565b82525050565b6000602082019050612fad6000830184612f89565b92915050565b600060ff82169050919050565b612fc981612fb3565b82525050565b6000602082019050612fe46000830184612fc0565b92915050565b6000819050919050565b600061300f61300a61300584612ce7565b612fea565b612ce7565b9050919050565b600061302182612ff4565b9050919050565b600061303382613016565b9050919050565b61304381613028565b82525050565b600060208201905061305e600083018461303a565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61309981612e48565b82525050565b60006130ab8383613090565b60208301905092915050565b6000602082019050919050565b60006130cf82613064565b6130d9818561306f565b93506130e483613080565b8060005b838110156131155781516130fc888261309f565b9750613107836130b7565b9250506001810190506130e8565b5085935050505092915050565b6000602082019050818103600083015261313c81846130c4565b905092915050565b61314d81612f7f565b811461315857600080fd5b50565b60008135905061316a81613144565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261319557613194613170565b5b8235905067ffffffffffffffff8111156131b2576131b1613175565b5b6020830191508360018202830111156131ce576131cd61317a565b5b9250929050565b600080600080606085870312156131ef576131ee612cdd565b5b60006131fd87828801612e6f565b945050602061320e8782880161315b565b935050604085013567ffffffffffffffff81111561322f5761322e612ce2565b5b61323b8782880161317f565b925092505092959194509250565b60008060006060848603121561326257613261612cdd565b5b600061327086828701612e6f565b93505060206132818682870161315b565b925050604061329286828701612d66565b9150509250925092565b6132a581612d07565b82525050565b60006020820190506132c0600083018461329c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61330382612c67565b810181811067ffffffffffffffff82111715613322576133216132cb565b5b80604052505050565b6000613335612cd3565b905061334182826132fa565b919050565b600067ffffffffffffffff821115613361576133606132cb565b5b61336a82612c67565b9050602081019050919050565b82818337600083830152505050565b600061339961339484613346565b61332b565b9050828152602081018484840111156133b5576133b46132c6565b5b6133c0848285613377565b509392505050565b600082601f8301126133dd576133dc613170565b5b81356133ed848260208601613386565b91505092915050565b600080600080600060a0868803121561341257613411612cdd565b5b600061342088828901612d30565b955050602061343188828901612d30565b945050604061344288828901612d66565b935050606086013567ffffffffffffffff81111561346357613462612ce2565b5b61346f888289016133c8565b925050608086013567ffffffffffffffff8111156134905761348f612ce2565b5b61349c888289016133c8565b9150509295509295909350565b60008083601f8401126134bf576134be613170565b5b8235905067ffffffffffffffff8111156134dc576134db613175565b5b6020830191508360408202830111156134f8576134f761317a565b5b9250929050565b6000806020838503121561351657613515612cdd565b5b600083013567ffffffffffffffff81111561353457613533612ce2565b5b613540858286016134a9565b92509250509250929050565b6000806040838503121561356357613562612cdd565b5b600061357185828601612e6f565b92505060206135828582860161315b565b9150509250929050565b600061359782613016565b9050919050565b6135a78161358c565b82525050565b60006020820190506135c2600083018461359e565b92915050565b600080604083850312156135df576135de612cdd565b5b60006135ed85828601612d30565b92505060206135fe85828601612d30565b9150509250929050565b600061361382613016565b9050919050565b61362381613608565b82525050565b600060208201905061363e600083018461361a565b92915050565b60008083601f84011261365a57613659613170565b5b8235905067ffffffffffffffff81111561367757613676613175565b5b6020830191508360208202830111156136935761369261317a565b5b9250929050565b60008083601f8401126136b0576136af613170565b5b8235905067ffffffffffffffff8111156136cd576136cc613175565b5b6020830191508360208202830111156136e9576136e861317a565b5b9250929050565b6000806000806040858703121561370a57613709612cdd565b5b600085013567ffffffffffffffff81111561372857613727612ce2565b5b61373487828801613644565b9450945050602085013567ffffffffffffffff81111561375757613756612ce2565b5b6137638782880161369a565b925092505092959194509250565b6000806000806080858703121561378b5761378a612cdd565b5b600061379987828801612e6f565b94505060206137aa8782880161315b565b93505060406137bb87828801612d66565b92505060606137cc87828801612d66565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061381f57607f821691505b602082108103613832576138316137d8565b5b50919050565b7f7265717565737420616c72656164792066696c6c656400000000000000000000600082015250565b600061386e601683612c2c565b915061387982613838565b602082019050919050565b6000602082019050818103600083015261389d81613861565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138de82612d45565b91506138e983612d45565b9250828203905081811115613901576139006138a4565b5b92915050565b600061391282612d45565b915061391d83612d45565b9250828201905080821115613935576139346138a4565b5b92915050565b7f216d61696c626f78000000000000000000000000000000000000000000000000600082015250565b6000613971600883612c2c565b915061397c8261393b565b602082019050919050565b600060208201905081810360008301526139a081613964565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613a03602e83612c2c565b9150613a0e826139a7565b604082019050919050565b60006020820190508181036000830152613a32816139f6565b9050919050565b6000819050919050565b6000613a5e613a59613a5484613a39565b612fea565b612fb3565b9050919050565b613a6e81613a43565b82525050565b6000602082019050613a896000830184613a65565b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613aeb602583612c2c565b9150613af682613a8f565b604082019050919050565b60006020820190508181036000830152613b1a81613ade565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f216c656e67746800000000000000000000000000000000000000000000000000600082015250565b6000613b86600783612c2c565b9150613b9182613b50565b602082019050919050565b60006020820190508181036000830152613bb581613b79565b9050919050565b613bc581612e48565b82525050565b6000604082019050613be06000830185613bbc565b613bed6020830184612e1e565b9392505050565b600081519050613c0381612d4f565b92915050565b600060208284031215613c1f57613c1e612cdd565b5b6000613c2d84828501613bf4565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c92602683612c2c565b9150613c9d82613c36565b604082019050919050565b60006020820190508181036000830152613cc181613c85565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d24602483612c2c565b9150613d2f82613cc8565b604082019050919050565b60006020820190508181036000830152613d5381613d17565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613db6602283612c2c565b9150613dc182613d5a565b604082019050919050565b60006020820190508181036000830152613de581613da9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e22602083612c2c565b9150613e2d82613dec565b602082019050919050565b60006020820190508181036000830152613e5181613e15565b9050919050565b7f21636f6e74726163740000000000000000000000000000000000000000000000600082015250565b6000613e8e600983612c2c565b9150613e9982613e58565b602082019050919050565b60006020820190508181036000830152613ebd81613e81565b9050919050565b60008160e01b9050919050565b6000613edc82613ec4565b9050919050565b613ef4613eef82612e48565b613ed1565b82525050565b6000819050919050565b613f15613f1082612d45565b613efa565b82525050565b60008160601b9050919050565b6000613f3382613f1b565b9050919050565b6000613f4582613f28565b9050919050565b613f5d613f5882612d07565b613f3a565b82525050565b6000613f6f8288613ee3565b600482019150613f7f8287613f04565b602082019150613f8f8286613f04565b602082019150613f9f8285613f04565b602082019150613faf8284613f4c565b6014820191508190509695505050505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ff8601d83612c2c565b915061400382613fc2565b602082019050919050565b6000602082019050818103600083015261402781613feb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061408a602583612c2c565b91506140958261402e565b604082019050919050565b600060208201905081810360008301526140b98161407d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061411c602383612c2c565b9150614127826140c0565b604082019050919050565b6000602082019050818103600083015261414b8161410f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006141ae602683612c2c565b91506141b982614152565b604082019050919050565b600060208201905081810360008301526141dd816141a1565b9050919050565b60006141ef82612d45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614221576142206138a4565b5b600182019050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000614288602b83612c2c565b91506142938261422c565b604082019050919050565b600060208201905081810360008301526142b78161427b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006142f4601f83612c2c565b91506142ff826142be565b602082019050919050565b60006020820190508181036000830152614323816142e7565b9050919050565b600060408201905061433f6000830185612e1e565b61434c6020830184612e1e565b9392505050565b6000819050919050565b61436e61436982612f7f565b614353565b82525050565b600081519050919050565b600081905092915050565b600061439582614374565b61439f818561437f565b93506143af818560208601612c3d565b80840191505092915050565b60006143c7828661435d565b6020820191506143d78285613f04565b6020820191506143e7828461438a565b9150819050949350505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614450602183612c2c565b915061445b826143f4565b604082019050919050565b6000602082019050818103600083015261447f81614443565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006144e2602283612c2c565b91506144ed82614486565b604082019050919050565b60006020820190508181036000830152614511816144d5565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261457a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261453d565b614584868361453d565b95508019841693508086168417925050509392505050565b60006145b76145b26145ad84612d45565b612fea565b612d45565b9050919050565b6000819050919050565b6145d18361459c565b6145e56145dd826145be565b84845461454a565b825550505050565b600090565b6145fa6145ed565b6146058184846145c8565b505050565b5b818110156146295761461e6000826145f2565b60018101905061460b565b5050565b601f82111561466e5761463f81614518565b6146488461452d565b81016020851015614657578190505b61466b6146638561452d565b83018261460a565b50505b505050565b600082821c905092915050565b600061469160001984600802614673565b1980831691505092915050565b60006146aa8383614680565b9150826002028217905092915050565b6146c382612c21565b67ffffffffffffffff8111156146dc576146db6132cb565b5b6146e68254613807565b6146f182828561462d565b600060209050601f8311600181146147245760008415614712578287015190505b61471c858261469e565b865550614784565b601f19841661473286614518565b60005b8281101561475a57848901518255600182019150602085019450602081019050614735565b868310156147775784890151614773601f891682614680565b8355505b6001600288020188555050505b505050505050565b60006080820190506147a16000830187612f89565b6147ae6020830186613bbc565b6147bb6040830185612e1e565b6147c8606083018461329c565b95945050505050565b600080fd5b600080fd5b600080858511156147ef576147ee6147d1565b5b83861115614800576147ff6147d6565b5b6001850283019150848603905094509492505050565b600082905092915050565b600061482d8383614816565b826148388135612f7f565b92506020821015614878576148737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8360200360080261453d565b831692505b505092915050565b600082825260208201905092915050565b600061489c82614374565b6148a68185614880565b93506148b6818560208601612c3d565b6148bf81612c67565b840191505092915050565b60006060820190506148df6000830186613bbc565b6148ec6020830185612f89565b81810360408301526148fe8184614891565b9050949350505050565b60008151905061491781613144565b92915050565b60006020828403121561493357614932612cdd565b5b600061494184828501614908565b91505092915050565b6000806040838503121561496157614960612cdd565b5b600061496f85828601612d66565b925050602061498085828601612d66565b915050925092905056fe4e6f20726f7574657220656e726f6c6c656420666f7220646f6d61696e2e2044696420796f7520737065636966792074686520726967687420646f6d61696e2049443fa2646970667358221220c14552771ae4c287924c40d77542afb6211048c2150985141d46033b488eefb664736f6c63430008100033", + "deployedBytecode": "0x6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063d5438eae116100a0578063f1bd6f0a1161006f578063f1bd6f0a1461072c578063f2ed8c5314610755578063f2fde38b14610792578063f3c61d6b146107bb578063f5f09f2e146107e4576101ee565b8063d5438eae14610670578063dd62ed3e1461069b578063de523cf3146106d8578063e9198bf914610703576101ee565b8063a478333b116100dc578063a478333b146105b6578063a9059cbb146105e1578063b1bd64361461061e578063b49c53a714610647576101ee565b80638da5cb5b146104fa57806395d89b41146105255780639ab8367e14610550578063a457c2d714610579576101ee565b8063395093511161018557806370a082311161015457806370a0823114610439578063715018a614610476578063775313a11461048d57806381b4e8b4146104ca576101ee565b8063395093511461037d57806339bb4ad9146103ba578063440df4f4146103e557806356d5d47514610410576101ee565b80631b177491116101c15780631b177491146102af57806323b872dd146102d85780632ead72f614610315578063313ce56714610352576101ee565b806306fdde03146101f3578063095ea7b31461021e5780630e72cc061461025b57806318160ddd14610284575b600080fd5b3480156101ff57600080fd5b50610208610814565b6040516102159190612cb1565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612d7b565b6108a6565b6040516102529190612dd6565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612df1565b6108c9565b005b34801561029057600080fd5b506102996108dd565b6040516102a69190612e2d565b60405180910390f35b3480156102bb57600080fd5b506102d660048036038101906102d19190612e84565b6108e7565b005b3480156102e457600080fd5b506102ff60048036038101906102fa9190612eff565b610a20565b60405161030c9190612dd6565b60405180910390f35b34801561032157600080fd5b5061033c60048036038101906103379190612f52565b610a4f565b6040516103499190612f98565b60405180910390f35b34801561035e57600080fd5b50610367610a78565b6040516103749190612fcf565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612d7b565b610aa0565b6040516103b19190612dd6565b60405180910390f35b3480156103c657600080fd5b506103cf610ad7565b6040516103dc9190613049565b60405180910390f35b3480156103f157600080fd5b506103fa610afd565b6040516104079190613122565b60405180910390f35b34801561041c57600080fd5b50610437600480360381019061043291906131d5565b610b0e565b005b34801561044557600080fd5b50610460600480360381019061045b9190612df1565b610c19565b60405161046d9190612e2d565b60405180910390f35b34801561048257600080fd5b5061048b610c62565b005b34801561049957600080fd5b506104b460048036038101906104af9190612f52565b610c76565b6040516104c19190612e2d565b60405180910390f35b6104e460048036038101906104df9190613249565b610c8e565b6040516104f19190612f98565b60405180910390f35b34801561050657600080fd5b5061050f610ca5565b60405161051c91906132ab565b60405180910390f35b34801561053157600080fd5b5061053a610ccf565b6040516105479190612cb1565b60405180910390f35b34801561055c57600080fd5b50610577600480360381019061057291906133f6565b610d61565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612d7b565b610eba565b6040516105ad9190612dd6565b60405180910390f35b3480156105c257600080fd5b506105cb610f31565b6040516105d89190612e2d565b60405180910390f35b3480156105ed57600080fd5b5061060860048036038101906106039190612d7b565b610f37565b6040516106159190612dd6565b60405180910390f35b34801561062a57600080fd5b50610645600480360381019061064091906134ff565b610f5a565b005b34801561065357600080fd5b5061066e6004803603810190610669919061354c565b610fd9565b005b34801561067c57600080fd5b50610685610fef565b60405161069291906135ad565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd91906135c8565b611015565b6040516106cf9190612e2d565b60405180910390f35b3480156106e457600080fd5b506106ed61109c565b6040516106fa9190613629565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906136f0565b6110c2565b005b34801561073857600080fd5b50610753600480360381019061074e9190612df1565b61118b565b005b34801561076157600080fd5b5061077c60048036038101906107779190612f52565b61119f565b6040516107899190612e2d565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190612df1565b611265565b005b3480156107c757600080fd5b506107e260048036038101906107dd9190612df1565b6112e8565b005b6107fe60048036038101906107f99190613771565b6112fc565b60405161080b9190612f98565b60405180910390f35b60606036805461082390613807565b80601f016020809104026020016040519081016040528092919081815260200182805461084f90613807565b801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b5050505050905090565b6000806108b1611393565b90506108be81858561139b565b600191505092915050565b6108d1611564565b6108da816115e2565b50565b6000603554905090565b60006108f6838387878a6116e8565b9050600073ffffffffffffffffffffffffffffffffffffffff16610100600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613884565b60405180910390fd5b33610100600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a033385876109fe91906138d3565b611724565b610a18868587610a1391906138d3565b611732565b505050505050565b600080610a2b611393565b9050610a38858285611740565b610a438585856117cc565b60019150509392505050565b600080610a6c8363ffffffff1660ca611a4590919063ffffffff16565b91505080915050919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610aab611393565b9050610acc818585610abd8589611015565b610ac79190613907565b61139b565b600191505092915050565b609860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060610b0960ca611a6c565b905090565b609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613987565b60405180910390fd5b8383610baa8282611b35565b60405180608001604052806043815260200161498b6043913990610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb9190612cb1565b60405180910390fd5b50610c1186868686611b4a565b505050505050565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c6a611564565b610c746000611b5c565b565b60fe6020528060005260406000206000915090505481565b6000610c9c84848434611c22565b90509392505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060378054610cde90613807565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0a90613807565b8015610d575780601f10610d2c57610100808354040283529160200191610d57565b820191906000526020600020905b815481529060010190602001808311610d3a57829003601f168201915b5050505050905090565b60008060019054906101000a900460ff16159050808015610d925750600160008054906101000a900460ff1660ff16105b80610dbf5750610da130611c90565b158015610dbe5750600160008054906101000a900460ff1660ff16145b5b610dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df590613a19565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610e3b576001600060016101000a81548160ff0219169083151502179055505b610e458686611cb3565b610e4f8383611d18565b610e593385611d75565b8015610eb25760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051610ea99190613a74565b60405180910390a15b505050505050565b600080610ec5611393565b90506000610ed38286611015565b905083811015610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f90613b01565b60405180910390fd5b610f25828686840361139b565b60019250505092915050565b60ff5481565b600080610f42611393565b9050610f4f8185856117cc565b600191505092915050565b610f62611564565b60005b82829050811015610fd457610fc0838383818110610f8657610f85613b21565b5b9050604002016000016020810190610f9e9190612f52565b848484818110610fb157610fb0613b21565b5b90506040020160200135611ecc565b600181610fcd9190613907565b9050610f65565b505050565b610fe1611564565b610feb8282611f32565b5050565b609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b609960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110ca611564565b818190508484905014611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990613b9c565b60405180910390fd5b600084849050905060005b818110156111835761116f86868381811061113b5761113a613b21565b5b90506020020160208101906111509190612f52565b85858481811061116357611162613b21565b5b90506020020135611f32565b60018161117c9190613907565b905061111d565b505050505050565b611193611564565b61119c81611f90565b50565b6000609860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a69297938360fe60008663ffffffff1663ffffffff168152602001908152602001600020546040518363ffffffff1660e01b815260040161121d929190613bcb565b602060405180830381865afa15801561123a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125e9190613c09565b9050919050565b61126d611564565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613ca8565b60405180910390fd5b6112e581611b5c565b50565b6112f0611564565b6112f981612061565b50565b60008060ff5490506001816113119190613907565b60ff819055506000611330858560018561132b9190613907565b612132565b905061134887611341888885612169565b3433612198565b9250858763ffffffff167fd229aacb94204188fe8042965fa6b269c62dc5818b21238779ab64bdd17efeec876040516113819190612e2d565b60405180910390a35050949350505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190613d3a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147090613dcc565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115579190612e2d565b60405180910390a3505050565b61156c611393565b73ffffffffffffffffffffffffffffffffffffffff1661158a610ca5565b73ffffffffffffffffffffffffffffffffffffffff16146115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790613e38565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806116225750611621816121d0565b5b611661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165890613ea4565b60405180910390fd5b80609960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167ffec811ed4e60aebdaf7a79cad8a97196bf56e35362f039705598226d30c9d24860405160405180910390a250565b60008585858585604051602001611703959493929190613f63565b60405160208183030381529060405280519060200120905095945050505050565b61172e82826121f3565b5050565b61173c8282611d75565b5050565b600061174c8484611015565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117c657818110156117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af9061400e565b60405180910390fd5b6117c5848484840361139b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361183b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611832906140a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190614132565b60405180910390fd5b6118b58383836123c2565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561193c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611933906141c4565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a2c9190612e2d565b60405180910390a3611a3f8484846123c7565b50505050565b600080611a618360001b856000016123cc90919063ffffffff16565b915091509250929050565b60606000611a798361241b565b9050805167ffffffffffffffff811115611a9657611a956132cb565b5b604051908082528060200260200182016040528015611ac45781602001602082028036833780820191505090505b50915060005b8151811015611b2e57818181518110611ae657611ae5613b21565b5b6020026020010151838281518110611b0157611b00613b21565b5b602002602001019063ffffffff16908163ffffffff16815250508080611b26906141e4565b915050611aca565b5050919050565b600081611b4184610a4f565b14905092915050565b611b56848484846124d8565b50505050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611c2e84612563565b9050611c4686611c3f878785612169565b8533612198565b9150848663ffffffff167fd229aacb94204188fe8042965fa6b269c62dc5818b21238779ab64bdd17efeec86604051611c7f9190612e2d565b60405180910390a350949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf99061429e565b60405180910390fd5b611d0b81611f90565b611d1482612586565b5050565b600060019054906101000a900460ff16611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e9061429e565b60405180910390fd5b611d7182826125e9565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb9061430a565b60405180910390fd5b611df0600083836123c2565b8060356000828254611e029190613907565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611eb49190612e2d565b60405180910390a3611ec8600083836123c7565b5050565b8060fe60008463ffffffff1663ffffffff168152602001908152602001600020819055508163ffffffff167f90563f253ecb04527a6a7ae1a8cbe2bdc6caefb39d5f7b06a973cf5e7f8035a482604051611f269190612e2d565b60405180910390a25050565b611f4e8263ffffffff168260ca61265c9092919063ffffffff16565b8163ffffffff167f97fd51fef1f80c854cbd0150c248e8b2ac4ecdc97cc05e742b5f61c9f4dc645882604051611f849190612f98565b60405180910390a25050565b80611f9a816121d0565b611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090613ea4565b60405180910390fd5b81609860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167fb87f5a0bface22cde699143559fb99f990ae54eea236995fc54178af91af859f60405160405180910390a25050565b8061206b816121d0565b6120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a190613ea4565b60405180910390fd5b81609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f7a61e573722ff8b205c8962b59d37e7d30573f368965597a844a94872204ebd760405160405180910390a25050565b606061213e3385611724565b828260405160200161215192919061432a565b60405160208183030381529060405290509392505050565b6060838383604051602001612180939291906143bb565b60405160208183030381529060405290509392505050565b60006121c6858560fe60008963ffffffff1663ffffffff16815260200190815260200160002054868661267d565b9050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225990614466565b60405180910390fd5b61226e826000836123c2565b6000603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec906144f8565b60405180910390fd5b818103603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603560008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123a99190612e2d565b60405180910390a36123bd836000846123c7565b505050565b505050565b505050565b60008060008460020160008581526020019081526020016000205490506000801b810361240b576123fd8585612728565b6000801b9250925050612414565b60018192509250505b9250929050565b6060600061242b83600001612748565b90508067ffffffffffffffff811115612447576124466132cb565b5b6040519080825280602002602001820160405280156124755781602001602082028036833780820191505090505b50915060005b818110156124d15761249c818560000160000161275d90919063ffffffff16565b60001c8382815181106124b2576124b1613b21565b5b60200260200101818152505080806124c9906141e4565b91505061247b565b5050919050565b60006124e48383612774565b905060006124f2848461279d565b905036600061250186866127c9565b9150915061251a612511856127ea565b848a85856127f7565b838863ffffffff167fba20947a325f450d232530e5f5fce293e7963499d5309a07cee84a269f2f15a6856040516125519190612e2d565b60405180910390a35050505050505050565b606061256f33836121f3565b604051806020016040528060008152509050919050565b600060019054906101000a900460ff166125d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cc9061429e565b60405180910390fd5b6125de81612061565b6125e661281a565b50565b600060019054906101000a900460ff16612638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262f9061429e565b60405180910390fd5b816036908161264791906146ba565b50806037908161265791906146ba565b505050565b6126778260001b82856000016128739092919063ffffffff16565b50505050565b600061268986866128ae565b9050609860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166311bf2c1884838988876040518663ffffffff1660e01b81526004016126ed949392919061478c565b6000604051808303818588803b15801561270657600080fd5b505af115801561271a573d6000803e3d6000fd5b505050505095945050505050565b6000612740828460000161296790919063ffffffff16565b905092915050565b60006127568260000161297e565b9050919050565b600061276c8360000183612993565b905092915050565b6000828260009060209261278a939291906147db565b906127959190614821565b905092915050565b600082826020906040926127b3939291906147db565b906127be9190614821565b60001c905092915050565b366000838360409080926127df939291906147db565b915091509250929050565b60008160001c9050919050565b600061280686868686866129be565b90506128128186611732565b505050505050565b600060019054906101000a900460ff16612869576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128609061429e565b60405180910390fd5b612871612a7c565b565b600081846002016000858152602001908152602001600020819055506128a58385600001612add90919063ffffffff16565b90509392505050565b6000806128ba84612af4565b9050609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fa31de018583866040518463ffffffff1660e01b815260040161291b939291906148ca565b6020604051808303816000875af115801561293a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061295e919061491d565b91505092915050565b60006129768360000183612b7d565b905092915050565b600061298c82600001612ba0565b9050919050565b60008260000182815481106129ab576129aa613b21565b5b9060005260206000200154905092915050565b60008083839050036129d257859050612a73565b60008084848101906129e4919061494a565b91509150600061010060006129fc89858c888f6116e8565b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612a6c57809350505050612a73565b8893505050505b95945050505050565b600060019054906101000a900460ff16612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac29061429e565b60405180910390fd5b612adb612ad6611393565b611b5c565b565b6000612aec8360000183612bb1565b905092915050565b6000806000612b138463ffffffff1660ca611a4590919063ffffffff16565b915091508160405180608001604052806043815260200161498b6043913990612b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b699190612cb1565b60405180910390fd5b508092505050919050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b6000612bbd8383612b7d565b612c16578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612c1b565b600090505b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c5b578082015181840152602081019050612c40565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c8382612c21565b612c8d8185612c2c565b9350612c9d818560208601612c3d565b612ca681612c67565b840191505092915050565b60006020820190508181036000830152612ccb8184612c78565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d1282612ce7565b9050919050565b612d2281612d07565b8114612d2d57600080fd5b50565b600081359050612d3f81612d19565b92915050565b6000819050919050565b612d5881612d45565b8114612d6357600080fd5b50565b600081359050612d7581612d4f565b92915050565b60008060408385031215612d9257612d91612cdd565b5b6000612da085828601612d30565b9250506020612db185828601612d66565b9150509250929050565b60008115159050919050565b612dd081612dbb565b82525050565b6000602082019050612deb6000830184612dc7565b92915050565b600060208284031215612e0757612e06612cdd565b5b6000612e1584828501612d30565b91505092915050565b612e2781612d45565b82525050565b6000602082019050612e426000830184612e1e565b92915050565b600063ffffffff82169050919050565b612e6181612e48565b8114612e6c57600080fd5b50565b600081359050612e7e81612e58565b92915050565b600080600080600060a08688031215612ea057612e9f612cdd565b5b6000612eae88828901612d30565b9550506020612ebf88828901612d66565b9450506040612ed088828901612d66565b9350506060612ee188828901612e6f565b9250506080612ef288828901612d66565b9150509295509295909350565b600080600060608486031215612f1857612f17612cdd565b5b6000612f2686828701612d30565b9350506020612f3786828701612d30565b9250506040612f4886828701612d66565b9150509250925092565b600060208284031215612f6857612f67612cdd565b5b6000612f7684828501612e6f565b91505092915050565b6000819050919050565b612f9281612f7f565b82525050565b6000602082019050612fad6000830184612f89565b92915050565b600060ff82169050919050565b612fc981612fb3565b82525050565b6000602082019050612fe46000830184612fc0565b92915050565b6000819050919050565b600061300f61300a61300584612ce7565b612fea565b612ce7565b9050919050565b600061302182612ff4565b9050919050565b600061303382613016565b9050919050565b61304381613028565b82525050565b600060208201905061305e600083018461303a565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61309981612e48565b82525050565b60006130ab8383613090565b60208301905092915050565b6000602082019050919050565b60006130cf82613064565b6130d9818561306f565b93506130e483613080565b8060005b838110156131155781516130fc888261309f565b9750613107836130b7565b9250506001810190506130e8565b5085935050505092915050565b6000602082019050818103600083015261313c81846130c4565b905092915050565b61314d81612f7f565b811461315857600080fd5b50565b60008135905061316a81613144565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261319557613194613170565b5b8235905067ffffffffffffffff8111156131b2576131b1613175565b5b6020830191508360018202830111156131ce576131cd61317a565b5b9250929050565b600080600080606085870312156131ef576131ee612cdd565b5b60006131fd87828801612e6f565b945050602061320e8782880161315b565b935050604085013567ffffffffffffffff81111561322f5761322e612ce2565b5b61323b8782880161317f565b925092505092959194509250565b60008060006060848603121561326257613261612cdd565b5b600061327086828701612e6f565b93505060206132818682870161315b565b925050604061329286828701612d66565b9150509250925092565b6132a581612d07565b82525050565b60006020820190506132c0600083018461329c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61330382612c67565b810181811067ffffffffffffffff82111715613322576133216132cb565b5b80604052505050565b6000613335612cd3565b905061334182826132fa565b919050565b600067ffffffffffffffff821115613361576133606132cb565b5b61336a82612c67565b9050602081019050919050565b82818337600083830152505050565b600061339961339484613346565b61332b565b9050828152602081018484840111156133b5576133b46132c6565b5b6133c0848285613377565b509392505050565b600082601f8301126133dd576133dc613170565b5b81356133ed848260208601613386565b91505092915050565b600080600080600060a0868803121561341257613411612cdd565b5b600061342088828901612d30565b955050602061343188828901612d30565b945050604061344288828901612d66565b935050606086013567ffffffffffffffff81111561346357613462612ce2565b5b61346f888289016133c8565b925050608086013567ffffffffffffffff8111156134905761348f612ce2565b5b61349c888289016133c8565b9150509295509295909350565b60008083601f8401126134bf576134be613170565b5b8235905067ffffffffffffffff8111156134dc576134db613175565b5b6020830191508360408202830111156134f8576134f761317a565b5b9250929050565b6000806020838503121561351657613515612cdd565b5b600083013567ffffffffffffffff81111561353457613533612ce2565b5b613540858286016134a9565b92509250509250929050565b6000806040838503121561356357613562612cdd565b5b600061357185828601612e6f565b92505060206135828582860161315b565b9150509250929050565b600061359782613016565b9050919050565b6135a78161358c565b82525050565b60006020820190506135c2600083018461359e565b92915050565b600080604083850312156135df576135de612cdd565b5b60006135ed85828601612d30565b92505060206135fe85828601612d30565b9150509250929050565b600061361382613016565b9050919050565b61362381613608565b82525050565b600060208201905061363e600083018461361a565b92915050565b60008083601f84011261365a57613659613170565b5b8235905067ffffffffffffffff81111561367757613676613175565b5b6020830191508360208202830111156136935761369261317a565b5b9250929050565b60008083601f8401126136b0576136af613170565b5b8235905067ffffffffffffffff8111156136cd576136cc613175565b5b6020830191508360208202830111156136e9576136e861317a565b5b9250929050565b6000806000806040858703121561370a57613709612cdd565b5b600085013567ffffffffffffffff81111561372857613727612ce2565b5b61373487828801613644565b9450945050602085013567ffffffffffffffff81111561375757613756612ce2565b5b6137638782880161369a565b925092505092959194509250565b6000806000806080858703121561378b5761378a612cdd565b5b600061379987828801612e6f565b94505060206137aa8782880161315b565b93505060406137bb87828801612d66565b92505060606137cc87828801612d66565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061381f57607f821691505b602082108103613832576138316137d8565b5b50919050565b7f7265717565737420616c72656164792066696c6c656400000000000000000000600082015250565b600061386e601683612c2c565b915061387982613838565b602082019050919050565b6000602082019050818103600083015261389d81613861565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138de82612d45565b91506138e983612d45565b9250828203905081811115613901576139006138a4565b5b92915050565b600061391282612d45565b915061391d83612d45565b9250828201905080821115613935576139346138a4565b5b92915050565b7f216d61696c626f78000000000000000000000000000000000000000000000000600082015250565b6000613971600883612c2c565b915061397c8261393b565b602082019050919050565b600060208201905081810360008301526139a081613964565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613a03602e83612c2c565b9150613a0e826139a7565b604082019050919050565b60006020820190508181036000830152613a32816139f6565b9050919050565b6000819050919050565b6000613a5e613a59613a5484613a39565b612fea565b612fb3565b9050919050565b613a6e81613a43565b82525050565b6000602082019050613a896000830184613a65565b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613aeb602583612c2c565b9150613af682613a8f565b604082019050919050565b60006020820190508181036000830152613b1a81613ade565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f216c656e67746800000000000000000000000000000000000000000000000000600082015250565b6000613b86600783612c2c565b9150613b9182613b50565b602082019050919050565b60006020820190508181036000830152613bb581613b79565b9050919050565b613bc581612e48565b82525050565b6000604082019050613be06000830185613bbc565b613bed6020830184612e1e565b9392505050565b600081519050613c0381612d4f565b92915050565b600060208284031215613c1f57613c1e612cdd565b5b6000613c2d84828501613bf4565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c92602683612c2c565b9150613c9d82613c36565b604082019050919050565b60006020820190508181036000830152613cc181613c85565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613d24602483612c2c565b9150613d2f82613cc8565b604082019050919050565b60006020820190508181036000830152613d5381613d17565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613db6602283612c2c565b9150613dc182613d5a565b604082019050919050565b60006020820190508181036000830152613de581613da9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e22602083612c2c565b9150613e2d82613dec565b602082019050919050565b60006020820190508181036000830152613e5181613e15565b9050919050565b7f21636f6e74726163740000000000000000000000000000000000000000000000600082015250565b6000613e8e600983612c2c565b9150613e9982613e58565b602082019050919050565b60006020820190508181036000830152613ebd81613e81565b9050919050565b60008160e01b9050919050565b6000613edc82613ec4565b9050919050565b613ef4613eef82612e48565b613ed1565b82525050565b6000819050919050565b613f15613f1082612d45565b613efa565b82525050565b60008160601b9050919050565b6000613f3382613f1b565b9050919050565b6000613f4582613f28565b9050919050565b613f5d613f5882612d07565b613f3a565b82525050565b6000613f6f8288613ee3565b600482019150613f7f8287613f04565b602082019150613f8f8286613f04565b602082019150613f9f8285613f04565b602082019150613faf8284613f4c565b6014820191508190509695505050505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ff8601d83612c2c565b915061400382613fc2565b602082019050919050565b6000602082019050818103600083015261402781613feb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061408a602583612c2c565b91506140958261402e565b604082019050919050565b600060208201905081810360008301526140b98161407d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061411c602383612c2c565b9150614127826140c0565b604082019050919050565b6000602082019050818103600083015261414b8161410f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006141ae602683612c2c565b91506141b982614152565b604082019050919050565b600060208201905081810360008301526141dd816141a1565b9050919050565b60006141ef82612d45565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614221576142206138a4565b5b600182019050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000614288602b83612c2c565b91506142938261422c565b604082019050919050565b600060208201905081810360008301526142b78161427b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006142f4601f83612c2c565b91506142ff826142be565b602082019050919050565b60006020820190508181036000830152614323816142e7565b9050919050565b600060408201905061433f6000830185612e1e565b61434c6020830184612e1e565b9392505050565b6000819050919050565b61436e61436982612f7f565b614353565b82525050565b600081519050919050565b600081905092915050565b600061439582614374565b61439f818561437f565b93506143af818560208601612c3d565b80840191505092915050565b60006143c7828661435d565b6020820191506143d78285613f04565b6020820191506143e7828461438a565b9150819050949350505050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614450602183612c2c565b915061445b826143f4565b604082019050919050565b6000602082019050818103600083015261447f81614443565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006144e2602283612c2c565b91506144ed82614486565b604082019050919050565b60006020820190508181036000830152614511816144d5565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261457a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261453d565b614584868361453d565b95508019841693508086168417925050509392505050565b60006145b76145b26145ad84612d45565b612fea565b612d45565b9050919050565b6000819050919050565b6145d18361459c565b6145e56145dd826145be565b84845461454a565b825550505050565b600090565b6145fa6145ed565b6146058184846145c8565b505050565b5b818110156146295761461e6000826145f2565b60018101905061460b565b5050565b601f82111561466e5761463f81614518565b6146488461452d565b81016020851015614657578190505b61466b6146638561452d565b83018261460a565b50505b505050565b600082821c905092915050565b600061469160001984600802614673565b1980831691505092915050565b60006146aa8383614680565b9150826002028217905092915050565b6146c382612c21565b67ffffffffffffffff8111156146dc576146db6132cb565b5b6146e68254613807565b6146f182828561462d565b600060209050601f8311600181146147245760008415614712578287015190505b61471c858261469e565b865550614784565b601f19841661473286614518565b60005b8281101561475a57848901518255600182019150602085019450602081019050614735565b868310156147775784890151614773601f891682614680565b8355505b6001600288020188555050505b505050505050565b60006080820190506147a16000830187612f89565b6147ae6020830186613bbc565b6147bb6040830185612e1e565b6147c8606083018461329c565b95945050505050565b600080fd5b600080fd5b600080858511156147ef576147ee6147d1565b5b83861115614800576147ff6147d6565b5b6001850283019150848603905094509492505050565b600082905092915050565b600061482d8383614816565b826148388135612f7f565b92506020821015614878576148737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8360200360080261453d565b831692505b505092915050565b600082825260208201905092915050565b600061489c82614374565b6148a68185614880565b93506148b6818560208601612c3d565b6148bf81612c67565b840191505092915050565b60006060820190506148df6000830186613bbc565b6148ec6020830185612f89565b81810360408301526148fe8184614891565b9050949350505050565b60008151905061491781613144565b92915050565b60006020828403121561493357614932612cdd565b5b600061494184828501614908565b91505092915050565b6000806040838503121561496157614960612cdd565b5b600061496f85828601612d66565b925050602061498085828601612d66565b915050925092905056fe4e6f20726f7574657220656e726f6c6c656420666f7220646f6d61696e2e2044696420796f7520737065636966792074686520726967687420646f6d61696e2049443fa2646970667358221220c14552771ae4c287924c40d77542afb6211048c2150985141d46033b488eefb664736f6c63430008100033", + "linkReferences": {}, + "deployedLinkReferences": {} +} \ No newline at end of file diff --git a/rust/abis/FastHypERC20Collateral.json b/rust/abis/FastHypERC20Collateral.json new file mode 100644 index 0000000..519bc24 --- /dev/null +++ b/rust/abis/FastHypERC20Collateral.json @@ -0,0 +1,605 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "FastHypERC20Collateral", + "sourceName": "contracts/FastHypERC20Collateral.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "address", + "name": "erc20", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint32", + "name": "domain", + "type": "uint32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "gas", + "type": "uint256" + } + ], + "name": "DestinationGasSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "interchainGasPaymaster", + "type": "address" + } + ], + "name": "InterchainGasPaymasterSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "module", + "type": "address" + } + ], + "name": "InterchainSecurityModuleSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "mailbox", + "type": "address" + } + ], + "name": "MailboxSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint32", + "name": "origin", + "type": "uint32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "recipient", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "ReceivedTransferRemote", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint32", + "name": "domain", + "type": "uint32" + }, + { + "indexed": false, + "internalType": "bytes32", + "name": "router", + "type": "bytes32" + } + ], + "name": "RemoteRouterEnrolled", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint32", + "name": "destination", + "type": "uint32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "recipient", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + } + ], + "name": "SentTransferRemote", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_account", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "", + "type": "uint32" + } + ], + "name": "destinationGas", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "domains", + "outputs": [ + { + "internalType": "uint32[]", + "name": "", + "type": "uint32[]" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_domain", + "type": "uint32" + }, + { + "internalType": "bytes32", + "name": "_router", + "type": "bytes32" + } + ], + "name": "enrollRemoteRouter", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32[]", + "name": "_domains", + "type": "uint32[]" + }, + { + "internalType": "bytes32[]", + "name": "_addresses", + "type": "bytes32[]" + } + ], + "name": "enrollRemoteRouters", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "fastTransferId", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_destination", + "type": "uint32" + }, + { + "internalType": "bytes32", + "name": "_recipient", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "_amountOrId", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_fastFee", + "type": "uint256" + } + ], + "name": "fastTransferRemote", + "outputs": [ + { + "internalType": "bytes32", + "name": "messageId", + "type": "bytes32" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_recipient", + "type": "address" + }, + { + "internalType": "uint256", + "name": "_amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "_fastFee", + "type": "uint256" + }, + { + "internalType": "uint32", + "name": "_origin", + "type": "uint32" + }, + { + "internalType": "uint256", + "name": "_fastTransferId", + "type": "uint256" + } + ], + "name": "fillFastTransfer", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_origin", + "type": "uint32" + }, + { + "internalType": "bytes32", + "name": "_sender", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "_message", + "type": "bytes" + } + ], + "name": "handle", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_mailbox", + "type": "address" + }, + { + "internalType": "address", + "name": "_interchainGasPaymaster", + "type": "address" + } + ], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "interchainGasPaymaster", + "outputs": [ + { + "internalType": "contract IInterchainGasPaymaster", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "interchainSecurityModule", + "outputs": [ + { + "internalType": "contract IInterchainSecurityModule", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "mailbox", + "outputs": [ + { + "internalType": "contract IMailbox", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_destinationDomain", + "type": "uint32" + } + ], + "name": "quoteGasPayment", + "outputs": [ + { + "internalType": "uint256", + "name": "_gasPayment", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_domain", + "type": "uint32" + } + ], + "name": "routers", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "components": [ + { + "internalType": "uint32", + "name": "domain", + "type": "uint32" + }, + { + "internalType": "uint256", + "name": "gas", + "type": "uint256" + } + ], + "internalType": "struct GasRouter.GasRouterConfig[]", + "name": "gasConfigs", + "type": "tuple[]" + } + ], + "name": "setDestinationGas", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_interchainGasPaymaster", + "type": "address" + } + ], + "name": "setInterchainGasPaymaster", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_module", + "type": "address" + } + ], + "name": "setInterchainSecurityModule", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_mailbox", + "type": "address" + } + ], + "name": "setMailbox", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_destination", + "type": "uint32" + }, + { + "internalType": "bytes32", + "name": "_recipient", + "type": "bytes32" + }, + { + "internalType": "uint256", + "name": "_amountOrId", + "type": "uint256" + } + ], + "name": "transferRemote", + "outputs": [ + { + "internalType": "bytes32", + "name": "messageId", + "type": "bytes32" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [], + "name": "wrappedToken", + "outputs": [ + { + "internalType": "contract IERC20", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x60a06040523480156200001157600080fd5b506040516200395e3803806200395e8339818101604052810190620000379190620000de565b808073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050505062000110565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620000a68262000079565b9050919050565b620000b88162000099565b8114620000c457600080fd5b50565b600081519050620000d881620000ad565b92915050565b600060208284031215620000f757620000f662000074565b5b60006200010784828501620000c7565b91505092915050565b608051613816620001486000396000818161097e01528181610a8c0152818161102e0152818161107e01526119db01526138166000f3fe60806040526004361061014b5760003560e01c8063996c6cc3116100b6578063e9198bf91161006f578063e9198bf914610471578063f1bd6f0a1461049a578063f2ed8c53146104c3578063f2fde38b14610500578063f3c61d6b14610529578063f5f09f2e146105525761014b565b8063996c6cc314610373578063a478333b1461039e578063b1bd6436146103c9578063b49c53a7146103f2578063d5438eae1461041b578063de523cf3146104465761014b565b806356d5d4751161010857806356d5d4751461025e57806370a0823114610287578063715018a6146102c4578063775313a1146102db57806381b4e8b4146103185780638da5cb5b146103485761014b565b80630e72cc06146101505780631b177491146101795780632ead72f6146101a257806339bb4ad9146101df578063440df4f41461020a578063485cc95514610235575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906122d4565b610582565b005b34801561018557600080fd5b506101a0600480360381019061019b9190612373565b610596565b005b3480156101ae57600080fd5b506101c960048036038101906101c491906123ee565b6106cd565b6040516101d69190612434565b60405180910390f35b3480156101eb57600080fd5b506101f46106f6565b60405161020191906124ae565b60405180910390f35b34801561021657600080fd5b5061021f61071c565b60405161022c9190612587565b60405180910390f35b34801561024157600080fd5b5061025c600480360381019061025791906125a9565b61072d565b005b34801561026a57600080fd5b506102856004803603810190610280919061267a565b61086f565b005b34801561029357600080fd5b506102ae60048036038101906102a991906122d4565b61097a565b6040516102bb91906126fd565b60405180910390f35b3480156102d057600080fd5b506102d9610a1d565b005b3480156102e757600080fd5b5061030260048036038101906102fd91906123ee565b610a31565b60405161030f91906126fd565b60405180910390f35b610332600480360381019061032d9190612718565b610a49565b60405161033f9190612434565b60405180910390f35b34801561035457600080fd5b5061035d610a60565b60405161036a919061277a565b60405180910390f35b34801561037f57600080fd5b50610388610a8a565b60405161039591906127b6565b60405180910390f35b3480156103aa57600080fd5b506103b3610aae565b6040516103c091906126fd565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612827565b610ab4565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612874565b610b33565b005b34801561042757600080fd5b50610430610b49565b60405161043d91906128d5565b60405180910390f35b34801561045257600080fd5b5061045b610b6f565b6040516104689190612911565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906129d8565b610b95565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906122d4565b610c5e565b005b3480156104cf57600080fd5b506104ea60048036038101906104e591906123ee565b610c72565b6040516104f791906126fd565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906122d4565b610d38565b005b34801561053557600080fd5b50610550600480360381019061054b91906122d4565b610dbb565b005b61056c60048036038101906105679190612a59565b610dcf565b6040516105799190612434565b60405180910390f35b61058a610e66565b61059381610ee4565b50565b60006105a5838387878a610fea565b9050600073ffffffffffffffffffffffffffffffffffffffff1660ce600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064090612b1d565b60405180910390fd5b3360ce600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106b03385876106ab9190612b6c565b611026565b6106c58685876106c09190612b6c565b611077565b505050505050565b6000806106ea8363ffffffff1660986110c690919063ffffffff16565b91505080915050919050565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061072860986110ed565b905090565b60008060019054906101000a900460ff1615905080801561075e5750600160008054906101000a900460ff1660ff16105b8061078b575061076d306111b6565b15801561078a5750600160008054906101000a900460ff1660ff16145b5b6107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190612c12565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610807576001600060016101000a81548160ff0219169083151502179055505b61081183836111d9565b801561086a5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516108619190612c7a565b60405180910390a15b505050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f690612ce1565b60405180910390fd5b838361090b828261123e565b60405180608001604052806043815260200161379e6043913990610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c9190612d80565b60405180910390fd5b5061097286868686611253565b505050505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016109d5919061277a565b602060405180830381865afa1580156109f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a169190612db7565b9050919050565b610a25610e66565b610a2f6000611265565b565b60cc6020528060005260406000206000915090505481565b6000610a578484843461132b565b90509392505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60cd5481565b610abc610e66565b60005b82829050811015610b2e57610b1a838383818110610ae057610adf612de4565b5b9050604002016000016020810190610af891906123ee565b848484818110610b0b57610b0a612de4565b5b90506040020160200135611399565b600181610b279190612e13565b9050610abf565b505050565b610b3b610e66565b610b4582826113ff565b5050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b9d610e66565b818190508484905014610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90612e93565b60405180910390fd5b600084849050905060005b81811015610c5657610c42868683818110610c0e57610c0d612de4565b5b9050602002016020810190610c2391906123ee565b858584818110610c3657610c35612de4565b5b905060200201356113ff565b600181610c4f9190612e13565b9050610bf0565b505050505050565b610c66610e66565b610c6f8161145d565b50565b6000606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a69297938360cc60008663ffffffff1663ffffffff168152602001908152602001600020546040518363ffffffff1660e01b8152600401610cf0929190612ec2565b602060405180830381865afa158015610d0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d319190612db7565b9050919050565b610d40610e66565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690612f5d565b60405180910390fd5b610db881611265565b50565b610dc3610e66565b610dcc8161152e565b50565b60008060cd549050600181610de49190612e13565b60cd819055506000610e038585600185610dfe9190612e13565b6115ff565b9050610e1b87610e14888885611636565b3433611665565b9250858763ffffffff167fd229aacb94204188fe8042965fa6b269c62dc5818b21238779ab64bdd17efeec87604051610e5491906126fd565b60405180910390a35050949350505050565b610e6e61169d565b73ffffffffffffffffffffffffffffffffffffffff16610e8c610a60565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990612fc9565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480610f245750610f23816116a5565b5b610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613035565b60405180910390fd5b80606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167ffec811ed4e60aebdaf7a79cad8a97196bf56e35362f039705598226d30c9d24860405160405180910390a250565b600085858585856040516020016110059594939291906130f4565b60405160208183030381529060405280519060200120905095945050505050565b6110738230837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116c8909392919063ffffffff16565b5050565b6110c282827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166117519092919063ffffffff16565b5050565b6000806110e28360001b856000016117d790919063ffffffff16565b915091509250929050565b606060006110fa83611826565b9050805167ffffffffffffffff81111561111757611116613153565b5b6040519080825280602002602001820160405280156111455781602001602082028036833780820191505090505b50915060005b81518110156111af5781818151811061116757611166612de4565b5b602002602001015183828151811061118257611181612de4565b5b602002602001019063ffffffff16908163ffffffff168152505080806111a790613182565b91505061114b565b5050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f9061323c565b60405180910390fd5b6112318161145d565b61123a826118e3565b5050565b60008161124a846106cd565b14905092915050565b61125f84848484611946565b50505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611337846119d1565b905061134f86611348878785611636565b8533611665565b9150848663ffffffff167fd229aacb94204188fe8042965fa6b269c62dc5818b21238779ab64bdd17efeec8660405161138891906126fd565b60405180910390a350949350505050565b8060cc60008463ffffffff1663ffffffff168152602001908152602001600020819055508163ffffffff167f90563f253ecb04527a6a7ae1a8cbe2bdc6caefb39d5f7b06a973cf5e7f8035a4826040516113f391906126fd565b60405180910390a25050565b61141b8263ffffffff16826098611a379092919063ffffffff16565b8163ffffffff167f97fd51fef1f80c854cbd0150c248e8b2ac4ecdc97cc05e742b5f61c9f4dc6458826040516114519190612434565b60405180910390a25050565b80611467816116a5565b6114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613035565b60405180910390fd5b81606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167fb87f5a0bface22cde699143559fb99f990ae54eea236995fc54178af91af859f60405160405180910390a25050565b80611538816116a5565b611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613035565b60405180910390fd5b81606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f7a61e573722ff8b205c8962b59d37e7d30573f368965597a844a94872204ebd760405160405180910390a25050565b606061160b3385611026565b828260405160200161161e92919061325c565b60405160208183030381529060405290509392505050565b606083838360405160200161164d939291906132ed565b60405160208183030381529060405290509392505050565b6000611693858560cc60008963ffffffff1663ffffffff168152602001908152602001600020548686611a58565b9050949350505050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61174b846323b872dd60e01b8585856040516024016116e993929190613326565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611b03565b50505050565b6117d28363a9059cbb60e01b848460405160240161177092919061335d565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611b03565b505050565b60008060008460020160008581526020019081526020016000205490506000801b8103611816576118088585611bca565b6000801b925092505061181f565b60018192509250505b9250929050565b6060600061183683600001611bea565b90508067ffffffffffffffff81111561185257611851613153565b5b6040519080825280602002602001820160405280156118805781602001602082028036833780820191505090505b50915060005b818110156118dc576118a78185600001600001611bff90919063ffffffff16565b60001c8382815181106118bd576118bc612de4565b5b60200260200101818152505080806118d490613182565b915050611886565b5050919050565b600060019054906101000a900460ff16611932576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119299061323c565b60405180910390fd5b61193b8161152e565b611943611c16565b50565b60006119528383611c6f565b905060006119608484611c98565b905036600061196f8686611cc4565b9150915061198861197f85611ce5565b848a8585611cf2565b838863ffffffff167fba20947a325f450d232530e5f5fce293e7963499d5309a07cee84a269f2f15a6856040516119bf91906126fd565b60405180910390a35050505050505050565b6060611a203330847f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116c8909392919063ffffffff16565b604051806020016040528060008152509050919050565b611a528260001b8285600001611d159092919063ffffffff16565b50505050565b6000611a648686611d50565b9050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166311bf2c1884838988876040518663ffffffff1660e01b8152600401611ac89493929190613386565b6000604051808303818588803b158015611ae157600080fd5b505af1158015611af5573d6000803e3d6000fd5b505050505095945050505050565b6000611b65826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611e099092919063ffffffff16565b9050600081511115611bc55780806020019051810190611b859190613403565b611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb906134a2565b60405180910390fd5b5b505050565b6000611be28284600001611e2190919063ffffffff16565b905092915050565b6000611bf882600001611e38565b9050919050565b6000611c0e8360000183611e4d565b905092915050565b600060019054906101000a900460ff16611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c9061323c565b60405180910390fd5b611c6d611e78565b565b60008282600090602092611c85939291906134cc565b90611c90919061351f565b905092915050565b60008282602090604092611cae939291906134cc565b90611cb9919061351f565b60001c905092915050565b36600083836040908092611cda939291906134cc565b915091509250929050565b60008160001c9050919050565b6000611d018686868686611ed9565b9050611d0d8186611077565b505050505050565b60008184600201600085815260200190815260200160002081905550611d478385600001611f9690919063ffffffff16565b90509392505050565b600080611d5c84611fad565b9050606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fa31de018583866040518463ffffffff1660e01b8152600401611dbd939291906135c8565b6020604051808303816000875af1158015611ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e00919061361b565b91505092915050565b6060611e188484600085612036565b90509392505050565b6000611e308360000183612103565b905092915050565b6000611e4682600001612126565b9050919050565b6000826000018281548110611e6557611e64612de4565b5b9060005260206000200154905092915050565b600060019054906101000a900460ff16611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe9061323c565b60405180910390fd5b611ed7611ed261169d565b611265565b565b6000808383905003611eed57859050611f8d565b6000808484810190611eff9190613648565b91509150600060ce6000611f1689858c888f610fea565b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f8657809350505050611f8d565b8893505050505b95945050505050565b6000611fa58360000183612137565b905092915050565b6000806000611fcc8463ffffffff1660986110c690919063ffffffff16565b915091508160405180608001604052806043815260200161379e604391399061202b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120229190612d80565b60405180910390fd5b508092505050919050565b60608247101561207b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612072906136fa565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516120a4919061371a565b60006040518083038185875af1925050503d80600081146120e1576040519150601f19603f3d011682016040523d82523d6000602084013e6120e6565b606091505b50915091506120f7878383876121a7565b92505050949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b60006121438383612103565b61219c5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506121a1565b600090505b92915050565b60608315612209576000835103612201576121c1856116a5565b612200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f79061377d565b60405180910390fd5b5b829050612214565b612213838361221c565b5b949350505050565b60008251111561222f5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122639190612d80565b60405180910390fd5b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122a182612276565b9050919050565b6122b181612296565b81146122bc57600080fd5b50565b6000813590506122ce816122a8565b92915050565b6000602082840312156122ea576122e961226c565b5b60006122f8848285016122bf565b91505092915050565b6000819050919050565b61231481612301565b811461231f57600080fd5b50565b6000813590506123318161230b565b92915050565b600063ffffffff82169050919050565b61235081612337565b811461235b57600080fd5b50565b60008135905061236d81612347565b92915050565b600080600080600060a0868803121561238f5761238e61226c565b5b600061239d888289016122bf565b95505060206123ae88828901612322565b94505060406123bf88828901612322565b93505060606123d08882890161235e565b92505060806123e188828901612322565b9150509295509295909350565b6000602082840312156124045761240361226c565b5b60006124128482850161235e565b91505092915050565b6000819050919050565b61242e8161241b565b82525050565b60006020820190506124496000830184612425565b92915050565b6000819050919050565b600061247461246f61246a84612276565b61244f565b612276565b9050919050565b600061248682612459565b9050919050565b60006124988261247b565b9050919050565b6124a88161248d565b82525050565b60006020820190506124c3600083018461249f565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6124fe81612337565b82525050565b600061251083836124f5565b60208301905092915050565b6000602082019050919050565b6000612534826124c9565b61253e81856124d4565b9350612549836124e5565b8060005b8381101561257a5781516125618882612504565b975061256c8361251c565b92505060018101905061254d565b5085935050505092915050565b600060208201905081810360008301526125a18184612529565b905092915050565b600080604083850312156125c0576125bf61226c565b5b60006125ce858286016122bf565b92505060206125df858286016122bf565b9150509250929050565b6125f28161241b565b81146125fd57600080fd5b50565b60008135905061260f816125e9565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261263a57612639612615565b5b8235905067ffffffffffffffff8111156126575761265661261a565b5b6020830191508360018202830111156126735761267261261f565b5b9250929050565b600080600080606085870312156126945761269361226c565b5b60006126a28782880161235e565b94505060206126b387828801612600565b935050604085013567ffffffffffffffff8111156126d4576126d3612271565b5b6126e087828801612624565b925092505092959194509250565b6126f781612301565b82525050565b600060208201905061271260008301846126ee565b92915050565b6000806000606084860312156127315761273061226c565b5b600061273f8682870161235e565b935050602061275086828701612600565b925050604061276186828701612322565b9150509250925092565b61277481612296565b82525050565b600060208201905061278f600083018461276b565b92915050565b60006127a08261247b565b9050919050565b6127b081612795565b82525050565b60006020820190506127cb60008301846127a7565b92915050565b60008083601f8401126127e7576127e6612615565b5b8235905067ffffffffffffffff8111156128045761280361261a565b5b6020830191508360408202830111156128205761281f61261f565b5b9250929050565b6000806020838503121561283e5761283d61226c565b5b600083013567ffffffffffffffff81111561285c5761285b612271565b5b612868858286016127d1565b92509250509250929050565b6000806040838503121561288b5761288a61226c565b5b60006128998582860161235e565b92505060206128aa85828601612600565b9150509250929050565b60006128bf8261247b565b9050919050565b6128cf816128b4565b82525050565b60006020820190506128ea60008301846128c6565b92915050565b60006128fb8261247b565b9050919050565b61290b816128f0565b82525050565b60006020820190506129266000830184612902565b92915050565b60008083601f84011261294257612941612615565b5b8235905067ffffffffffffffff81111561295f5761295e61261a565b5b60208301915083602082028301111561297b5761297a61261f565b5b9250929050565b60008083601f84011261299857612997612615565b5b8235905067ffffffffffffffff8111156129b5576129b461261a565b5b6020830191508360208202830111156129d1576129d061261f565b5b9250929050565b600080600080604085870312156129f2576129f161226c565b5b600085013567ffffffffffffffff811115612a1057612a0f612271565b5b612a1c8782880161292c565b9450945050602085013567ffffffffffffffff811115612a3f57612a3e612271565b5b612a4b87828801612982565b925092505092959194509250565b60008060008060808587031215612a7357612a7261226c565b5b6000612a818782880161235e565b9450506020612a9287828801612600565b9350506040612aa387828801612322565b9250506060612ab487828801612322565b91505092959194509250565b600082825260208201905092915050565b7f7265717565737420616c72656164792066696c6c656400000000000000000000600082015250565b6000612b07601683612ac0565b9150612b1282612ad1565b602082019050919050565b60006020820190508181036000830152612b3681612afa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b7782612301565b9150612b8283612301565b9250828203905081811115612b9a57612b99612b3d565b5b92915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000612bfc602e83612ac0565b9150612c0782612ba0565b604082019050919050565b60006020820190508181036000830152612c2b81612bef565b9050919050565b6000819050919050565b600060ff82169050919050565b6000612c64612c5f612c5a84612c32565b61244f565b612c3c565b9050919050565b612c7481612c49565b82525050565b6000602082019050612c8f6000830184612c6b565b92915050565b7f216d61696c626f78000000000000000000000000000000000000000000000000600082015250565b6000612ccb600883612ac0565b9150612cd682612c95565b602082019050919050565b60006020820190508181036000830152612cfa81612cbe565b9050919050565b600081519050919050565b60005b83811015612d2a578082015181840152602081019050612d0f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d5282612d01565b612d5c8185612ac0565b9350612d6c818560208601612d0c565b612d7581612d36565b840191505092915050565b60006020820190508181036000830152612d9a8184612d47565b905092915050565b600081519050612db18161230b565b92915050565b600060208284031215612dcd57612dcc61226c565b5b6000612ddb84828501612da2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612e1e82612301565b9150612e2983612301565b9250828201905080821115612e4157612e40612b3d565b5b92915050565b7f216c656e67746800000000000000000000000000000000000000000000000000600082015250565b6000612e7d600783612ac0565b9150612e8882612e47565b602082019050919050565b60006020820190508181036000830152612eac81612e70565b9050919050565b612ebc81612337565b82525050565b6000604082019050612ed76000830185612eb3565b612ee460208301846126ee565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f47602683612ac0565b9150612f5282612eeb565b604082019050919050565b60006020820190508181036000830152612f7681612f3a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fb3602083612ac0565b9150612fbe82612f7d565b602082019050919050565b60006020820190508181036000830152612fe281612fa6565b9050919050565b7f21636f6e74726163740000000000000000000000000000000000000000000000600082015250565b600061301f600983612ac0565b915061302a82612fe9565b602082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b60008160e01b9050919050565b600061306d82613055565b9050919050565b61308561308082612337565b613062565b82525050565b6000819050919050565b6130a66130a182612301565b61308b565b82525050565b60008160601b9050919050565b60006130c4826130ac565b9050919050565b60006130d6826130b9565b9050919050565b6130ee6130e982612296565b6130cb565b82525050565b60006131008288613074565b6004820191506131108287613095565b6020820191506131208286613095565b6020820191506131308285613095565b60208201915061314082846130dd565b6014820191508190509695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600061318d82612301565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131bf576131be612b3d565b5b600182019050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613226602b83612ac0565b9150613231826131ca565b604082019050919050565b6000602082019050818103600083015261325581613219565b9050919050565b600060408201905061327160008301856126ee565b61327e60208301846126ee565b9392505050565b6000819050919050565b6132a061329b8261241b565b613285565b82525050565b600081519050919050565b600081905092915050565b60006132c7826132a6565b6132d181856132b1565b93506132e1818560208601612d0c565b80840191505092915050565b60006132f9828661328f565b6020820191506133098285613095565b60208201915061331982846132bc565b9150819050949350505050565b600060608201905061333b600083018661276b565b613348602083018561276b565b61335560408301846126ee565b949350505050565b6000604082019050613372600083018561276b565b61337f60208301846126ee565b9392505050565b600060808201905061339b6000830187612425565b6133a86020830186612eb3565b6133b560408301856126ee565b6133c2606083018461276b565b95945050505050565b60008115159050919050565b6133e0816133cb565b81146133eb57600080fd5b50565b6000815190506133fd816133d7565b92915050565b6000602082840312156134195761341861226c565b5b6000613427848285016133ee565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b600061348c602a83612ac0565b915061349782613430565b604082019050919050565b600060208201905081810360008301526134bb8161347f565b9050919050565b600080fd5b600080fd5b600080858511156134e0576134df6134c2565b5b838611156134f1576134f06134c7565b5b6001850283019150848603905094509492505050565b600082905092915050565b600082821b905092915050565b600061352b8383613507565b82613536813561241b565b92506020821015613576576135717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802613512565b831692505b505092915050565b600082825260208201905092915050565b600061359a826132a6565b6135a4818561357e565b93506135b4818560208601612d0c565b6135bd81612d36565b840191505092915050565b60006060820190506135dd6000830186612eb3565b6135ea6020830185612425565b81810360408301526135fc818461358f565b9050949350505050565b600081519050613615816125e9565b92915050565b6000602082840312156136315761363061226c565b5b600061363f84828501613606565b91505092915050565b6000806040838503121561365f5761365e61226c565b5b600061366d85828601612322565b925050602061367e85828601612322565b9150509250929050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006136e4602683612ac0565b91506136ef82613688565b604082019050919050565b60006020820190508181036000830152613713816136d7565b9050919050565b600061372682846132bc565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000613767601d83612ac0565b915061377282613731565b602082019050919050565b600060208201905081810360008301526137968161375a565b905091905056fe4e6f20726f7574657220656e726f6c6c656420666f7220646f6d61696e2e2044696420796f7520737065636966792074686520726967687420646f6d61696e2049443fa264697066735822122048e10fbf91a17d3effb0a6bf13995a021d36b0f7daf36b98abbac58bd43f7a9964736f6c63430008100033", + "deployedBytecode": "0x60806040526004361061014b5760003560e01c8063996c6cc3116100b6578063e9198bf91161006f578063e9198bf914610471578063f1bd6f0a1461049a578063f2ed8c53146104c3578063f2fde38b14610500578063f3c61d6b14610529578063f5f09f2e146105525761014b565b8063996c6cc314610373578063a478333b1461039e578063b1bd6436146103c9578063b49c53a7146103f2578063d5438eae1461041b578063de523cf3146104465761014b565b806356d5d4751161010857806356d5d4751461025e57806370a0823114610287578063715018a6146102c4578063775313a1146102db57806381b4e8b4146103185780638da5cb5b146103485761014b565b80630e72cc06146101505780631b177491146101795780632ead72f6146101a257806339bb4ad9146101df578063440df4f41461020a578063485cc95514610235575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906122d4565b610582565b005b34801561018557600080fd5b506101a0600480360381019061019b9190612373565b610596565b005b3480156101ae57600080fd5b506101c960048036038101906101c491906123ee565b6106cd565b6040516101d69190612434565b60405180910390f35b3480156101eb57600080fd5b506101f46106f6565b60405161020191906124ae565b60405180910390f35b34801561021657600080fd5b5061021f61071c565b60405161022c9190612587565b60405180910390f35b34801561024157600080fd5b5061025c600480360381019061025791906125a9565b61072d565b005b34801561026a57600080fd5b506102856004803603810190610280919061267a565b61086f565b005b34801561029357600080fd5b506102ae60048036038101906102a991906122d4565b61097a565b6040516102bb91906126fd565b60405180910390f35b3480156102d057600080fd5b506102d9610a1d565b005b3480156102e757600080fd5b5061030260048036038101906102fd91906123ee565b610a31565b60405161030f91906126fd565b60405180910390f35b610332600480360381019061032d9190612718565b610a49565b60405161033f9190612434565b60405180910390f35b34801561035457600080fd5b5061035d610a60565b60405161036a919061277a565b60405180910390f35b34801561037f57600080fd5b50610388610a8a565b60405161039591906127b6565b60405180910390f35b3480156103aa57600080fd5b506103b3610aae565b6040516103c091906126fd565b60405180910390f35b3480156103d557600080fd5b506103f060048036038101906103eb9190612827565b610ab4565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612874565b610b33565b005b34801561042757600080fd5b50610430610b49565b60405161043d91906128d5565b60405180910390f35b34801561045257600080fd5b5061045b610b6f565b6040516104689190612911565b60405180910390f35b34801561047d57600080fd5b50610498600480360381019061049391906129d8565b610b95565b005b3480156104a657600080fd5b506104c160048036038101906104bc91906122d4565b610c5e565b005b3480156104cf57600080fd5b506104ea60048036038101906104e591906123ee565b610c72565b6040516104f791906126fd565b60405180910390f35b34801561050c57600080fd5b50610527600480360381019061052291906122d4565b610d38565b005b34801561053557600080fd5b50610550600480360381019061054b91906122d4565b610dbb565b005b61056c60048036038101906105679190612a59565b610dcf565b6040516105799190612434565b60405180910390f35b61058a610e66565b61059381610ee4565b50565b60006105a5838387878a610fea565b9050600073ffffffffffffffffffffffffffffffffffffffff1660ce600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064090612b1d565b60405180910390fd5b3360ce600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106b03385876106ab9190612b6c565b611026565b6106c58685876106c09190612b6c565b611077565b505050505050565b6000806106ea8363ffffffff1660986110c690919063ffffffff16565b91505080915050919050565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606061072860986110ed565b905090565b60008060019054906101000a900460ff1615905080801561075e5750600160008054906101000a900460ff1660ff16105b8061078b575061076d306111b6565b15801561078a5750600160008054906101000a900460ff1660ff16145b5b6107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190612c12565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610807576001600060016101000a81548160ff0219169083151502179055505b61081183836111d9565b801561086a5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516108619190612c7a565b60405180910390a15b505050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f690612ce1565b60405180910390fd5b838361090b828261123e565b60405180608001604052806043815260200161379e6043913990610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c9190612d80565b60405180910390fd5b5061097286868686611253565b505050505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016109d5919061277a565b602060405180830381865afa1580156109f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a169190612db7565b9050919050565b610a25610e66565b610a2f6000611265565b565b60cc6020528060005260406000206000915090505481565b6000610a578484843461132b565b90509392505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60cd5481565b610abc610e66565b60005b82829050811015610b2e57610b1a838383818110610ae057610adf612de4565b5b9050604002016000016020810190610af891906123ee565b848484818110610b0b57610b0a612de4565b5b90506040020160200135611399565b600181610b279190612e13565b9050610abf565b505050565b610b3b610e66565b610b4582826113ff565b5050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b9d610e66565b818190508484905014610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90612e93565b60405180910390fd5b600084849050905060005b81811015610c5657610c42868683818110610c0e57610c0d612de4565b5b9050602002016020810190610c2391906123ee565b858584818110610c3657610c35612de4565b5b905060200201356113ff565b600181610c4f9190612e13565b9050610bf0565b505050505050565b610c66610e66565b610c6f8161145d565b50565b6000606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a69297938360cc60008663ffffffff1663ffffffff168152602001908152602001600020546040518363ffffffff1660e01b8152600401610cf0929190612ec2565b602060405180830381865afa158015610d0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d319190612db7565b9050919050565b610d40610e66565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690612f5d565b60405180910390fd5b610db881611265565b50565b610dc3610e66565b610dcc8161152e565b50565b60008060cd549050600181610de49190612e13565b60cd819055506000610e038585600185610dfe9190612e13565b6115ff565b9050610e1b87610e14888885611636565b3433611665565b9250858763ffffffff167fd229aacb94204188fe8042965fa6b269c62dc5818b21238779ab64bdd17efeec87604051610e5491906126fd565b60405180910390a35050949350505050565b610e6e61169d565b73ffffffffffffffffffffffffffffffffffffffff16610e8c610a60565b73ffffffffffffffffffffffffffffffffffffffff1614610ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed990612fc9565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480610f245750610f23816116a5565b5b610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613035565b60405180910390fd5b80606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167ffec811ed4e60aebdaf7a79cad8a97196bf56e35362f039705598226d30c9d24860405160405180910390a250565b600085858585856040516020016110059594939291906130f4565b60405160208183030381529060405280519060200120905095945050505050565b6110738230837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116c8909392919063ffffffff16565b5050565b6110c282827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166117519092919063ffffffff16565b5050565b6000806110e28360001b856000016117d790919063ffffffff16565b915091509250929050565b606060006110fa83611826565b9050805167ffffffffffffffff81111561111757611116613153565b5b6040519080825280602002602001820160405280156111455781602001602082028036833780820191505090505b50915060005b81518110156111af5781818151811061116757611166612de4565b5b602002602001015183828151811061118257611181612de4565b5b602002602001019063ffffffff16908163ffffffff168152505080806111a790613182565b91505061114b565b5050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff16611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f9061323c565b60405180910390fd5b6112318161145d565b61123a826118e3565b5050565b60008161124a846106cd565b14905092915050565b61125f84848484611946565b50505050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611337846119d1565b905061134f86611348878785611636565b8533611665565b9150848663ffffffff167fd229aacb94204188fe8042965fa6b269c62dc5818b21238779ab64bdd17efeec8660405161138891906126fd565b60405180910390a350949350505050565b8060cc60008463ffffffff1663ffffffff168152602001908152602001600020819055508163ffffffff167f90563f253ecb04527a6a7ae1a8cbe2bdc6caefb39d5f7b06a973cf5e7f8035a4826040516113f391906126fd565b60405180910390a25050565b61141b8263ffffffff16826098611a379092919063ffffffff16565b8163ffffffff167f97fd51fef1f80c854cbd0150c248e8b2ac4ecdc97cc05e742b5f61c9f4dc6458826040516114519190612434565b60405180910390a25050565b80611467816116a5565b6114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613035565b60405180910390fd5b81606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167fb87f5a0bface22cde699143559fb99f990ae54eea236995fc54178af91af859f60405160405180910390a25050565b80611538816116a5565b611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90613035565b60405180910390fd5b81606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167f7a61e573722ff8b205c8962b59d37e7d30573f368965597a844a94872204ebd760405160405180910390a25050565b606061160b3385611026565b828260405160200161161e92919061325c565b60405160208183030381529060405290509392505050565b606083838360405160200161164d939291906132ed565b60405160208183030381529060405290509392505050565b6000611693858560cc60008963ffffffff1663ffffffff168152602001908152602001600020548686611a58565b9050949350505050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61174b846323b872dd60e01b8585856040516024016116e993929190613326565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611b03565b50505050565b6117d28363a9059cbb60e01b848460405160240161177092919061335d565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611b03565b505050565b60008060008460020160008581526020019081526020016000205490506000801b8103611816576118088585611bca565b6000801b925092505061181f565b60018192509250505b9250929050565b6060600061183683600001611bea565b90508067ffffffffffffffff81111561185257611851613153565b5b6040519080825280602002602001820160405280156118805781602001602082028036833780820191505090505b50915060005b818110156118dc576118a78185600001600001611bff90919063ffffffff16565b60001c8382815181106118bd576118bc612de4565b5b60200260200101818152505080806118d490613182565b915050611886565b5050919050565b600060019054906101000a900460ff16611932576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119299061323c565b60405180910390fd5b61193b8161152e565b611943611c16565b50565b60006119528383611c6f565b905060006119608484611c98565b905036600061196f8686611cc4565b9150915061198861197f85611ce5565b848a8585611cf2565b838863ffffffff167fba20947a325f450d232530e5f5fce293e7963499d5309a07cee84a269f2f15a6856040516119bf91906126fd565b60405180910390a35050505050505050565b6060611a203330847f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166116c8909392919063ffffffff16565b604051806020016040528060008152509050919050565b611a528260001b8285600001611d159092919063ffffffff16565b50505050565b6000611a648686611d50565b9050606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166311bf2c1884838988876040518663ffffffff1660e01b8152600401611ac89493929190613386565b6000604051808303818588803b158015611ae157600080fd5b505af1158015611af5573d6000803e3d6000fd5b505050505095945050505050565b6000611b65826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611e099092919063ffffffff16565b9050600081511115611bc55780806020019051810190611b859190613403565b611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb906134a2565b60405180910390fd5b5b505050565b6000611be28284600001611e2190919063ffffffff16565b905092915050565b6000611bf882600001611e38565b9050919050565b6000611c0e8360000183611e4d565b905092915050565b600060019054906101000a900460ff16611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c9061323c565b60405180910390fd5b611c6d611e78565b565b60008282600090602092611c85939291906134cc565b90611c90919061351f565b905092915050565b60008282602090604092611cae939291906134cc565b90611cb9919061351f565b60001c905092915050565b36600083836040908092611cda939291906134cc565b915091509250929050565b60008160001c9050919050565b6000611d018686868686611ed9565b9050611d0d8186611077565b505050505050565b60008184600201600085815260200190815260200160002081905550611d478385600001611f9690919063ffffffff16565b90509392505050565b600080611d5c84611fad565b9050606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fa31de018583866040518463ffffffff1660e01b8152600401611dbd939291906135c8565b6020604051808303816000875af1158015611ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e00919061361b565b91505092915050565b6060611e188484600085612036565b90509392505050565b6000611e308360000183612103565b905092915050565b6000611e4682600001612126565b9050919050565b6000826000018281548110611e6557611e64612de4565b5b9060005260206000200154905092915050565b600060019054906101000a900460ff16611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe9061323c565b60405180910390fd5b611ed7611ed261169d565b611265565b565b6000808383905003611eed57859050611f8d565b6000808484810190611eff9190613648565b91509150600060ce6000611f1689858c888f610fea565b815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f8657809350505050611f8d565b8893505050505b95945050505050565b6000611fa58360000183612137565b905092915050565b6000806000611fcc8463ffffffff1660986110c690919063ffffffff16565b915091508160405180608001604052806043815260200161379e604391399061202b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120229190612d80565b60405180910390fd5b508092505050919050565b60608247101561207b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612072906136fa565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516120a4919061371a565b60006040518083038185875af1925050503d80600081146120e1576040519150601f19603f3d011682016040523d82523d6000602084013e6120e6565b606091505b50915091506120f7878383876121a7565b92505050949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b60006121438383612103565b61219c5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506121a1565b600090505b92915050565b60608315612209576000835103612201576121c1856116a5565b612200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f79061377d565b60405180910390fd5b5b829050612214565b612213838361221c565b5b949350505050565b60008251111561222f5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122639190612d80565b60405180910390fd5b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122a182612276565b9050919050565b6122b181612296565b81146122bc57600080fd5b50565b6000813590506122ce816122a8565b92915050565b6000602082840312156122ea576122e961226c565b5b60006122f8848285016122bf565b91505092915050565b6000819050919050565b61231481612301565b811461231f57600080fd5b50565b6000813590506123318161230b565b92915050565b600063ffffffff82169050919050565b61235081612337565b811461235b57600080fd5b50565b60008135905061236d81612347565b92915050565b600080600080600060a0868803121561238f5761238e61226c565b5b600061239d888289016122bf565b95505060206123ae88828901612322565b94505060406123bf88828901612322565b93505060606123d08882890161235e565b92505060806123e188828901612322565b9150509295509295909350565b6000602082840312156124045761240361226c565b5b60006124128482850161235e565b91505092915050565b6000819050919050565b61242e8161241b565b82525050565b60006020820190506124496000830184612425565b92915050565b6000819050919050565b600061247461246f61246a84612276565b61244f565b612276565b9050919050565b600061248682612459565b9050919050565b60006124988261247b565b9050919050565b6124a88161248d565b82525050565b60006020820190506124c3600083018461249f565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6124fe81612337565b82525050565b600061251083836124f5565b60208301905092915050565b6000602082019050919050565b6000612534826124c9565b61253e81856124d4565b9350612549836124e5565b8060005b8381101561257a5781516125618882612504565b975061256c8361251c565b92505060018101905061254d565b5085935050505092915050565b600060208201905081810360008301526125a18184612529565b905092915050565b600080604083850312156125c0576125bf61226c565b5b60006125ce858286016122bf565b92505060206125df858286016122bf565b9150509250929050565b6125f28161241b565b81146125fd57600080fd5b50565b60008135905061260f816125e9565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261263a57612639612615565b5b8235905067ffffffffffffffff8111156126575761265661261a565b5b6020830191508360018202830111156126735761267261261f565b5b9250929050565b600080600080606085870312156126945761269361226c565b5b60006126a28782880161235e565b94505060206126b387828801612600565b935050604085013567ffffffffffffffff8111156126d4576126d3612271565b5b6126e087828801612624565b925092505092959194509250565b6126f781612301565b82525050565b600060208201905061271260008301846126ee565b92915050565b6000806000606084860312156127315761273061226c565b5b600061273f8682870161235e565b935050602061275086828701612600565b925050604061276186828701612322565b9150509250925092565b61277481612296565b82525050565b600060208201905061278f600083018461276b565b92915050565b60006127a08261247b565b9050919050565b6127b081612795565b82525050565b60006020820190506127cb60008301846127a7565b92915050565b60008083601f8401126127e7576127e6612615565b5b8235905067ffffffffffffffff8111156128045761280361261a565b5b6020830191508360408202830111156128205761281f61261f565b5b9250929050565b6000806020838503121561283e5761283d61226c565b5b600083013567ffffffffffffffff81111561285c5761285b612271565b5b612868858286016127d1565b92509250509250929050565b6000806040838503121561288b5761288a61226c565b5b60006128998582860161235e565b92505060206128aa85828601612600565b9150509250929050565b60006128bf8261247b565b9050919050565b6128cf816128b4565b82525050565b60006020820190506128ea60008301846128c6565b92915050565b60006128fb8261247b565b9050919050565b61290b816128f0565b82525050565b60006020820190506129266000830184612902565b92915050565b60008083601f84011261294257612941612615565b5b8235905067ffffffffffffffff81111561295f5761295e61261a565b5b60208301915083602082028301111561297b5761297a61261f565b5b9250929050565b60008083601f84011261299857612997612615565b5b8235905067ffffffffffffffff8111156129b5576129b461261a565b5b6020830191508360208202830111156129d1576129d061261f565b5b9250929050565b600080600080604085870312156129f2576129f161226c565b5b600085013567ffffffffffffffff811115612a1057612a0f612271565b5b612a1c8782880161292c565b9450945050602085013567ffffffffffffffff811115612a3f57612a3e612271565b5b612a4b87828801612982565b925092505092959194509250565b60008060008060808587031215612a7357612a7261226c565b5b6000612a818782880161235e565b9450506020612a9287828801612600565b9350506040612aa387828801612322565b9250506060612ab487828801612322565b91505092959194509250565b600082825260208201905092915050565b7f7265717565737420616c72656164792066696c6c656400000000000000000000600082015250565b6000612b07601683612ac0565b9150612b1282612ad1565b602082019050919050565b60006020820190508181036000830152612b3681612afa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b7782612301565b9150612b8283612301565b9250828203905081811115612b9a57612b99612b3d565b5b92915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000612bfc602e83612ac0565b9150612c0782612ba0565b604082019050919050565b60006020820190508181036000830152612c2b81612bef565b9050919050565b6000819050919050565b600060ff82169050919050565b6000612c64612c5f612c5a84612c32565b61244f565b612c3c565b9050919050565b612c7481612c49565b82525050565b6000602082019050612c8f6000830184612c6b565b92915050565b7f216d61696c626f78000000000000000000000000000000000000000000000000600082015250565b6000612ccb600883612ac0565b9150612cd682612c95565b602082019050919050565b60006020820190508181036000830152612cfa81612cbe565b9050919050565b600081519050919050565b60005b83811015612d2a578082015181840152602081019050612d0f565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d5282612d01565b612d5c8185612ac0565b9350612d6c818560208601612d0c565b612d7581612d36565b840191505092915050565b60006020820190508181036000830152612d9a8184612d47565b905092915050565b600081519050612db18161230b565b92915050565b600060208284031215612dcd57612dcc61226c565b5b6000612ddb84828501612da2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612e1e82612301565b9150612e2983612301565b9250828201905080821115612e4157612e40612b3d565b5b92915050565b7f216c656e67746800000000000000000000000000000000000000000000000000600082015250565b6000612e7d600783612ac0565b9150612e8882612e47565b602082019050919050565b60006020820190508181036000830152612eac81612e70565b9050919050565b612ebc81612337565b82525050565b6000604082019050612ed76000830185612eb3565b612ee460208301846126ee565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f47602683612ac0565b9150612f5282612eeb565b604082019050919050565b60006020820190508181036000830152612f7681612f3a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fb3602083612ac0565b9150612fbe82612f7d565b602082019050919050565b60006020820190508181036000830152612fe281612fa6565b9050919050565b7f21636f6e74726163740000000000000000000000000000000000000000000000600082015250565b600061301f600983612ac0565b915061302a82612fe9565b602082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b60008160e01b9050919050565b600061306d82613055565b9050919050565b61308561308082612337565b613062565b82525050565b6000819050919050565b6130a66130a182612301565b61308b565b82525050565b60008160601b9050919050565b60006130c4826130ac565b9050919050565b60006130d6826130b9565b9050919050565b6130ee6130e982612296565b6130cb565b82525050565b60006131008288613074565b6004820191506131108287613095565b6020820191506131208286613095565b6020820191506131308285613095565b60208201915061314082846130dd565b6014820191508190509695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600061318d82612301565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131bf576131be612b3d565b5b600182019050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613226602b83612ac0565b9150613231826131ca565b604082019050919050565b6000602082019050818103600083015261325581613219565b9050919050565b600060408201905061327160008301856126ee565b61327e60208301846126ee565b9392505050565b6000819050919050565b6132a061329b8261241b565b613285565b82525050565b600081519050919050565b600081905092915050565b60006132c7826132a6565b6132d181856132b1565b93506132e1818560208601612d0c565b80840191505092915050565b60006132f9828661328f565b6020820191506133098285613095565b60208201915061331982846132bc565b9150819050949350505050565b600060608201905061333b600083018661276b565b613348602083018561276b565b61335560408301846126ee565b949350505050565b6000604082019050613372600083018561276b565b61337f60208301846126ee565b9392505050565b600060808201905061339b6000830187612425565b6133a86020830186612eb3565b6133b560408301856126ee565b6133c2606083018461276b565b95945050505050565b60008115159050919050565b6133e0816133cb565b81146133eb57600080fd5b50565b6000815190506133fd816133d7565b92915050565b6000602082840312156134195761341861226c565b5b6000613427848285016133ee565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b600061348c602a83612ac0565b915061349782613430565b604082019050919050565b600060208201905081810360008301526134bb8161347f565b9050919050565b600080fd5b600080fd5b600080858511156134e0576134df6134c2565b5b838611156134f1576134f06134c7565b5b6001850283019150848603905094509492505050565b600082905092915050565b600082821b905092915050565b600061352b8383613507565b82613536813561241b565b92506020821015613576576135717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802613512565b831692505b505092915050565b600082825260208201905092915050565b600061359a826132a6565b6135a4818561357e565b93506135b4818560208601612d0c565b6135bd81612d36565b840191505092915050565b60006060820190506135dd6000830186612eb3565b6135ea6020830185612425565b81810360408301526135fc818461358f565b9050949350505050565b600081519050613615816125e9565b92915050565b6000602082840312156136315761363061226c565b5b600061363f84828501613606565b91505092915050565b6000806040838503121561365f5761365e61226c565b5b600061366d85828601612322565b925050602061367e85828601612322565b9150509250929050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b60006136e4602683612ac0565b91506136ef82613688565b604082019050919050565b60006020820190508181036000830152613713816136d7565b9050919050565b600061372682846132bc565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000613767601d83612ac0565b915061377282613731565b602082019050919050565b600060208201905081810360008301526137968161375a565b905091905056fe4e6f20726f7574657220656e726f6c6c656420666f7220646f6d61696e2e2044696420796f7520737065636966792074686520726967687420646f6d61696e2049443fa264697066735822122048e10fbf91a17d3effb0a6bf13995a021d36b0f7daf36b98abbac58bd43f7a9964736f6c63430008100033", + "linkReferences": {}, + "deployedLinkReferences": {} +} \ No newline at end of file diff --git a/rust/abis/Mailbox.json b/rust/abis/Mailbox.json new file mode 100644 index 0000000..0136118 --- /dev/null +++ b/rust/abis/Mailbox.json @@ -0,0 +1,446 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "Mailbox", + "sourceName": "contracts/Mailbox.sol", + "abi": [ + { + "inputs": [ + { + "internalType": "uint32", + "name": "_localDomain", + "type": "uint32" + } + ], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "module", + "type": "address" + } + ], + "name": "DefaultIsmSet", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "sender", + "type": "address" + }, + { + "indexed": true, + "internalType": "uint32", + "name": "destination", + "type": "uint32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "recipient", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "bytes", + "name": "message", + "type": "bytes" + } + ], + "name": "Dispatch", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "messageId", + "type": "bytes32" + } + ], + "name": "DispatchId", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": false, + "internalType": "uint8", + "name": "version", + "type": "uint8" + } + ], + "name": "Initialized", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [], + "name": "Paused", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint32", + "name": "origin", + "type": "uint32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "sender", + "type": "bytes32" + }, + { + "indexed": true, + "internalType": "address", + "name": "recipient", + "type": "address" + } + ], + "name": "Process", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "bytes32", + "name": "messageId", + "type": "bytes32" + } + ], + "name": "ProcessId", + "type": "event" + }, + { + "anonymous": false, + "inputs": [], + "name": "Unpaused", + "type": "event" + }, + { + "inputs": [], + "name": "MAX_MESSAGE_BODY_BYTES", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "VERSION", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "count", + "outputs": [ + { + "internalType": "uint32", + "name": "", + "type": "uint32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "defaultIsm", + "outputs": [ + { + "internalType": "contract IInterchainSecurityModule", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "name": "delivered", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_destinationDomain", + "type": "uint32" + }, + { + "internalType": "bytes32", + "name": "_recipientAddress", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "_messageBody", + "type": "bytes" + } + ], + "name": "dispatch", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_owner", + "type": "address" + }, + { + "internalType": "address", + "name": "_defaultIsm", + "type": "address" + } + ], + "name": "initialize", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "isPaused", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "latestCheckpoint", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + }, + { + "internalType": "uint32", + "name": "", + "type": "uint32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "localDomain", + "outputs": [ + { + "internalType": "uint32", + "name": "", + "type": "uint32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "pause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes", + "name": "_metadata", + "type": "bytes" + }, + { + "internalType": "bytes", + "name": "_message", + "type": "bytes" + } + ], + "name": "process", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_recipient", + "type": "address" + } + ], + "name": "recipientIsm", + "outputs": [ + { + "internalType": "contract IInterchainSecurityModule", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "root", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_module", + "type": "address" + } + ], + "name": "setDefaultIsm", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "tree", + "outputs": [ + { + "internalType": "uint256", + "name": "count", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "unpause", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x60a060405234801561001057600080fd5b5060405162002229380380620022298339810160408190526100319161003f565b63ffffffff1660805261006c565b60006020828403121561005157600080fd5b815163ffffffff8116811461006557600080fd5b9392505050565b6080516121936200009660003960008181610230015281816106300152610d0501526121936000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c8063907c0f92116100cd578063f2fde38b11610081578063fa31de0111610066578063fa31de011461030e578063fd54b22814610321578063ffa1ad741461032b57600080fd5b8063f2fde38b146102e8578063f794687a146102fb57600080fd5b8063e495f1d4116100b2578063e495f1d4146102aa578063e70f48ac146102cd578063ebf0c717146102e057600080fd5b8063907c0f9214610270578063b187bd261461029257600080fd5b8063715018a6116101245780638456cb59116101095780638456cb59146102235780638d3638f41461022b5780638da5cb5b1461025257600080fd5b8063715018a6146102085780637c39d1301461021057600080fd5b8063485cc95511610155578063485cc95514610199578063522ae002146101ac5780636e5f516e146101c357600080fd5b806306661abd146101715780633f4ba83a1461018f575b600080fd5b60b8545b60405163ffffffff90911681526020015b60405180910390f35b610197610345565b005b6101976101a7366004611a93565b610380565b6101b561080081565b604051908152602001610186565b6097546101e39073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610186565b610197610533565b61019761021e366004611b0e565b610547565b6101976109fa565b6101757f000000000000000000000000000000000000000000000000000000000000000081565b60335473ffffffffffffffffffffffffffffffffffffffff166101e3565b610278610a35565b6040805192835263ffffffff909116602083015201610186565b61029a610a5d565b6040519015158152602001610186565b61029a6102b8366004611b7a565b60b96020526000908152604090205460ff1681565b6101e36102db366004611b93565b610a70565b6101b5610b3e565b6101976102f6366004611b93565b610b4a565b610197610309366004611b93565b610c01565b6101b561031c366004611bb0565b610c12565b60b8546101b59081565b610333600081565b60405160ff9091168152602001610186565b61034d610dce565b610355610e4f565b6040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b600054610100900460ff16158080156103a05750600054600160ff909116105b806103ba5750303b1580156103ba575060005460ff166001145b61044b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905580156104a957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b6104b1610ec2565b6104b9610f59565b6104c283610b4a565b6104cb82610ff8565b801561052e57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050565b61053b610dce565b61054560006110e5565b565b6001606554146105b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f7265656e7472616e742063616c6c20286f7220706175736564290000000000006044820152606401610442565b600060658190556105c4838361115c565b60ff161461062e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f2176657273696f6e0000000000000000000000000000000000000000000000006044820152606401610442565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1661065f8383611180565b63ffffffff16146106cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f2164657374696e6174696f6e00000000000000000000000000000000000000006044820152606401610442565b600061070d83838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506111a392505050565b600081815260b9602052604090205490915060ff1615610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f64656c69766572656400000000000000000000000000000000000000000000006044820152606401610442565b600081815260b96020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556107cd6102db85856111ae565b6040517ff7e83aee00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff82169063f7e83aee90610828908990899089908990600401611c52565b6020604051808303816000875af1158015610847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086b9190611c84565b6108d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f216d6f64756c65000000000000000000000000000000000000000000000000006044820152606401610442565b60006108dd85856111c7565b905060006108eb86866111d7565b905060006108f987876111ae565b90508073ffffffffffffffffffffffffffffffffffffffff166356d5d47584846109238b8b6111f0565b6040518563ffffffff1660e01b81526004016109429493929190611ca6565b600060405180830381600087803b15801561095c57600080fd5b505af1158015610970573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16828463ffffffff167f0d381c2a574ae8f04e213db7cfb4df8df712cdbd427d9868ffef380660ca657460405160405180910390a460405185907f1cae38cdd3d3919489272725a5ae62a4f48b2989b0dae843d3c279fee18073a990600090a25050600160655550505050505050565b610a02610dce565b610a0a61120c565b6040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b600080610a40610b3e565b6001610a4b60b85490565b610a559190611d05565b915091509091565b6000610a6b60655460021490565b905090565b60008173ffffffffffffffffffffffffffffffffffffffff1663de523cf36040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610af7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252610af491810190611d29565b60015b15610b205773ffffffffffffffffffffffffffffffffffffffff811615610b1e5792915050565b505b505060975473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a6b609861127f565b610b52610dce565b73ffffffffffffffffffffffffffffffffffffffff8116610bf5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610442565b610bfe816110e5565b50565b610c09610dce565b610bfe81610ff8565b6000610c2060655460021490565b15610c87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f70617573656400000000000000000000000000000000000000000000000000006044820152606401610442565b610800821115610cf3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6d736720746f6f206c6f6e6700000000000000000000000000000000000000006044820152606401610442565b6000610d2e6000610d0360b85490565b7f0000000000000000000000000000000000000000000000000000000000000000338a8a8a8a611292565b80516020820120909150610d436098826112d0565b858763ffffffff163373ffffffffffffffffffffffffffffffffffffffff167f769f711d20c679153d382254f59892613b58a97cc876b249134ac25c80f9c81485604051610d919190611d46565b60405180910390a460405181907f788dbc1b7152732178210e7f4d9d010ef016f9eafbe66786bd7169f56e0c353a90600090a29695505050505050565b60335473ffffffffffffffffffffffffffffffffffffffff163314610545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610442565b606554600214610ebb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f21706175736564000000000000000000000000000000000000000000000000006044820152606401610442565b6001606555565b600054610100900460ff16610ebb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610442565b600054610100900460ff16610ff0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610442565b61054561140f565b73ffffffffffffffffffffffffffffffffffffffff81163b611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f21636f6e747261637400000000000000000000000000000000000000000000006044820152606401610442565b609780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fa76ad0adbf45318f8633aa0210f711273d50fbb6fef76ed95bbae97082c75daa90600090a250565b6033805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061116b6001828486611db2565b61117491611ddc565b60f81c90505b92915050565b6000611190602d60298486611db2565b61119991611e22565b60e01c9392505050565b805160209091012090565b60006111c06111bd84846114af565b90565b9392505050565b6000611190600960058486611db2565b60006111e7602960098486611db2565b6111c091611e68565b36600061120083604d8187611db2565b915091505b9250929050565b606554600203611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f70617573656400000000000000000000000000000000000000000000000000006044820152606401610442565b6002606555565b600061117a8261128d6114bf565b611980565b606088888888888888886040516020016112b3989796959493929190611ea4565b604051602081830303815290604052905098975050505050505050565b60016112de6020600261205a565b6112e89190612066565b826020015410611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6d65726b6c6520747265652066756c6c000000000000000000000000000000006044820152606401610442565b60018260200160008282546113699190612079565b9091555050602082015460005b602081101561140657816001166001036113a5578284826020811061139d5761139d61208c565b015550505050565b8381602081106113b7576113b761208c565b015460408051602081019290925281018490526060016040516020818303038152906040528051906020012092506002826113f291906120bb565b9150806113fe816120f6565b915050611376565b5061052e61212e565b600054610100900460ff166114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610442565b610545336110e5565b60006111e7604d602d8486611db2565b6114c7611a52565b600081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb560208201527fb4c11951957c6f8f642c4af61cd6b24640fec6dc7fc607ee8206a99e92410d3060408201527f21ddb9a356815c3fac1026b6dec5df3124afbadb485c9ba5a3e3398a04b7ba8560608201527fe58769b32a1beaf1ea27375a44095a0d1fb664ce2dd358e7fcbfb78c26a1934460808201527f0eb01ebfc9ed27500cd4dfc979272d1f0913cc9f66540d7e8005811109e1cf2d60a08201527f887c22bd8750d34016ac3c66b5ff102dacdd73f6b014e710b51e8022af9a196860c08201527fffd70157e48063fc33c97a050f7f640233bf646cc98d9524c6b92bcf3ab56f8360e08201527f9867cc5f7f196b93bae1e27e6320742445d290f2263827498b54fec539f756af6101008201527fcefad4e508c098b9a7e1d8feb19955fb02ba9675585078710969d3440f5054e06101208201527ff9dc3e7fe016e050eff260334f18a5d4fe391d82092319f5964f2e2eb7c1c3a56101408201527ff8b13a49e282f609c317a833fb8d976d11517c571d1221a265d25af778ecf8926101608201527f3490c6ceeb450aecdc82e28293031d10c7d73bf85e57bf041a97360aa2c5d99c6101808201527fc1df82d9c4b87413eae2ef048f94b4d3554cea73d92b0f7af96e0271c691e2bb6101a08201527f5c67add7c6caf302256adedf7ab114da0acfe870d449a3a489f781d659e8becc6101c08201527fda7bce9f4e8618b6bd2f4132ce798cdc7a60e7e1460a7299e3c6342a579626d26101e08201527f2733e50f526ec2fa19a22b31e8ed50f23cd1fdf94c9154ed3a7609a2f1ff981f6102008201527fe1d3b5c807b281e4683cc6d6315cf95b9ade8641defcb32372f1c126e398ef7a6102208201527f5a2dce0a8a7f68bb74560f8f71837c2c2ebbcbf7fffb42ae1896f13f7c7479a06102408201527fb46a28b6f55540f89444f63de0378e3d121be09e06cc9ded1c20e65876d36aa06102608201527fc65e9645644786b620e2dd2ad648ddfcbf4a7e5b1a3a4ecfe7f64667a3f0b7e26102808201527ff4418588ed35a2458cffeb39b93d26f18d2ab13bdce6aee58e7b99359ec2dfd96102a08201527f5a9c16dc00d6ef18b7933a6f8dc65ccb55667138776f7dea101070dc8796e3776102c08201527f4df84f40ae0c8229d0d6069e5c8f39a7c299677a09d367fc7b05e3bc380ee6526102e08201527fcdc72595f74c7b1043d0e1ffbab734648c838dfb0527d971b602bc216c9619ef6103008201527f0abf5ac974a1ed57f4050aa510dd9c74f508277b39d7973bb2dfccc5eeb0618d6103208201527fb8cd74046ff337f0a7bf2c8e03e10f642c1886798d71806ab1e888d9e5ee87d06103408201527f838c5655cb21c6cb83313b5a631175dff4963772cce9108188b34ac87c81c41e6103608201527f662ee4dd2dd7b2bc707961b1e646c4047669dcb6584f0d8d770daf5d7e7deb2e6103808201527f388ab20e2573d171a88108e79d820e98f26c0b84aa8b2f4aa4968dbb818ea3226103a08201527f93237c50ba75ee485f4c22adf2f741400bdf8d6a9cc7df7ecae576221665d7356103c08201527f8448818bb4ae4562849e949e17ac16e0be16688e156b5cf15e098c627c0056a96103e082015290565b6020820154600090815b6020811015611a4a57600182821c1660008683602081106119ad576119ad61208c565b01549050816001036119ea576040805160208101839052908101869052606001604051602081830303815290604052805190602001209450611a35565b848684602081106119fd576119fd61208c565b6020020151604051602001611a1c929190918252602082015260400190565b6040516020818303038152906040528051906020012094505b50508080611a42906120f6565b91505061198a565b505092915050565b6040518061040001604052806020906020820280368337509192915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610bfe57600080fd5b60008060408385031215611aa657600080fd5b8235611ab181611a71565b91506020830135611ac181611a71565b809150509250929050565b60008083601f840112611ade57600080fd5b50813567ffffffffffffffff811115611af657600080fd5b60208301915083602082850101111561120557600080fd5b60008060008060408587031215611b2457600080fd5b843567ffffffffffffffff80821115611b3c57600080fd5b611b4888838901611acc565b90965094506020870135915080821115611b6157600080fd5b50611b6e87828801611acc565b95989497509550505050565b600060208284031215611b8c57600080fd5b5035919050565b600060208284031215611ba557600080fd5b81356111c081611a71565b60008060008060608587031215611bc657600080fd5b843563ffffffff81168114611bda57600080fd5b935060208501359250604085013567ffffffffffffffff811115611bfd57600080fd5b611b6e87828801611acc565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b604081526000611c66604083018688611c09565b8281036020840152611c79818587611c09565b979650505050505050565b600060208284031215611c9657600080fd5b815180151581146111c057600080fd5b63ffffffff85168152836020820152606060408201526000611ccc606083018486611c09565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b63ffffffff828116828216039080821115611d2257611d22611cd6565b5092915050565b600060208284031215611d3b57600080fd5b81516111c081611a71565b600060208083528351808285015260005b81811015611d7357858101830151858201604001528201611d57565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b60008085851115611dc257600080fd5b83861115611dcf57600080fd5b5050820193919092039150565b7fff000000000000000000000000000000000000000000000000000000000000008135818116916001851015611a4a5760019490940360031b84901b1690921692915050565b7fffffffff000000000000000000000000000000000000000000000000000000008135818116916004851015611a4a5760049490940360031b84901b1690921692915050565b8035602083101561117a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b1692915050565b7fff000000000000000000000000000000000000000000000000000000000000008960f81b16815260007fffffffff00000000000000000000000000000000000000000000000000000000808a60e01b166001840152808960e01b166005840152876009840152808760e01b1660298401525084602d8301528284604d8401375060009101604d01908152979650505050505050565b600181815b80851115611f9357817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611f7957611f79611cd6565b80851615611f8657918102915b93841c9390800290611f3f565b509250929050565b600082611faa5750600161117a565b81611fb75750600061117a565b8160018114611fcd5760028114611fd757611ff3565b600191505061117a565b60ff841115611fe857611fe8611cd6565b50506001821b61117a565b5060208310610133831016604e8410600b8410161715612016575081810a61117a565b6120208383611f3a565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561205257612052611cd6565b029392505050565b60006111c08383611f9b565b8181038181111561117a5761117a611cd6565b8082018082111561117a5761117a611cd6565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000826120f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361212757612127611cd6565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfea2646970667358221220d6f190bbbc6dd5996396b02e3f879b34f377436d5eb95ba31ba46f98da84871764736f6c63430008110033", + "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061016c5760003560e01c8063907c0f92116100cd578063f2fde38b11610081578063fa31de0111610066578063fa31de011461030e578063fd54b22814610321578063ffa1ad741461032b57600080fd5b8063f2fde38b146102e8578063f794687a146102fb57600080fd5b8063e495f1d4116100b2578063e495f1d4146102aa578063e70f48ac146102cd578063ebf0c717146102e057600080fd5b8063907c0f9214610270578063b187bd261461029257600080fd5b8063715018a6116101245780638456cb59116101095780638456cb59146102235780638d3638f41461022b5780638da5cb5b1461025257600080fd5b8063715018a6146102085780637c39d1301461021057600080fd5b8063485cc95511610155578063485cc95514610199578063522ae002146101ac5780636e5f516e146101c357600080fd5b806306661abd146101715780633f4ba83a1461018f575b600080fd5b60b8545b60405163ffffffff90911681526020015b60405180910390f35b610197610345565b005b6101976101a7366004611a93565b610380565b6101b561080081565b604051908152602001610186565b6097546101e39073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610186565b610197610533565b61019761021e366004611b0e565b610547565b6101976109fa565b6101757f000000000000000000000000000000000000000000000000000000000000000081565b60335473ffffffffffffffffffffffffffffffffffffffff166101e3565b610278610a35565b6040805192835263ffffffff909116602083015201610186565b61029a610a5d565b6040519015158152602001610186565b61029a6102b8366004611b7a565b60b96020526000908152604090205460ff1681565b6101e36102db366004611b93565b610a70565b6101b5610b3e565b6101976102f6366004611b93565b610b4a565b610197610309366004611b93565b610c01565b6101b561031c366004611bb0565b610c12565b60b8546101b59081565b610333600081565b60405160ff9091168152602001610186565b61034d610dce565b610355610e4f565b6040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b600054610100900460ff16158080156103a05750600054600160ff909116105b806103ba5750303b1580156103ba575060005460ff166001145b61044b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905580156104a957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b6104b1610ec2565b6104b9610f59565b6104c283610b4a565b6104cb82610ff8565b801561052e57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050565b61053b610dce565b61054560006110e5565b565b6001606554146105b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f7265656e7472616e742063616c6c20286f7220706175736564290000000000006044820152606401610442565b600060658190556105c4838361115c565b60ff161461062e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f2176657273696f6e0000000000000000000000000000000000000000000000006044820152606401610442565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1661065f8383611180565b63ffffffff16146106cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f2164657374696e6174696f6e00000000000000000000000000000000000000006044820152606401610442565b600061070d83838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506111a392505050565b600081815260b9602052604090205490915060ff1615610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f64656c69766572656400000000000000000000000000000000000000000000006044820152606401610442565b600081815260b96020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556107cd6102db85856111ae565b6040517ff7e83aee00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff82169063f7e83aee90610828908990899089908990600401611c52565b6020604051808303816000875af1158015610847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086b9190611c84565b6108d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f216d6f64756c65000000000000000000000000000000000000000000000000006044820152606401610442565b60006108dd85856111c7565b905060006108eb86866111d7565b905060006108f987876111ae565b90508073ffffffffffffffffffffffffffffffffffffffff166356d5d47584846109238b8b6111f0565b6040518563ffffffff1660e01b81526004016109429493929190611ca6565b600060405180830381600087803b15801561095c57600080fd5b505af1158015610970573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff16828463ffffffff167f0d381c2a574ae8f04e213db7cfb4df8df712cdbd427d9868ffef380660ca657460405160405180910390a460405185907f1cae38cdd3d3919489272725a5ae62a4f48b2989b0dae843d3c279fee18073a990600090a25050600160655550505050505050565b610a02610dce565b610a0a61120c565b6040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b600080610a40610b3e565b6001610a4b60b85490565b610a559190611d05565b915091509091565b6000610a6b60655460021490565b905090565b60008173ffffffffffffffffffffffffffffffffffffffff1663de523cf36040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015610af7575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252610af491810190611d29565b60015b15610b205773ffffffffffffffffffffffffffffffffffffffff811615610b1e5792915050565b505b505060975473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a6b609861127f565b610b52610dce565b73ffffffffffffffffffffffffffffffffffffffff8116610bf5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610442565b610bfe816110e5565b50565b610c09610dce565b610bfe81610ff8565b6000610c2060655460021490565b15610c87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f70617573656400000000000000000000000000000000000000000000000000006044820152606401610442565b610800821115610cf3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f6d736720746f6f206c6f6e6700000000000000000000000000000000000000006044820152606401610442565b6000610d2e6000610d0360b85490565b7f0000000000000000000000000000000000000000000000000000000000000000338a8a8a8a611292565b80516020820120909150610d436098826112d0565b858763ffffffff163373ffffffffffffffffffffffffffffffffffffffff167f769f711d20c679153d382254f59892613b58a97cc876b249134ac25c80f9c81485604051610d919190611d46565b60405180910390a460405181907f788dbc1b7152732178210e7f4d9d010ef016f9eafbe66786bd7169f56e0c353a90600090a29695505050505050565b60335473ffffffffffffffffffffffffffffffffffffffff163314610545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610442565b606554600214610ebb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f21706175736564000000000000000000000000000000000000000000000000006044820152606401610442565b6001606555565b600054610100900460ff16610ebb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610442565b600054610100900460ff16610ff0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610442565b61054561140f565b73ffffffffffffffffffffffffffffffffffffffff81163b611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f21636f6e747261637400000000000000000000000000000000000000000000006044820152606401610442565b609780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517fa76ad0adbf45318f8633aa0210f711273d50fbb6fef76ed95bbae97082c75daa90600090a250565b6033805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061116b6001828486611db2565b61117491611ddc565b60f81c90505b92915050565b6000611190602d60298486611db2565b61119991611e22565b60e01c9392505050565b805160209091012090565b60006111c06111bd84846114af565b90565b9392505050565b6000611190600960058486611db2565b60006111e7602960098486611db2565b6111c091611e68565b36600061120083604d8187611db2565b915091505b9250929050565b606554600203611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600660248201527f70617573656400000000000000000000000000000000000000000000000000006044820152606401610442565b6002606555565b600061117a8261128d6114bf565b611980565b606088888888888888886040516020016112b3989796959493929190611ea4565b604051602081830303815290604052905098975050505050505050565b60016112de6020600261205a565b6112e89190612066565b826020015410611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f6d65726b6c6520747265652066756c6c000000000000000000000000000000006044820152606401610442565b60018260200160008282546113699190612079565b9091555050602082015460005b602081101561140657816001166001036113a5578284826020811061139d5761139d61208c565b015550505050565b8381602081106113b7576113b761208c565b015460408051602081019290925281018490526060016040516020818303038152906040528051906020012092506002826113f291906120bb565b9150806113fe816120f6565b915050611376565b5061052e61212e565b600054610100900460ff166114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610442565b610545336110e5565b60006111e7604d602d8486611db2565b6114c7611a52565b600081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb560208201527fb4c11951957c6f8f642c4af61cd6b24640fec6dc7fc607ee8206a99e92410d3060408201527f21ddb9a356815c3fac1026b6dec5df3124afbadb485c9ba5a3e3398a04b7ba8560608201527fe58769b32a1beaf1ea27375a44095a0d1fb664ce2dd358e7fcbfb78c26a1934460808201527f0eb01ebfc9ed27500cd4dfc979272d1f0913cc9f66540d7e8005811109e1cf2d60a08201527f887c22bd8750d34016ac3c66b5ff102dacdd73f6b014e710b51e8022af9a196860c08201527fffd70157e48063fc33c97a050f7f640233bf646cc98d9524c6b92bcf3ab56f8360e08201527f9867cc5f7f196b93bae1e27e6320742445d290f2263827498b54fec539f756af6101008201527fcefad4e508c098b9a7e1d8feb19955fb02ba9675585078710969d3440f5054e06101208201527ff9dc3e7fe016e050eff260334f18a5d4fe391d82092319f5964f2e2eb7c1c3a56101408201527ff8b13a49e282f609c317a833fb8d976d11517c571d1221a265d25af778ecf8926101608201527f3490c6ceeb450aecdc82e28293031d10c7d73bf85e57bf041a97360aa2c5d99c6101808201527fc1df82d9c4b87413eae2ef048f94b4d3554cea73d92b0f7af96e0271c691e2bb6101a08201527f5c67add7c6caf302256adedf7ab114da0acfe870d449a3a489f781d659e8becc6101c08201527fda7bce9f4e8618b6bd2f4132ce798cdc7a60e7e1460a7299e3c6342a579626d26101e08201527f2733e50f526ec2fa19a22b31e8ed50f23cd1fdf94c9154ed3a7609a2f1ff981f6102008201527fe1d3b5c807b281e4683cc6d6315cf95b9ade8641defcb32372f1c126e398ef7a6102208201527f5a2dce0a8a7f68bb74560f8f71837c2c2ebbcbf7fffb42ae1896f13f7c7479a06102408201527fb46a28b6f55540f89444f63de0378e3d121be09e06cc9ded1c20e65876d36aa06102608201527fc65e9645644786b620e2dd2ad648ddfcbf4a7e5b1a3a4ecfe7f64667a3f0b7e26102808201527ff4418588ed35a2458cffeb39b93d26f18d2ab13bdce6aee58e7b99359ec2dfd96102a08201527f5a9c16dc00d6ef18b7933a6f8dc65ccb55667138776f7dea101070dc8796e3776102c08201527f4df84f40ae0c8229d0d6069e5c8f39a7c299677a09d367fc7b05e3bc380ee6526102e08201527fcdc72595f74c7b1043d0e1ffbab734648c838dfb0527d971b602bc216c9619ef6103008201527f0abf5ac974a1ed57f4050aa510dd9c74f508277b39d7973bb2dfccc5eeb0618d6103208201527fb8cd74046ff337f0a7bf2c8e03e10f642c1886798d71806ab1e888d9e5ee87d06103408201527f838c5655cb21c6cb83313b5a631175dff4963772cce9108188b34ac87c81c41e6103608201527f662ee4dd2dd7b2bc707961b1e646c4047669dcb6584f0d8d770daf5d7e7deb2e6103808201527f388ab20e2573d171a88108e79d820e98f26c0b84aa8b2f4aa4968dbb818ea3226103a08201527f93237c50ba75ee485f4c22adf2f741400bdf8d6a9cc7df7ecae576221665d7356103c08201527f8448818bb4ae4562849e949e17ac16e0be16688e156b5cf15e098c627c0056a96103e082015290565b6020820154600090815b6020811015611a4a57600182821c1660008683602081106119ad576119ad61208c565b01549050816001036119ea576040805160208101839052908101869052606001604051602081830303815290604052805190602001209450611a35565b848684602081106119fd576119fd61208c565b6020020151604051602001611a1c929190918252602082015260400190565b6040516020818303038152906040528051906020012094505b50508080611a42906120f6565b91505061198a565b505092915050565b6040518061040001604052806020906020820280368337509192915050565b73ffffffffffffffffffffffffffffffffffffffff81168114610bfe57600080fd5b60008060408385031215611aa657600080fd5b8235611ab181611a71565b91506020830135611ac181611a71565b809150509250929050565b60008083601f840112611ade57600080fd5b50813567ffffffffffffffff811115611af657600080fd5b60208301915083602082850101111561120557600080fd5b60008060008060408587031215611b2457600080fd5b843567ffffffffffffffff80821115611b3c57600080fd5b611b4888838901611acc565b90965094506020870135915080821115611b6157600080fd5b50611b6e87828801611acc565b95989497509550505050565b600060208284031215611b8c57600080fd5b5035919050565b600060208284031215611ba557600080fd5b81356111c081611a71565b60008060008060608587031215611bc657600080fd5b843563ffffffff81168114611bda57600080fd5b935060208501359250604085013567ffffffffffffffff811115611bfd57600080fd5b611b6e87828801611acc565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b604081526000611c66604083018688611c09565b8281036020840152611c79818587611c09565b979650505050505050565b600060208284031215611c9657600080fd5b815180151581146111c057600080fd5b63ffffffff85168152836020820152606060408201526000611ccc606083018486611c09565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b63ffffffff828116828216039080821115611d2257611d22611cd6565b5092915050565b600060208284031215611d3b57600080fd5b81516111c081611a71565b600060208083528351808285015260005b81811015611d7357858101830151858201604001528201611d57565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b60008085851115611dc257600080fd5b83861115611dcf57600080fd5b5050820193919092039150565b7fff000000000000000000000000000000000000000000000000000000000000008135818116916001851015611a4a5760019490940360031b84901b1690921692915050565b7fffffffff000000000000000000000000000000000000000000000000000000008135818116916004851015611a4a5760049490940360031b84901b1690921692915050565b8035602083101561117a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602084900360031b1b1692915050565b7fff000000000000000000000000000000000000000000000000000000000000008960f81b16815260007fffffffff00000000000000000000000000000000000000000000000000000000808a60e01b166001840152808960e01b166005840152876009840152808760e01b1660298401525084602d8301528284604d8401375060009101604d01908152979650505050505050565b600181815b80851115611f9357817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115611f7957611f79611cd6565b80851615611f8657918102915b93841c9390800290611f3f565b509250929050565b600082611faa5750600161117a565b81611fb75750600061117a565b8160018114611fcd5760028114611fd757611ff3565b600191505061117a565b60ff841115611fe857611fe8611cd6565b50506001821b61117a565b5060208310610133831016604e8410600b8410161715612016575081810a61117a565b6120208383611f3a565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561205257612052611cd6565b029392505050565b60006111c08383611f9b565b8181038181111561117a5761117a611cd6565b8082018082111561117a5761117a611cd6565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000826120f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361212757612127611cd6565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfea2646970667358221220d6f190bbbc6dd5996396b02e3f879b34f377436d5eb95ba31ba46f98da84871764736f6c63430008110033", + "linkReferences": {}, + "deployedLinkReferences": {} +} \ No newline at end of file diff --git a/rust/abis/TestMultisigIsm.json b/rust/abis/TestMultisigIsm.json new file mode 100644 index 0000000..228c511 --- /dev/null +++ b/rust/abis/TestMultisigIsm.json @@ -0,0 +1,103 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "TestMultisigIsm", + "sourceName": "contracts/test/TestMultisigIsm.sol", + "abi": [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [], + "name": "accept", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "moduleType", + "outputs": [ + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bool", + "name": "_val", + "type": "bool" + } + ], + "name": "setAccept", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "validatorsAndThreshold", + "outputs": [ + { + "internalType": "address[]", + "name": "", + "type": "address[]" + }, + { + "internalType": "uint8", + "name": "", + "type": "uint8" + } + ], + "stateMutability": "pure", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + }, + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "name": "verify", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "view", + "type": "function" + } + ], + "bytecode": "0x608060405234801561001057600080fd5b506000805460ff191660011790556103778061002d6000396000f3fe608060405234801561001057600080fd5b50600436106100675760003560e01c80634fc3aa7c116100505780634fc3aa7c146100af5780636465e69f146100f0578063f7e83aee1461010a57600080fd5b80632852b71c1461006c5780632e0ed2341461008e575b600080fd5b6000546100799060ff1681565b60405190151581526020015b60405180910390f35b6100a161009c3660046101d7565b610126565b604051610085929190610219565b6100ee6100bd36600461027d565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b005b6100f8600481565b60405160ff9091168152602001610085565b6100796101183660046102a6565b60005460ff16949350505050565b60408051600180825281830190925260609160009182916020808301908036833701905050905060008160008151811061016257610162610312565b73ffffffffffffffffffffffffffffffffffffffff909216602092830291909101909101529150600190505b9250929050565b60008083601f8401126101a757600080fd5b50813567ffffffffffffffff8111156101bf57600080fd5b60208301915083602082850101111561018e57600080fd5b600080602083850312156101ea57600080fd5b823567ffffffffffffffff81111561020157600080fd5b61020d85828601610195565b90969095509350505050565b604080825283519082018190526000906020906060840190828701845b8281101561026857815173ffffffffffffffffffffffffffffffffffffffff1684529284019290840190600101610236565b50505060ff9490941692019190915250919050565b60006020828403121561028f57600080fd5b8135801515811461029f57600080fd5b9392505050565b600080600080604085870312156102bc57600080fd5b843567ffffffffffffffff808211156102d457600080fd5b6102e088838901610195565b909650945060208701359150808211156102f957600080fd5b5061030687828801610195565b95989497509550505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122017c3918e1ebea8ac9a9de746c40c8b031b8fef948d0933d04030e580d6ee3bfa64736f6c63430008110033", + "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100675760003560e01c80634fc3aa7c116100505780634fc3aa7c146100af5780636465e69f146100f0578063f7e83aee1461010a57600080fd5b80632852b71c1461006c5780632e0ed2341461008e575b600080fd5b6000546100799060ff1681565b60405190151581526020015b60405180910390f35b6100a161009c3660046101d7565b610126565b604051610085929190610219565b6100ee6100bd36600461027d565b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b005b6100f8600481565b60405160ff9091168152602001610085565b6100796101183660046102a6565b60005460ff16949350505050565b60408051600180825281830190925260609160009182916020808301908036833701905050905060008160008151811061016257610162610312565b73ffffffffffffffffffffffffffffffffffffffff909216602092830291909101909101529150600190505b9250929050565b60008083601f8401126101a757600080fd5b50813567ffffffffffffffff8111156101bf57600080fd5b60208301915083602082850101111561018e57600080fd5b600080602083850312156101ea57600080fd5b823567ffffffffffffffff81111561020157600080fd5b61020d85828601610195565b90969095509350505050565b604080825283519082018190526000906020906060840190828701845b8281101561026857815173ffffffffffffffffffffffffffffffffffffffff1684529284019290840190600101610236565b50505060ff9490941692019190915250919050565b60006020828403121561028f57600080fd5b8135801515811461029f57600080fd5b9392505050565b600080600080604085870312156102bc57600080fd5b843567ffffffffffffffff808211156102d457600080fd5b6102e088838901610195565b909650945060208701359150808211156102f957600080fd5b5061030687828801610195565b95989497509550505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122017c3918e1ebea8ac9a9de746c40c8b031b8fef948d0933d04030e580d6ee3bfa64736f6c63430008110033", + "linkReferences": {}, + "deployedLinkReferences": {} +} \ No newline at end of file diff --git a/rust/abis/TestRecipient.json b/rust/abis/TestRecipient.json new file mode 100644 index 0000000..e29e600 --- /dev/null +++ b/rust/abis/TestRecipient.json @@ -0,0 +1,232 @@ +{ + "_format": "hh-sol-artifact-1", + "contractName": "TestRecipient", + "sourceName": "contracts/test/TestRecipient.sol", + "abi": [ + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "previousOwner", + "type": "address" + }, + { + "indexed": true, + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "OwnershipTransferred", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "caller", + "type": "address" + }, + { + "indexed": false, + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "indexed": false, + "internalType": "string", + "name": "message", + "type": "string" + } + ], + "name": "ReceivedCall", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "uint32", + "name": "origin", + "type": "uint32" + }, + { + "indexed": true, + "internalType": "bytes32", + "name": "sender", + "type": "bytes32" + }, + { + "indexed": false, + "internalType": "string", + "name": "message", + "type": "string" + } + ], + "name": "ReceivedMessage", + "type": "event" + }, + { + "inputs": [ + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "string", + "name": "message", + "type": "string" + } + ], + "name": "fooBar", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "uint32", + "name": "_origin", + "type": "uint32" + }, + { + "internalType": "bytes32", + "name": "_sender", + "type": "bytes32" + }, + { + "internalType": "bytes", + "name": "_data", + "type": "bytes" + } + ], + "name": "handle", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "interchainSecurityModule", + "outputs": [ + { + "internalType": "contract IInterchainSecurityModule", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "lastCallMessage", + "outputs": [ + { + "internalType": "string", + "name": "", + "type": "string" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "lastCaller", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "lastData", + "outputs": [ + { + "internalType": "bytes", + "name": "", + "type": "bytes" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "lastSender", + "outputs": [ + { + "internalType": "bytes32", + "name": "", + "type": "bytes32" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "renounceOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "_ism", + "type": "address" + } + ], + "name": "setInterchainSecurityModule", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "newOwner", + "type": "address" + } + ], + "name": "transferOwnership", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + } + ], + "bytecode": "0x608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109d38061007e6000396000f3fe608060405234801561001057600080fd5b50600436106100c85760003560e01c8063715018a611610081578063de523cf31161005b578063de523cf31461019d578063f07c1f47146101bd578063f2fde38b146101d057600080fd5b8063715018a61461016f5780638da5cb5b14610177578063a4982fde1461019557600080fd5b80632113522a116100b25780632113522a14610100578063256fec881461014557806356d5d4751461015c57600080fd5b80626e75ec146100cd5780630e72cc06146100eb575b600080fd5b6100d56101e3565b6040516100e291906105e0565b60405180910390f35b6100fe6100f93660046105fa565b610271565b005b6004546101209073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100e2565b61014e60025481565b6040519081526020016100e2565b6100fe61016a366004610679565b6102c0565b6100fe61031a565b60005473ffffffffffffffffffffffffffffffffffffffff16610120565b6100d561032e565b6001546101209073ffffffffffffffffffffffffffffffffffffffff1681565b6100fe6101cb3660046106de565b61033b565b6100fe6101de3660046105fa565b6103ca565b600380546101f09061072a565b80601f016020809104026020016040519081016040528092919081815260200182805461021c9061072a565b80156102695780601f1061023e57610100808354040283529160200191610269565b820191906000526020600020905b81548152906001019060200180831161024c57829003601f168201915b505050505081565b610279610486565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b828463ffffffff167fba67744c899113a84f615d51af5d82f5fedcf26c9a474d9363c3ad9b0bd501ac84846040516102f99291906107c6565b60405180910390a360028390556003610313828483610860565b5050505050565b610322610486565b61032c6000610507565b565b600580546101f09061072a565b3373ffffffffffffffffffffffffffffffffffffffff167f97d8367a1f39eb9e97f262fafbb05925c0bcfe120aaad7b9737cae34f749c2068484846040516103859392919061097a565b60405180910390a2600480547fffffffffffffffffffffffff0000000000000000000000000000000000000000163317905560056103c4828483610860565b50505050565b6103d2610486565b73ffffffffffffffffffffffffffffffffffffffff811661047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61048381610507565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331461032c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610471565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000815180845260005b818110156105a257602081850181015186830182015201610586565b5060006020828601015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011685010191505092915050565b6020815260006105f3602083018461057c565b9392505050565b60006020828403121561060c57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff811681146105f357600080fd5b60008083601f84011261064257600080fd5b50813567ffffffffffffffff81111561065a57600080fd5b60208301915083602082850101111561067257600080fd5b9250929050565b6000806000806060858703121561068f57600080fd5b843563ffffffff811681146106a357600080fd5b935060208501359250604085013567ffffffffffffffff8111156106c657600080fd5b6106d287828801610630565b95989497509550505050565b6000806000604084860312156106f357600080fd5b83359250602084013567ffffffffffffffff81111561071157600080fd5b61071d86828701610630565b9497909650939450505050565b600181811c9082168061073e57607f821691505b602082108103610777577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b6020815260006107da60208301848661077d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f82111561085b57600081815260208120601f850160051c810160208610156108385750805b601f850160051c820191505b8181101561085757828155600101610844565b5050505b505050565b67ffffffffffffffff831115610878576108786107e2565b61088c83610886835461072a565b83610811565b6000601f8411600181146108de57600085156108a85750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b178355610313565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b8281101561092d578685013582556020948501946001909201910161090d565b5086821015610968577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555050505050565b83815260406020820152600061099460408301848661077d565b9594505050505056fea26469706673582212205d3d83431969180ff80771b45e9b5540042b30ba13ab0219d5790e9d60e8bfec64736f6c63430008110033", + "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100c85760003560e01c8063715018a611610081578063de523cf31161005b578063de523cf31461019d578063f07c1f47146101bd578063f2fde38b146101d057600080fd5b8063715018a61461016f5780638da5cb5b14610177578063a4982fde1461019557600080fd5b80632113522a116100b25780632113522a14610100578063256fec881461014557806356d5d4751461015c57600080fd5b80626e75ec146100cd5780630e72cc06146100eb575b600080fd5b6100d56101e3565b6040516100e291906105e0565b60405180910390f35b6100fe6100f93660046105fa565b610271565b005b6004546101209073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100e2565b61014e60025481565b6040519081526020016100e2565b6100fe61016a366004610679565b6102c0565b6100fe61031a565b60005473ffffffffffffffffffffffffffffffffffffffff16610120565b6100d561032e565b6001546101209073ffffffffffffffffffffffffffffffffffffffff1681565b6100fe6101cb3660046106de565b61033b565b6100fe6101de3660046105fa565b6103ca565b600380546101f09061072a565b80601f016020809104026020016040519081016040528092919081815260200182805461021c9061072a565b80156102695780601f1061023e57610100808354040283529160200191610269565b820191906000526020600020905b81548152906001019060200180831161024c57829003601f168201915b505050505081565b610279610486565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b828463ffffffff167fba67744c899113a84f615d51af5d82f5fedcf26c9a474d9363c3ad9b0bd501ac84846040516102f99291906107c6565b60405180910390a360028390556003610313828483610860565b5050505050565b610322610486565b61032c6000610507565b565b600580546101f09061072a565b3373ffffffffffffffffffffffffffffffffffffffff167f97d8367a1f39eb9e97f262fafbb05925c0bcfe120aaad7b9737cae34f749c2068484846040516103859392919061097a565b60405180910390a2600480547fffffffffffffffffffffffff0000000000000000000000000000000000000000163317905560056103c4828483610860565b50505050565b6103d2610486565b73ffffffffffffffffffffffffffffffffffffffff811661047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61048381610507565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331461032c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610471565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000815180845260005b818110156105a257602081850181015186830182015201610586565b5060006020828601015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011685010191505092915050565b6020815260006105f3602083018461057c565b9392505050565b60006020828403121561060c57600080fd5b813573ffffffffffffffffffffffffffffffffffffffff811681146105f357600080fd5b60008083601f84011261064257600080fd5b50813567ffffffffffffffff81111561065a57600080fd5b60208301915083602082850101111561067257600080fd5b9250929050565b6000806000806060858703121561068f57600080fd5b843563ffffffff811681146106a357600080fd5b935060208501359250604085013567ffffffffffffffff8111156106c657600080fd5b6106d287828801610630565b95989497509550505050565b6000806000604084860312156106f357600080fd5b83359250602084013567ffffffffffffffff81111561071157600080fd5b61071d86828701610630565b9497909650939450505050565b600181811c9082168061073e57607f821691505b602082108103610777577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b6020815260006107da60208301848661077d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f82111561085b57600081815260208120601f850160051c810160208610156108385750805b601f850160051c820191505b8181101561085757828155600101610844565b5050505b505050565b67ffffffffffffffff831115610878576108786107e2565b61088c83610886835461072a565b83610811565b6000601f8411600181146108de57600085156108a85750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b178355610313565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b8281101561092d578685013582556020948501946001909201910161090d565b5086821015610968577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555050505050565b83815260406020820152600061099460408301848661077d565b9594505050505056fea26469706673582212205d3d83431969180ff80771b45e9b5540042b30ba13ab0219d5790e9d60e8bfec64736f6c63430008110033", + "linkReferences": {}, + "deployedLinkReferences": {} +} \ No newline at end of file diff --git a/rust/build.rs b/rust/build.rs new file mode 100644 index 0000000..f91e73e --- /dev/null +++ b/rust/build.rs @@ -0,0 +1,39 @@ +use std::{env::current_dir, path::PathBuf}; + +use ethers::prelude::Abigen; + +fn generate_bind(name: &str, abi_file: &str, bind_out: PathBuf) { + if bind_out.exists() { + std::fs::remove_file(&bind_out).unwrap(); + } + + Abigen::new(name, abi_file) + .unwrap() + .generate() + .unwrap() + .write_to_file(bind_out) + .unwrap(); +} + +fn main() { + let abi_base = current_dir().unwrap().join("abis"); + let bind_base = current_dir() + .unwrap() + .join("tests") + .join("contracts/eth/bind"); + let deployments = [ + ("Mailbox", "mailbox"), + ("FastHypERC20", "fast_hyp_erc20"), + ("FastHypERC20Collateral", "fast_hyp_erc20_collateral"), + ("TestMultisigIsm", "test_mock_ism"), + ("TestRecipient", "test_mock_msg_receiver"), + ]; + + for (abi_file, bind_out) in deployments { + generate_bind( + abi_file, + abi_base.join(format!("{abi_file}.json")).to_str().unwrap(), + bind_base.join(format!("{bind_out}.rs")), + ); + } +} diff --git a/rust/src/lib.rs b/rust/src/lib.rs new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/rust/src/lib.rs @@ -0,0 +1 @@ + diff --git a/rust/tests/constants.rs b/rust/tests/constants.rs new file mode 100644 index 0000000..fe32976 --- /dev/null +++ b/rust/tests/constants.rs @@ -0,0 +1,7 @@ +pub const DOMAIN_EVM: u32 = 1; + +pub const DOMAIN_OSMO: u32 = 2; +pub const PREFIX_OSMO: &str = "osmo"; + +pub const DOMAIN_NTRN: u32 = 3; +pub const PREFIX_NTRN: &str = "neutron"; diff --git a/rust/tests/contracts/eth/bind/mod.rs b/rust/tests/contracts/eth/bind/mod.rs new file mode 100644 index 0000000..153c5d2 --- /dev/null +++ b/rust/tests/contracts/eth/bind/mod.rs @@ -0,0 +1,10 @@ +#[allow(clippy::all)] +pub mod fast_hyp_erc20; +#[allow(clippy::all)] +pub mod fast_hyp_erc20_collateral; +#[allow(clippy::all)] +pub mod mailbox; +#[allow(clippy::all)] +pub mod test_mock_ism; +#[allow(clippy::all)] +pub mod test_mock_msg_receiver; diff --git a/rust/tests/contracts/eth/deploy.rs b/rust/tests/contracts/eth/deploy.rs new file mode 100644 index 0000000..883abf7 --- /dev/null +++ b/rust/tests/contracts/eth/deploy.rs @@ -0,0 +1,36 @@ +use std::sync::Arc; + +use ethers::{prelude::SignerMiddleware, providers::Middleware, signers::Signer}; + +use super::{mailbox, test_mock_ism, test_mock_msg_receiver, types}; + +pub async fn deploy<'a, M: Middleware + 'static, S: Signer + 'static>( + signer: Arc>, + evm_domain: u32, +) -> eyre::Result> { + let ism_multisig_contract = test_mock_ism::TestMultisigIsm::deploy(signer.clone(), ())? + .send() + .await?; + + let msg_receiver_contract = test_mock_msg_receiver::TestRecipient::deploy(signer.clone(), ())? + .send() + .await?; + + let mailbox_contract = mailbox::Mailbox::deploy(signer.clone(), evm_domain)? + .send() + .await?; + + let _ = mailbox_contract + .initialize(signer.address(), ism_multisig_contract.address()) + .send() + .await? + .await?; + + let deployments = types::Deployments { + mailbox: mailbox_contract, + ism: ism_multisig_contract, + msg_receiver: msg_receiver_contract, + }; + + Ok(deployments) +} diff --git a/rust/tests/contracts/eth/mod.rs b/rust/tests/contracts/eth/mod.rs new file mode 100644 index 0000000..a6bb6f2 --- /dev/null +++ b/rust/tests/contracts/eth/mod.rs @@ -0,0 +1,8 @@ +mod bind; +mod deploy; +mod setup; +mod types; + +pub use bind::*; +pub use deploy::deploy; +pub use setup::{setup_env, Env}; diff --git a/rust/tests/contracts/eth/setup.rs b/rust/tests/contracts/eth/setup.rs new file mode 100644 index 0000000..6c4d025 --- /dev/null +++ b/rust/tests/contracts/eth/setup.rs @@ -0,0 +1,39 @@ +use std::{sync::Arc, time::Duration}; + +use ethers::{ + prelude::{k256::ecdsa::SigningKey, SignerMiddleware}, + providers::{Http, Middleware, Provider}, + signers::{LocalWallet, Signer, Wallet}, + utils::{Anvil, AnvilInstance}, +}; + +use super::{deploy, types::Deployments}; + +pub struct Env { + pub app: AnvilInstance, + pub core: Deployments, + pub domain: u32, + + pub acc_owner: S, +} + +pub async fn setup_env(domain: u32) -> eyre::Result, Wallet>> { + let app = Anvil::new().spawn(); + + let wallet = LocalWallet::from(app.keys()[0].clone()); + let wallet = wallet.with_chain_id(app.chain_id()); + + let provider = + Provider::::try_from(&app.endpoint())?.interval(Duration::from_millis(10u64)); + let signer = Arc::new(SignerMiddleware::new(provider, wallet.clone())); + + let core = deploy(signer.clone(), domain).await?; + + Ok(Env { + app, + core, + domain, + + acc_owner: wallet, + }) +} diff --git a/rust/tests/contracts/eth/types.rs b/rust/tests/contracts/eth/types.rs new file mode 100644 index 0000000..0f7f298 --- /dev/null +++ b/rust/tests/contracts/eth/types.rs @@ -0,0 +1,12 @@ +use ethers::{prelude::SignerMiddleware, providers::Middleware, signers::Signer}; + +use super::{ + mailbox::Mailbox, test_mock_ism::TestMultisigIsm, test_mock_msg_receiver::TestRecipient, +}; + +pub struct Deployments { + pub mailbox: Mailbox>, + + pub ism: TestMultisigIsm>, + pub msg_receiver: TestRecipient>, +} diff --git a/rust/tests/contracts/mod.rs b/rust/tests/contracts/mod.rs new file mode 100644 index 0000000..b4d1e5c --- /dev/null +++ b/rust/tests/contracts/mod.rs @@ -0,0 +1 @@ +pub mod eth; diff --git a/rust/tests/mailbox.rs b/rust/tests/mailbox.rs new file mode 100644 index 0000000..7c7853b --- /dev/null +++ b/rust/tests/mailbox.rs @@ -0,0 +1,2 @@ +mod constants; +mod contracts;