From 89e808d3fe43bcb0d3be5700818f96e84dd3d4bc Mon Sep 17 00:00:00 2001 From: sup39 Date: Sun, 23 Jul 2023 05:27:51 +0900 Subject: [PATCH] [v0.1.0-beta.1] Implemented ObjectViewer - load/reload `ObjectParameters/*.json` - get managers, managees - read bytes, struct, string, class name - write bytes --- .gitignore | 2 + CHANGELOG.md | 7 + Cargo.lock | 1230 ++++ Cargo.toml | 26 + LICENSE.txt | 4 + README.md | 36 + about.hbs | 70 + about.toml | 10 + build.sh | 10 + res/ObjectParameters/JDrama TActor.json | 38 + res/ObjectParameters/JDrama TNameRef.json | 26 + res/ObjectParameters/JDrama TPlacement.json | 26 + res/ObjectParameters/JDrama TViewObj.json | 20 + .../JGeometry TVec3(float).json | 25 + res/ObjectParameters/TBossEel.json | 73 + res/ObjectParameters/THitActor.json | 75 + res/ObjectParameters/TLiveActor.json | 138 + res/ObjectParameters/TSpineEnemy.json | 20 + res/ObjectParameters/TTakeActor.json | 25 + res/ObjectParameters/_default.json | 13 + src/addr.rs | 81 + src/big_endian.rs | 53 + src/dolphin.rs | 94 + src/main.rs | 63 + src/obj_params/field_reader.rs | 76 + src/obj_params/mod.rs | 286 + src/server/api.rs | 280 + src/server/http.rs | 138 + src/server/mod.rs | 6 + src/server/ws.rs | 63 + src/sms/mod.rs | 92 + src/sms/vt/GMSE01.json | 1514 +++++ src/sms/vt/GMSJ01.json | 1510 +++++ src/sms/vt/GMSJ0A.json | 1471 +++++ src/sms/vt/GMSP01.json | 1472 +++++ src/sms/vt/mod.rs | 21 + src/sys/mod.rs | 5 + src/sys/process.rs | 65 + src/sys/shared_memory.rs | 66 + sup-smsac-derive/Cargo.lock | 76 + sup-smsac-derive/Cargo.toml | 14 + sup-smsac-derive/src/lib.rs | 109 + www/LICENSE.html | 5660 +++++++++++++++++ www/api.js | 137 + www/icon.svg | 36 + www/index.css | 106 + www/index.html | 32 + www/index.js | 182 + 48 files changed, 15582 insertions(+) create mode 100644 .gitignore create mode 100644 CHANGELOG.md create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 LICENSE.txt create mode 100644 README.md create mode 100644 about.hbs create mode 100644 about.toml create mode 100644 build.sh create mode 100644 res/ObjectParameters/JDrama TActor.json create mode 100644 res/ObjectParameters/JDrama TNameRef.json create mode 100644 res/ObjectParameters/JDrama TPlacement.json create mode 100644 res/ObjectParameters/JDrama TViewObj.json create mode 100644 res/ObjectParameters/JGeometry TVec3(float).json create mode 100644 res/ObjectParameters/TBossEel.json create mode 100644 res/ObjectParameters/THitActor.json create mode 100644 res/ObjectParameters/TLiveActor.json create mode 100644 res/ObjectParameters/TSpineEnemy.json create mode 100644 res/ObjectParameters/TTakeActor.json create mode 100644 res/ObjectParameters/_default.json create mode 100644 src/addr.rs create mode 100644 src/big_endian.rs create mode 100644 src/dolphin.rs create mode 100644 src/main.rs create mode 100644 src/obj_params/field_reader.rs create mode 100644 src/obj_params/mod.rs create mode 100644 src/server/api.rs create mode 100644 src/server/http.rs create mode 100644 src/server/mod.rs create mode 100644 src/server/ws.rs create mode 100644 src/sms/mod.rs create mode 100644 src/sms/vt/GMSE01.json create mode 100644 src/sms/vt/GMSJ01.json create mode 100644 src/sms/vt/GMSJ0A.json create mode 100644 src/sms/vt/GMSP01.json create mode 100644 src/sms/vt/mod.rs create mode 100644 src/sys/mod.rs create mode 100644 src/sys/process.rs create mode 100644 src/sys/shared_memory.rs create mode 100644 sup-smsac-derive/Cargo.lock create mode 100644 sup-smsac-derive/Cargo.toml create mode 100644 sup-smsac-derive/src/lib.rs create mode 100644 www/LICENSE.html create mode 100644 www/api.js create mode 100644 www/icon.svg create mode 100644 www/index.css create mode 100644 www/index.html create mode 100644 www/index.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..90de6fc --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +target/ +out/ diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0d2d3cb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,7 @@ +# Changelog +## v0.1.0-beta.1 (2023/07/23) +- Implemented ObjectViewer + - load/reload `ObjectParameters/*.json` + - get managers, managees + - read bytes, struct, string, class name + - write bytes diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..c3837b6 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,1230 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "addr2line" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "anstream" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is-terminal", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd" + +[[package]] +name = "anstyle-parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" +dependencies = [ + "windows-sys", +] + +[[package]] +name = "anstyle-wincon" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" +dependencies = [ + "anstyle", + "windows-sys", +] + +[[package]] +name = "autocfg" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + +[[package]] +name = "backtrace" +version = "0.3.68" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" + +[[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 = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "bytes" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" + +[[package]] +name = "cc" +version = "1.0.79" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "clap" +version = "4.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d" +dependencies = [ + "clap_builder", + "clap_derive", + "once_cell", +] + +[[package]] +name = "clap_builder" +version = "4.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.3.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.27", +] + +[[package]] +name = "clap_lex" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" + +[[package]] +name = "colorchoice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + +[[package]] +name = "cpufeatures" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" +dependencies = [ + "libc", +] + +[[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 = "data-encoding" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", +] + +[[package]] +name = "encoding_rs" +version = "0.8.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "errno" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" +dependencies = [ + "errno-dragonfly", + "libc", + "windows-sys", +] + +[[package]] +name = "errno-dragonfly" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" +dependencies = [ + "cc", + "libc", +] + +[[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.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures-channel" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" + +[[package]] +name = "futures-macro" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.27", +] + +[[package]] +name = "futures-sink" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" + +[[package]] +name = "futures-task" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" + +[[package]] +name = "futures-util" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" +dependencies = [ + "futures-core", + "futures-macro", + "futures-sink", + "futures-task", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "gimli" +version = "0.27.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" + +[[package]] +name = "h2" +version = "0.3.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap", + "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 = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "hermit-abi" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" + +[[package]] +name = "http" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" +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.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" + +[[package]] +name = "hyper" +version = "0.14.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" +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-tungstenite" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "226df6fd0aece319a325419d770aa9d947defa60463f142cd82b329121f906a3" +dependencies = [ + "hyper", + "pin-project", + "tokio", + "tokio-tungstenite", + "tungstenite", +] + +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown", +] + +[[package]] +name = "is-docker" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" +dependencies = [ + "once_cell", +] + +[[package]] +name = "is-terminal" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" +dependencies = [ + "hermit-abi", + "rustix", + "windows-sys", +] + +[[package]] +name = "is-wsl" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" +dependencies = [ + "is-docker", + "once_cell", +] + +[[package]] +name = "itoa" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" + +[[package]] +name = "libc" +version = "0.2.147" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3" + +[[package]] +name = "linux-raw-sys" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0" + +[[package]] +name = "lock_api" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4" + +[[package]] +name = "memchr" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "mime_guess" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" +dependencies = [ + "mime", + "unicase", +] + +[[package]] +name = "miniz_oxide" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +dependencies = [ + "adler", +] + +[[package]] +name = "mio" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" +dependencies = [ + "libc", + "wasi", + "windows-sys", +] + +[[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 = "object" +version = "0.31.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" + +[[package]] +name = "open" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfabf1927dce4d6fdf563d63328a0a506101ced3ec780ca2135747336c98cef8" +dependencies = [ + "is-wsl", + "libc", + "pathdiff", +] + +[[package]] +name = "parking_lot" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets", +] + +[[package]] +name = "pathdiff" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" + +[[package]] +name = "percent-encoding" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" + +[[package]] +name = "pin-project" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.27", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + +[[package]] +name = "proc-macro2" +version = "1.0.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fe8a65d69dd0808184ebb5f836ab526bb259db23c657efa38711b1072ee47f0" +dependencies = [ + "proc-macro2", +] + +[[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 = "redox_syscall" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + +[[package]] +name = "rustix" +version = "0.38.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5" +dependencies = [ + "bitflags 2.3.3", + "errno", + "libc", + "linux-raw-sys", + "windows-sys", +] + +[[package]] +name = "ryu" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "serde" +version = "1.0.174" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b88756493a5bd5e5395d53baa70b194b05764ab85b59e43e4b8f4e1192fa9b1" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.174" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e5c3a298c7f978e53536f95a63bdc4c4a64550582f31a0359a9afda6aede62e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.27", +] + +[[package]] +name = "serde_json" +version = "1.0.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "sha1" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "signal-hook-registry" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +dependencies = [ + "libc", +] + +[[package]] +name = "slab" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" + +[[package]] +name = "socket2" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "strsim" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + +[[package]] +name = "sup-smsac" +version = "0.1.0-beta.1" +dependencies = [ + "clap", + "encoding_rs", + "futures-util", + "hyper", + "hyper-tungstenite", + "mime_guess", + "open", + "serde", + "serde_json", + "sup-smsac-derive", + "tokio", + "tokio-util", + "urlencoding", + "windows", +] + +[[package]] +name = "sup-smsac-derive" +version = "0.1.0-beta.1" +dependencies = [ + "quote", + "serde_json", + "syn 1.0.109", +] + +[[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.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b60f673f44a8255b9c8c657daf66a596d435f2da81a555b06dc644d080ba45e0" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "thiserror" +version = "1.0.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.27", +] + +[[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.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da" +dependencies = [ + "autocfg", + "backtrace", + "bytes", + "libc", + "mio", + "num_cpus", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys", +] + +[[package]] +name = "tokio-macros" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.27", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec509ac96e9a0c43427c74f003127d953a265737636129424288d27cb5c4b12c" +dependencies = [ + "futures-util", + "log", + "tokio", + "tungstenite", +] + +[[package]] +name = "tokio-util" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", + "tracing", +] + +[[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.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +dependencies = [ + "cfg-if", + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "try-lock" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" + +[[package]] +name = "tungstenite" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15fba1a6d6bb030745759a9a2a588bfe8490fc8b4751a277db3a0be1c9ebbf67" +dependencies = [ + "byteorder", + "bytes", + "data-encoding", + "http", + "httparse", + "log", + "rand", + "sha1", + "thiserror", + "url", + "utf-8", +] + +[[package]] +name = "typenum" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" + +[[package]] +name = "unicase" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" +dependencies = [ + "version_check", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" + +[[package]] +name = "unicode-ident" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" + +[[package]] +name = "unicode-normalization" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "url" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", +] + +[[package]] +name = "urlencoding" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[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 = "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-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-targets" +version = "0.48.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..4bb5221 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "sup-smsac" +version = "0.1.0-beta.1" +edition = "2021" +license = "MIT OR Apache-2.0" +repository = "https://github.com/sup39/sup-smsac" + +[dependencies] +sup-smsac-derive = { path = "./sup-smsac-derive" } +encoding_rs = "0.8.32" +windows = {version = "0.48.0", features = [ + "Win32_Foundation", + "Win32_System_Diagnostics_ToolHelp", + "Win32_System_Memory", +]} +futures-util = "0.3.28" +hyper = { version = "0.14.27", features = ["full"] } +hyper-tungstenite = "0.10.0" +serde_json = "1.0.103" +tokio = { version = "1.29.1", features = ["full"] } +tokio-util = "0.7.8" +open = "5.0.0" +clap = { version = "4.3.16", features = ["derive"] } +mime_guess = "2.0.4" +urlencoding = "2.1.2" +serde = { version = "1.0.174", features = ["rc", "derive"] } diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..93cd80e --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,4 @@ +# SPDX-FileCopyrightText: 2023 sup39 +# SPDX-License-Identifier: MIT OR Apache-2.0 + +See "www/LICENSE.html" for the full license text. diff --git a/README.md b/README.md new file mode 100644 index 0000000..09e2141 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# sup-smsac +A tool to support Super Mario Sunshine academic research and TAS. +It is written in Rust (backend) and JavaScript (frontend), and uses HTTP + WebSocket to communicate between backend and frontend. +It only contains a simple Object Viewer at the moment. + +## Usage +Download the binary from the [releases page](https://github.com/sup39/sup-smsac/releases). Unzip and double click `sup-smsac.exe`. It should open browser automatically for you. If it doesn't, open browser and navigate to the url shown in the terminal manually. + +## Building from Source (Windows only) +Requirements: +- [cargo](https://www.rust-lang.org/tools/install) +- [Git Bash](https://git-scm.com/download/win) + +```sh +# Clone the repository +git clone https://github.com/sup39/sup-smsac + +# cd to the directory of the repository +cd sup-smsac + +# run the build script +sh build.sh + +# the out files will be in "out/sup-smsac-$version" +``` + +Note that if you are using `cargo run`, you have to pass `-d path/to/repository/directory` as argument to specify the path to the directory of the repository: +``` +# assuming you are in the directory of the repository +cargo run -- -d . +``` + +## TODO +- [ ] documentation of the WebSocket API +- [ ] add more ObjectParameters files +- [ ] UI improvement diff --git a/about.hbs b/about.hbs new file mode 100644 index 0000000..699b3b0 --- /dev/null +++ b/about.hbs @@ -0,0 +1,70 @@ + + + + + + + +
+
+

Third Party Licenses

+

This page lists the licenses of the projects used in cargo-about.

+
+ +

Overview of licenses:

+
    + {{#each overview}} +
  • {{name}} ({{count}})
  • + {{/each}} +
+ +

All license text:

+ +
+ + + diff --git a/about.toml b/about.toml new file mode 100644 index 0000000..dc2eda2 --- /dev/null +++ b/about.toml @@ -0,0 +1,10 @@ +accepted = [ + "Apache-2.0", + "MIT", + "BSD-2-Clause", + "BSD-3-Clause", + "Unicode-DFS-2016", +] + +ignore-build-dependencies = true +ignore-dev-dependencies = true diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..ee4b205 --- /dev/null +++ b/build.sh @@ -0,0 +1,10 @@ +set -e + +version=$(grep -Po '(?<=version = ").*(?=")' Cargo.toml | head -n1) +outDir=out/sup-smsac-$version +#rm -rf "$outDir" +mkdir -p "$outDir" + +cargo build --release +cp ./target/release/sup-smsac.exe "$outDir/" +cp -r www res README.md LICENSE.txt CHANGELOG.md "$outDir/" diff --git a/res/ObjectParameters/JDrama TActor.json b/res/ObjectParameters/JDrama TActor.json new file mode 100644 index 0000000..222a14b --- /dev/null +++ b/res/ObjectParameters/JDrama TActor.json @@ -0,0 +1,38 @@ +{ + "JDrama::TActor": { + "size": 68, + "offsets": [ + { + "offset": "0", + "type": "JDrama::TPlacement", + "name": "Inherited fields", + "notes": "" + }, + { + "offset": "20", + "type": "JStage::TActor", + "name": "Inherited fields", + "notes": "" + }, + { + "offset": "24", + "type": "JGeometry::TVec3", + "name": "* Scale", + "notes": "" + }, + { + "offset": "30", + "type": "JGeometry::TVec3", + "name": "* Rotation", + "notes": "" + }, + { + "offset": "40", + "type": "JDrama::TLightMap*", + "name": "", + "notes": "", + "hidden": true + } + ] + } +} diff --git a/res/ObjectParameters/JDrama TNameRef.json b/res/ObjectParameters/JDrama TNameRef.json new file mode 100644 index 0000000..fc145ad --- /dev/null +++ b/res/ObjectParameters/JDrama TNameRef.json @@ -0,0 +1,26 @@ +{ + "JDrama::TNameRef": { + "size": 10, + "offsets": [ + { + "offset": "0", + "type": "void*", + "name": "vtable", + "notes": "" + }, + { + "offset": "4", + "type": "string", + "name": "Name", + "notes": "" + }, + { + "offset": "8", + "type": "s16", + "name": "Key code", + "notes": "", + "hidden": true + } + ] + } +} diff --git a/res/ObjectParameters/JDrama TPlacement.json b/res/ObjectParameters/JDrama TPlacement.json new file mode 100644 index 0000000..d316e7f --- /dev/null +++ b/res/ObjectParameters/JDrama TPlacement.json @@ -0,0 +1,26 @@ +{ + "JDrama::TPlacement": { + "size": 32, + "offsets": [ + { + "offset": "0", + "type": "JDrama::TViewObj", + "name": "Inherited fields", + "notes": "" + }, + { + "offset": "10", + "type": "JGeometry::TVec3", + "name": "* Position", + "notes": "" + }, + { + "offset": "1c", + "type": "s16", + "name": "", + "notes": "", + "hidden": true + } + ] + } +} diff --git a/res/ObjectParameters/JDrama TViewObj.json b/res/ObjectParameters/JDrama TViewObj.json new file mode 100644 index 0000000..cdeaa09 --- /dev/null +++ b/res/ObjectParameters/JDrama TViewObj.json @@ -0,0 +1,20 @@ +{ + "JDrama::TViewObj": { + "size": 16, + "offsets": [ + { + "offset": "0", + "type": "JDrama::TNameRef", + "name": "Inherited fields", + "notes": "" + }, + { + "offset": "c", + "type": "u16", + "name": "Flags", + "notes": "", + "hidden": true + } + ] + } +} diff --git a/res/ObjectParameters/JGeometry TVec3(float).json b/res/ObjectParameters/JGeometry TVec3(float).json new file mode 100644 index 0000000..b1a032d --- /dev/null +++ b/res/ObjectParameters/JGeometry TVec3(float).json @@ -0,0 +1,25 @@ +{ + "JGeometry::TVec3": { + "size": 12, + "offsets": [ + { + "offset": "0", + "type": "float", + "name": "X", + "notes": "" + }, + { + "offset": "4", + "type": "float", + "name": "Y", + "notes": "" + }, + { + "offset": "8", + "type": "float", + "name": "Z", + "notes": "" + } + ] + } +} diff --git a/res/ObjectParameters/TBossEel.json b/res/ObjectParameters/TBossEel.json new file mode 100644 index 0000000..c1d6ffb --- /dev/null +++ b/res/ObjectParameters/TBossEel.json @@ -0,0 +1,73 @@ +{ + "TBossEel": { + "size": 544, + "offsets": [ + { + "offset": "0", + "type": "TSpineEnemy", + "name": "Inherited fields", + "notes": "" + }, + { + "offset": ["16c", "70"], + "type": "s32", + "name": "tooth[0].hp", + "notes": "" + }, + { + "offset": ["170", "70"], + "type": "s32", + "name": "tooth[1].hp", + "notes": "" + }, + { + "offset": ["174", "70"], + "type": "s32", + "name": "tooth[2].hp", + "notes": "" + }, + { + "offset": ["178", "70"], + "type": "s32", + "name": "tooth[3].hp", + "notes": "" + }, + { + "offset": ["17c", "70"], + "type": "s32", + "name": "tooth[4].hp", + "notes": "" + }, + { + "offset": ["180", "70"], + "type": "s32", + "name": "tooth[5].hp", + "notes": "" + }, + { + "offset": ["184", "70"], + "type": "s32", + "name": "tooth[6].hp", + "notes": "" + }, + { + "offset": ["188", "70"], + "type": "s32", + "name": "tooth[7].hp", + "notes": "" + }, + { + "offset": "1fc", + "type": "u8", + "name": "Water hit tooth flag", + "notes": "" + }, + { + "offset": "1fd", + "type": "u8", + "name": "Molar washed flag", + "notes": "" + } + ] + } +} diff --git a/res/ObjectParameters/THitActor.json b/res/ObjectParameters/THitActor.json new file mode 100644 index 0000000..bf04512 --- /dev/null +++ b/res/ObjectParameters/THitActor.json @@ -0,0 +1,75 @@ +{ + "THitActor": { + "size": 104, + "offsets": [ + { + "offset": "0", + "type": "JDrama::TActor", + "name": "Inherited fields", + "notes": "" + }, + { + "offset": "44", + "type": "THitActor**", + "name": "Collided object array", + "notes": "" + }, + { + "offset": "48", + "type": "s16", + "name": "Collided object count", + "notes": "" + }, + { + "offset": "4a", + "type": "s16", + "name": "Collided object capacity", + "notes": "" + }, + { + "offset": "4c", + "type": "u32", + "format": "hex", + "name": "Actor type", + "notes": "& 0x8000_0000: player\n& 0x1000_0000: enemy\n& 0x0800_0000: boss" + }, + { + "offset": "50", + "type": "float", + "name": "Attacking hitbox radius", + "notes": "" + }, + { + "offset": "54", + "type": "float", + "name": "Attacking hitbox height", + "notes": "" + }, + { + "offset": "58", + "type": "float", + "name": "Receiving hitbox radius", + "notes": "" + }, + { + "offset": "5c", + "type": "float", + "name": "Receiving hitbox height", + "notes": "" + }, + { + "offset": "60", + "type": "float", + "name": "Entry radius", + "notes": "" + }, + { + "offset": "64", + "type": "u32", + "format": "hex", + "name": "Collision flag\n (0) active / (1) no collision", + "notes": "" + } + ] + } +} diff --git a/res/ObjectParameters/TLiveActor.json b/res/ObjectParameters/TLiveActor.json new file mode 100644 index 0000000..8b0acd1 --- /dev/null +++ b/res/ObjectParameters/TLiveActor.json @@ -0,0 +1,138 @@ +{ + "TLiveActor": { + "size": 244, + "offsets": [ + { + "offset": "0", + "type": "TTakeActor", + "name": "Inherited fields", + "notes": "" + }, + { + "offset": "70", + "type": "TLiveManager*", + "name": "Manager", + "notes": "", + "hidden": true + }, + { + "offset": "74", + "type": "MActor*", + "name": "", + "notes": "" + }, + { + "offset": ["74", "c", "0"], + "type": "s32", + "name": "Animation id", + "notes": "" + }, + { + "offset": ["74", "28", "0", "14"], + "type": "float", + "name": "Animation frame counter", + "notes": "" + }, + { + "offset": ["74", "28", "0", "c"], + "type": "s16", + "name": "Animation frame length", + "notes": "" + }, + { + "offset": ["74", "28", "0", "10"], + "type": "float", + "name": "Animation frame rate", + "notes": "" + }, + { + "offset": "7c", + "type": "s16", + "name": "Index in manager?", + "notes": "", + "hidden": true + }, + { + "offset": "80", + "type": "MAnimSound*", + "name": "", + "notes": "", + "hidden": true + }, + { + "offset": "84", + "type": "JKRFileLoader*", + "name": "", + "notes": "", + "hidden": true + }, + { + "offset": "8c", + "type": "TSpineBase*", + "name": "AI", + "notes": "" + }, + { + "offset": ["8c", "1c", "0"], + "type": "void*", + "name": "Previous nerve", + "notes": "" + }, + { + "offset": ["8c", "14", "0"], + "type": "void*", + "name": "Current nerve", + "notes": "" + }, + { + "offset": ["8c", "20"], + "type": "s32", + "name": "Nerve timer", + "notes": "" + }, + { + "offset": "94", + "type": "JGeometry::TVec3", + "name": "* Movement (unit/step)", + "notes": "" + }, + { + "offset": "ac", + "type": "JGeometry::TVec3", + "name": "* Speed (unit/step)", + "notes": "" + }, + { + "offset": "bc", + "type": "float", + "name": "Wall hitbox width", + "notes": "" + }, + { + "offset": "c4", + "type": "TBGCheckData*", + "name": "", + "notes": "" + }, + { + "offset": "c8", + "type": "float", + "name": "Ground Height", + "notes": "" + }, + { + "offset": "cc", + "type": "float", + "name": "Gravity (unit/step²)", + "notes": "" + }, + { + "offset": "f0", + "type": "u32", + "format": "hex", + "name": "Flag", + "notes": "& 0x0001: active(0) / inactive(1)\n& 0x0010: this.bind() enabled(0) / disabled(1)\n& 0x0080: is airborne(1): next position > height of ground below + 0.05\n& 0x1000: checkGround(0) / checkGroundIgnoreWaterSurface(1)" + } + ] + } +} diff --git a/res/ObjectParameters/TSpineEnemy.json b/res/ObjectParameters/TSpineEnemy.json new file mode 100644 index 0000000..c2c2474 --- /dev/null +++ b/res/ObjectParameters/TSpineEnemy.json @@ -0,0 +1,20 @@ +{ + "TSpineEnemy": { + "size": 336, + "offsets": [ + { + "offset": "0", + "type": "TLiveActor", + "name": "Inherited fields", + "notes": "" + }, + { + "offset": "124", + "type": "TGraphTracer*", + "name": "Movement graph", + "notes": "", + "hidden": true + } + ] + } +} diff --git a/res/ObjectParameters/TTakeActor.json b/res/ObjectParameters/TTakeActor.json new file mode 100644 index 0000000..3d8e177 --- /dev/null +++ b/res/ObjectParameters/TTakeActor.json @@ -0,0 +1,25 @@ +{ + "TTakeActor": { + "size": 112, + "offsets": [ + { + "offset": "0", + "type": "THitActor", + "name": "Inherited fields", + "notes": "" + }, + { + "offset": "68", + "type": "TTakeActor*", + "name": "Holder", + "notes": "" + }, + { + "offset": "6c", + "type": "TTakeActor*", + "name": "Held object", + "notes": "" + } + ] + } +} diff --git a/res/ObjectParameters/_default.json b/res/ObjectParameters/_default.json new file mode 100644 index 0000000..992eb85 --- /dev/null +++ b/res/ObjectParameters/_default.json @@ -0,0 +1,13 @@ +{ + "_default": { + "size": -1, + "offsets": [ + { + "offset": "0", + "type": "TSpineEnemy", + "name": "", + "notes": "" + } + ] + } +} diff --git a/src/addr.rs b/src/addr.rs new file mode 100644 index 0000000..859b058 --- /dev/null +++ b/src/addr.rs @@ -0,0 +1,81 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +use crate::big_endian::DecodeBE; +use sup_smsac_derive::DecodeBE; + +#[derive(DecodeBE, Clone, Copy, PartialEq, PartialOrd)] +pub struct Addr(pub u32); + +impl From for u32 { + fn from(x: Addr) -> u32 { + x.0 + } +} +impl From for Addr { + fn from(x: u32) -> Self { + Self(x) + } +} + +impl Addr { + pub fn add(&self, rhs: u32) -> Addr { + Addr(self.0 + rhs) + } + pub fn offset(&self, by: i32) -> Addr { + Addr(self.0 + by as u32) + } +} + +impl std::ops::Add for Addr { + type Output = Addr; + fn add(self, other: u32) -> Addr { + Addr(self.0+other) + } +} +impl std::ops::Sub for Addr { + type Output = Addr; + fn sub(self, other: u32) -> Addr { + Addr(self.0-other) + } +} +impl std::ops::Sub for Addr { + type Output = isize; + fn sub(self, other: Addr) -> isize { + (self.0 - other.0) as i32 as isize + } +} +impl std::fmt::Display for Addr { + fn fmt(&self, f:&mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(f, "{:08X}", self.0) + } +} +impl std::fmt::Debug for Addr { + fn fmt(&self, f:&mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(f, "{:08X}", self.0) + } +} + +#[derive(Debug, Clone)] +pub struct AddrOffsets(pub T, pub Box<[T]>); +impl std::ops::Add<&AddrOffsets> for &AddrOffsets { + type Output = AddrOffsets; + fn add(self, other: &AddrOffsets) -> AddrOffsets { + match self.1.split_last() { + Some((last, init)) => AddrOffsets( + self.0, + [init, &[last+other.0], &other.1].concat().into(), + ), + None => AddrOffsets(self.0+other.0, other.1.clone()), + } + } +} +impl std::fmt::Display for AddrOffsets { + fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { + write!(fmt, "{:X}", self.0)?; + for off in self.1.iter() { + write!(fmt, ",{:X}", off)?; + } + Ok(()) + } +} diff --git a/src/big_endian.rs b/src/big_endian.rs new file mode 100644 index 0000000..7d63963 --- /dev/null +++ b/src/big_endian.rs @@ -0,0 +1,53 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +pub trait DecodeBE { + const PACKED_SIZE: usize; + /// # Safety + /// + /// [`ptr`, `ptr+size_of(Self)`) must be valid + unsafe fn decode_be(ptr: *const u8) -> Self; +} + +macro_rules! impl_decode_be_for_int { + ($type:ident, $size:literal) => { + impl DecodeBE for $type { + const PACKED_SIZE: usize = $size; + #[inline] + unsafe fn decode_be(ptr: *const u8) -> Self { + $type::to_be(*(ptr as *const $type)) + } + } + }; +} +macro_rules! impl_decode_be_for_float { + ($ftype:ident, $itype:ident, $size:literal) => { + impl DecodeBE for $ftype { + const PACKED_SIZE: usize = $size; + #[inline] + unsafe fn decode_be(ptr: *const u8) -> Self { + $ftype::from_bits($itype::to_be(*(ptr as *const $itype))) + } + } + }; +} + +impl_decode_be_for_int!(u8, 1); +impl_decode_be_for_int!(i8, 1); +impl_decode_be_for_int!(u16, 2); +impl_decode_be_for_int!(i16, 2); +impl_decode_be_for_int!(u32, 4); +impl_decode_be_for_int!(i32, 4); +impl_decode_be_for_int!(u64, 8); +impl_decode_be_for_int!(i64, 8); +impl_decode_be_for_int!(u128, 16); +impl_decode_be_for_int!(i128, 16); +impl_decode_be_for_float!(f32, u32, 4); +impl_decode_be_for_float!(f64, u64, 8); + +impl DecodeBE for &[u8; N] { + const PACKED_SIZE: usize = N; + unsafe fn decode_be(ptr: *const u8) -> Self { + &*(ptr as *const [u8; N]) + } +} diff --git a/src/dolphin.rs b/src/dolphin.rs new file mode 100644 index 0000000..887335d --- /dev/null +++ b/src/dolphin.rs @@ -0,0 +1,94 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +use crate::sys::process::PidType; +use crate::sys::shared_memory::{SharedMemory, SharedMemoryOpenError}; +use crate::addr::Addr; +use crate::big_endian::DecodeBE; +use crate::sys::process::{Process32Iterator, ProcessInfo}; +use encoding_rs::SHIFT_JIS; + +pub const MEM1_START_ADDR: Addr = Addr(0x8000_0000); +pub const MEM1_END_ADDR: Addr = Addr(0x8180_0000); +pub trait Dolphin { + /// # Safety + /// + /// The offset must be smaller than the size of the memory region + unsafe fn mem>(&self, offset: T) -> *mut u8; + + fn get_ptr_mut(&self, addr: Addr, size: usize) -> Option<*mut u8> { + if MEM1_START_ADDR <= addr && addr < MEM1_END_ADDR - size as u32 { + Some(unsafe {self.mem(addr - MEM1_START_ADDR)}) + } else { + None + } + } + + #[inline] + fn read_bytes(&self, addr: Addr, size: usize) -> Option<&[u8]> { + self.get_ptr_mut(addr, size) + .map(|ptr| unsafe {std::slice::from_raw_parts(ptr, size)}) + } + #[inline] + fn read(&self, addr: Addr) -> Option { + let size = std::mem::size_of::(); + self.get_ptr_mut(addr, size) + .map(|ptr| unsafe {T::decode_be(ptr)}) + } + fn read_str(&self, addr: Addr) -> Option { + if MEM1_START_ADDR <= addr && addr < MEM1_END_ADDR { + let ptr = unsafe {self.mem(addr - MEM1_START_ADDR)}; + const MAX_LENGTH: u32 = 256; // TODO + let max_length = MAX_LENGTH; // TODO + let maxlen = std::cmp::min(max_length as usize, (MEM1_END_ADDR - addr) as usize); + // let maxlen = (MEM1_END_ADDR - addr) as usize; + let mut len = 0usize; + while len < maxlen { + if unsafe{*ptr.add(len) == 0} {break;} + len += 1; + } + SHIFT_JIS.decode_without_bom_handling_and_without_replacement(unsafe{std::slice::from_raw_parts(ptr, len)}).map(|x| x.into_owned()) + } else { + None + } + } + + #[inline] + fn write_bytes(&self, addr: Addr, payload: &[u8]) -> Option<()> { + let size = payload.len(); + self.get_ptr_mut(addr, size) + .map(|ptr| unsafe {std::ptr::copy(payload.as_ptr(), ptr, size)}) + } +} + +pub struct DolphinMemory { + shared_memory: SharedMemory, + pid: PidType, +} + +impl Dolphin for DolphinMemory { + #[inline] + unsafe fn mem>(&self, offset: T) -> *mut u8 { + self.shared_memory.get_ptr().offset(offset.into()) + } +} +impl DolphinMemory { + #[inline] + pub fn pid(&self) -> PidType { + self.pid + } + + pub fn open_pid>(pid: T) -> Result { + let pid: usize = pid.into(); + let shared_memory = SharedMemory::open(&format!("dolphin-emu.{}", pid))?; + Ok(DolphinMemory {shared_memory, pid}) + } + pub fn list_dolphin() -> impl Iterator)> { + Process32Iterator::new().filter_map(|p| p.get_name().to_str().and_then(|name| + match name { + "Dolphin.exe" => Some((p.pid(), DolphinMemory::open_pid(p.pid()))), + _ => None, + } + )) + } +} diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..0a49525 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,63 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +pub mod dolphin; +pub mod addr; +pub mod big_endian; +pub mod sys; +pub mod sms; +pub mod server; +pub mod obj_params; + +use std::net::{IpAddr, SocketAddr}; +use std::path::PathBuf; +use clap::Parser; + +#[derive(Parser)] +struct Args { + #[arg(long, default_value_t = IpAddr::V4(std::net::Ipv4Addr::LOCALHOST))] + host: IpAddr, + + #[arg(short='p', long, default_value_t = 35353)] + port: u16, + + #[arg(long)] + no_browser: bool, + + #[arg(short='d', long)] + root_dir: Option, +} + +#[tokio::main] +async fn main() { + let args = Args::parse(); + + let listener = { + let mut sock_addr = SocketAddr::new(args.host, args.port); + match tokio::net::TcpListener::bind(&sock_addr).await { + Ok(listener) => { + listener + }, + Err(err) => { + println!("Failed to listen on {sock_addr}: {err}\nTrying other port...\n"); + sock_addr.set_port(0); + tokio::net::TcpListener::bind(&sock_addr).await.unwrap() + }, + } + }; + + let url = format!("http://{}", listener.local_addr().unwrap()); + println!("Listening on {url}"); + if !args.no_browser { + let _ = open::that(url); + } + + let root_dir = args.root_dir + .unwrap_or_else(|| { + let mut path = std::env::current_exe().unwrap(); + path.pop(); + path + }).canonicalize().unwrap().into_boxed_path(); + + server::http::serve(listener, root_dir).await.unwrap(); +} diff --git a/src/obj_params/field_reader.rs b/src/obj_params/field_reader.rs new file mode 100644 index 0000000..0bca0aa --- /dev/null +++ b/src/obj_params/field_reader.rs @@ -0,0 +1,76 @@ +use crate::{ + addr::Addr, + big_endian::DecodeBE, + dolphin::Dolphin, + sms::SMSDolphin, +}; +use std::marker::PhantomData; + +pub trait FieldReader { + fn read(&self, d: &D, addr: Addr) -> Option; +} + +pub struct PrimitiveFieldReader { + phantom: PhantomData, +} +impl PrimitiveFieldReader { + pub fn new() -> Self { + Self { + phantom: PhantomData, + } + } +} +impl FieldReader for PrimitiveFieldReader { + fn read(&self, d: &D, addr: Addr) -> Option { + d.read::(addr) + } +} +impl FieldReader for PrimitiveFieldReader { + fn read(&self, d: &D, addr: Addr) -> Option { + d.read::(addr).map(|x| x.to_string()) + } +} + +pub struct F32FieldReader; +impl FieldReader for F32FieldReader { + fn read(&self, d: &D, addr: Addr) -> Option { + d.read::(addr) + } +} +impl FieldReader for F32FieldReader { + fn read(&self, d: &D, addr: Addr) -> Option { + d.read::(addr).map(|x| match x.abs() { + m if (1e-4..1e8).contains(&m) || m == 0f32 => { + let s = format!("{x}"); + match m < 8388608f32 && s.contains('.') { + true => s, + false => s+".0", + } + }, + _ => format!("{x:e}"), + }) + } +} + +pub struct StringFieldReader; +impl FieldReader for StringFieldReader { + fn read(&self, d: &D, addr: Addr) -> Option { + d.read::(addr).and_then(|a| d.read_str(a)) + } +} + +pub struct ClassNameReader; +impl FieldReader for ClassNameReader { + fn read(&self, d: &SMSDolphin, addr: Addr) -> Option { + d.read::(addr) + .map(|addr| d.get_class_string(addr)) + } +} + +pub struct HexFieldReader(pub usize); +impl FieldReader for HexFieldReader { + fn read(&self, d: &D, addr: Addr) -> Option { + d.read_bytes(addr, self.0) + .map(|bytes| bytes.iter().map(|x| format!("{x:02X}")).collect()) + } +} diff --git a/src/obj_params/mod.rs b/src/obj_params/mod.rs new file mode 100644 index 0000000..c4dc275 --- /dev/null +++ b/src/obj_params/mod.rs @@ -0,0 +1,286 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +use std::fs::{read_dir, File}; +use std::io::BufReader; +use std::sync::Arc; +use std::borrow::Cow; +use std::collections::HashMap; +use std::path::Path; +use serde_json; +use serde::{Deserialize, Deserializer, de::{self, Visitor}}; +use crate::{ + addr::{Addr, AddrOffsets}, + big_endian::DecodeBE, + dolphin::Dolphin, + sms::SMSDolphin, +}; + +mod field_reader; +use field_reader::*; + +/**** original json ****/ +#[derive(Debug, Deserialize)] +struct ObjParamsJson { + offsets: Box<[ObjParamsOffsetEntry]>, +} + +#[derive(Debug, Deserialize)] +struct ObjParamsOffsetEntry { + #[serde(deserialize_with = "deserialize_obj_params_offset_entry")] + offset: AddrOffsets, + #[serde(rename = "type")] + type_: Arc, + name: Arc, + notes: Arc, + #[serde( + default = "ObjParamsOffsetEntryFormat::none", + deserialize_with = "deserialize_obj_params_offset_entry_format", + )] + format: Option, + hidden: Option, +} +#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] +enum ObjParamsOffsetEntryFormat { + Hex, +} +impl ObjParamsOffsetEntryFormat { + #[inline] + fn none() -> Option { + None + } +} + +impl std::fmt::Display for ObjParamsOffsetEntryFormat { + fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { + match self { + Self::Hex => write!(fmt, "hex"), + } + } +} + +fn deserialize_obj_params_offset_entry<'de, D>(deserializer: D) -> Result +where + D: Deserializer<'de>, +{ + struct ValueVisitor; + impl<'de> Visitor<'de> for ValueVisitor { + type Value = AddrOffsets; + fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result { + formatter.write_str("a hex string or a non-empty array of hex string") + } + fn visit_str(self, value: &str) -> Result + where + E: de::Error, + { + u32::from_str_radix(value, 16) + .map_err(|e| E::custom(e)) + .map(|x| AddrOffsets(x, Box::from([]))) + } + fn visit_seq(self, mut seq: S) -> Result + where + S: de::SeqAccess<'de>, + { + let mut arr = match seq.size_hint() { + Some(size) => Vec::::with_capacity(size), + None => Vec::::new(), + }; + while let Some(value) = seq.next_element::>()? { + arr.push(u32::from_str_radix(&value, 16).map_err(de::Error::custom)?); + } + arr.split_first() + .map(|p| AddrOffsets(*p.0, p.1.into())) + .ok_or_else(|| de::Error::custom("Offset array must not be empty")) + } + } + + deserializer.deserialize_any(ValueVisitor) +} + +fn deserialize_obj_params_offset_entry_format<'de, D>(deserializer: D) + -> Result, D::Error> +where + D: Deserializer<'de>, +{ + struct ValueVisitor; + impl<'de> Visitor<'de> for ValueVisitor { + type Value = Option; + fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result { + formatter.write_str("\"hex\" or omitted") + } + fn visit_none(self) -> Result { + Ok(None) + } + fn visit_str(self, value: &str) -> Result + where + E: de::Error, + { + match value { + "hex" => Ok(Some(ObjParamsOffsetEntryFormat::Hex)), + _ => Err(E::unknown_variant(value, &["hex"])), + } + } + } + + deserializer.deserialize_any(ValueVisitor) +} + +/**** parsed ****/ +pub enum ObjectType { + Primitive(ClassFieldReader), + Class(Box<[ClassField]>), +} +impl ObjectType { + fn new_primitive() -> Self { + ObjectType::::Primitive(Arc::new(PrimitiveFieldReader::::new())) + } +} + +type ClassFieldReader = Arc + Send + Sync>; +pub struct ClassField { + pub offset: AddrOffsets, + pub type_: Arc, + pub name: Arc, + pub notes: Arc, + pub class: Arc, + pub reader: ClassFieldReader, +} +impl FieldReader for ClassField { + #[inline] + fn read(&self, d: &D, addr: Addr) -> Option { + self.reader.read(d, addr) + } +} + +pub type ObjParams = HashMap, ObjectType>; +pub type ObjParamsLoadResult = Result, std::io::Error>; +pub fn load_obj_params(dir: &Path) -> ObjParamsLoadResult { + type D = SMSDolphin; // TODO + let entry_reader = read_dir(dir)?; + let mut db_raw = HashMap::, Arc>::new(); + entry_reader.for_each(|entry| { + let Ok(entry) = entry.map_err(|e| eprintln!("Fail to get entry: {e}")) else {return}; + let path = entry.path(); + if Some(true) != path.extension().map(|e| e == "json") {return} + let Ok(file) = File::open(&path) + .map_err(|e| eprintln!("Fail to open file \"{}\": {e}", path.to_string_lossy())) else {return}; + let reader = BufReader::new(file); + let Ok(o) = serde_json::from_reader::<_, HashMap, Arc>>(reader) + .map_err(|e| eprintln!("Fail to parse {}: {e}", path.to_string_lossy())) else {return}; + for e in o { + db_raw.insert(e.0.clone(), e.1.clone()); + } + }); + + struct Env<'a, D: Dolphin> { + db_raw: &'a HashMap::, Arc>, + db_types: HashMap::, ObjectType>, + db_formatted: HashMap::<(&'a str, ObjParamsOffsetEntryFormat), ClassFieldReader>, + reader_unk: ClassFieldReader, + type_addr: ObjectType, + } + fn resolve_type<'a, D: Dolphin>(env: &'a mut Env, type_: Arc) -> &'a ObjectType { + if !env.db_types.contains_key(&type_) { + if type_.ends_with('*') { + return &env.type_addr; + } + let new_type = match env.db_raw.get(&type_) { + Some(o) => { + let mut class_fields = Vec::>::new(); + for field in o.offsets.iter() { + // skip hidden fields + if let Some(true) = field.hidden {continue} + // format + if let Some(format) = field.format { + if let Some(reader) = env.db_formatted.get(&(&field.type_, format)) { + class_fields.push( + ClassField { + reader: reader.clone(), + offset: field.offset.clone(), + name: field.name.clone(), + notes: field.notes.clone(), + type_: field.type_.clone(), + class: type_.clone(), + }, + ); + continue; + } else { + eprintln!("format \"{format}\" cannot be used for type \"{}\" (in class \"{type_}\")", field.type_); + } + } + // resolve + match resolve_type(env, field.type_.clone()) { + ObjectType::::Primitive(reader) => class_fields.push( + ClassField { + reader: reader.clone(), + offset: field.offset.clone(), + name: field.name.clone(), + notes: field.notes.clone(), + type_: field.type_.clone(), + class: type_.clone(), + }, + ), + ObjectType::::Class(subfields) => { + let is_name_template = field.name.contains('*'); + for subfield in subfields.iter() { + class_fields.push(ClassField { + reader: subfield.reader.clone(), + offset: &field.offset + &subfield.offset, + name: match is_name_template { + true => Arc::from(field.name.replace('*', &subfield.name)), + false => subfield.name.clone(), + }, + notes: subfield.notes.clone(), + type_: subfield.type_.clone(), + class: subfield.class.clone(), + }) + } + }, + }; + } + ObjectType::::Class(class_fields.into()) + }, + None => { + ObjectType::::Primitive(env.reader_unk.clone()) + }, + }; + env.db_types.insert(type_.clone(), new_type); + } + env.db_types.get(&type_).unwrap() + } + + let mut env = Env { + db_raw: &db_raw, + db_types: HashMap::, ObjectType>::from([ + (Arc::from("u8"), ObjectType::::new_primitive::()), + (Arc::from("u16"), ObjectType::::new_primitive::()), + (Arc::from("u32"), ObjectType::::new_primitive::()), + (Arc::from("s8"), ObjectType::::new_primitive::()), + (Arc::from("s16"), ObjectType::::new_primitive::()), + (Arc::from("s32"), ObjectType::::new_primitive::()), + (Arc::from("float"), ObjectType::::Primitive(Arc::new(F32FieldReader))), + (Arc::from("string"), ObjectType::::Primitive(Arc::new(StringFieldReader))), + (Arc::from("void*"), ObjectType::::Primitive(Arc::new(ClassNameReader))), + ]), + db_formatted: HashMap::from([ + ( + ("u8", ObjParamsOffsetEntryFormat::Hex), + Arc::new(HexFieldReader(1)) as ClassFieldReader, + ), + ( + ("u16", ObjParamsOffsetEntryFormat::Hex), + Arc::new(HexFieldReader(2)) as ClassFieldReader, + ), + ( + ("u32", ObjParamsOffsetEntryFormat::Hex), + Arc::new(HexFieldReader(4)) as ClassFieldReader, + ), + ]), + reader_unk: Arc::new(PrimitiveFieldReader::::new()), // TODO + type_addr: ObjectType::::new_primitive::(), + }; + for type_ in db_raw.keys() { + resolve_type(&mut env, type_.clone()); + } + Ok(env.db_types) +} diff --git a/src/server/api.rs b/src/server/api.rs new file mode 100644 index 0000000..88f52ca --- /dev/null +++ b/src/server/api.rs @@ -0,0 +1,280 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +use crate::{ + addr::{Addr, AddrOffsets}, + dolphin::Dolphin, + sms::{SMSDolphin, SMSVersion}, + big_endian::DecodeBE, + server::http::HttpEnv, + obj_params::{load_obj_params, ObjectType}, +}; +use sup_smsac_derive::DecodeBE; +use serde_json::{self, json, Value as JsonValue}; + +#[derive(Debug, DecodeBE)] +struct ConductorNode { + next: Addr, + _prev: Addr, + obj: Addr, +} +#[derive(Debug, DecodeBE)] +struct ChildInfo { + count: u32, + addr: Addr, +} + +trait DolphinMemoryJsExt { + fn resolve_addr(&self, addr: &JsonValue) -> Result, ()>; + fn resolve_addr_offsets(&self, base: Addr, offsets: &AddrOffsets) -> Option; +} +impl DolphinMemoryJsExt for T { + fn resolve_addr(&self, addr: &JsonValue) -> Result, ()> { + // single addr + if let Some(addr) = addr.as_u64() { + return Ok(Some(Addr(addr as u32))); + } + // addr + offsets + let Some((Some(mut addr), offs)) = addr.as_array() + .and_then(|x| x.split_first()) + .map(|e| (e.0.as_u64().map(|x| Addr(x as u32)), e.1)) + else {return Err(())}; + // resolve + for off in offs { + let Some(off) = off.as_i64().map(|x| x as u32) else { + return Err(()); + }; + match self.read::(addr) { + None => return Ok(None), + Some(_addr) => addr = _addr+off, + } + } + Ok(Some(addr)) + } + fn resolve_addr_offsets(&self, base: Addr, offsets: &AddrOffsets) -> Option { + let mut addr = base + offsets.0; + for off in offsets.1.iter() { + match self.read::(addr) { + None => return None, + Some(_addr) => addr = _addr + *off, + } + } + Some(addr) + } +} + + +pub async fn handle_command( + env: &HttpEnv, + dolphin: &mut Option, + command: &str, + body: &JsonValue, +) -> Result { + macro_rules! return_err { + ($($msg:expr),+) => { + return Err(json!(format!($($msg),+))) + } + } + macro_rules! let_dolphin { + ($d: ident) => { + let $d = match &dolphin { + Some(d) => d, + None => match SMSDolphin::find_one() { + Ok(d) => { + *dolphin = Some(d); + match &dolphin { + Some(d) => d, + None => unreachable!(), + } + }, + Err(e) => return_err!("{}", e), + }, + }; + }; + } + + macro_rules! let_obj_params_fields { + ($fields:ident, $type: ident) => { + let lock_obj_params = env.obj_params_result.lock().await; + let obj_params = match &*lock_obj_params { + Ok(v) => v, + Err(e) => return_err!("Fail to get ObjectParameters: {e}"), + }; + let Some($fields) = obj_params.get($type).or_else(|| obj_params.get("_default")) else { + return_err!("unknown type: \"{}\". Please defined \"_default\" type in ObjectParameters/*.json", $type); + }; + }; + } + + match command { + "init" => { + let_dolphin!(d); + Ok(json!(d.pid())) + }, + + "getManagers" => { + let_dolphin!(d); + Ok(d.read::(Addr(match d.ver() { + // TODO put addr in external file + SMSVersion::GMSJ01 => 0x8040A6E8, + SMSVersion::GMSE01 => 0x8040D110, + SMSVersion::GMSP01 => 0x80404870, + SMSVersion::GMSJ0A => 0x803FE048, + })) + .and_then(|a| d.read::(a+0x14)) + .and_then(|o| { + let mut next = o.addr; + let mut arr: Vec = Vec::with_capacity(o.count as usize); + for _i in 0..o.count { + let Some(node) = d.read::(next) else {return None}; + arr.push(json!([ + node.obj.0, + d.read::(node.obj) + .map(|a| d.get_class_string(a)) + .unwrap_or_else(|| "({a})".to_string()), + d.read::(node.obj+4).and_then(|a| d.read_str(a)).unwrap_or_else(|| "�".to_string()), + d.read::(node.obj+0x14).unwrap_or(-1), + ])); + next = node.next; + } + Some(JsonValue::Array(arr)) + }).unwrap_or_else(|| json!(null)) + ) + }, + + "getManagees" => { + let_dolphin!(d); + let Some(addr) = body.as_u64().map(|x| Addr(x as u32)) else { + return_err!("\"body\" must be a string"); + }; + Ok(d.read::(addr+0x14).and_then(|o| { + let mut arr: Vec = Vec::with_capacity(o.count as usize); + for a in (0..o.count).map(|i| d.read::(o.addr+4*i)) { + let Some(a) = a else {return None}; + arr.push(json!([ + a.0, + d.read::(a).map(|a| d.get_class_string(a)), + d.read::(a+4).and_then(|a| d.read_str(a)).unwrap_or_else(|| "�".to_string()), + ])); + } + Some(JsonValue::Array(arr)) + }).unwrap_or_else(|| json!(null))) + }, + + "read" => { + let_dolphin!(d); + let Some(addr) = body.get("addr") else { + return_err!("addr must be specified"); + }; + let Ok(addr) = d.resolve_addr(addr) else { + return_err!("invalid addr: {addr:?}"); + }; + let Some(addr) = addr else { + return Ok(json!(null)); + }; + + Ok(match body.get("size") { + Some(size) => { + if body.get("type").is_some() { + return_err!("\"size\" and \"type\" cannot be specified at the same time"); + } + let Some(size) = size.as_u64().map(|x| x as usize) else { + return_err!("\"size\" must be a positive integer"); + }; + d.read_bytes(addr, size) + .map(|bytes| json!(bytes.iter().map(|x| format!("{:02X}", x)).collect::())) + .unwrap_or_else(|| json!(null)) + }, + None => { + let Some(type_) = body.get("type") else { + return_err!("either \"size\" and \"type\" must be specified"); + }; + let Some(type_) = type_.as_str() else { + return_err!("\"type\" must be a string"); + }; + let_obj_params_fields!(fields, type_); + match fields { + ObjectType::Primitive(p) => p.read(d, addr) + .map(|x| json!(x)) + .unwrap_or_else(|| json!(null)), + ObjectType::Class(fields) => JsonValue::Array(fields.iter().map(|field| { + d.resolve_addr_offsets(addr, &field.offset) + .map(|addr| field.reader.read(d, addr)) + .map(|x| json!(x)) + .unwrap_or_else(|| json!(null)) + }).collect()), + } + }, + }) + }, + + "readString" => { + let_dolphin!(d); + let Ok(addr) = body.get("addr").ok_or(()).and_then(|o| d.resolve_addr(o)) else { + return_err!("Invalid body: {body:?}"); + }; + Ok(addr + .and_then(|addr| d.read_str(addr)) + .map(|addr| json!(addr)) + .unwrap_or_else(|| json!(null))) + }, + + "write" => { + let_dolphin!(d); + let (Ok(addr), Ok(payload)) = ( + body.get("addr").ok_or(()).and_then(|o| d.resolve_addr(o)), + body.get("payload") + .and_then(|x| x.as_str()).ok_or(()) + .and_then(|s| (0..s.len()).step_by(2) + .map(|i| u8::from_str_radix(&s[i..i+2], 16).map_err(|_| ())) + .collect::, ()>>() + ), + ) else { + return_err!("Invalid body: {body:?}"); + }; + Ok(json!( + addr.and_then(|addr| d.write_bytes(addr, &payload)).is_some() + )) + }, + + "getClass" => { + let_dolphin!(d); + let Ok(addr) = body.get("addr").ok_or(()).and_then(|o| d.resolve_addr(o)) else { + return_err!("Invalid body: {body:?}"); + }; + Ok(addr + .and_then(|addr| d.read::(addr)) + .map(|a| json!(d.get_class_string(a))) + .unwrap_or_else(|| json!(null))) + }, + + "getFields" => { + let Some(type_) = body.as_str() else { + return_err!("body must be a string"); + }; + let_obj_params_fields!(fields, type_); + Ok(match fields { + // [offsets, name, value, notes, type, class] + ObjectType::Primitive(_) => + json!([["0", "value", "", type_, type_]]), + ObjectType::Class(fields) => JsonValue::Array(fields.iter().map(|r| json!([ + r.offset.to_string(), r.name, r.notes, r.type_, r.class, + ])).collect()), + }) + }, + + "reload" => { + let mut lock_obj_params = env.obj_params_result.lock().await; + load_obj_params(&env.obj_params_dir) + .map(|db| { + *lock_obj_params = Ok(db); + json!(null) + }) + .map_err(|e| json!(e.to_string())) + }, + + _ => { + return_err!("Unknown command: {command}") + }, + } +} diff --git a/src/server/http.rs b/src/server/http.rs new file mode 100644 index 0000000..541e445 --- /dev/null +++ b/src/server/http.rs @@ -0,0 +1,138 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +use std::path::{Path, PathBuf}; +use std::sync::Arc; +use tokio::sync::Mutex; +use tokio::net::TcpListener; +use tokio::fs::File; +use tokio_util::codec::{BytesCodec, FramedRead}; +use hyper::{Body, Request, Response, StatusCode}; +use hyper_tungstenite::tungstenite; +use urlencoding; +use mime_guess; +use crate::{ + sms::SMSDolphin, + obj_params::{load_obj_params, ObjParamsLoadResult}, + server::ws::serve_websocket, +}; + +pub struct HttpEnv { + static_dir: Box, + pub obj_params_dir: Box, + pub obj_params_result: Mutex>, +} + +pub async fn serve(listener: TcpListener, root_dir: Box) -> Result<(), tungstenite::Error> { + let obj_params_dir = { + let mut dir = root_dir.to_path_buf(); + dir.push("res/ObjectParameters"); + dir.into_boxed_path() + }; + let obj_params_result = Mutex::new(load_obj_params(&obj_params_dir)); + + let env = Arc::new(HttpEnv { + static_dir: { + let mut static_dir = root_dir.to_path_buf(); + static_dir.push("www"); + static_dir.into_boxed_path() + }, + obj_params_dir, + obj_params_result, + }); + + let http = hyper::server::conn::Http::new(); + loop { + let env = env.clone(); + let (stream, _) = listener.accept().await?; + let connection = http + .serve_connection(stream, hyper::service::service_fn(move |req| handle_request(req, env.clone()))) + .with_upgrades(); + tokio::spawn(async move { + if let Err(err) = connection.await { + println!("Error serving HTTP connection: {:?}", err); + } + }); + } +} + +#[inline] +fn response_text(status: T, e: &dyn std::fmt::Display) -> Response +where + StatusCode: TryFrom, + >::Error: Into, +{ + Response::builder() + .status(status) + .header("Content-Type", "text/plain; charset=utf-8") + .body(Body::from(format!("{}", e))) + .unwrap() +} + +async fn handle_request( + mut req: Request, + env: Arc, +) -> Result, tungstenite::Error> { + let is_upgrade = hyper_tungstenite::is_upgrade_request(&req); + + let mut lock_obj_params = env.obj_params_result.lock().await; + if lock_obj_params.is_err() { + *lock_obj_params = load_obj_params(&env.obj_params_dir); + if let Err(e) = &*lock_obj_params { + return Ok(response_text(500, &format!( + "Fail to load ObjectParameters at {}: {e}", + env.obj_params_dir.to_string_lossy(), + ))); + } + } + + if is_upgrade { + let (res, ws) = hyper_tungstenite::upgrade(&mut req, None)?; + let env = env.clone(); + tokio::spawn(async move { + if let Err(e) = serve_websocket(ws, env).await { + eprintln!("Error in websocket connection: {}", e); + } + }); + Ok(res) + } else { + let url_path = match urlencoding::decode(req.uri().path()) { + Ok(p) if p.starts_with('/') => p, + _ => return Ok(Response::builder().status(400).body(Body::empty()).unwrap()), + }; + + let mut file_path = PathBuf::new(); + file_path.push(&*env.static_dir); + file_path.push(if url_path.ends_with('/') { + "index.html" + } else { + &url_path[1..] + }); + Ok(serve_file(&file_path).await) + } +} + +async fn serve_file(path: &Path) -> Response { + match File::open(path).await { + Err(err) => response_text(404, &match path.canonicalize() { + Ok(e) => format!("\"{}\" not found: {err}", e.to_string_lossy()), + Err(_) => { + match std::env::current_dir() { + Ok(mut cwd) => { + cwd.push(path); + format!("\"{}\" not found: {err}", cwd.to_string_lossy()) + }, + Err(_) => format!("\"{}\" not found: {err}", path.to_string_lossy()), + } + }, + }), + Ok(file) => { + let mut res = Response::builder(); + if let Some(mime) = mime_guess::from_path(path).first() { + res = res.header("Content-Type", format!("{mime}; charset=utf-8")); + } + let stream = FramedRead::new(file, BytesCodec::new()); + res.body(Body::wrap_stream(stream)).unwrap() + }, + } +} diff --git a/src/server/mod.rs b/src/server/mod.rs new file mode 100644 index 0000000..3a06cf2 --- /dev/null +++ b/src/server/mod.rs @@ -0,0 +1,6 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +pub mod http; +pub mod ws; +pub mod api; diff --git a/src/server/ws.rs b/src/server/ws.rs new file mode 100644 index 0000000..07ce2b8 --- /dev/null +++ b/src/server/ws.rs @@ -0,0 +1,63 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +use crate::{ + sms::SMSDolphin, + server::{http::HttpEnv, api::handle_command}, +}; +use std::sync::Arc; +use futures_util::{SinkExt, StreamExt}; +use hyper_tungstenite::{tungstenite::{self, Message}, HyperWebsocket}; +use serde_json::{self, json, Value as JsonValue}; + +pub async fn serve_websocket( + ws: HyperWebsocket, + env: Arc, +) -> Result<(), tungstenite::Error> { + let mut ws = ws.await?; + let mut dolphin: Option = None; + macro_rules! return_err { + ($($msg:expr),+) => { + eprintln!($($msg),+); + return None; + } + } + + while let Some(msg) = ws.next().await { + let Ok(msg) = msg else {continue}; + if let Some(res) = (|| async {match msg { + Message::Text(payload) => { + let Ok(payload) = serde_json::from_str::(&payload) else { + eprintln!("Invalid payload (failed to deserialize): {payload}"); + return None; + }; + let Some((Some(id), Some(command), body)) = payload.as_array() + .and_then(|v| if v.len() == 3 {Some(v)} else {None}) + .map(|args| ( + // id must be positive + args[0].as_i64().and_then(|x| if x<=0 {None} else {Some(x)}), + args[1].as_str(), + &args[2], + )) + else { + return_err!("Invalid payload (invalid format): {payload}"); + }; + + match handle_command(&env, &mut dolphin, command, body).await { + Ok(body) => Some(json!([id, body])), + Err(msg) => Some(json!([-id, msg])), + } + }, + Message::Binary(payload) => { + Some(json!(format!("{}", payload.len()))) + }, + _ => None, + }})().await { + if let Err(e) = ws.send(Message::Text(res.to_string())).await { + eprintln!("Fail to send message: {e}"); + } + } + } + + Ok(()) +} diff --git a/src/sms/mod.rs b/src/sms/mod.rs new file mode 100644 index 0000000..692879e --- /dev/null +++ b/src/sms/mod.rs @@ -0,0 +1,92 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +#[derive(Debug, Clone, Copy)] +pub enum SMSVersion { + GMSJ01, GMSE01, GMSP01, GMSJ0A, +} +pub mod vt; + +use crate::addr::Addr; +use crate::dolphin::{DolphinMemory, Dolphin}; +pub struct SMSDolphin { + d: DolphinMemory, + ver: SMSVersion, +} +impl Dolphin for SMSDolphin { + #[inline] + unsafe fn mem>(&self, offset: T) -> *mut u8 { + self.d.mem(offset) + } +} + +impl SMSDolphin { + #[inline] + pub fn pid(&self) -> usize { + self.d.pid() + } + #[inline] + pub fn ver(&self) -> SMSVersion { + self.ver + } + + pub fn from_dolphin_memory(d: DolphinMemory) -> Result> { + match d.read::<&[u8; 8]>(Addr(0x80000000)) { + None => Err(None), + Some(rver) => match rver { + b"GMSJ01\x00\x00" => Ok(SMSVersion::GMSJ01), + b"GMSE01\x00\x30" => Ok(SMSVersion::GMSE01), + b"GMSP01\x00\x00" => Ok(SMSVersion::GMSP01), + b"GMSJ01\x00\x01" => Ok(SMSVersion::GMSJ0A), + _ => Err(Some(rver.to_owned())), + }.map(|ver| SMSDolphin {d, ver}), + } + } + pub fn get_class(&self, addr: Addr) -> Option<&'static str> { + vt::get_class(self.ver, addr) + } + pub fn get_class_string(&self, addr: Addr) -> String { + vt::get_class_string(self.ver, addr) + } +} + +#[derive(Debug)] +pub enum SMSDolphinFindOneError { + DolphinNotRunning, + NoGameRunning, + SMSNotRunning, +} +impl std::fmt::Display for SMSDolphinFindOneError { + fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { + match self { + SMSDolphinFindOneError::DolphinNotRunning => write!(fmt, "Dolphin is not running"), + SMSDolphinFindOneError::NoGameRunning => write!(fmt, "Dolphin is found, but no game is running"), + SMSDolphinFindOneError::SMSNotRunning => write!(fmt, "SMS is not running"), + } + } +} + +impl SMSDolphin { + pub fn find_one() -> Result { + let mut dolphin_running = false; + let mut game_running = false; + for (_pid, d) in DolphinMemory::list_dolphin() { + match d { + Ok(d) => { + if let Ok(o) = SMSDolphin::from_dolphin_memory(d) { + return Ok(o) + } + game_running = true; + }, + Err(_) => dolphin_running = true, + } + } + Err(if game_running { + SMSDolphinFindOneError::SMSNotRunning + } else if dolphin_running { + SMSDolphinFindOneError::NoGameRunning + } else { + SMSDolphinFindOneError::DolphinNotRunning + }) + } +} diff --git a/src/sms/vt/GMSE01.json b/src/sms/vt/GMSE01.json new file mode 100644 index 0000000..4cfae08 --- /dev/null +++ b/src/sms/vt/GMSE01.json @@ -0,0 +1,1514 @@ +{ + "803AB684": "JDrama::TViewObj", + "803AB6FC": "TNerveWaitForever", + "803AB70C": "TNerveBase", + "803AB71C": "TTakeActor", + "803ABD30": "TParamRT", + "803ABD3C": "TParamT", + "803ABD48": "TParamRT", + "803ABD54": "TParamT", + "803AC450": "MAnmSoundMario", + "803AD0D8": "TParamRT", + "803AD0E4": "TParamT", + "803AD0F0": "TParamRT", + "803AD0FC": "TParamT", + "803AD154": "J3DFrameCtrl", + "803AD194": "TDrawSyncCallback", + "803AD264": "TNameRefPtrAryT", + "803AE7F0": "TSpcTypedBinary", + "803AF0C8": "J3DMtxCalc", + "803AF0E8": "M3UModelCommonMario", + "803AF0F4": "JSUIosBase", + "803AF29C": "J3DMtxCalcSoftimageAnm", + "803B17A0": "JPACallBackBase2", + "803B7DA4": "TSirenaRollMapObj", + "803C0F5C": "JDrama::TViewObjPtrListT", + "803C111C": "TSmplFader", + "803CF150": "TWatermelonStatic", + "803D9FD8": "JDrama::TCharacter", + "803DA470": "JDrama::TViewObjPtrListT", + "803DB130": "J3DMtxCalcBasicAnm", + "803DBE98": "JKRFileFinder", + "803DFABC": "TEndingString", + "803DFCE4": "MSStageCubeFadeDouble", + "803DFD70": "JKRFile", + "803DFD90": "JKRAramArchive", + "803DFDD8": "JKRAramHeap", + "803DFE18": "JKRAram", + "803DFE28": "JKRArchive", + "803DFE70": "JKRCompArchive", + "803DFEB8": "JKRDisposer", + "803DFEC8": "JKRDvdArchive", + "803DFF10": "JKRDvdFile", + "803DFF38": "JKRExpHeap", + "803DFF88": "JKRArcFinder", + "803DFF98": "JKRFileLoader", + "803DFFD8": "JKRHeap", + "803E0028": "JKRMemArchive", + "803E0070": "JKRSolidHeap", + "803E00C0": "JKRStdHeap", + "803E0110": "JKRThread", + "803E0120": "JSURandomOutputStream", + "803E0148": "JSUOutputStream", + "803E0160": "JSURandomInputStream", + "803E0184": "JSUInputStream", + "803E01A0": "JSUMemoryOutputStream", + "803E01C8": "JSUMemoryInputStream", + "803E01F0": "JSUFileInputStream", + "803E0278": "JUTException", + "803E0540": "JUTFont", + "803E0588": "JUTGamePad", + "803E0598": "J2DPane", + "803E05C8": "J2DPicture", + "803E0658": "J2DPrint", + "803E06B8": "J2DSetScreen", + "803E06EC": "J2DScreen", + "803E0720": "J2DTextBox", + "803E0750": "J2DWindow", + "803E077C": "J2DWindow::Texture", + "803E07E0": "J3DSkinDeform", + "803E07F0": "J3DJoint", + "803E0818": "J3DMtxCalcMayaAnm", + "803E086C": "J3DMtxCalcMaya", + "803E08B0": "J3DMtxCalcSoftimage", + "803E08F4": "J3DMtxCalcBasic", + "803E0938": "J3DMtxCalcAnm", + "803E0968": "J3DPEBlockFull", + "803E09CC": "J3DIndBlockFull", + "803E0A14": "J3DTevBlock16", + "803E0AB0": "J3DTevBlock4", + "803E0B4C": "J3DTevBlock2", + "803E0BE8": "J3DTevBlock1", + "803E0C84": "J3DTexGenBlockBasic", + "803E0CD4": "J3DColorBlockLightOn", + "803E0D38": "J3DColorBlockLightOff", + "803E0D9C": "J3DPEBlockXlu", + "803E0E00": "J3DPEBlockTexEdge", + "803E0E64": "J3DPEBlockOpa", + "803E0EC8": "J3DPEBlock", + "803E0F2C": "J3DIndBlockNull", + "803E0F74": "J3DIndBlock", + "803E0FBC": "J3DTevBlock", + "803E1058": "J3DTexGenBlock", + "803E10A8": "J3DColorBlock", + "803E115C": "J3DModel", + "803E1178": "J3DModelData", + "803E1188": "J3DNode", + "803E1210": "J3DShapeDraw", + "803E121C": "J3DShapeMtxMulti", + "803E123C": "J3DShapeMtxDL", + "803E125C": "J3DShapeMtx", + "803E1290": "J3DAnmColorKey", + "803E12A0": "J3DAnmColor", + "803E12B0": "J3DAnmColorFull", + "803E12C0": "J3DAnmVtxColorKey", + "803E12D0": "J3DAnmVtxColor", + "803E12E0": "J3DAnmVtxColorFull", + "803E12F0": "J3DAnmClusterKey", + "803E1300": "J3DAnmCluster", + "803E1310": "J3DAnmClusterFull", + "803E1320": "J3DAnmTransformKey", + "803E1334": "J3DAnmTransform", + "803E1344": "J3DAnmTransformFull", + "803E1354": "J3DAnmBase", + "803E1360": "J3DModelLoader_v21", + "803E1388": "J3DModelLoader_v26", + "803E13B0": "J3DTexture", + "803E13BC": "J3DModelLoader", + "803E13E8": "J3DAnmKeyLoader_v15", + "803E13F8": "J3DAnmFullLoader_v15", + "803E1408": "J3DAnmLoader", + "803E1418": "J3DAnmVisibilityFull", + "803E1424": "J3DAnmTexPattern", + "803E1430": "J3DAnmTevRegKey", + "803E143C": "J3DAnmTextureSRTKey", + "803E1448": "J2DGrafContext", + "803E14A0": "JKRDecomp", + "803E14B0": "J2DOrthoGraph", + "803E14D8": "J3DVertexBuffer", + "803E14E8": "J3DShapePacket", + "803E1500": "J3DMatPacket", + "803E1518": "J3DDrawPacket", + "803E1530": "J3DCallBackPacket", + "803E1548": "J3DPacket", + "803E1798": "J3DMaterialAnm", + "803E17A8": "J3DTexNoAnm", + "803E17B8": "JKRAramBlock", + "803E17F8": "JKRAramStream", + "803E1814": "JUTResFont", + "803E1868": "JUTRomFont", + "803E1910": "JUTConsole", + "803E1920": "JDrama::TActor", + "803E19C0": "JDrama::TOrthoProj", + "803E1A94": "JDrama::TLookAtCamera", + "803E1B88": "JDrama::TPolarCamera", + "803E1C64": "JDrama::TCamera", + "803E1D28": "JDrama::TSmplChara", + "803E1D50": "JDrama::TDirector", + "803E1DC0": "JDrama::TDisplay", + "803E1DD0": "JDrama::TDrawBufObj", + "803E1DF8": "JDrama::TDStageDisp", + "803E1E20": "JDrama::TDStageGroup", + "803E1E50": "JDrama::TEfbCtrlTex", + "803E1E74": "JDrama::TEfbCtrlDisp", + "803E1E98": "JDrama::TEfbCtrl", + "803E1EC0": "JDrama::TFrmGXSet", + "803E1EE8": "JDrama::TLightMap", + "803E1F0C": "JDrama::TAmbAry", + "803E1F30": "JDrama::TAmbColor", + "803E1F94": "JDrama::TIdxLight", + "803E2030": "JDrama::TLightAry", + "803E2054": "JDrama::TLight", + "803E20F0": "JDrama::TNameRef", + "803E2110": "JDrama::TNameRefPtrListT", + "803E2130": "JDrama::TNameRefGen", + "803E2140": "JDrama::TPlacement", + "803E2168": "JDrama::TScreen", + "803E218C": "TCamConnecter", + "803E21B0": "JDrama::TSmJ3DAct", + "803E2250": "JDrama::TSmJ3DScn", + "803E2280": "JDrama::TViewConnecter", + "803E22A8": "JDrama::TViewport", + "803E22D0": "JALSeModData", + "803E22E0": "JALSeModData", + "803E22F0": "JALSeModData", + "803E2300": "JALSeModData", + "803E2310": "JALSeModData", + "803E2320": "JALSeModData", + "803E2330": "JALSeModData", + "803E2340": "JALSeModData", + "803E2350": "JALSeModData", + "803E2360": "JALSeModData", + "803E2370": "JALSeModData", + "803E2380": "JALSeModData", + "803E2390": "JALSeModPitDGrp", + "803E23A0": "JALSeModDataGrp", + "803E23B0": "JALSeModEffDGrp", + "803E23C0": "JALSeModDataGrp", + "803E23D0": "JALSeModVolDGrp", + "803E23E0": "JALSeModDataGrp", + "803E23F0": "JALSeModEffFGrp", + "803E2400": "JALSeModDataGrp", + "803E2410": "JALSeModPitFGrp", + "803E2420": "JALSeModDataGrp", + "803E2430": "JALSeModVolFGrp", + "803E2440": "JALSeModDataGrp", + "803E2450": "JALSeModPitDist", + "803E2460": "JALSeModEffDist", + "803E2470": "JALSeModVolDist", + "803E2480": "JALSeModEffFunk", + "803E2490": "JALSeModPitFunk", + "803E24A0": "JALSeModVolFunk", + "803E24B0": "JAIAnimeSound", + "803E24E4": "JAIBasic", + "803E25D0": "JAISound", + "803E2630": "JASystem::TBasicBank", + "803E2644": "JASystem::TBank", + "803E2658": "JASystem::TBasicInst", + "803E2670": "JASystem::TInst", + "803E2688": "JASystem::TWaveHandle", + "803E269C": "JASystem::TBasicWaveBank::TWaveHandle", + "803E26B0": "JASystem::TBasicWaveBank::TWaveGroup", + "803E26C4": "JASystem::WaveArcLoader::TObject", + "803E26D8": "JASystem::TBasicWaveBank", + "803E26EC": "JASystem::TWaveBank", + "803E2700": "JASystem::TInstEffect", + "803E2710": "JASystem::TDrumSet", + "803E2728": "JASystem::TInstRand", + "803E2738": "JASystem::TInstSense", + "803E2748": "JASystem::TSimpleWaveBank::TWaveHandle", + "803E275C": "JASystem::TSimpleWaveBank", + "803E3CA0": "J3DMaterialTable", + "803E3D18": "JPADragField", + "803E3D30": "JPARandomField", + "803E3D48": "JPAConvectionField", + "803E3D60": "JPAVortexField", + "803E3D78": "JPANewtonField", + "803E3D90": "JPAMagnetField", + "803E3DA8": "JPAAirField", + "803E3DC0": "JPAGravityField", + "803E3DD8": "JPABaseField", + "803E3DF0": "JPAParticle", + "803E3E48": "JPABaseParticle", + "803E3EF8": "JPADrawCalcEmitterVisitor", + "803E3F08": "JPADrawCalcParticleVisitor", + "803E3F18": "JPADrawExecParticleVisitor", + "803E3F28": "JPADrawExecEmitterVisitor", + "803E3F38": "JPADrawCalcChildScaleOut", + "803E3F48": "JPADrawCalcChildAlphaOut", + "803E3F58": "JPADrawCalcAlphaFlickMultSin", + "803E3F68": "JPADrawCalcAlphaFlickAddSin", + "803E3F78": "JPADrawCalcAlphaFlickNrmSin", + "803E3F88": "JPADrawCalcAlpha", + "803E3F98": "JPADrawCalcColorCopyFromEmitter", + "803E3FA8": "JPADrawCalcScaleAnmTimingReverseY", + "803E3FB8": "JPADrawCalcScaleAnmTimingReverseX", + "803E3FC8": "JPADrawCalcScaleAnmTimingRepeatY", + "803E3FD8": "JPADrawCalcScaleAnmTimingRepeatX", + "803E3FE8": "JPADrawCalcScaleAnmTimingNormal", + "803E3FF8": "JPADrawCalcScaleCopyX2Y", + "803E4008": "JPADrawCalcScaleYBySpeed", + "803E4018": "JPADrawCalcScaleXBySpeed", + "803E4028": "JPADrawCalcScaleY", + "803E4038": "JPADrawCalcScaleX", + "803E4048": "JPADrawExecCallBack", + "803E406C": "JPADrawCalcTextureAnmIndexRandom", + "803E4090": "JPADrawCalcTextureAnmIndexMerge", + "803E40B4": "JPADrawCalcTextureAnmIndexReverse", + "803E40D8": "JPADrawCalcTextureAnmIndexRepeat", + "803E40FC": "JPADrawCalcTextureAnmIndexNormal", + "803E4120": "JPADrawCalcColorAnmFrameRandom", + "803E4144": "JPADrawCalcColorAnmFrameMerge", + "803E4168": "JPADrawCalcColorAnmFrameReverse", + "803E418C": "JPADrawCalcColorAnmFrameRepeat", + "803E41B0": "JPADrawCalcColorAnmFrameNormal", + "803E41D4": "JPADrawCalcColorEnv", + "803E41F8": "JPADrawCalcColorPrm", + "803E421C": "JPADrawExecRegisterColorChildPE", + "803E422C": "JPADrawExecRegisterColorEmitterE", + "803E423C": "JPADrawExecRegisterColorEmitterP", + "803E424C": "JPADrawExecRegisterColorEmitterPE", + "803E425C": "JPADrawExecStripeCross", + "803E426C": "JPADrawExecStripe", + "803E427C": "JPADrawExecLine", + "803E428C": "JPADrawExecPoint", + "803E429C": "JPADrawExecRotationCross", + "803E42AC": "JPADrawExecRotation", + "803E42BC": "JPADrawExecDirBillBoard", + "803E42CC": "JPADrawExecRotDirectionalCross", + "803E42DC": "JPADrawExecDirectionalCross", + "803E42EC": "JPADrawExecRotDirectional", + "803E42FC": "JPADrawExecDirectional", + "803E430C": "JPADrawExecRotYBillBoard", + "803E431C": "JPADrawExecYBillBoard", + "803E432C": "JPADrawExecRotBillBoard", + "803E433C": "JPADrawExecBillBoard", + "803E434C": "JPADrawExecRegisterPrmAEnv", + "803E435C": "JPADrawExecRegisterPrmCEnv", + "803E436C": "JPADrawExecRegisterEnvColorAnm", + "803E437C": "JPADrawExecRegisterPrmAlphaAnm", + "803E438C": "JPADrawExecRegisterPrmColorAnm", + "803E439C": "JPADrawExecSetLineWidth", + "803E43AC": "JPADrawExecSetPointSize", + "803E43BC": "JPADrawExecLoadTexture", + "803E43E0": "JPADrawExecLoadDefaultTexture", + "803E43F0": "JPADrawExecSetTexMtx", + "803E4414": "JPADrawExecGenIdtMtx", + "803E4424": "JPADrawExecGenTexMtx0", + "803E4434": "JPADrawExecGenPrjTexMtx", + "803E4444": "JPADrawExecGenPrjMtx", + "803E4454": "JPADrawExecLoadExTex", + "803E4468": "JPAExTexShape", + "803E4474": "JPADataBlock", + "803E4480": "JPAKeyFrameAnime", + "803E448C": "JPAEmitterLoader", + "803E4498": "JPAEmitterLoader_v10", + "803E4550": "JPABaseShape", + "803E4560": "JPAExtraShape", + "803E4570": "JPASweepShape", + "803E4580": "JPATexture", + "803E4590": "JStage::TAmbientLight", + "803E45C8": "JStage::TCamera", + "803E4650": "JStage::TActor", + "803E46B8": "JStage::TLight", + "803E4718": "JStage::TObject", + "803E4748": "JStage::TSystem", + "803DA5F8": "TDLColorTexQuad", + "803DA618": "TDLTexQuad", + "803DA638": "TSilhouette", + "803DA660": "TLightWithDBSetManager", + "803DA684": "TIndirectLightWithDBSet", + "803DA6AC": "TMapObjectLightWithDBSet", + "803DA6D4": "TObjectLightWithDBSet", + "803DA6FC": "TPlayerLightWithDBSet", + "803DA724": "TLightWithDBSet", + "803DA74C": "TLightDrawBuffer", + "803DA774": "TLightMario", + "803DA7A8": "TLightShadow", + "803DA7DC": "TLightCommon", + "803DB040": "TParamT>", + "803DB04C": "TMtxSwingRZReverseXZ", + "803DB058": "TParamVec", + "803DB064": "TMtxSwingRZ", + "803DB070": "TMtxTimeLag", + "803DB07C": "TMtxEffectBase", + "803DB088": "TScreenTexture", + "803DB0AC": "TAfterEffect", + "803DB10C": "TMBindShadowManager", + "803DB184": "TMBindShadowManager::TSetup5$2216ShadowUtil_cpp", + "803DB194": "TMBindShadowManager::TSetup4$2207ShadowUtil_cpp", + "803DB1A4": "TMBindShadowManager::TSetup3$2195ShadowUtil_cpp", + "803DB1B4": "TMBindShadowManager::TSetup2$2190ShadowUtil_cpp", + "803DB1C4": "TMBindShadowManager::TCylinder$2171ShadowUtil_cpp", + "803DB1D4": "TMBindShadowManager::TSetup1$2172ShadowUtil_cpp", + "803DBB40": "TGDLStatic", + "803DBB50": "TGDLStatic::TGDLSentinel", + "803DBB60": "Koga::ToolData", + "803DBB7C": "M3UMtxCalcSIAnmBlendQuat", + "803DBBC0": "M3UModel", + "803DBBE4": "M3UModelCommon", + "803DBBF0": "MActorAnmEach", + "803DBC18": "MActorAnmMatEach", + "803DBC40": "MActorAnmEach", + "803DBC68": "MActorAnmMatEach", + "803DBC90": "MActorAnmEach", + "803DBCB8": "MActorAnmMatEach", + "803DBCE0": "MActorAnmEach", + "803DBD08": "MActorAnmMatEach", + "803DBD30": "MActorAnmEach", + "803DBD58": "MActorAnmEach", + "803DBD80": "MActorAnmBlk", + "803DBDA8": "MActorAnmBrk", + "803DBDD0": "MActorAnmBpk", + "803DBDF8": "MActorAnmBtk", + "803DBE20": "MActorAnmBtp", + "803DBE48": "MActorAnmBck", + "803DBE70": "MActorAnmBase", + "803DBEA8": "SDLModel", + "803DBEC8": "SDLMatPacket", + "803DBEE0": "SampleCtrlJoint", + "803DBEEC": "SampleCtrlMaterial", + "803DBEF8": "SampleCtrlShape", + "803DBF08": "SampleCtrlModelData", + "803DEC50": "TBaseParam", + "803DEC88": "TMarioParticleManager", + "803DECD0": "TMarioEmitterCallBackBindToSRTMtxPtr", + "803DECE4": "TMarioEmitterCallBackBindToMtxPtr", + "803DECF8": "TMarioEmitterCallBackBindToPosPtr", + "803DED0C": "TEmitterIndirectViewObj", + "803DED30": "TEmitterViewObj", + "803DED54": "JPACallBackBase", + "803DED68": "TEventWatcher", + "803DED90": "TSpcTypedInterp", + "803DEDA4": "TSpcTypedBinary", + "803DEE90": "TGCLogoDir", + "803DEEFC": "TNintendo2D", + "803DEF20": "TGXAlphaUpdate", + "803DEF44": "TReInitGX", + "803DEF68": "TSMSDrawInit", + "803DEF8C": "TJ3DSysSetViewMtx", + "803DEFB0": "TJ3DSysFlag", + "803DF0C8": "TMarDirector", + "803DF138": "TMarNameRefGen", + "803DF148": "TNameRefAryT", + "803DF168": "TNameRefPtrAryT\\,JDrama::TNameRef>", + "803DF188": "TNameRefAryT", + "803DF1A8": "TNameRefAryT", + "803DF1C8": "TNameRefAryT", + "803DF1E8": "TCubeManagerFast", + "803DF20C": "TCubeManagerArea", + "803DF230": "TCubeManagerMarioIn", + "803DF258": "TMenuDirector", + "803DF2C8": "TPerformList", + "803DF358": "TSnapTimeObj", + "803DF380": "TTalkCursor", + "803DF3A8": "TAlphaCatch", + "803DF3CC": "TZBufferCatch", + "803DF44C": "TMarioGamePad", + "803DF458": "TScenarioArchiveName", + "803DF478": "TStageEventInfo", + "803DF4F8": "TStagePositionInfo", + "803DF518": "TTimeRec", + "803DF528": "TTHPRender", + "803DF550": "TNameKuriLauncherManager", + "803DF5A4": "THamuKuriLauncherManager", + "803DF5F8": "TCasinoRoulette", + "803DF760": "TSirenaGate", + "803DF8C8": "TMareWManager", + "803DF920": "TMareMManager", + "803DFA50": "TMovieDirector", + "803DFCA8": "MSSTageSimpleEnvironment", + "803DFCBC": "MSStageCubeSwitch", + "803DFCD0": "MSStageCubeFadeMonte", + "803DFCF8": "MSStageCubeFade", + "803DFD0C": "MSStageDistFadeMonte", + "803DFD20": "MSStageDistFade", + "803DFD34": "MSStage", + "803DFD48": "TTargetArrow", + "803D9CB8": "TLiveActor", + "803D9F68": "TLiveManager", + "803D9FA8": "TObjManager", + "803D9FFC": "TObjChara", + "803DA3E0": "TSpcInterp", + "803DA3F4": "TSpcStack", + "803DA400": "TSpcStack", + "803DA40C": "TSpcBinary", + "803DA420": "TStrategy", + "803DA444": "TIdxGroupObj", + "803DA4A0": "TQuestionManager", + "803DA4C8": "TSMSSmplChara", + "803DA4F0": "THitActor", + "803DA598": "TBinder", + "803DA5A8": "TSharedParts", + "803DA5D0": "TMirrorActor", + "803DBF18": "M3UModelMario", + "803DBF40": "TMarioCap", + "803DD29C": "TWarpInCallBack", + "803DD2D4": "TBubbleCallBack", + "803DD2E8": "TSplashManager", + "803DD310": "TYoshiTongue", + "803DD4A0": "TWaterGun", + "803DD4D0": "TNozzleDeform", + "803DD4F8": "TNozzleTrigger", + "803DD520": "TNozzleBase", + "803DD590": "TMarioEffect", + "803DD660": "TMario", + "803DE9EC": "TModelWaterManager", + "803DEB38": "TMarioPositionObj", + "803D8448": "TBaseNPC", + "803D86F0": "TSunflowerSManager", + "803D8780": "TMareWBaseManager", + "803D87D8": "TMareMBaseManager", + "803D8830": "TMonteWBManager", + "803D8888": "TMonteWAManager", + "803D88E0": "TMonteWManager", + "803D8938": "TMonteMEManager", + "803D8990": "TMonteMDManager", + "803D89E8": "TMonteMCManager", + "803D8A40": "TMonteMBManager", + "803D8A98": "TMonteMAManager", + "803D8AF0": "TMonteMManager", + "803D8B48": "TSunflowerLManager", + "803D8BA0": "TRaccoonDogManager", + "803D8BF8": "TPeachManager", + "803D8C50": "TKinojiiManager", + "803D8CA8": "TKinopioManager", + "803D8D00": "TMareWBManager", + "803D8D58": "TMareWAManager", + "803D8DB0": "TMareMDManager", + "803D8E08": "TMareMCManager", + "803D8E60": "TMareMBManager", + "803D8EB8": "TMareMAManager", + "803D8F10": "TMonteWCManager", + "803D8F68": "TMonteMHManager", + "803D8FC0": "TMonteMGManager", + "803D9018": "TMonteMFManager", + "803D9070": "TMonteWSpecialManager", + "803D90C8": "TMonteMSpecialManager", + "803D9120": "TMonteWBaseManager", + "803D9178": "TMonteMBaseManager", + "803D91D0": "TMareBaseManager", + "803D9228": "TNPCManager", + "803D9280": "TMareJellyFishManager", + "803D92B0": "TBoardNpcManager", + "803D92F0": "TNerveNPCMareStand", + "803D9300": "TNerveNPCBlown", + "803D9310": "TNerveNPCMad", + "803D9320": "TNerveNPCThrow", + "803D9330": "TNerveNPCTalk", + "803D9340": "TNerveNPCSetPosAfterSinkBottom", + "803D9350": "TNerveNPCRecoverAfter", + "803D9360": "TNerveNPCRecoverFromSink", + "803D9370": "TNerveNPCSink", + "803D9380": "TNerveNPCWet", + "803D9390": "TNerveNPCTurnToMario", + "803D93A0": "TNerveNPCWaitMarioApproach", + "803D93B0": "TNerveNPCWaitContinue", + "803D93C0": "TNerveNPCGraphWait", + "803D93D0": "TNerveNPCUTurn", + "803D93E0": "TNerveNPCGraphWander", + "803AC440": "MAnmSoundNPC", + "803AC460": "MAnmSound", + "803AC4C0": "MSound", + "803AC610": "MSoundSESystem::MSRandPlay", + "803AC6A8": "MSSetSoundTL", + "803AC6C0": "MSSetSoundGrp", + "803AC6D8": "MSoundSESystem::MSRandVol", + "803AC6E4": "JALListFrameLoop", + "803AC6F0": "MSSetSoundTL", + "803AC708": "MSSetSound", + "803AC720": "JALListFrameLoop", + "803AC9EC": "MSHandle", + "803C28D8": "TWoodBarrel", + "803C2AB8": "TMapObjBase", + "803C8B20": "TMapObjGeneral", + "803C8D48": "TMapObjBaseManager", + "803C8D88": "TMerryPole", + "803C8EEC": "TMapObjManager", + "803C8F30": "TMapObjTurn", + "803C90A4": "TMapObjMessenger", + "803C91C0": "TNozzleBox", + "803C942C": "TItemNozzle", + "803C9610": "TEggYoshi", + "803C97EC": "TShine", + "803C99D0": "TCoinBlue", + "803C9BB4": "TCoinRed", + "803C9D98": "TCoinEmpty", + "803C9F7C": "TFlowerCoin", + "803CA160": "TCoin", + "803CA344": "TItem", + "803CA528": "TItemManager", + "803CA568": "TBasketReverse", + "803CA6CC": "TRedCoinSwitch", + "803CA830": "TMapObjSwitch", + "803CA994": "THideObjInfo", + "803CAA38": "TMapObjWaterSpray", + "803CAB9C": "TDamageObj", + "803CAC40": "TMapObjStartDemo", + "803CADA4": "TMapObjChangeStageHipDrop", + "803CAF08": "TMapObjChangeStage", + "803CB06C": "TMapObjBillboard", + "803CB1DC": "TManhole", + "803CB3B8": "TDoor", + "803CB520": "TSuperHipDropBlock", + "803CB690": "TTelesaBlock", + "803CB7F4": "TJuiceBlock", + "803CB958": "TBrickBlock", + "803CBAC8": "TIceBlock", + "803CBC2C": "TLeanBlock", + "803CBD94": "TSandBlock", + "803CBEF8": "TBreakableBlock", + "803CC0D8": "TWoodLog", + "803CC240": "TBellWatermill", + "803CC3B4": "TBiancoBell", + "803CC518": "TLampSeesawMain", + "803CC680": "TLampSeesaw", + "803CC7E8": "TLeafBoatRotten", + "803CC94C": "TLeafBoat", + "803CCAB0": "TBiancoMiniWindmill", + "803CCC20": "TBiancoWatermillVertical", + "803CCD84": "TBiancoWatermill", + "803CCEE8": "TMapObjRootPakkun", + "803CD04C": "TBigWindmill", + "803CD1B0": "TPictureTelesa", + "803CD32C": "TPanelRevolve", + "803CD490": "TChestRevolve", + "803CD5F4": "TWarpAreaActor", + "803CD698": "TSirenaCasinoRoof", + "803CD7FC": "TSirenabossWall", + "803CD960": "TSakuCasino", + "803CDAC4": "TCloset", + "803CDC34": "TDonchou", + "803CDD98": "TCasinoPanelGate", + "803CDF08": "TItemSlotDrum", + "803CE07C": "TSlotDrum", + "803CE1F0": "TRoulette", + "803CE358": "TRouletteSw", + "803CE400": "TFruitLauncher", + "803CE564": "TFruitSwitch", + "803CE6C8": "TSurfGesoObj", + "803CE8AC": "TRiccoWatermill", + "803CEA10": "TCraneCargo", + "803CEB78": "TCraneUpDown", + "803CECDC": "TCraneRotY", + "803CEE40": "TSandEgg", + "803CEFC8": "TMammaMirrorMapOperator", + "803CEFEC": "TGoalWatermelon", + "803CF2B4": "TSandBird", + "803CF424": "TMammaYacht", + "803CF588": "TMammaBlockRotate", + "803CF6EC": "TShiningStone", + "803CF790": "TLeanMirror", + "803CF8F4": "TSandCastle", + "803CFA78": "TSandBombBase", + "803CFBFC": "TSandBomb", + "803CFD60": "TSandLeafBase", + "803CFECC": "TSandBase", + "803D0038": "TSandLeaf", + "803D01A0": "TPinnaCoaster", + "803D0304": "TAmiKing", + "803D0468": "TWaterRecoverObj", + "803D05CC": "TPinnaEntrance", + "803D0730": "TBalloonKoopaJr", + "803D090C": "TChangeStageMerrygoround", + "803D0A70": "TMerrygoround", + "803D0BD4": "TShellCup", + "803D0D38": "TPinnaShell", + "803D0DDC": "TViking", + "803D0F44": "THorizontalViking", + "803D10AC": "TFerrisWheel", + "803D1210": "TGateShadow", + "803D1238": "TMareEventPoint", + "803D12DC": "TMareCork", + "803D1440": "TMareFall", + "803D15A4": "TMuddyBoat", + "803D1708": "TMapObjPuncher", + "803D186C": "TWireBell", + "803D19D0": "TMapObjGrowTree", + "803D1B34": "TMapObjElasticCode", + "803D1C98": "TCogwheel", + "803D1DFC": "TCogwheelScale", + "803D1F60": "TMapObjFlagManager", + "803D1F84": "TMapObjFlag", + "803D2030": "TMapObjWave", + "803D2058": "TMapObjFloatOnSea", + "803D21C0": "TSandPlane", + "803D22BC": "TRockPlane", + "803D23B8": "TMapObjPlane", + "803D24B8": "TRideCloud", + "803D2628": "TBigWatermelon", + "803D2850": "TCoverFruit", + "803D29B4": "TRandomFruit", + "803D2BA4": "TResetFruit", + "803D2D94": "TMapObjBall", + "803D2F88": "TAirportEventSink", + "803D2FDC": "TAirportSwitch", + "803D31B8": "TTurboNozzleDoor", + "803D331C": "TDemoCannon", + "803D3480": "TMareGate", + "803D35E4": "TMapObjSmoke", + "803D3754": "TDptMonteFence", + "803D38B8": "TBellDolpic", + "803D3A1C": "TMonumentShine", + "803D3B80": "TMapObjRevivalPollution", + "803D3BA4": "TPolluterBase", + "803D3D08": "TMapObjGrassManager", + "803D3D2C": "TMapObjGrassGroup", + "803D3DD0": "TMapObjPoleManager", + "803D3DF8": "TMapObjWaterFilter", + "803D3E98": "TMapObjSeaIndirect", + "803D3F9C": "TModelGate", + "803D4128": "TRailFence", + "803D428C": "TFenceWaterH", + "803D43F8": "TFenceWater", + "803D4564": "TRevolvingFenceInner", + "803D46C8": "TRevolvingFenceOuter", + "803D482C": "TFence", + "803D4990": "TFileLoadBlock", + "803D4AF4": "TMapObjOptionWall", + "803D4B98": "TWoodBlock", + "803D4D08": "TRollBlock", + "803D4E6C": "TRailBlock", + "803D4FDC": "TNormalLift", + "803D514C": "TRailMapObj", + "803D52C0": "TFluffManager", + "803D5424": "TFluff", + "803D5588": "TGoalFlag", + "803D56EC": "TSwingBoard", + "803D5850": "THangingBridge", + "803D5874": "THangingBridgeBoard", + "803D59DC": "TJumpMushroom", + "803D5B40": "TMapObjMonteRoot", + "803D5CA8": "TMapObjTreeScale", + "803D5E84": "TMapObjTree", + "803D6060": "TMapObjSteam", + "803D61D0": "TJointCoin", + "803D6340": "TMapObjNail", + "803D64B0": "TPool", + "803D6614": "TPoolManager", + "803D6658": "TBathtub", + "803D67BC": "TBathtubGrip", + "803D6920": "TBathtubGripPartsHard", + "803D6A1C": "TBathtubGripPartsFragile", + "803D6B18": "TBathtubGripParts", + "803D6C18": "TJumpBase", + "803D6D7C": "TMushroom1up", + "803D6EE0": "TWoodBox", + "803D7050": "TBreakHideObj", + "803D71C0": "THideObjPictureTwin", + "803D733C": "TWaterHitPictureHideObj", + "803D74B8": "THipDropHideObj", + "803D7628": "TFruitBasketEvent", + "803D77A0": "TFruitBasket", + "803D7918": "TFruitHitHideObj", + "803D7A8C": "TWaterHitHideObj", + "803D7BFC": "THideObj", + "803D7D6C": "THideObjBase", + "803D7EE0": "TLampTrapIron", + "803D8044": "TLampTrapIronHit", + "803D80E8": "TLampTrapSpike", + "803D824C": "TLampTrapSpikeHit", + "803C15D0": "TJointModel", + "803C1608": "TJointModelManager", + "803C1630": "TJointObj", + "803C1658": "TMap", + "803C16C0": "TBGCheckListWarp", + "803C16CC": "TBGCheckList", + "803C16D8": "TMapCollisionWarp", + "803C16FC": "TMapCollisionMove", + "803C1720": "TMapCollisionStatic", + "803C1744": "TMapCollisionBase", + "803C1768": "TMapDrawWall", + "803C1790": "TMapEvent", + "803C17D0": "TMapEventSinkShadowMario", + "803C1824": "TMapEventSinkBianco", + "803C1878": "TMapEventSinkInPollutionReset", + "803C18CC": "TMapEventSinkInPollution", + "803C1920": "TMapEventSink", + "803C1978": "TMirrorMapDrawBuf", + "803C199C": "TMirrorModelManager", + "803C19C0": "TMirrorModelObj", + "803C19DC": "TMirrorModel", + "803C19F8": "TMirrorCamera", + "803C1AD4": "TMapModel", + "803C1B08": "TMapModelManager", + "803C1B30": "TMapObjSoundGroup", + "803C1B70": "TMapModelActor", + "803C1C14": "TMapStaticObj", + "803C1CB8": "TMapWireManager", + "803C1CDC": "TMapWireActor", + "803C1D90": "TPollutionCounterBase", + "803C1DA4": "TPollutionCounterObj", + "803C1DB8": "TPollutionCounterLayer", + "803C1E4C": "TPollutionManager", + "803C1E90": "TPollutionLayerWallMinusX", + "803C1EEC": "TPollutionLayerWallMinusZ", + "803C1F48": "TPollutionObj", + "803C1F70": "TShimmer", + "803C2010": "TSky", + "803C20B0": "TMapEventSirenaSink", + "803C2160": "TPollutionLayer", + "803C21BC": "TPollutionLayerWallBase", + "803C2218": "TPollutionLayerWallPlusX", + "803C2274": "TPollutionLayerWallPlusZ", + "803C22D0": "TPollutionLayerWave", + "803C2330": "TPollutionTest", + "803C2358": "TMarineSnow", + "803C23F8": "TDolpicEventRiccoMammaGate", + "803C2438": "TDolpicEventBiancoGate", + "803C2478": "TMareEventBumpyWall", + "803C25FC": "TMareEventDepressWall", + "803C2620": "TMareEventWallRock", + "803C2644": "TMareWallRock", + "803C2788": "TBathWaterManager", + "803C27AC": "TBathWater", + "803C2850": "TBathWaterMeshRenderer", + "803C2864": "TBathWaterFlatRenderer", + "803C2878": "TBathWaterRenderer", + "803C288C": "TBathWaterPreprocessor", + "803C28B0": "TStickyStainManager", + "803BFF58": "TFlashPane", + "803BFF7C": "TMenuPlane", + "803BFFA0": "TMenuBase", + "803BFFC8": "TSMSFader", + "803C0304": "TGCConsole2", + "803C03C8": "TTalk2D2", + "803C0550": "TPauseMenu2", + "803C0578": "TSwitchHelpActor", + "803C0620": "THelpActor", + "803C07A0": "TCardSave", + "803C09C8": "TCardLoad", + "803C0C78": "TConsoleStr", + "803C0E58": "TSelectMenu", + "803C0EC8": "TSelectGrad", + "803C0EF0": "TSelectDir", + "803C0F88": "TSelectShine", + "803C0F98": "TSelectShineManager", + "803C0FC0": "TBlendPane", + "803C1048": "TGuide", + "803C10A0": "TSunShine", + "803C10C8": "TSunGlass", + "803C10F0": "TShineFader", + "803C1254": "TProgSelect", + "803C1488": "TMovieSubTitle", + "803C15A8": "TMovieRumble", + "803AD958": "TConductor", + "803AD9E0": "TEffectExplosion", + "803ADAF4": "TEffectModelManager", + "803ADB48": "TEffectExplosionManager", + "803ADB9C": "TEffectColumSand", + "803ADCB0": "TEffectColumSandManager", + "803ADD04": "TEffectBombColumWater", + "803ADE18": "TEffectBombColumWaterManager", + "803ADE6C": "TEffectColumWater", + "803ADF80": "TEffectColumWaterManager", + "803ADFD4": "TEffectModel", + "803AE0E8": "TEffectObjManager", + "803AE10C": "TEffectObjBase", + "803AE1C0": "TEffectBiancoFunsui", + "803AE264": "TEffectPinnaFunsui", + "803AE308": "TSimpleEffect", + "803AE3B0": "TEMarioManager", + "803AE404": "TEMario", + "803AE518": "TSpineEnemy", + "803AE62C": "TSolidStack_const*>", + "803AE638": "TSpineBase", + "803AE648": "TSolidStack", + "803AE658": "TEnemyPolluteModel", + "803AE680": "TEnemyPolluteModelManager", + "803AE6A8": "TEnemyAttachment", + "803AE800": "TEnemyManager", + "803AEF24": "TEnemyMario", + "803AF228": "TMtxCalcFootInv", + "803AF364": "TNerveGessoTurn", + "803AF374": "TNerveGessoLand", + "803AF384": "TNerveGessoFindMario", + "803AF394": "TNerveGessoRolling", + "803AF3A4": "TNerveGessoFall", + "803AF3B4": "TNerveGessoPollute", + "803AF3C4": "TNerveGessoPunch", + "803AF3D4": "TNerveGessoFreeze", + "803AF3E4": "TNerveGessoStay", + "803AF3F4": "TGessoPolluteObj", + "803AF53C": "TLandGesso", + "803AF6F4": "TSurfGesso", + "803AF8AC": "TGesso", + "803AFA64": "TGessoManager", + "803AFABC": "TGessoPolluteModel", + "803AFAE4": "TGessoPolluteModelManager", + "803AFC14": "TGraphWeb", + "803AFCE4": "TNerveDoroHanePrepareAttack", + "803AFCF4": "TNerveDoroHaneHitWater", + "803AFD04": "TNerveDoroHaneRise", + "803AFD14": "TNerveFireHamuKuriRecover", + "803AFD24": "TNerveDoroHamuKuriRobCap", + "803AFD34": "TNerveHaneHamuKuriMoveOnGraph", + "803AFD44": "TNerveHaneHamuKuriUpWait", + "803AFD54": "TNerveDangoHamuKuriWait", + "803AFD64": "TNerveHamuKuriJitabata", + "803AFD74": "TNerveHamuKuriLand", + "803AFD84": "TNerveHamuKuriWallDie", + "803AFD94": "TNerveHamuKuriBoundFreeze", + "803AFDA4": "TNerveHamuKuriGoForSearchActor", + "803AFDB4": "TDoroHamuKuri", + "803AFF7C": "TFireHamuKuri", + "803B0144": "TBossDangoHamuKuri", + "803B030C": "TDangoHamuKuri", + "803B04D4": "THaneHamuKuri2", + "803B069C": "TDoroHaneKuri", + "803B0864": "THaneHamuKuri", + "803B0A2C": "THamuKuri", + "803B0BF4": "TDoroHamuKuriManager", + "803B0C4C": "TDoroHige", + "803B0C70": "TFireHamuKuriManager", + "803B0CC8": "TBossDangoHamuKuriManager", + "803B0D20": "TDangoHamuKuriManager", + "803B0D78": "TDoroHaneKuriManager", + "803B0DD0": "THaneHamuKuriManager", + "803B0E28": "THamuKuriManager", + "803B0E80": "THamuKuriLauncher", + "803B1058": "TNerveHino2WaitAnm", + "803B1134": "TNerveHino2Freeze", + "803B1144": "TNerveHino2Stamp", + "803B1154": "TNerveHino2Die", + "803B1164": "TNerveHino2Burst", + "803B1174": "TNerveHino2Squat", + "803B1184": "TNerveHino2Damage", + "803B1194": "TNerveHino2Pollute", + "803B11A4": "TNerveHino2PrePol", + "803B11B4": "TNerveHino2Turn", + "803B11C4": "TNerveHino2Landing", + "803B11D4": "TNerveHino2JumpIn", + "803B11E4": "TNerveHino2Fly", + "803B11F4": "TNerveHino2GraphWander", + "803B1204": "TNerveHino2Appear", + "803B1214": "THinokuri2", + "803B1328": "THino2Hit", + "803B13CC": "THino2MtxCalc", + "803B1420": "THinokuri2Manager", + "803B14C4": "TNerveMameGessoWait", + "803B14D4": "TNerveMameGessoObject", + "803B14E4": "TNerveMameGessoThrown", + "803B14F4": "TNerveMameGessoPickUp", + "803B1504": "TNerveMameGessoTrample", + "803B1514": "TNerveMameGessoJitabata", + "803B1524": "TNerveMameGessoDamage", + "803B1534": "TNerveMameGessoGraphJumpWander", + "803B1544": "TMameGesso", + "803B16FC": "TMameGessoManager", + "803B1790": "TNerveNKFollowMario", + "803B17B0": "TDiffusionNameKuri", + "803B1968": "TNerveNameKuriDrawPollute", + "803B1978": "TNerveNameKuriDiffuse", + "803B1988": "TNerveNameKuriExplosion", + "803B1998": "TNerveNameKuriJumpAttackPrepare", + "803B19A8": "TNerveNameKuriJumpAttack", + "803B19B8": "TNerveNameKuriLand", + "803B19C8": "TDiffusionNameKuriManager", + "803B1A20": "TNameKuri", + "803B1BD8": "TNameIndParCallback", + "803B1BE8": "TNameKuriManager", + "803B1C40": "TNameKuriLauncher", + "803B1DB0": "TNerveStayPakkunAppear", + "803B1DC0": "TNerveStayPakkunHide", + "803B1DD0": "TNervePakkunFreeze", + "803B1DE0": "TNervePakkunShoot", + "803B1DF0": "TNervePakkunHide", + "803B1E00": "TNervePakkunAppear", + "803B1E10": "TNervePakkunStay", + "803B1E20": "TNervePakkunGenerate", + "803B1E30": "TStayPakkun", + "803B1FE0": "TPakkunSeed", + "803B2128": "TPakkun", + "803B22D8": "TPakkunManager", + "803B2348": "TNerveSmallEnemyChange", + "803B2358": "TNerveSmallEnemyWait", + "803B2368": "TNerveSmallEnemyHitWaterJump", + "803B2378": "TNerveSmallEnemyJump", + "803B2388": "TNerveSmallEnemyFreeze", + "803B2398": "TNerveSmallEnemyDie", + "803B23A8": "TSmallEnemy", + "803B2550": "TSmallEnemyManager", + "803B25A8": "TSpider", + "803B25B8": "TNerveTypicalGraphWander", + "803B25C8": "TTypicalManager", + "803B261C": "TTypicalEnemy", + "803B2730": "TWalker", + "803B2740": "TSolidStack", + "803B2750": "TNerveWalkerTraceMario", + "803B2760": "TNerveWalkerEscape", + "803B2770": "TNerveWalkerPostAttack", + "803B2780": "TNerveWalkerAttack", + "803B2790": "TNerveWalkerGraphWander", + "803B27A0": "TNerveWalkerGenerate", + "803B27B0": "TWalkerEnemy", + "803B29D8": "TNerveBGRoll", + "803B2A28": "TNerveBGPolDrop", + "803B2A38": "TNerveBGPollute", + "803B2A48": "TNerveBGDie", + "803B2A58": "TNerveBGTug", + "803B2A68": "TNerveBGTentacleDamage", + "803B2A78": "TNerveBGBeakDamage", + "803B2A88": "TNerveBGEyeDamage", + "803B2A98": "TNerveBGWait", + "803B2AA8": "TBossGessoManager", + "803B2AFC": "TBossGesso", + "803B2C10": "TBGBinder", + "803B2C20": "TBossGessoMtxCalc", + "803B2C64": "TBGBodyHit", + "803B2D08": "TBGEyeHit", + "803B2DAC": "TBGBeakHit", + "803B2EC0": "TNerveElecCarapaceReturn", + "803B2ED0": "TNerveElecCarapaceWait", + "803B2EE0": "TNerveElecCarapaceMove", + "803B2EF0": "TNerveElecNokonokoAttack", + "803B2F00": "TNerveElecNokonokoRebirth", + "803B2F10": "TNerveElecNokonokoFreeze", + "803B2F20": "TNerveElecNokonokoTurn", + "803B2F30": "TNerveElecNokonokoCollect", + "803B2F40": "TNerveElecNokonokoShoot", + "803B2F50": "TElecCarapace", + "803B3098": "TElecNokonoko", + "803B3254": "TElecNokonokoManager", + "803B32FC": "TNerveKageMarioModokiWait", + "803B3340": "TKageMarioModoki", + "803B34F8": "TKageMarioModokiManager", + "803B3550": "TNerveTelesaTrample", + "803B3560": "TNerveTelesaAttackMario", + "803B3570": "TNerveTelesaFreeze", + "803B3580": "TNerveTelesaDie", + "803B3590": "TNerveTelesaImitate", + "803B35A0": "TMarioModokiTelesa", + "803B3758": "TBoxTelesa", + "803B3910": "TLoopTelesa", + "803B3AC8": "TSeeTelesa", + "803B3C80": "TTelesa", + "803B3E38": "TTelesaManager", + "803B3EC8": "TNerveFireWanwanEscape", + "803B3ED8": "TNerveFireWanwanFreeze", + "803B3EE8": "TNerveFireWanwanFly", + "803B3EF8": "TNerveFireWanwanHungTail", + "803B3F08": "TNerveFireWanwanDie", + "803B3F18": "TNerveFireWanwanRecover", + "803B3F28": "TNerveFireWanwanRecoverGraph", + "803B3F38": "TNerveFireWanwanTired", + "803B3F48": "TNerveFireWanwanAttack", + "803B3F58": "TNerveFireWanwanFindMario", + "803B3F68": "TNerveFireWanwanTurn", + "803B3F78": "TNerveFireWanwanGraphWander", + "803B3F88": "TFireWanwan", + "803B4130": "TFireWanwanTailHit", + "803B41E4": "TFireWanwanManager", + "803B4240": "TStageEnemyInfo", + "803B4260": "TStageEnemyInfoTable", + "803B4280": "TNameRefPtrAryT", + "803B42A0": "TOneShotGenerator", + "803B4344": "TGenerator", + "803B43E0": "TNerveBPCannonL", + "803B43F0": "TNerveBPWaitL", + "803B4400": "TNerveBPBreakSleep", + "803B4410": "TNerveBPSleep", + "803B4420": "TNerveBPFall", + "803B4430": "TNerveBPHover", + "803B4440": "TNerveBPFlyPivot", + "803B4450": "TNerveBPFlyCannon", + "803B4460": "TNerveBPTouchDown", + "803B4470": "TNerveBPFly", + "803B4480": "TNerveBPTakeOff", + "803B4490": "TNerveBPDie", + "803B44A0": "TNerveBPPreDie", + "803B44B0": "TNerveBPJumpReact", + "803B44C0": "TNerveBPStompReact", + "803B44D0": "TNerveBPSwing", + "803B44E0": "TNerveBPGetUp", + "803B44F0": "TNerveBPTumbleOut", + "803B4500": "TNerveBPTumble", + "803B4510": "TNerveBPTumbleIn", + "803B4520": "TNerveBPSwallow", + "803B4530": "TNerveBPPivot", + "803B4540": "TNerveBPTornado", + "803B4550": "TNerveBPVomit", + "803B4560": "TNerveBPCannon", + "803B4570": "TNerveBPWait", + "803B4580": "TBossPakkunManager", + "803B45D4": "TBossPakkun", + "803B46E8": "TBossPakkunMtxCalc", + "803B472C": "TBPNavel", + "803B47D0": "TBPHeadHit", + "803B4874": "TBPTornado", + "803B4918": "TBPVomit", + "803B493C": "TBPPolDrop", + "803B4A38": "TNerveTobiPukuSwimWander", + "803B4A48": "TNerveTobiPukuReturnLaunch", + "803B4A58": "TNerveTobiPukuPrepareFly", + "803B4A68": "TNerveTobiPukuBound", + "803B4A78": "TNerveTobiPukuLand", + "803B4A88": "TNerveTobiPukuDie", + "803B4A98": "TNerveTobiPukuPitiPiti", + "803B4AA8": "TNerveTobiPukuFall", + "803B4AB8": "TNerveTobiPukuHitWater", + "803B4AC8": "TNerveTobiPukuAttack", + "803B4AD8": "TNerveTobiPukuFly", + "803B4AE8": "TNerveTobiPukuGenerate", + "803B4AF8": "TMoePuku", + "803B4CF8": "TPukuPuku", + "803B4EF8": "TTobiPuku", + "803B50F8": "TMoePukuLaunchPad", + "803B52A4": "TTobiPukuLaunchPad", + "803B5450": "TMoePukuManager", + "803B54A8": "TTobiPukuManager", + "803B5500": "TMoePukuLaunchPadManager", + "803B5558": "TTobiPukuLaunchPadManager", + "803B57DC": "TNerveTinKoopaBreak", + "803B584C": "TNerveTinKoopaDamage", + "803B585C": "TNerveTinKoopaWait", + "803B586C": "TTinKoopaManager", + "803B58C0": "TTinKoopaMtxCalc", + "803B5904": "TTinKoopaPartsBase", + "803B5A04": "TTinKoopaFlame", + "803B5AA8": "TTinKoopa", + "803B5BD0": "TCommonLauncherManager", + "803B5C24": "TCommonLauncher", + "803B5D50": "TLauncherManager", + "803B5DA4": "TLauncher", + "803B5F24": "TNerveBWFall", + "803B6084": "TNerveBWShake", + "803B6094": "TNerveBWJumpAway", + "803B60A4": "TNerveBWDie", + "803B60B4": "TNerveBWJumpToBath", + "803B60C4": "TNerveBWWakeup", + "803B60D4": "TNerveBWStun", + "803B60E4": "TNerveBWJump", + "803B60F4": "TNerveBWBark", + "803B6104": "TNerveBWRoll", + "803B6114": "TNerveBWGraphWander", + "803B6124": "TBossWanwanManager", + "803B6178": "TBossWanwan", + "803B628C": "TBossWanwanMtxCalc", + "803B62D0": "TBWBinder", + "803B62E0": "TBWHit", + "803B6384": "TBWPicket", + "803B6438": "TBWLeash", + "803B645C": "TBWLeashNode", + "803B654C": "TNerveChuuHanaWait", + "803B655C": "TNerveChuuHanaJumpPrepare", + "803B656C": "TNerveChuuHanaAttack", + "803B657C": "TNerveChuuHanaObject", + "803B658C": "TNerveChuuHanaFall2", + "803B659C": "TNerveChuuHanaFall", + "803B65AC": "TNerveChuuHanaRoll", + "803B65BC": "TNerveChuuHanaStick", + "803B65CC": "TNerveChuuHanaKeepBalance", + "803B65DC": "TNerveChuuHanaForceJumped", + "803B65EC": "TNerveChuuHanaWalkOnPanel", + "803B65FC": "TChuuHana", + "803B67B4": "TChuuHanaAseParCallback", + "803B67C4": "TChuuHanaManager", + "803B6880": "TNerveGorogoroDie", + "803B6890": "TNerveGorogoroRollOnGraph", + "803B68A0": "TGorogoro", + "803B6A70": "TGorogoroManager", + "803B6AC8": "TGorogoroPolluteModel", + "803B6AF0": "TGorogoroPolluteModelManager", + "803B6B18": "TNerveIgaigaShootFromCannon", + "803B6B28": "TNerveIgaigaWaterHit", + "803B6B38": "TNerveIgaigaRollOnGraph", + "803B6B48": "TIgaiga", + "803B6D18": "TIgaigaManager", + "803B6D70": "TIgaigaPolluteModel", + "803B6D98": "TIgaigaPolluteModelManager", + "803B6DC0": "TRollEnemy", + "803B6FC8": "TNervePoihanaTrapped", + "803B6FD8": "TNervePoihanaThrow", + "803B6FE8": "TNervePoihanaFreeze", + "803B6FF8": "TNervePoihanaSleep", + "803B7008": "TSleepPoiHana", + "803B71C0": "TPoiHanaRed", + "803B7378": "TPoiHana", + "803B7530": "TPoiHanaCollision", + "803B75D4": "TPoiHanaManager", + "803B768C": "TNerveTamaNokoWait", + "803B769C": "TNerveTamaNokoHitWater", + "803B76AC": "TNerveTamaNokoSink", + "803B76BC": "TNerveTamaNokoThrown", + "803B76CC": "TNerveTamaNokoPickUp", + "803B76DC": "TNerveTamaNokoDown", + "803B76EC": "TNerveTamaNokoAttack", + "803B76FC": "TNerveTamaNokoSleep", + "803B770C": "TTamaNoko", + "803B78C4": "TTamaNokoManager", + "803B791C": "TTamaNokoFlower", + "803B79D8": "TNerveBossTelesaFallDemo", + "803B79E8": "TBossTelesaKillSmallEnemy", + "803B7A8C": "TNerveBossTelesaFreeze", + "803B7A9C": "TNerveBossTelesaPrepareSlot", + "803B7AAC": "TNerveBossTelesaSpitSlotItem", + "803B7ABC": "TNerveBossTelesaSlotStart", + "803B7ACC": "TNerveBossTelesaAppear", + "803B7ADC": "TNerveBossTelesaHideWait", + "803B7AEC": "TNerveBossTelesaHide", + "803B7AFC": "TNerveBossTelesaSpit", + "803B7B0C": "TNerveBossTelesaDie", + "803B7B1C": "TBossTelesa", + "803B7C30": "TTelesaSlot", + "803B7F14": "TBossTelesaTongue", + "803B7FB8": "TBossTelesaBody", + "803B805C": "TBossTelesaManager", + "803B80B0": "TNerveBubbleSplit", + "803B80C0": "TNerveBubbleLive", + "803B80D0": "TBubble", + "803B8288": "TBubbleManager", + "803B82E0": "TNerveRHGraphWander", + "803B82F0": "TRiccoHookManager", + "803B8344": "TRiccoHook", + "803B8458": "THookTake", + "803B8588": "TNerveBombHeiExplosion", + "803B85D8": "TNerveBombHeiThrown", + "803B85E8": "TNerveBombHeiPickUp", + "803B85F8": "TNerveBombHeiWaitExplosion", + "803B8608": "TNerveBombHeiWalkExplosion", + "803B8618": "TNerveBombHeiAttack", + "803B8628": "TNerveBombHeiGenerate", + "803B8638": "TBombHei", + "803B87F0": "TBombHeiManager", + "803B88A4": "TNerveCannonObject", + "803B88B4": "TNerveCannonDamageDemo", + "803B88C4": "TNerveCannonDamage", + "803B88D4": "TNerveCannonClose", + "803B88E4": "TNerveCannonForceBombShoot", + "803B88F4": "TNerveCannonShoot", + "803B8904": "TNerveCannonSearch", + "803B8914": "TNerveCannonOpen", + "803B8924": "TCannon", + "803B8AD0": "TCannonDom", + "803B8AF4": "TChorobei", + "803B8B98": "TCannonManager", + "803B8D08": "TNerveBossEelSleepOnBottom", + "803B8D7C": "TNerveBossEelMouthOpenWait", + "803B8D8C": "TNerveBossEelDie", + "803B8D9C": "TNerveBossEelEat", + "803B8DAC": "TNerveBossEelQuickBack", + "803B8DBC": "TNerveBossEelSlowBack", + "803B8DCC": "TNerveBossEelOutWait", + "803B8DDC": "TNerveBossEelAppear", + "803B8DEC": "TNerveBossEelSecondSpin", + "803B8DFC": "TNerveBossEelFirstSpin", + "803B8E0C": "TNerveBossEelWaitAppear", + "803B8E1C": "TBossEel", + "803B8F30": "TBossEelTearsRecoverCollision", + "803B8FDC": "TBossEelBarrierCollision", + "803B9088": "TBossEelAwaCollision", + "803B9134": "TBossEelBodyCollision", + "803B91E0": "TBossEelCollision", + "803B928C": "TBossEelHeartCoin", + "803B92B0": "TBossEelEye", + "803B92D4": "TBossEelVortex", + "803B937C": "TBossEelTooth", + "803B9420": "TBossEelManager", + "803B9474": "TNerveOilBallStay", + "803B9484": "TOilBall", + "803B959C": "TNerveBEelTearsSplit", + "803B95AC": "TNerveBEelTearsMarioRecover", + "803B95BC": "TNerveBEelTearsWaterHit", + "803B95CC": "TNerveBEelTearsMoveUp", + "803B95DC": "TNerveBEelTearsGenerate", + "803B95EC": "TBEelTears", + "803B9704": "TBEelTearsManager", + "803B9758": "TBEelTearsDrop", + "803B9870": "TNerveKillerExplosion", + "803B98C0": "TKiller", + "803B9A84": "TKillerManager", + "803B9ADC": "TNerveFlyEnemyChaseFly", + "803B9AEC": "TNerveFlyEnemyNormalFly", + "803B9AFC": "TFlyEnemy", + "803B9CC0": "TBeamManager", + "803B9DAC": "TNerveSamboHeadHitWall", + "803B9DBC": "TNerveSamboHeadRecoverWater", + "803B9DCC": "TNerveSamboHeadHitWater", + "803B9DDC": "TNerveSamboHeadHide", + "803B9DEC": "TNerveSamboHeadAttack", + "803B9DFC": "TNerveSamboHeadAppear", + "803B9E0C": "TSamboHead", + "803B9FC4": "TSamboHeadManager", + "803BA01C": "TNerveHanaSamboFreeze", + "803BA02C": "TNerveHanaSamboDie", + "803BA03C": "TNerveHanaSamboHide", + "803BA04C": "TNerveHanaSamboAttack", + "803BA05C": "TNerveHanaSamboWait", + "803BA06C": "TNerveHanaSamboAppear", + "803BA07C": "THanaSambo", + "803BA224": "THanaSamboHead", + "803BA2C8": "THanaSamboManager", + "803BA320": "TSamboFlower", + "803BA438": "TSamboFlowerManager", + "803BA490": "TSamboLeaf", + "803BA4F8": "TNervePopoThrown", + "803BA508": "TNervePopoWait", + "803BA518": "TNervePopoExplosion", + "803BA528": "TNervePopoFly", + "803BA538": "TNervePopoAttack", + "803BA548": "TNervePopoPossessedNozzle", + "803BA558": "TPopo", + "803BA710": "TPopoCollision", + "803BA7B4": "TPopoManager", + "803BA810": "TNerveSBH_Fall", + "803BA820": "TNerveSBH_SleepContinue", + "803BA830": "TSleepBossHanachan", + "803BA944": "TSleepBossHanachanManager", + "803BA998": "TDemoBossHanachan", + "803BAAAC": "TDemoBossHanachanManager", + "803BAB00": "TNerveFruitsBoatBckTrace", + "803BAB10": "TNerveFruitsBoatGraphWander", + "803BAB20": "TFruitsBoatManager", + "803BAB74": "TFruitsBoat", + "803BAC88": "TWaterHitActor", + "803BAD6C": "TBossHanachan", + "803BAE80": "TBossHanachanManager", + "803BAED8": "TNerveBossHanachanDead", + "803BAEE8": "TNerveBossHanachanSnort", + "803BAEF8": "TNerveBossHanachanDamage", + "803BAF08": "TNerveBossHanachanGetUp", + "803BAF18": "TNerveBossHanachanDown", + "803BAF28": "TNerveBossHanachanTumble", + "803BAF38": "TNerveBossHanachanGraphWander", + "803BAF48": "TBossHanachanPartsHead", + "803BB090": "TFootHitActor", + "803BB134": "TBossHanachanPartsBody", + "803BB290": "TNerveAmiNokoFreeze", + "803BB2A0": "TNerveAmiNokoDie", + "803BB2B0": "TNerveAmiNokoTurn", + "803BB2C0": "TNerveAmiNokoWalkOnFence", + "803BB2D0": "TAmiNoko", + "803BB488": "TAmiHit", + "803BB52C": "TAmiNokoManager", + "803BB5D8": "TNerveBGKLaunchName", + "803BB5E8": "TBGKObstacle", + "803BB68C": "TNerveBGKLaunchGoro", + "803BB69C": "TNerveBGKDive", + "803BB6AC": "TNerveBGKDie", + "803BB6BC": "TNerveBGKAwakeDamage", + "803BB6CC": "TNerveBGKSleepDamage", + "803BB6DC": "TNerveBGKWait2", + "803BB6EC": "TNerveBGKWait", + "803BB6FC": "TNerveBGKAppear", + "803BB70C": "TNerveBGKSleep", + "803BB71C": "TBiancoGateKeeper", + "803BB830": "TBGKMtxCalc", + "803BB874": "TBiancoGateKeeperManager", + "803BB8CC": "TGateKeeperBase", + "803BB9E0": "TGKHitObj", + "803BBA88": "TEggGenManager", + "803BBADC": "TEggGenerator", + "803BBBF0": "TNerveSealDie", + "803BBC00": "TNerveSealWait", + "803BBC10": "TNerveSealSleep", + "803BBC20": "TSealManager", + "803BBC74": "TSeal", + "803BBD88": "TBGPolDrop", + "803BBE9C": "TBGTentacle", + "803BC0C0": "TBGAttackHit", + "803BC164": "TBGTakeHit", + "803BC218": "TBGTentacleMtxCalc", + "803BC270": "TEffectEnemy", + "803BC428": "TEffectEnemyManager", + "803BC498": "TNerveHauntLegHaunt", + "803BC4A8": "THauntLeg", + "803BC660": "THauntedObject", + "803BC704": "THauntLegManager", + "803BC760": "TAreaCylinderManager", + "803BC784": "TAreaCylinder", + "803BC7A8": "TNerveWireTrapGoWait", + "803BC7E8": "TNerveWireTrapWait", + "803BC7F8": "TNerveWireTrapSearch", + "803BC808": "TNerveWireTrapOnewayMoveEnd", + "803BC818": "TNerveWireTrapOnewayMove", + "803BC828": "TNerveWireTrapOnewayMoveStart", + "803BC838": "TNerveWireTrapReturnMove", + "803BC848": "TWireTrapManager", + "803BC89C": "TWireTrap", + "803BCA48": "TBossHanachanPartsBase", + "803BCB70": "TNerveRocketWait", + "803BCB80": "TNerveRocketFly", + "803BCB90": "TNerveRocketPossessedNozzle", + "803BCBA0": "TRocket", + "803BCD48": "TRocketManager", + "803BCDB4": "TNerveKazekunHitWater", + "803BCDC4": "TNerveKazekunWait", + "803BCDD4": "TNerveKazekunDisappear", + "803BCDE4": "TNerveKazekunAttack", + "803BCDF4": "TNerveKazekunPreAttack", + "803BCE04": "TNerveKazekunTurn", + "803BCE14": "TNerveKazekunAppear", + "803BCE24": "TNerveKazekunSearch", + "803BCE34": "TKazekunManager", + "803BCE8C": "TKazekun", + "803BD0A4": "TBossMantaManager", + "803BD0F8": "TBossMantaAdditionalCollision", + "803BD19C": "TBossManta", + "803BD2B0": "TNerveMantaAppearDemo", + "803BD2C0": "TNerveMantaDeath", + "803BD2D0": "TNerveMantaSpawn", + "803BD2E0": "TNerveMantaHitWater", + "803BD2F0": "TNerveMantaMove", + "803BD300": "TWireBinder", + "803BD344": "TNerveYumboFreeze", + "803BD354": "TNerveYumboAttack", + "803BD364": "TNerveYumboAppearing", + "803BD374": "TNerveYumboHiding", + "803BD384": "TNerveYumboDancing", + "803BD394": "TYumbo", + "803BD53C": "TYumboManager", + "803BD594": "TYumboSeed", + "803BD664": "TKoopaJrSubmarineManager", + "803BD6B8": "TNerveKoopaJrSubmarineLaunchKiller", + "803BD6C8": "TNerveKoopaJrSubmarineCannonOpenClose", + "803BD6D8": "TNerveKoopaJrSubmarineWait", + "803BD6E8": "TKoopaJrSubmarine", + "803BD7FC": "TKoopaJrManager", + "803BD850": "TNerveKoopaJrYahoo", + "803BD860": "TNerveKoopaJrLaunch", + "803BD870": "TNerveKoopaJrDemo", + "803BD880": "TNerveKoopaJrDamage", + "803BD890": "TNerveKoopaJrWait", + "803BD8A0": "TKoopaJr", + "803BD9B4": "TCallbackHitActor", + "803BDAC0": "TNerveKumokunPreFly", + "803BDAD0": "TSolidStack", + "803BDADC": "TNerveKumokunFly", + "803BDAEC": "TNerveKumokunPostFreeze", + "803BDAFC": "TNerveKumokunFreeze", + "803BDB0C": "TNerveKumokunWait", + "803BDB1C": "TNerveKumokunSearch", + "803BDB2C": "TNerveKumokunPostWalk", + "803BDB3C": "TNerveKumokunWalk", + "803BDB4C": "TNerveKumokunPreWalk", + "803BDB5C": "TKumokunManager", + "803BDBB4": "TKumokun", + "803BDD9C": "TKoopaManager", + "803BDE2C": "TNerveKoopaTurnR", + "803BDE3C": "TNerveKoopaTurnL", + "803BDE4C": "TNerveKoopaTurn", + "803BDE5C": "TKoopa", + "803BDF70": "TKoopaBody", + "803BE01C": "TKoopaHead", + "803BE0C8": "TKoopaHand", + "803BE174": "TKoopaFlame", + "803BE220": "TKoopaParts", + "803BE2CC": "TNerveKoopaGetDown", + "803BE2DC": "TNerveKoopaGetShowered", + "803BE2EC": "TNerveKoopaStagger", + "803BE2FC": "TNerveKoopaProvoke", + "803BE30C": "TNerveKoopaFlame", + "803BE31C": "TNerveKoopaFall", + "803BE32C": "TNerveKoopaTumble", + "803BE33C": "TNerveKoopaWait", + "803BE368": "TNerveKukkuRecoverGraph", + "803BE378": "TNerveKukkuPostFall", + "803BE388": "TNerveKukkuFall", + "803BE398": "TNerveKukkuGraphWander", + "803BE3A8": "TKukku", + "803BE550": "TKukkuManager", + "803BE5A8": "TKukkuBall", + "803BE66C": "TNerveAmenboHitWater", + "803BE67C": "TNerveAmenboWalk", + "803BE68C": "TNerveAmenboPreAttack", + "803BE69C": "TNerveAmenboTurn", + "803BE6AC": "TNerveAmenboSearch", + "803BE6BC": "TAmenbo", + "803BE864": "TAmenboManager", + "803BE91C": "TBathtubPeachManager", + "803BE970": "TNervePeachEscape", + "803BE980": "TNervePeachStagger", + "803BE990": "TBathtubPeach", + "803BEAD8": "TBathtubKillerManager", + "803BEB30": "TNerveBathtubKillerExplosion", + "803BEB40": "TNerveBathtubKillerBreak", + "803BEB50": "TNerveBathtubKillerStraight", + "803BEB60": "TNerveBathtubKillerChaseStraight", + "803BEB70": "TNerveBathtubKillerChase", + "803BEB80": "TNerveBathtubKillerWander", + "803BEB90": "TBathtubKiller", + "803BED70": "TCoasterKillerManager", + "803BEDC8": "TNerveCoasterKillerExplosion", + "803BEDD8": "TCoasterKiller", + "803BEF9C": "TNerveCoasterEnemyWander", + "803BEFAC": "TCoasterEnemy", + "803BF170": "TNerveDebuTelesaWait", + "803BF180": "TDebuTelesaManager", + "803BF1D8": "TDebuTelesa", + "803BF38C": "TNerveTabePukuDrag", + "803BF39C": "TNerveTabePukuDive", + "803BF3AC": "TNerveTabePukuBite", + "803BF3BC": "TNerveTabePukuAttack", + "803BF3CC": "TNerveTabePukuRecoverGraph", + "803BF3DC": "TNerveTabePukuFound", + "803BF3EC": "TNerveTabePukuGraphWander", + "803BF3FC": "TTabePukuManager", + "803BF454": "TTabePuku", + "803BF5FC": "TTPHitActor", + "803BF6A8": "TBathtubBinder", + "803BF6B8": "TLimitKoopaManager", + "803BF70C": "TNerveLimitKoopaTurn", + "803BF71C": "TLimitKoopa", + "803BF830": "TLimitKoopaBody", + "803BF930": "TLimitKoopaHead", + "803BFA30": "TLimitKoopaHand", + "803BFB30": "TLimitKoopaFlame", + "803BFC30": "TLimitKoopaParts", + "803BFD30": "TNerveLimitKoopaGetDown", + "803BFD40": "TNerveLimitKoopaGetShowered", + "803BFD50": "TNerveLimitKoopaStagger", + "803BFD60": "TNerveLimitKoopaTumble", + "803BFD70": "TNerveLimitKoopaWait", + "803BFD80": "TNerveLimitKoopaHipDropStart", + "803BFD90": "TNerveLimitKoopaHipDropJump", + "803BFDB0": "TLimitKoopaJrManager", + "803BFE04": "TNerveLimitKoopaJrYahoo", + "803BFE14": "TNerveLimitKoopaJrLaunch", + "803BFE24": "TNerveLimitKoopaJrWait", + "803BFE34": "TNerveLimitKoopaJrRun", + "803BFE44": "TLimitKoopaJr", + "803ACDE8": "CPolarSubCamera", + "803AD108": "TLensFlare", + "803AD130": "TLensGlow", + "803AD160": "TSunMgr", + "803AD1A0": "TSunModel", + "803AD240": "TCubeManagerBase", + "803AD288": "TCameraMapTool", + "803AD2A8": "TCubeStreamInfo", + "803AD2C8": "TCubeCameraInfo", + "803AD2E8": "TCubeGeneralInfo", + "803AB660": "TBoidLeader", + "803AB6A8": "TFishoidManager", + "803AB7D0": "TFishoid", + "803AB8E8": "TFish", + "803AB9A0": "TRealoid", + "803ABAB8": "TRealoidActor", + "803ABB70": "TAnimalBase", + "803ABC88": "TMewManager", + "803ABCDC": "TAnimalManagerBase", + "803ABD60": "TNerveAnimalGraphWander", + "803ABD94": "TNerveAnimalBirdLanding", + "803ABDA4": "TNerveAnimalBirdPreLanding", + "803ABDB4": "TNerveAnimalBirdComeback", + "803ABDC4": "TNerveAnimalBirdChangeToCoin", + "803ABDD4": "TNerveAnimalBirdGraphWander", + "803ABDE4": "TNerveAnimalBirdTakeoff", + "803ABDF4": "TNerveAnimalBirdWalkOnGround", + "803ABE04": "TNerveAnimalBirdActionOnGround", + "803ABE14": "TNerveAnimalBirdWaitOnGround", + "803ABE24": "TAnimalBirdManager", + "803ABE78": "TAnimalBird", + "803ABF90": "TNerveBeeHiveReset", + "803ABFA0": "TNerveBeeHiveMarioWaterIn", + "803ABFB0": "TNerveBeeHiveAttack", + "803ABFC0": "TNerveBeeHiveBreak", + "803ABFD0": "TNerveBeeHiveFall", + "803ABFE0": "TNerveBeeHiveWait", + "803ABFF0": "TBeeHiveManager", + "803AC044": "TBeeHive", + "803AC15C": "TBee", + "803AC218": "TButterfloidManager", + "803AC26C": "TButterfloid", + "803AC384": "TButterfly" +} \ No newline at end of file diff --git a/src/sms/vt/GMSJ01.json b/src/sms/vt/GMSJ01.json new file mode 100644 index 0000000..c4946a2 --- /dev/null +++ b/src/sms/vt/GMSJ01.json @@ -0,0 +1,1510 @@ +{ + "803A8380": "JKRFile", + "803A83A0": "JKRAramArchive", + "803A83E8": "JKRAramHeap", + "803A8428": "JKRAram", + "803A8438": "JKRArchive", + "803A8480": "JKRCompArchive", + "803A84C8": "JKRDisposer", + "803A84D8": "JKRDvdArchive", + "803A8520": "JKRDvdFile", + "803A8548": "JKRExpHeap", + "803A8598": "JKRFileFinder", + "803A85A8": "JKRArcFinder", + "803A85B8": "JKRFileLoader", + "803A85F8": "JKRHeap", + "803A8648": "JKRMemArchive", + "803A8690": "JKRSolidHeap", + "803A86E0": "JKRStdHeap", + "803A8730": "JKRThread", + "803A8740": "JSURandomOutputStream", + "803A8768": "JSUIosBase", + "803A8774": "JSUOutputStream", + "803A8788": "JSURandomInputStream", + "803A87AC": "JSUInputStream", + "803A87C8": "JSUMemoryOutputStream", + "803A87F0": "JSUMemoryInputStream", + "803A8818": "JSUFileInputStream", + "803A88A0": "JUTException", + "803A8B68": "JUTFont", + "803A8BB0": "JUTGamePad", + "803A8BC0": "J2DPane", + "803A8BF0": "J2DPicture", + "803A8C80": "J2DPrint", + "803A8CE0": "J2DSetScreen", + "803A8D14": "J2DScreen", + "803A8D48": "J2DTextBox", + "803A8D78": "J2DWindow", + "803A8DA4": "J2DWindow::Texture", + "803A8E08": "J3DSkinDeform", + "803A8E18": "J3DJoint", + "803A8E40": "J3DMtxCalcMayaAnm", + "803A8E94": "J3DMtxCalcSoftimageAnm", + "803A8EE8": "J3DMtxCalcBasicAnm", + "803A8F3C": "J3DMtxCalcMaya", + "803A8F80": "J3DMtxCalcSoftimage", + "803A8FC4": "J3DMtxCalcBasic", + "803A9008": "J3DMtxCalc", + "803A9028": "J3DMtxCalcAnm", + "803A9058": "J3DPEBlockFull", + "803A90BC": "J3DIndBlockFull", + "803A9104": "J3DTevBlock16", + "803A91A0": "J3DTevBlock4", + "803A923C": "J3DTevBlock2", + "803A92D8": "J3DTevBlock1", + "803A9374": "J3DTexGenBlockBasic", + "803A93C4": "J3DColorBlockLightOn", + "803A9428": "J3DColorBlockLightOff", + "803A948C": "J3DPEBlockXlu", + "803A94F0": "J3DPEBlockTexEdge", + "803A9554": "J3DPEBlockOpa", + "803A95B8": "J3DPEBlock", + "803A961C": "J3DIndBlockNull", + "803A9664": "J3DIndBlock", + "803A96AC": "J3DTevBlock", + "803A9748": "J3DTexGenBlock", + "803A9798": "J3DColorBlock", + "803A984C": "J3DModel", + "803A9868": "J3DModelData", + "803A9878": "J3DNode", + "803A9900": "J3DShapeDraw", + "803A990C": "J3DShapeMtxMulti", + "803A992C": "J3DShapeMtxDL", + "803A994C": "J3DShapeMtx", + "803A9990": "J3DAnmColorKey", + "803A99A0": "J3DAnmColor", + "803A99B0": "J3DAnmColorFull", + "803A99C0": "J3DAnmVtxColorKey", + "803A99D0": "J3DAnmVtxColor", + "803A99E0": "J3DAnmVtxColorFull", + "803A99F0": "J3DAnmClusterKey", + "803A9A00": "J3DAnmCluster", + "803A9A10": "J3DAnmClusterFull", + "803A9A20": "J3DAnmTransformKey", + "803A9A34": "J3DAnmTransform", + "803A9A44": "J3DAnmTransformFull", + "803A9A54": "J3DAnmBase", + "803A9A60": "J3DModelLoader_v21", + "803A9A88": "J3DModelLoader_v26", + "803A9AB0": "J3DTexture", + "803A9ABC": "J3DModelLoader", + "803A9AE8": "J3DAnmKeyLoader_v15", + "803A9AF8": "J3DAnmFullLoader_v15", + "803A9B08": "J3DAnmLoader", + "803A9B18": "J3DAnmVisibilityFull", + "803A9B24": "J3DAnmTexPattern", + "803A9B30": "J3DAnmTevRegKey", + "803A9B3C": "J3DAnmTextureSRTKey", + "803A9B48": "J2DGrafContext", + "803A9BA0": "JKRDecomp", + "803A9BB0": "J2DOrthoGraph", + "803A9BD8": "J3DVertexBuffer", + "803A9BE8": "J3DShapePacket", + "803A9C00": "J3DMatPacket", + "803A9C18": "J3DDrawPacket", + "803A9C30": "J3DCallBackPacket", + "803A9C48": "J3DPacket", + "803A9E98": "J3DMaterialAnm", + "803A9EA8": "J3DTexNoAnm", + "803A9EB8": "JKRAramBlock", + "803A9EF8": "JKRAramStream", + "803A9F14": "JUTResFont", + "803A9F68": "JUTRomFont", + "803AA010": "JUTConsole", + "803AA020": "JDrama::TActor", + "803AA0C0": "JDrama::TViewObj", + "803AA0E8": "JDrama::TOrthoProj", + "803AA1BC": "JDrama::TLookAtCamera", + "803AA2B0": "JDrama::TPolarCamera", + "803AA38C": "JDrama::TCamera", + "803AA450": "JDrama::TCharacter", + "803AA474": "JDrama::TSmplChara", + "803AA498": "JDrama::TDirector", + "803AA508": "JDrama::TDisplay", + "803AA518": "JDrama::TDrawBufObj", + "803AA540": "JDrama::TViewObjPtrListT", + "803AA56C": "JDrama::TDStageDisp", + "803AA590": "JDrama::TDStageGroup", + "803AA5C0": "JDrama::TEfbCtrlTex", + "803AA5E4": "JDrama::TEfbCtrlDisp", + "803AA608": "JDrama::TEfbCtrl", + "803AA630": "JDrama::TFrmGXSet", + "803AA658": "JDrama::TLightMap", + "803AA67C": "JDrama::TAmbAry", + "803AA6A0": "JDrama::TAmbColor", + "803AA704": "JDrama::TIdxLight", + "803AA7A0": "JDrama::TLightAry", + "803AA7C4": "JDrama::TLight", + "803AA860": "JDrama::TNameRef", + "803AA880": "JDrama::TNameRefPtrListT", + "803AA8A0": "JDrama::TNameRefGen", + "803AA8B0": "JDrama::TPlacement", + "803AA8D8": "JDrama::TScreen", + "803AA8FC": "TCamConnecter", + "803AA920": "JDrama::TSmJ3DAct", + "803AA9C0": "J3DFrameCtrl", + "803AA9D0": "JDrama::TSmJ3DScn", + "803AAA00": "JDrama::TViewConnecter", + "803AAA28": "JDrama::TViewport", + "803AAA50": "JALSeModData", + "803AAA60": "JALSeModData", + "803AAA70": "JALSeModData", + "803AAA80": "JALSeModData", + "803AAA90": "JALSeModData", + "803AAAA0": "JALSeModData", + "803AAAB0": "JALSeModData", + "803AAAC0": "JALSeModData", + "803AAAD0": "JALSeModData", + "803AAAE0": "JALSeModData", + "803AAAF0": "JALSeModData", + "803AAB00": "JALSeModData", + "803AAB10": "JALSeModPitDGrp", + "803AAB20": "JALSeModDataGrp", + "803AAB30": "JALSeModEffDGrp", + "803AAB40": "JALSeModDataGrp", + "803AAB50": "JALSeModVolDGrp", + "803AAB60": "JALSeModDataGrp", + "803AAB70": "JALSeModEffFGrp", + "803AAB80": "JALSeModDataGrp", + "803AAB90": "JALSeModPitFGrp", + "803AABA0": "JALSeModDataGrp", + "803AABB0": "JALSeModVolFGrp", + "803AABC0": "JALSeModDataGrp", + "803AABD0": "JALSeModPitDist", + "803AABE0": "JALSeModEffDist", + "803AABF0": "JALSeModVolDist", + "803AAC00": "JALSeModEffFunk", + "803AAC10": "JALSeModPitFunk", + "803AAC20": "JALSeModVolFunk", + "803AAC30": "JAIAnimeSound", + "803AAC64": "JAIBasic", + "803AAD50": "JAISound", + "803AADB0": "JASystem::TBasicBank", + "803AADC4": "JASystem::TBank", + "803AADD8": "JASystem::TBasicInst", + "803AADF0": "JASystem::TInst", + "803AAE08": "JASystem::TWaveHandle", + "803AAE1C": "JASystem::TBasicWaveBank::TWaveHandle", + "803AAE30": "JASystem::TBasicWaveBank::TWaveGroup", + "803AAE44": "JASystem::WaveArcLoader::TObject", + "803AAE58": "JASystem::TBasicWaveBank", + "803AAE6C": "JASystem::TWaveBank", + "803AAE80": "JASystem::TInstEffect", + "803AAE90": "JASystem::TDrumSet", + "803AAEA8": "JASystem::TInstRand", + "803AAEB8": "JASystem::TInstSense", + "803AAEC8": "JASystem::TSimpleWaveBank::TWaveHandle", + "803AAEDC": "JASystem::TSimpleWaveBank", + "803AC420": "J3DMaterialTable", + "803AC498": "JPADragField", + "803AC4B0": "JPARandomField", + "803AC4C8": "JPAConvectionField", + "803AC4E0": "JPAVortexField", + "803AC4F8": "JPANewtonField", + "803AC510": "JPAMagnetField", + "803AC528": "JPAAirField", + "803AC540": "JPAGravityField", + "803AC558": "JPABaseField", + "803AC570": "JPAParticle", + "803AC5C8": "JPABaseParticle", + "803AC678": "JPADrawCalcEmitterVisitor", + "803AC688": "JPADrawCalcParticleVisitor", + "803AC698": "JPADrawExecParticleVisitor", + "803AC6A8": "JPADrawExecEmitterVisitor", + "803AC6B8": "JPADrawCalcChildScaleOut", + "803AC6C8": "JPADrawCalcChildAlphaOut", + "803AC6D8": "JPADrawCalcAlphaFlickMultSin", + "803AC6E8": "JPADrawCalcAlphaFlickAddSin", + "803AC6F8": "JPADrawCalcAlphaFlickNrmSin", + "803AC708": "JPADrawCalcAlpha", + "803AC718": "JPADrawCalcColorCopyFromEmitter", + "803AC728": "JPADrawCalcScaleAnmTimingReverseY", + "803AC738": "JPADrawCalcScaleAnmTimingReverseX", + "803AC748": "JPADrawCalcScaleAnmTimingRepeatY", + "803AC758": "JPADrawCalcScaleAnmTimingRepeatX", + "803AC768": "JPADrawCalcScaleAnmTimingNormal", + "803AC778": "JPADrawCalcScaleCopyX2Y", + "803AC788": "JPADrawCalcScaleYBySpeed", + "803AC798": "JPADrawCalcScaleXBySpeed", + "803AC7A8": "JPADrawCalcScaleY", + "803AC7B8": "JPADrawCalcScaleX", + "803AC7C8": "JPADrawExecCallBack", + "803AC7EC": "JPADrawCalcTextureAnmIndexRandom", + "803AC810": "JPADrawCalcTextureAnmIndexMerge", + "803AC834": "JPADrawCalcTextureAnmIndexReverse", + "803AC858": "JPADrawCalcTextureAnmIndexRepeat", + "803AC87C": "JPADrawCalcTextureAnmIndexNormal", + "803AC8A0": "JPADrawCalcColorAnmFrameRandom", + "803AC8C4": "JPADrawCalcColorAnmFrameMerge", + "803AC8E8": "JPADrawCalcColorAnmFrameReverse", + "803AC90C": "JPADrawCalcColorAnmFrameRepeat", + "803AC930": "JPADrawCalcColorAnmFrameNormal", + "803AC954": "JPADrawCalcColorEnv", + "803AC978": "JPADrawCalcColorPrm", + "803AC99C": "JPADrawExecRegisterColorChildPE", + "803AC9AC": "JPADrawExecRegisterColorEmitterE", + "803AC9BC": "JPADrawExecRegisterColorEmitterP", + "803AC9CC": "JPADrawExecRegisterColorEmitterPE", + "803AC9DC": "JPADrawExecStripeCross", + "803AC9EC": "JPADrawExecStripe", + "803AC9FC": "JPADrawExecLine", + "803ACA0C": "JPADrawExecPoint", + "803ACA1C": "JPADrawExecRotationCross", + "803ACA2C": "JPADrawExecRotation", + "803ACA3C": "JPADrawExecDirBillBoard", + "803ACA4C": "JPADrawExecRotDirectionalCross", + "803ACA5C": "JPADrawExecDirectionalCross", + "803ACA6C": "JPADrawExecRotDirectional", + "803ACA7C": "JPADrawExecDirectional", + "803ACA8C": "JPADrawExecRotYBillBoard", + "803ACA9C": "JPADrawExecYBillBoard", + "803ACAAC": "JPADrawExecRotBillBoard", + "803ACABC": "JPADrawExecBillBoard", + "803ACACC": "JPADrawExecRegisterPrmAEnv", + "803ACADC": "JPADrawExecRegisterPrmCEnv", + "803ACAEC": "JPADrawExecRegisterEnvColorAnm", + "803ACAFC": "JPADrawExecRegisterPrmAlphaAnm", + "803ACB0C": "JPADrawExecRegisterPrmColorAnm", + "803ACB1C": "JPADrawExecSetLineWidth", + "803ACB2C": "JPADrawExecSetPointSize", + "803ACB3C": "JPADrawExecLoadTexture", + "803ACB60": "JPADrawExecLoadDefaultTexture", + "803ACB70": "JPADrawExecSetTexMtx", + "803ACB94": "JPADrawExecGenIdtMtx", + "803ACBA4": "JPADrawExecGenTexMtx0", + "803ACBB4": "JPADrawExecGenPrjTexMtx", + "803ACBC4": "JPADrawExecGenPrjMtx", + "803ACBD4": "JPADrawExecLoadExTex", + "803ACBE8": "JPAExTexShape", + "803ACBF4": "JPADataBlock", + "803ACC00": "JPAKeyFrameAnime", + "803ACC0C": "JPAEmitterLoader", + "803ACC18": "JPAEmitterLoader_v10", + "803ACCD0": "JPABaseShape", + "803ACCE0": "JPAExtraShape", + "803ACCF0": "JPASweepShape", + "803ACD00": "JPATexture", + "803ACD10": "JStage::TAmbientLight", + "803ACD48": "JStage::TCamera", + "803ACDD0": "JStage::TActor", + "803ACE38": "JStage::TLight", + "803ACE98": "JStage::TObject", + "803ACEC8": "JStage::TSystem", + "803B1F70": "TDLColorTexQuad", + "803B1F90": "TDLTexQuad", + "803B1FB0": "TSilhouette", + "803B1FD8": "TLightWithDBSetManager", + "803B1FFC": "TIndirectLightWithDBSet", + "803B2024": "TMapObjectLightWithDBSet", + "803B204C": "TObjectLightWithDBSet", + "803B2074": "TPlayerLightWithDBSet", + "803B209C": "TLightWithDBSet", + "803B20C4": "TLightDrawBuffer", + "803B20EC": "TLightMario", + "803B2120": "TLightShadow", + "803B2154": "TLightCommon", + "803B29B8": "TParamT", + "803B29C4": "TParamT>", + "803B29D0": "TMtxSwingRZReverseXZ", + "803B29DC": "TParamVec", + "803B29E8": "TMtxSwingRZ", + "803B29F4": "TParamRT", + "803B2A00": "TMtxTimeLag", + "803B2A0C": "TMtxEffectBase", + "803B2A18": "TScreenTexture", + "803B2A3C": "TAfterEffect", + "803B2A90": "TMBindShadowManager", + "803B2AB4": "TMBindShadowManager::TSetup5$2216ShadowUtil_cpp", + "803B2AC4": "TMBindShadowManager::TSetup4$2207ShadowUtil_cpp", + "803B2AD4": "TMBindShadowManager::TSetup3$2195ShadowUtil_cpp", + "803B2AE4": "TMBindShadowManager::TSetup2$2190ShadowUtil_cpp", + "803B2AF4": "TMBindShadowManager::TCylinder$2171ShadowUtil_cpp", + "803B2B04": "TMBindShadowManager::TSetup1$2172ShadowUtil_cpp", + "803B3460": "TGDLStatic", + "803B3470": "TGDLStatic::TGDLSentinel", + "803B3480": "Koga::ToolData", + "803B349C": "M3UMtxCalcSIAnmBlendQuat", + "803B34E0": "M3UModel", + "803B3504": "M3UModelCommon", + "803B3510": "MActorAnmEach", + "803B3538": "MActorAnmMatEach", + "803B3560": "MActorAnmEach", + "803B3588": "MActorAnmMatEach", + "803B35B0": "MActorAnmEach", + "803B35D8": "MActorAnmMatEach", + "803B3600": "MActorAnmEach", + "803B3628": "MActorAnmMatEach", + "803B3650": "MActorAnmEach", + "803B3678": "MActorAnmEach", + "803B36A0": "MActorAnmBlk", + "803B36C8": "MActorAnmBrk", + "803B36F0": "MActorAnmBpk", + "803B3718": "MActorAnmBtk", + "803B3740": "MActorAnmBtp", + "803B3768": "MActorAnmBck", + "803B3790": "MActorAnmBase", + "803B37B8": "SDLModel", + "803B37D8": "SDLMatPacket", + "803B37F0": "SampleCtrlJoint", + "803B37FC": "SampleCtrlMaterial", + "803B3808": "SampleCtrlShape", + "803B3818": "SampleCtrlModelData", + "803B3828": "TBaseParam", + "803B3860": "TMarioParticleManager", + "803B38A8": "TMarioEmitterCallBackBindToSRTMtxPtr", + "803B38BC": "TMarioEmitterCallBackBindToMtxPtr", + "803B38D0": "TMarioEmitterCallBackBindToPosPtr", + "803B38E4": "TEmitterIndirectViewObj", + "803B3908": "TEmitterViewObj", + "803B392C": "JPACallBackBase", + "803B3940": "TEventWatcher", + "803B3968": "TSpcTypedInterp", + "803B397C": "TSpcTypedBinary", + "803B3A68": "TGCLogoDir", + "803B3AD4": "TNintendo2D", + "803B3AF8": "TGXAlphaUpdate", + "803B3B1C": "TReInitGX", + "803B3B40": "TSMSDrawInit", + "803B3B64": "TJ3DSysSetViewMtx", + "803B3B88": "TJ3DSysFlag", + "803B3CA0": "TMarDirector", + "803B3D10": "TMarNameRefGen", + "803B3D20": "TNameRefAryT", + "803B3D40": "TNameRefPtrAryT\\,JDrama::TNameRef>", + "803B3D60": "TNameRefAryT", + "803B3D80": "TNameRefPtrAryT", + "803B3DA0": "TNameRefAryT", + "803B3DC0": "TNameRefAryT", + "803B3DE0": "TCubeManagerFast", + "803B3E04": "TCubeManagerArea", + "803B3E28": "TCubeManagerMarioIn", + "803B3E4C": "JDrama::TViewObjPtrListT", + "803B3E78": "TSmplFader", + "803B3EA8": "TMenuDirector", + "803B3F18": "TPerformList", + "803B3FA8": "TSnapTimeObj", + "803B3FD0": "TTalkCursor", + "803B3FF8": "TAlphaCatch", + "803B401C": "TZBufferCatch", + "803B409C": "TMarioGamePad", + "803B40A8": "TScenarioArchiveName", + "803B40C8": "TStageEventInfo", + "803B4148": "TStagePositionInfo", + "803B4168": "TTimeRec", + "803B4174": "TDrawSyncCallback", + "803B4180": "TTHPRender", + "803B41A8": "TNameKuriLauncherManager", + "803B41FC": "THamuKuriLauncherManager", + "803B4250": "TSirenaRollMapObj", + "803B43C0": "TCasinoRoulette", + "803B4528": "TSirenaGate", + "803B468C": "TTakeActor", + "803B4740": "TMareWManager", + "803B4798": "TMareMManager", + "803B48D8": "TMovieDirector", + "803B4AF4": "MSSTageSimpleEnvironment", + "803B4B08": "MSStageCubeSwitch", + "803B4B1C": "MSStageCubeFadeMonte", + "803B4B30": "MSStageCubeFade", + "803B4B44": "MSStageDistFadeMonte", + "803B4B58": "MSStageDistFade", + "803B4B6C": "MSStage", + "803B4B80": "TTargetArrow", + "803B4BA8": "TLiveActor", + "803B4E58": "TLiveManager", + "803B4E98": "TSpcTypedBinary", + "803B4EA8": "TObjManager", + "803B4ED8": "TObjChara", + "803B52C0": "TSpcInterp", + "803B52D4": "TSpcStack", + "803B52E0": "TSpcStack", + "803B52EC": "TSpcBinary", + "803B5300": "TStrategy", + "803B5324": "TIdxGroupObj", + "803B5350": "TQuestionManager", + "803B5378": "TSMSSmplChara", + "803B53A0": "THitActor", + "803B5448": "TBinder", + "803B5458": "TSharedParts", + "803B5480": "TMirrorActor", + "803B54A8": "M3UModelMario", + "803B54D0": "TMarioCap", + "803B66C0": "M3UModelCommonMario", + "803B682C": "TWarpInCallBack", + "803B6864": "TBubbleCallBack", + "803B6874": "JPACallBackBase2", + "803B6888": "TSplashManager", + "803B68B0": "TYoshiTongue", + "803B6A40": "TWaterGun", + "803B6A70": "TParamRT", + "803B6A7C": "TParamT", + "803B6A88": "TParamRT", + "803B6A94": "TParamT", + "803B6AA0": "TParamRT", + "803B6AAC": "TParamT", + "803B6AB8": "TNozzleDeform", + "803B6AE0": "TNozzleTrigger", + "803B6B08": "TNozzleBase", + "803B6B78": "TMarioEffect", + "803B6C48": "TMario", + "803B7FEC": "TModelWaterManager", + "803B8138": "TMarioPositionObj", + "803B83A8": "TBaseNPC", + "803B8650": "TSunflowerSManager", + "803B86E0": "TMareWBaseManager", + "803B8738": "TMareMBaseManager", + "803B8790": "TMonteWBManager", + "803B87E8": "TMonteWAManager", + "803B8840": "TMonteWManager", + "803B8898": "TMonteMEManager", + "803B88F0": "TMonteMDManager", + "803B8948": "TMonteMCManager", + "803B89A0": "TMonteMBManager", + "803B89F8": "TMonteMAManager", + "803B8A50": "TMonteMManager", + "803B8AA8": "TSunflowerLManager", + "803B8B00": "TRaccoonDogManager", + "803B8B58": "TPeachManager", + "803B8BB0": "TKinojiiManager", + "803B8C08": "TKinopioManager", + "803B8C60": "TMareWBManager", + "803B8CB8": "TMareWAManager", + "803B8D10": "TMareMDManager", + "803B8D68": "TMareMCManager", + "803B8DC0": "TMareMBManager", + "803B8E18": "TMareMAManager", + "803B8E70": "TMonteWCManager", + "803B8EC8": "TMonteMHManager", + "803B8F20": "TMonteMGManager", + "803B8F78": "TMonteMFManager", + "803B8FD0": "TMonteWSpecialManager", + "803B9028": "TMonteMSpecialManager", + "803B9080": "TMonteWBaseManager", + "803B90D8": "TMonteMBaseManager", + "803B9130": "TMareBaseManager", + "803B9188": "TNPCManager", + "803B91E0": "TMareJellyFishManager", + "803B9210": "TBoardNpcManager", + "803B9250": "TNerveNPCMareStand", + "803B9260": "TNerveBase", + "803B9270": "TNerveNPCBlown", + "803B9280": "TNerveNPCMad", + "803B9290": "TNerveNPCThrow", + "803B92A0": "TNerveNPCTalk", + "803B92B0": "TNerveNPCSetPosAfterSinkBottom", + "803B92C0": "TNerveNPCRecoverAfter", + "803B92D0": "TNerveNPCRecoverFromSink", + "803B92E0": "TNerveNPCSink", + "803B92F0": "TNerveNPCWet", + "803B9300": "TNerveNPCTurnToMario", + "803B9310": "TNerveNPCWaitMarioApproach", + "803B9320": "TNerveNPCWaitContinue", + "803B9330": "TNerveNPCGraphWait", + "803B9340": "TNerveNPCUTurn", + "803B9350": "TNerveNPCGraphWander", + "803B9C28": "MAnmSoundNPC", + "803B9C38": "MAnmSound", + "803B9C98": "MSound", + "803B9DE8": "MSoundSESystem::MSRandPlay", + "803B9E80": "MSSetSoundTL", + "803B9E98": "MSSetSoundGrp", + "803B9EB0": "MSoundSESystem::MSRandVol", + "803B9EBC": "JALListFrameLoop", + "803B9EC8": "MSSetSoundTL", + "803B9EE0": "MSSetSound", + "803B9EF8": "JALListFrameLoop", + "803BA1C4": "MSHandle", + "803BA2D0": "TWoodBarrel", + "803BA4B0": "TMapObjBase", + "803C0518": "TMapObjGeneral", + "803C0740": "TMapObjBaseManager", + "803C0780": "TMerryPole", + "803C08E4": "TMapObjManager", + "803C0928": "TMapObjTurn", + "803C0A9C": "TMapObjMessenger", + "803C0BB8": "TNozzleBox", + "803C0E24": "TItemNozzle", + "803C1008": "TEggYoshi", + "803C11E4": "TShine", + "803C13C8": "TCoinBlue", + "803C15AC": "TCoinRed", + "803C1790": "TCoinEmpty", + "803C1974": "TFlowerCoin", + "803C1B58": "TCoin", + "803C1D3C": "TItem", + "803C1F20": "TItemManager", + "803C1F60": "TBasketReverse", + "803C20C4": "TRedCoinSwitch", + "803C2228": "TMapObjSwitch", + "803C238C": "THideObjInfo", + "803C2430": "TMapObjWaterSpray", + "803C2594": "TDamageObj", + "803C2638": "TMapObjStartDemo", + "803C279C": "TMapObjChangeStageHipDrop", + "803C2900": "TMapObjChangeStage", + "803C2A64": "TMapObjBillboard", + "803C2BD4": "TManhole", + "803C2DB0": "TDoor", + "803C2F18": "TSuperHipDropBlock", + "803C3088": "TTelesaBlock", + "803C31EC": "TJuiceBlock", + "803C3350": "TBrickBlock", + "803C34C0": "TIceBlock", + "803C3624": "TLeanBlock", + "803C378C": "TSandBlock", + "803C38F0": "TBreakableBlock", + "803C3AD0": "TWoodLog", + "803C3C38": "TBellWatermill", + "803C3DAC": "TBiancoBell", + "803C3F10": "TLampSeesawMain", + "803C4078": "TLampSeesaw", + "803C41E0": "TLeafBoatRotten", + "803C4344": "TLeafBoat", + "803C44A8": "TBiancoMiniWindmill", + "803C4618": "TBiancoWatermillVertical", + "803C477C": "TBiancoWatermill", + "803C48E0": "TMapObjRootPakkun", + "803C4A44": "TBigWindmill", + "803C4BA8": "TPictureTelesa", + "803C4D24": "TPanelRevolve", + "803C4E88": "TChestRevolve", + "803C4FEC": "TWarpAreaActor", + "803C5090": "TSirenaCasinoRoof", + "803C51F4": "TSirenabossWall", + "803C5358": "TSakuCasino", + "803C54BC": "TCloset", + "803C562C": "TDonchou", + "803C5790": "TCasinoPanelGate", + "803C5900": "TItemSlotDrum", + "803C5A74": "TSlotDrum", + "803C5BE8": "TRoulette", + "803C5D50": "TRouletteSw", + "803C5DF8": "TFruitLauncher", + "803C5F5C": "TFruitSwitch", + "803C60C0": "TSurfGesoObj", + "803C62A4": "TRiccoWatermill", + "803C6408": "TCraneCargo", + "803C6570": "TCraneUpDown", + "803C66D4": "TCraneRotY", + "803C6838": "TSandEgg", + "803C69C0": "TMammaMirrorMapOperator", + "803C69E4": "TGoalWatermelon", + "803C6B48": "TSandBird", + "803C6CB8": "TMammaYacht", + "803C6E1C": "TMammaBlockRotate", + "803C6F80": "TShiningStone", + "803C7024": "TLeanMirror", + "803C7188": "TSandCastle", + "803C730C": "TSandBombBase", + "803C7490": "TSandBomb", + "803C75F4": "TSandLeafBase", + "803C7760": "TSandBase", + "803C78CC": "TSandLeaf", + "803C7A30": "TPinnaCoaster", + "803C7B94": "TAmiKing", + "803C7CF8": "TWaterRecoverObj", + "803C7E5C": "TPinnaEntrance", + "803C7FC0": "TBalloonKoopaJr", + "803C819C": "TChangeStageMerrygoround", + "803C8300": "TMerrygoround", + "803C8464": "TShellCup", + "803C85C8": "TPinnaShell", + "803C866C": "TViking", + "803C87D4": "THorizontalViking", + "803C893C": "TFerrisWheel", + "803C8AA0": "TGateShadow", + "803C8AC8": "TMareEventPoint", + "803C8B6C": "TMareCork", + "803C8CD0": "TMareFall", + "803C8E34": "TMuddyBoat", + "803C8F98": "TMapObjPuncher", + "803C90FC": "TWireBell", + "803C9260": "TMapObjGrowTree", + "803C93C4": "TMapObjElasticCode", + "803C9528": "TCogwheel", + "803C968C": "TCogwheelScale", + "803C97F0": "TMapObjFlagManager", + "803C9814": "TMapObjFlag", + "803C98C0": "TMapObjWave", + "803C98E8": "TMapObjFloatOnSea", + "803C9A50": "TSandPlane", + "803C9B4C": "TRockPlane", + "803C9C48": "TMapObjPlane", + "803C9D48": "TRideCloud", + "803C9EB8": "TBigWatermelon", + "803CA0E0": "TCoverFruit", + "803CA244": "TRandomFruit", + "803CA434": "TResetFruit", + "803CA624": "TMapObjBall", + "803CA818": "TAirportEventSink", + "803CA86C": "TAirportSwitch", + "803CAA48": "TTurboNozzleDoor", + "803CABAC": "TDemoCannon", + "803CAD10": "TMareGate", + "803CAE74": "TMapObjSmoke", + "803CAFE4": "TDptMonteFence", + "803CB148": "TBellDolpic", + "803CB2AC": "TMonumentShine", + "803CB410": "TMapObjRevivalPollution", + "803CB434": "TPolluterBase", + "803CB598": "TMapObjGrassManager", + "803CB5BC": "TMapObjGrassGroup", + "803CB660": "TMapObjPoleManager", + "803CB688": "TMapObjWaterFilter", + "803CB728": "TMapObjSeaIndirect", + "803CB82C": "TModelGate", + "803CB9B8": "TRailFence", + "803CBB1C": "TFenceWaterH", + "803CBC88": "TFenceWater", + "803CBDF4": "TRevolvingFenceInner", + "803CBF58": "TRevolvingFenceOuter", + "803CC0BC": "TFence", + "803CC220": "TFileLoadBlock", + "803CC384": "TMapObjOptionWall", + "803CC428": "TWoodBlock", + "803CC598": "TRollBlock", + "803CC6FC": "TRailBlock", + "803CC86C": "TNormalLift", + "803CC9DC": "TRailMapObj", + "803CCB50": "TFluffManager", + "803CCCB4": "TFluff", + "803CCE18": "TGoalFlag", + "803CCF7C": "TSwingBoard", + "803CD0E0": "THangingBridge", + "803CD104": "THangingBridgeBoard", + "803CD26C": "TJumpMushroom", + "803CD3D0": "TMapObjMonteRoot", + "803CD538": "TMapObjTreeScale", + "803CD714": "TMapObjTree", + "803CD8F0": "TMapObjSteam", + "803CDA60": "TJointCoin", + "803CDBD0": "TMapObjNail", + "803CDD40": "TPool", + "803CDEA4": "TPoolManager", + "803CDEE8": "TBathtub", + "803CE04C": "TBathtubGrip", + "803CE1B0": "TBathtubGripPartsHard", + "803CE2AC": "TBathtubGripPartsFragile", + "803CE3A8": "TBathtubGripParts", + "803CE4A8": "TJumpBase", + "803CE60C": "TMushroom1up", + "803CE770": "TWoodBox", + "803CE8E0": "TBreakHideObj", + "803CEA50": "THideObjPictureTwin", + "803CEBCC": "TWaterHitPictureHideObj", + "803CED48": "THipDropHideObj", + "803CEEB8": "TFruitBasketEvent", + "803CF030": "TFruitBasket", + "803CF1A8": "TFruitHitHideObj", + "803CF31C": "TWaterHitHideObj", + "803CF48C": "THideObj", + "803CF5FC": "THideObjBase", + "803CF770": "TLampTrapIron", + "803CF8D4": "TLampTrapIronHit", + "803CF978": "TLampTrapSpike", + "803CFADC": "TLampTrapSpikeHit", + "803CFB80": "TJointModel", + "803CFBB8": "TJointModelManager", + "803CFBE0": "TJointObj", + "803CFC08": "TMap", + "803CFC70": "TBGCheckListWarp", + "803CFC7C": "TBGCheckList", + "803CFC88": "TMapCollisionWarp", + "803CFCAC": "TMapCollisionMove", + "803CFCD0": "TMapCollisionStatic", + "803CFCF4": "TMapCollisionBase", + "803CFD18": "TMapDrawWall", + "803CFD40": "TMapEvent", + "803CFD80": "TMapEventSinkShadowMario", + "803CFDD4": "TMapEventSinkBianco", + "803CFE28": "TMapEventSinkInPollutionReset", + "803CFE7C": "TMapEventSinkInPollution", + "803CFED0": "TMapEventSink", + "803CFF28": "TMirrorMapDrawBuf", + "803CFF4C": "TMirrorModelManager", + "803CFF70": "TMirrorModelObj", + "803CFF8C": "TMirrorModel", + "803CFFA8": "TMirrorCamera", + "803D0084": "TMapModel", + "803D00B8": "TMapModelManager", + "803D00E0": "TMapObjSoundGroup", + "803D0104": "TMapModelActor", + "803D01A8": "TMapStaticObj", + "803D0250": "TMapWireManager", + "803D0274": "TMapWireActor", + "803D0328": "TPollutionCounterBase", + "803D033C": "TPollutionCounterObj", + "803D0350": "TPollutionCounterLayer", + "803D03E4": "TPollutionManager", + "803D0428": "TPollutionLayerWallMinusX", + "803D0484": "TPollutionLayerWallMinusZ", + "803D04E0": "TPollutionObj", + "803D0508": "TShimmer", + "803D05A8": "TSky", + "803D0648": "TMapEventSirenaSink", + "803D06F8": "TPollutionLayer", + "803D0754": "TPollutionLayerWallBase", + "803D07B0": "TPollutionLayerWallPlusX", + "803D080C": "TPollutionLayerWallPlusZ", + "803D0868": "TPollutionLayerWave", + "803D08C8": "TPollutionTest", + "803D08F0": "TMarineSnow", + "803D0990": "TDolpicEventRiccoMammaGate", + "803D09D0": "TDolpicEventBiancoGate", + "803D0A10": "TMareEventBumpyWall", + "803D0B94": "TMareEventDepressWall", + "803D0BB8": "TMareEventWallRock", + "803D0BDC": "TMareWallRock", + "803D0D28": "TBathWaterManager", + "803D0D4C": "TBathWater", + "803D0DF0": "TBathWaterMeshRenderer", + "803D0E04": "TBathWaterFlatRenderer", + "803D0E18": "TBathWaterRenderer", + "803D0E2C": "TBathWaterPreprocessor", + "803D0E50": "TStickyStainManager", + "803D0E78": "TFlashPane", + "803D0E9C": "TMenuPlane", + "803D0EC0": "TMenuBase", + "803D0EE8": "TSMSFader", + "803D0FE4": "TGCConsole2", + "803D1118": "TTalk2D2", + "803D12A0": "TPauseMenu2", + "803D12C8": "TSwitchHelpActor", + "803D1370": "THelpActor", + "803D14EC": "TCardSave", + "803D170C": "TCardLoad", + "803D19B0": "TConsoleStr", + "803D1B90": "TSelectMenu", + "803D1C00": "TSelectGrad", + "803D1C28": "TSelectDir", + "803D1C98": "TSelectShine", + "803D1CA8": "TSelectShineManager", + "803D1CD0": "TBlendPane", + "803D1D58": "TGuide", + "803D1DB0": "TSunShine", + "803D1DD8": "TSunGlass", + "803D1E00": "TShineFader", + "803D1E30": "TProgSelect", + "803D2068": "TMovieSubTitle", + "803D2188": "TMovieRumble", + "803D21B0": "TConductor", + "803D2238": "TEffectExplosion", + "803D234C": "TEffectModelManager", + "803D23A0": "TEffectExplosionManager", + "803D23F4": "TEffectColumSand", + "803D2508": "TEffectColumSandManager", + "803D255C": "TEffectBombColumWater", + "803D2670": "TEffectBombColumWaterManager", + "803D26C4": "TEffectColumWater", + "803D27D8": "TEffectColumWaterManager", + "803D282C": "TEffectModel", + "803D2940": "TEffectObjManager", + "803D2964": "TEffectObjBase", + "803D2A18": "TEffectBiancoFunsui", + "803D2ABC": "TEffectPinnaFunsui", + "803D2B60": "TSimpleEffect", + "803D2C08": "TEMarioManager", + "803D2C5C": "TEMario", + "803D2D70": "TSpineEnemy", + "803D2E84": "TSolidStack_const*>", + "803D2E90": "TSpineBase", + "803D2EA0": "TSolidStack", + "803D2EB0": "TEnemyPolluteModel", + "803D2ED8": "TEnemyPolluteModelManager", + "803D2F00": "TEnemyAttachment", + "803D3048": "TEnemyManager", + "803D376C": "TEnemyMario", + "803D3A70": "TMtxCalcFootInv", + "803D3BAC": "TNerveGessoTurn", + "803D3BBC": "TNerveGessoLand", + "803D3BCC": "TNerveGessoFindMario", + "803D3BDC": "TNerveGessoRolling", + "803D3BEC": "TNerveGessoFall", + "803D3BFC": "TNerveGessoPollute", + "803D3C0C": "TNerveGessoPunch", + "803D3C1C": "TNerveGessoFreeze", + "803D3C2C": "TNerveGessoStay", + "803D3C3C": "TGessoPolluteObj", + "803D3D84": "TLandGesso", + "803D3F3C": "TSurfGesso", + "803D40F4": "TGesso", + "803D42AC": "TGessoManager", + "803D4304": "TGessoPolluteModel", + "803D432C": "TGessoPolluteModelManager", + "803D445C": "TGraphWeb", + "803D452C": "TNerveDoroHanePrepareAttack", + "803D453C": "TNerveDoroHaneHitWater", + "803D454C": "TNerveDoroHaneRise", + "803D455C": "TNerveFireHamuKuriRecover", + "803D456C": "TNerveDoroHamuKuriRobCap", + "803D457C": "TNerveHaneHamuKuriMoveOnGraph", + "803D458C": "TNerveHaneHamuKuriUpWait", + "803D459C": "TNerveDangoHamuKuriWait", + "803D45AC": "TNerveHamuKuriJitabata", + "803D45BC": "TNerveHamuKuriLand", + "803D45CC": "TNerveHamuKuriWallDie", + "803D45DC": "TNerveHamuKuriBoundFreeze", + "803D45EC": "TNerveHamuKuriGoForSearchActor", + "803D45FC": "TDoroHamuKuri", + "803D47C4": "TFireHamuKuri", + "803D498C": "TBossDangoHamuKuri", + "803D4B54": "TDangoHamuKuri", + "803D4D1C": "THaneHamuKuri2", + "803D4EE4": "TDoroHaneKuri", + "803D50AC": "THaneHamuKuri", + "803D5274": "THamuKuri", + "803D543C": "TDoroHamuKuriManager", + "803D5494": "TDoroHige", + "803D54B8": "TFireHamuKuriManager", + "803D5510": "TBossDangoHamuKuriManager", + "803D5568": "TDangoHamuKuriManager", + "803D55C0": "TDoroHaneKuriManager", + "803D5618": "THaneHamuKuriManager", + "803D5670": "THamuKuriManager", + "803D56C8": "THamuKuriLauncher", + "803D58A0": "TNerveHino2WaitAnm", + "803D597C": "TNerveHino2Freeze", + "803D598C": "TNerveHino2Stamp", + "803D599C": "TNerveHino2Die", + "803D59AC": "TNerveHino2Burst", + "803D59BC": "TNerveHino2Squat", + "803D59CC": "TNerveHino2Damage", + "803D59DC": "TNerveHino2Pollute", + "803D59EC": "TNerveHino2PrePol", + "803D59FC": "TNerveHino2Turn", + "803D5A0C": "TNerveHino2Landing", + "803D5A1C": "TNerveHino2JumpIn", + "803D5A2C": "TNerveHino2Fly", + "803D5A3C": "TNerveHino2GraphWander", + "803D5A4C": "TNerveHino2Appear", + "803D5A5C": "THinokuri2", + "803D5B70": "THino2Hit", + "803D5C14": "THino2MtxCalc", + "803D5C68": "THinokuri2Manager", + "803D5D0C": "TNerveMameGessoWait", + "803D5D1C": "TNerveMameGessoObject", + "803D5D2C": "TNerveMameGessoThrown", + "803D5D3C": "TNerveMameGessoPickUp", + "803D5D4C": "TNerveMameGessoTrample", + "803D5D5C": "TNerveMameGessoJitabata", + "803D5D6C": "TNerveMameGessoDamage", + "803D5D7C": "TNerveMameGessoGraphJumpWander", + "803D5D8C": "TMameGesso", + "803D5F44": "TMameGessoManager", + "803D5FD8": "TNerveNKFollowMario", + "803D5FE8": "TDiffusionNameKuri", + "803D61A0": "TNerveNameKuriDrawPollute", + "803D61B0": "TNerveNameKuriDiffuse", + "803D61C0": "TNerveNameKuriExplosion", + "803D61D0": "TNerveNameKuriJumpAttackPrepare", + "803D61E0": "TNerveNameKuriJumpAttack", + "803D61F0": "TNerveNameKuriLand", + "803D6200": "TDiffusionNameKuriManager", + "803D6258": "TNameKuri", + "803D6410": "TNameIndParCallback", + "803D6420": "TNameKuriManager", + "803D6478": "TNameKuriLauncher", + "803D65E8": "TNerveStayPakkunAppear", + "803D65F8": "TNerveStayPakkunHide", + "803D6608": "TNervePakkunFreeze", + "803D6618": "TNervePakkunShoot", + "803D6628": "TNervePakkunHide", + "803D6638": "TNervePakkunAppear", + "803D6648": "TNervePakkunStay", + "803D6658": "TNervePakkunGenerate", + "803D6668": "TStayPakkun", + "803D6818": "TPakkunSeed", + "803D6960": "TPakkun", + "803D6B10": "TPakkunManager", + "803D6B80": "TNerveSmallEnemyChange", + "803D6B90": "TNerveSmallEnemyWait", + "803D6BA0": "TNerveSmallEnemyHitWaterJump", + "803D6BB0": "TNerveSmallEnemyJump", + "803D6BC0": "TNerveSmallEnemyFreeze", + "803D6BD0": "TNerveSmallEnemyDie", + "803D6BE0": "TSmallEnemy", + "803D6D88": "TSmallEnemyManager", + "803D6DE0": "TSpider", + "803D6DF0": "TNerveTypicalGraphWander", + "803D6E00": "TTypicalManager", + "803D6E54": "TTypicalEnemy", + "803D6F68": "TWalker", + "803D6F78": "TSolidStack", + "803D6F88": "TNerveWalkerTraceMario", + "803D6F98": "TNerveWalkerEscape", + "803D6FA8": "TNerveWalkerPostAttack", + "803D6FB8": "TNerveWalkerAttack", + "803D6FC8": "TNerveWalkerGraphWander", + "803D6FD8": "TNerveWalkerGenerate", + "803D6FE8": "TWalkerEnemy", + "803D7210": "TNerveBGRoll", + "803D7260": "TNerveBGPolDrop", + "803D7270": "TNerveBGPollute", + "803D7280": "TNerveBGDie", + "803D7290": "TNerveBGTug", + "803D72A0": "TNerveBGTentacleDamage", + "803D72B0": "TNerveBGBeakDamage", + "803D72C0": "TNerveBGEyeDamage", + "803D72D0": "TNerveBGWait", + "803D72E0": "TBossGessoManager", + "803D7334": "TBossGesso", + "803D7448": "TBGBinder", + "803D7458": "TBossGessoMtxCalc", + "803D749C": "TBGBodyHit", + "803D7540": "TBGEyeHit", + "803D75E4": "TBGBeakHit", + "803D76F8": "TNerveElecCarapaceReturn", + "803D7708": "TNerveElecCarapaceWait", + "803D7718": "TNerveElecCarapaceMove", + "803D7728": "TNerveElecNokonokoAttack", + "803D7738": "TNerveElecNokonokoRebirth", + "803D7748": "TNerveElecNokonokoFreeze", + "803D7758": "TNerveElecNokonokoTurn", + "803D7768": "TNerveElecNokonokoCollect", + "803D7778": "TNerveElecNokonokoShoot", + "803D7788": "TElecCarapace", + "803D78D0": "TElecNokonoko", + "803D7A8C": "TElecNokonokoManager", + "803D7B34": "TNerveKageMarioModokiWait", + "803D7B78": "TKageMarioModoki", + "803D7D30": "TKageMarioModokiManager", + "803D7D88": "TNerveTelesaTrample", + "803D7D98": "TNerveTelesaAttackMario", + "803D7DA8": "TNerveTelesaFreeze", + "803D7DB8": "TNerveTelesaDie", + "803D7DC8": "TNerveTelesaImitate", + "803D7DD8": "TMarioModokiTelesa", + "803D7F90": "TBoxTelesa", + "803D8148": "TLoopTelesa", + "803D8300": "TSeeTelesa", + "803D84B8": "TTelesa", + "803D8670": "TTelesaManager", + "803D8700": "TNerveFireWanwanEscape", + "803D8710": "TNerveFireWanwanFreeze", + "803D8720": "TNerveFireWanwanFly", + "803D8730": "TNerveFireWanwanHungTail", + "803D8740": "TNerveFireWanwanDie", + "803D8750": "TNerveFireWanwanRecover", + "803D8760": "TNerveFireWanwanRecoverGraph", + "803D8770": "TNerveFireWanwanTired", + "803D8780": "TNerveFireWanwanAttack", + "803D8790": "TNerveFireWanwanFindMario", + "803D87A0": "TNerveFireWanwanTurn", + "803D87B0": "TNerveFireWanwanGraphWander", + "803D87C0": "TFireWanwan", + "803D8968": "TFireWanwanTailHit", + "803D8A1C": "TFireWanwanManager", + "803D8A78": "TStageEnemyInfo", + "803D8A98": "TStageEnemyInfoTable", + "803D8AB8": "TNameRefPtrAryT", + "803D8AD8": "TOneShotGenerator", + "803D8B7C": "TGenerator", + "803D8C18": "TNerveBPCannonL", + "803D8C28": "TNerveBPWaitL", + "803D8C38": "TNerveBPBreakSleep", + "803D8C48": "TNerveBPSleep", + "803D8C58": "TNerveBPFall", + "803D8C68": "TNerveBPHover", + "803D8C78": "TNerveBPFlyPivot", + "803D8C88": "TNerveBPFlyCannon", + "803D8C98": "TNerveBPTouchDown", + "803D8CA8": "TNerveBPFly", + "803D8CB8": "TNerveBPTakeOff", + "803D8CC8": "TNerveBPDie", + "803D8CD8": "TNerveBPPreDie", + "803D8CE8": "TNerveBPJumpReact", + "803D8CF8": "TNerveBPStompReact", + "803D8D08": "TNerveBPSwing", + "803D8D18": "TNerveBPGetUp", + "803D8D28": "TNerveBPTumbleOut", + "803D8D38": "TNerveBPTumble", + "803D8D48": "TNerveBPTumbleIn", + "803D8D58": "TNerveBPSwallow", + "803D8D68": "TNerveBPPivot", + "803D8D78": "TNerveBPTornado", + "803D8D88": "TNerveBPVomit", + "803D8D98": "TNerveBPCannon", + "803D8DA8": "TNerveBPWait", + "803D8DB8": "TBossPakkunManager", + "803D8E0C": "TBossPakkun", + "803D8F20": "TBossPakkunMtxCalc", + "803D8F64": "TBPNavel", + "803D9008": "TBPHeadHit", + "803D90AC": "TBPTornado", + "803D9150": "TBPVomit", + "803D9174": "TBPPolDrop", + "803D9270": "TNerveTobiPukuSwimWander", + "803D9280": "TNerveTobiPukuReturnLaunch", + "803D9290": "TNerveTobiPukuPrepareFly", + "803D92A0": "TNerveTobiPukuBound", + "803D92B0": "TNerveTobiPukuLand", + "803D92C0": "TNerveTobiPukuDie", + "803D92D0": "TNerveTobiPukuPitiPiti", + "803D92E0": "TNerveTobiPukuFall", + "803D92F0": "TNerveTobiPukuHitWater", + "803D9300": "TNerveTobiPukuAttack", + "803D9310": "TNerveTobiPukuFly", + "803D9320": "TNerveTobiPukuGenerate", + "803D9330": "TMoePuku", + "803D9530": "TPukuPuku", + "803D9730": "TTobiPuku", + "803D9930": "TMoePukuLaunchPad", + "803D9ADC": "TTobiPukuLaunchPad", + "803D9C88": "TMoePukuManager", + "803D9CE0": "TTobiPukuManager", + "803D9D38": "TMoePukuLaunchPadManager", + "803D9D90": "TTobiPukuLaunchPadManager", + "803DA014": "TNerveTinKoopaBreak", + "803DA084": "TNerveTinKoopaDamage", + "803DA094": "TNerveTinKoopaWait", + "803DA0A4": "TTinKoopaManager", + "803DA0F8": "TTinKoopaMtxCalc", + "803DA13C": "TTinKoopaPartsBase", + "803DA23C": "TTinKoopaFlame", + "803DA2E0": "TTinKoopa", + "803DA408": "TCommonLauncherManager", + "803DA45C": "TNerveWaitForever", + "803DA46C": "TCommonLauncher", + "803DA598": "TLauncherManager", + "803DA5EC": "TLauncher", + "803DA76C": "TNerveBWFall", + "803DA8CC": "TNerveBWShake", + "803DA8DC": "TNerveBWJumpAway", + "803DA8EC": "TNerveBWDie", + "803DA8FC": "TNerveBWJumpToBath", + "803DA90C": "TNerveBWWakeup", + "803DA91C": "TNerveBWStun", + "803DA92C": "TNerveBWJump", + "803DA93C": "TNerveBWBark", + "803DA94C": "TNerveBWRoll", + "803DA95C": "TNerveBWGraphWander", + "803DA96C": "TBossWanwanManager", + "803DA9C0": "TBossWanwan", + "803DAAD4": "TBossWanwanMtxCalc", + "803DAB18": "TBWBinder", + "803DAB28": "TBWHit", + "803DABCC": "TBWPicket", + "803DAC80": "TBWLeash", + "803DACA4": "TBWLeashNode", + "803DAD94": "TNerveChuuHanaWait", + "803DADA4": "TNerveChuuHanaJumpPrepare", + "803DADB4": "TNerveChuuHanaAttack", + "803DADC4": "TNerveChuuHanaObject", + "803DADD4": "TNerveChuuHanaFall2", + "803DADE4": "TNerveChuuHanaFall", + "803DADF4": "TNerveChuuHanaRoll", + "803DAE04": "TNerveChuuHanaStick", + "803DAE14": "TNerveChuuHanaKeepBalance", + "803DAE24": "TNerveChuuHanaForceJumped", + "803DAE34": "TNerveChuuHanaWalkOnPanel", + "803DAE44": "TChuuHana", + "803DAFFC": "TChuuHanaAseParCallback", + "803DB00C": "TChuuHanaManager", + "803DB0C8": "TNerveGorogoroDie", + "803DB0D8": "TNerveGorogoroRollOnGraph", + "803DB0E8": "TGorogoro", + "803DB2B8": "TGorogoroManager", + "803DB310": "TGorogoroPolluteModel", + "803DB338": "TGorogoroPolluteModelManager", + "803DB360": "TNerveIgaigaShootFromCannon", + "803DB370": "TNerveIgaigaWaterHit", + "803DB380": "TNerveIgaigaRollOnGraph", + "803DB390": "TIgaiga", + "803DB560": "TIgaigaManager", + "803DB5B8": "TIgaigaPolluteModel", + "803DB5E0": "TIgaigaPolluteModelManager", + "803DB608": "TRollEnemy", + "803DB810": "TNervePoihanaTrapped", + "803DB820": "TNervePoihanaThrow", + "803DB830": "TNervePoihanaFreeze", + "803DB840": "TNervePoihanaSleep", + "803DB850": "TSleepPoiHana", + "803DBA08": "TPoiHanaRed", + "803DBBC0": "TPoiHana", + "803DBD78": "TPoiHanaCollision", + "803DBE1C": "TPoiHanaManager", + "803DBED4": "TNerveTamaNokoWait", + "803DBEE4": "TNerveTamaNokoHitWater", + "803DBEF4": "TNerveTamaNokoSink", + "803DBF04": "TNerveTamaNokoThrown", + "803DBF14": "TNerveTamaNokoPickUp", + "803DBF24": "TNerveTamaNokoDown", + "803DBF34": "TNerveTamaNokoAttack", + "803DBF44": "TNerveTamaNokoSleep", + "803DBF54": "TTamaNoko", + "803DC10C": "TTamaNokoManager", + "803DC164": "TTamaNokoFlower", + "803DC220": "TNerveBossTelesaFallDemo", + "803DC230": "TBossTelesaKillSmallEnemy", + "803DC2D4": "TNerveBossTelesaFreeze", + "803DC2E4": "TNerveBossTelesaPrepareSlot", + "803DC2F4": "TNerveBossTelesaSpitSlotItem", + "803DC304": "TNerveBossTelesaSlotStart", + "803DC314": "TNerveBossTelesaAppear", + "803DC324": "TNerveBossTelesaHideWait", + "803DC334": "TNerveBossTelesaHide", + "803DC344": "TNerveBossTelesaSpit", + "803DC354": "TNerveBossTelesaDie", + "803DC364": "TBossTelesa", + "803DC478": "TTelesaSlot", + "803DC5EC": "TBossTelesaTongue", + "803DC690": "TBossTelesaBody", + "803DC734": "TBossTelesaManager", + "803DC788": "TNerveBubbleSplit", + "803DC798": "TNerveBubbleLive", + "803DC7A8": "TBubble", + "803DC960": "TBubbleManager", + "803DC9B8": "TNerveRHGraphWander", + "803DC9C8": "TRiccoHookManager", + "803DCA1C": "TRiccoHook", + "803DCB30": "THookTake", + "803DCC60": "TNerveBombHeiExplosion", + "803DCCB0": "TNerveBombHeiThrown", + "803DCCC0": "TNerveBombHeiPickUp", + "803DCCD0": "TNerveBombHeiWaitExplosion", + "803DCCE0": "TNerveBombHeiWalkExplosion", + "803DCCF0": "TNerveBombHeiAttack", + "803DCD00": "TNerveBombHeiGenerate", + "803DCD10": "TBombHei", + "803DCEC8": "TBombHeiManager", + "803DCF7C": "TNerveCannonObject", + "803DCF8C": "TNerveCannonDamageDemo", + "803DCF9C": "TNerveCannonDamage", + "803DCFAC": "TNerveCannonClose", + "803DCFBC": "TNerveCannonForceBombShoot", + "803DCFCC": "TNerveCannonShoot", + "803DCFDC": "TNerveCannonSearch", + "803DCFEC": "TNerveCannonOpen", + "803DCFFC": "TCannon", + "803DD1A8": "TCannonDom", + "803DD1CC": "TChorobei", + "803DD270": "TCannonManager", + "803DD3E0": "TNerveBossEelSleepOnBottom", + "803DD454": "TNerveBossEelMouthOpenWait", + "803DD464": "TNerveBossEelDie", + "803DD474": "TNerveBossEelEat", + "803DD484": "TNerveBossEelQuickBack", + "803DD494": "TNerveBossEelSlowBack", + "803DD4A4": "TNerveBossEelOutWait", + "803DD4B4": "TNerveBossEelAppear", + "803DD4C4": "TNerveBossEelSecondSpin", + "803DD4D4": "TNerveBossEelFirstSpin", + "803DD4E4": "TNerveBossEelWaitAppear", + "803DD4F4": "TBossEel", + "803DD608": "TBossEelTearsRecoverCollision", + "803DD6B4": "TBossEelBarrierCollision", + "803DD760": "TBossEelAwaCollision", + "803DD80C": "TBossEelBodyCollision", + "803DD8B8": "TBossEelCollision", + "803DD964": "TBossEelHeartCoin", + "803DD988": "TBossEelEye", + "803DD9AC": "TBossEelVortex", + "803DDA54": "TBossEelTooth", + "803DDAF8": "TBossEelManager", + "803DDB4C": "TNerveOilBallStay", + "803DDB5C": "TOilBall", + "803DDC74": "TNerveBEelTearsSplit", + "803DDC84": "TNerveBEelTearsMarioRecover", + "803DDC94": "TNerveBEelTearsWaterHit", + "803DDCA4": "TNerveBEelTearsMoveUp", + "803DDCB4": "TNerveBEelTearsGenerate", + "803DDCC4": "TBEelTears", + "803DDDDC": "TBEelTearsManager", + "803DDE30": "TBEelTearsDrop", + "803DDF48": "TNerveKillerExplosion", + "803DDF98": "TKiller", + "803DE15C": "TKillerManager", + "803DE1B4": "TNerveFlyEnemyChaseFly", + "803DE1C4": "TNerveFlyEnemyNormalFly", + "803DE1D4": "TFlyEnemy", + "803DE398": "TBeamManager", + "803DE484": "TNerveSamboHeadHitWall", + "803DE494": "TNerveSamboHeadRecoverWater", + "803DE4A4": "TNerveSamboHeadHitWater", + "803DE4B4": "TNerveSamboHeadHide", + "803DE4C4": "TNerveSamboHeadAttack", + "803DE4D4": "TNerveSamboHeadAppear", + "803DE4E4": "TSamboHead", + "803DE69C": "TSamboHeadManager", + "803DE6F4": "TNerveHanaSamboFreeze", + "803DE704": "TNerveHanaSamboDie", + "803DE714": "TNerveHanaSamboHide", + "803DE724": "TNerveHanaSamboAttack", + "803DE734": "TNerveHanaSamboWait", + "803DE744": "TNerveHanaSamboAppear", + "803DE754": "THanaSambo", + "803DE8FC": "THanaSamboHead", + "803DE9A0": "THanaSamboManager", + "803DE9F8": "TSamboFlower", + "803DEB10": "TSamboFlowerManager", + "803DEB68": "TSamboLeaf", + "803DEBD0": "TNervePopoThrown", + "803DEBE0": "TNervePopoWait", + "803DEBF0": "TNervePopoExplosion", + "803DEC00": "TNervePopoFly", + "803DEC10": "TNervePopoAttack", + "803DEC20": "TNervePopoPossessedNozzle", + "803DEC30": "TPopo", + "803DEDE8": "TPopoCollision", + "803DEE8C": "TPopoManager", + "803DEEE8": "TNerveSBH_Fall", + "803DEEF8": "TNerveSBH_SleepContinue", + "803DEF08": "TSleepBossHanachan", + "803DF01C": "TSleepBossHanachanManager", + "803DF070": "TDemoBossHanachan", + "803DF184": "TDemoBossHanachanManager", + "803DF1D8": "TNerveFruitsBoatBckTrace", + "803DF1E8": "TNerveFruitsBoatGraphWander", + "803DF1F8": "TFruitsBoatManager", + "803DF24C": "TFruitsBoat", + "803DF360": "TWaterHitActor", + "803DF444": "TBossHanachan", + "803DF558": "TBossHanachanManager", + "803DF5B0": "TNerveBossHanachanDead", + "803DF5C0": "TNerveBossHanachanSnort", + "803DF5D0": "TNerveBossHanachanDamage", + "803DF5E0": "TNerveBossHanachanGetUp", + "803DF5F0": "TNerveBossHanachanDown", + "803DF600": "TNerveBossHanachanTumble", + "803DF610": "TNerveBossHanachanGraphWander", + "803DF620": "TBossHanachanPartsHead", + "803DF768": "TFootHitActor", + "803DF80C": "TBossHanachanPartsBody", + "803DF968": "TNerveAmiNokoFreeze", + "803DF978": "TNerveAmiNokoDie", + "803DF988": "TNerveAmiNokoTurn", + "803DF998": "TNerveAmiNokoWalkOnFence", + "803DF9A8": "TAmiNoko", + "803DFB60": "TAmiHit", + "803DFC04": "TAmiNokoManager", + "803DFCB0": "TNerveBGKLaunchName", + "803DFCC0": "TBGKObstacle", + "803DFD64": "TNerveBGKLaunchGoro", + "803DFD74": "TNerveBGKDive", + "803DFD84": "TNerveBGKDie", + "803DFD94": "TNerveBGKAwakeDamage", + "803DFDA4": "TNerveBGKSleepDamage", + "803DFDB4": "TNerveBGKWait2", + "803DFDC4": "TNerveBGKWait", + "803DFDD4": "TNerveBGKAppear", + "803DFDE4": "TNerveBGKSleep", + "803DFDF4": "TBiancoGateKeeper", + "803DFF08": "TBGKMtxCalc", + "803DFF4C": "TBiancoGateKeeperManager", + "803DFFA4": "TGateKeeperBase", + "803E00B8": "TGKHitObj", + "803E0160": "TEggGenManager", + "803E01B4": "TEggGenerator", + "803E02C8": "TNerveSealDie", + "803E02D8": "TNerveSealWait", + "803E02E8": "TNerveSealSleep", + "803E02F8": "TSealManager", + "803E034C": "TSeal", + "803E0460": "TBGPolDrop", + "803E0574": "TBGTentacle", + "803E0798": "TBGAttackHit", + "803E083C": "TBGTakeHit", + "803E08F0": "TBGTentacleMtxCalc", + "803E0948": "TEffectEnemy", + "803E0B00": "TEffectEnemyManager", + "803E0B70": "TNerveHauntLegHaunt", + "803E0B80": "THauntLeg", + "803E0D38": "THauntedObject", + "803E0DDC": "THauntLegManager", + "803E0E38": "TAreaCylinderManager", + "803E0E5C": "TAreaCylinder", + "803E0E80": "TNerveWireTrapGoWait", + "803E0EC0": "TNerveWireTrapWait", + "803E0ED0": "TNerveWireTrapSearch", + "803E0EE0": "TNerveWireTrapOnewayMoveEnd", + "803E0EF0": "TNerveWireTrapOnewayMove", + "803E0F00": "TNerveWireTrapOnewayMoveStart", + "803E0F10": "TNerveWireTrapReturnMove", + "803E0F20": "TWireTrapManager", + "803E0F74": "TWireTrap", + "803E1120": "TBossHanachanPartsBase", + "803E1248": "TNerveRocketWait", + "803E1258": "TNerveRocketFly", + "803E1268": "TNerveRocketPossessedNozzle", + "803E1278": "TRocket", + "803E1420": "TRocketManager", + "803E148C": "TNerveKazekunHitWater", + "803E149C": "TNerveKazekunWait", + "803E14AC": "TNerveKazekunDisappear", + "803E14BC": "TNerveKazekunAttack", + "803E14CC": "TNerveKazekunPreAttack", + "803E14DC": "TNerveKazekunTurn", + "803E14EC": "TNerveKazekunAppear", + "803E14FC": "TNerveKazekunSearch", + "803E150C": "TKazekunManager", + "803E1564": "TKazekun", + "803E177C": "TBossMantaManager", + "803E17D0": "TBossMantaAdditionalCollision", + "803E1874": "TBossManta", + "803E1988": "TNerveMantaAppearDemo", + "803E1998": "TNerveMantaDeath", + "803E19A8": "TNerveMantaSpawn", + "803E19B8": "TNerveMantaHitWater", + "803E19C8": "TNerveMantaMove", + "803E19D8": "TWireBinder", + "803E1A1C": "TNerveYumboFreeze", + "803E1A2C": "TNerveYumboAttack", + "803E1A3C": "TNerveYumboAppearing", + "803E1A4C": "TNerveYumboHiding", + "803E1A5C": "TNerveYumboDancing", + "803E1A6C": "TYumbo", + "803E1C14": "TYumboManager", + "803E1C6C": "TYumboSeed", + "803E1D3C": "TKoopaJrSubmarineManager", + "803E1D90": "TNerveKoopaJrSubmarineLaunchKiller", + "803E1DA0": "TNerveKoopaJrSubmarineCannonOpenClose", + "803E1DB0": "TNerveKoopaJrSubmarineWait", + "803E1DC0": "TKoopaJrSubmarine", + "803E1ED4": "TKoopaJrManager", + "803E1F28": "TNerveKoopaJrYahoo", + "803E1F38": "TNerveKoopaJrLaunch", + "803E1F48": "TNerveKoopaJrDemo", + "803E1F58": "TNerveKoopaJrDamage", + "803E1F68": "TNerveKoopaJrWait", + "803E1F78": "TKoopaJr", + "803E208C": "TCallbackHitActor", + "803E2198": "TNerveKumokunPreFly", + "803E21A8": "TSolidStack", + "803E21B4": "TNerveKumokunFly", + "803E21C4": "TNerveKumokunPostFreeze", + "803E21D4": "TNerveKumokunFreeze", + "803E21E4": "TNerveKumokunWait", + "803E21F4": "TNerveKumokunSearch", + "803E2204": "TNerveKumokunPostWalk", + "803E2214": "TNerveKumokunWalk", + "803E2224": "TNerveKumokunPreWalk", + "803E2234": "TKumokunManager", + "803E228C": "TKumokun", + "803E2474": "TKoopaManager", + "803E2504": "TNerveKoopaTurnR", + "803E2514": "TNerveKoopaTurnL", + "803E2524": "TNerveKoopaTurn", + "803E2534": "TKoopa", + "803E2648": "TKoopaBody", + "803E26F4": "TKoopaHead", + "803E27A0": "TKoopaHand", + "803E284C": "TKoopaFlame", + "803E28F8": "TKoopaParts", + "803E29A4": "TNerveKoopaGetDown", + "803E29B4": "TNerveKoopaGetShowered", + "803E29C4": "TNerveKoopaStagger", + "803E29D4": "TNerveKoopaProvoke", + "803E29E4": "TNerveKoopaFlame", + "803E29F4": "TNerveKoopaFall", + "803E2A04": "TNerveKoopaTumble", + "803E2A14": "TNerveKoopaWait", + "803E2A40": "TNerveKukkuRecoverGraph", + "803E2A50": "TNerveKukkuPostFall", + "803E2A60": "TNerveKukkuFall", + "803E2A70": "TNerveKukkuGraphWander", + "803E2A80": "TKukku", + "803E2C28": "TKukkuManager", + "803E2C80": "TKukkuBall", + "803E2D44": "TNerveAmenboHitWater", + "803E2D54": "TNerveAmenboWalk", + "803E2D64": "TNerveAmenboPreAttack", + "803E2D74": "TNerveAmenboTurn", + "803E2D84": "TNerveAmenboSearch", + "803E2D94": "TAmenbo", + "803E2F3C": "TAmenboManager", + "803E2FF4": "TBathtubPeachManager", + "803E3048": "TNervePeachEscape", + "803E3058": "TNervePeachStagger", + "803E3068": "TBathtubPeach", + "803E31B0": "TBathtubKillerManager", + "803E3208": "TNerveBathtubKillerExplosion", + "803E3218": "TNerveBathtubKillerBreak", + "803E3228": "TNerveBathtubKillerStraight", + "803E3238": "TNerveBathtubKillerChaseStraight", + "803E3248": "TNerveBathtubKillerChase", + "803E3258": "TNerveBathtubKillerWander", + "803E3268": "TBathtubKiller", + "803E3448": "TCoasterKillerManager", + "803E34A0": "TNerveCoasterKillerExplosion", + "803E34B0": "TCoasterKiller", + "803E3674": "TNerveCoasterEnemyWander", + "803E3684": "TCoasterEnemy", + "803E3848": "TNerveDebuTelesaWait", + "803E3858": "TDebuTelesaManager", + "803E38B0": "TDebuTelesa", + "803E3A64": "TNerveTabePukuDrag", + "803E3A74": "TNerveTabePukuDive", + "803E3A84": "TNerveTabePukuBite", + "803E3A94": "TNerveTabePukuAttack", + "803E3AA4": "TNerveTabePukuRecoverGraph", + "803E3AB4": "TNerveTabePukuFound", + "803E3AC4": "TNerveTabePukuGraphWander", + "803E3AD4": "TTabePukuManager", + "803E3B2C": "TTabePuku", + "803E3CD4": "TTPHitActor", + "803E3D80": "TBathtubBinder", + "803E3D90": "TLimitKoopaManager", + "803E3DE4": "TNerveLimitKoopaTurn", + "803E3DF4": "TLimitKoopa", + "803E3F08": "TLimitKoopaBody", + "803E4008": "TLimitKoopaHead", + "803E4108": "TLimitKoopaHand", + "803E4208": "TLimitKoopaFlame", + "803E4308": "TLimitKoopaParts", + "803E4408": "TNerveLimitKoopaGetDown", + "803E4418": "TNerveLimitKoopaGetShowered", + "803E4428": "TNerveLimitKoopaStagger", + "803E4438": "TNerveLimitKoopaTumble", + "803E4448": "TNerveLimitKoopaWait", + "803E4458": "TNerveLimitKoopaHipDropStart", + "803E4468": "TNerveLimitKoopaHipDropJump", + "803E4488": "TLimitKoopaJrManager", + "803E44DC": "TNerveLimitKoopaJrYahoo", + "803E44EC": "TNerveLimitKoopaJrLaunch", + "803E44FC": "TNerveLimitKoopaJrWait", + "803E450C": "TNerveLimitKoopaJrRun", + "803E451C": "TLimitKoopaJr", + "803E4820": "CPolarSubCamera", + "803E4B10": "TLensFlare", + "803E4B38": "TLensGlow", + "803E4B60": "TSunMgr", + "803E4B98": "TSunModel", + "803E4C38": "TCubeManagerBase", + "803E4C60": "TCameraMapTool", + "803E4C80": "TCubeStreamInfo", + "803E4CA0": "TCubeCameraInfo", + "803E4CC0": "TCubeGeneralInfo", + "803E5330": "TBoidLeader", + "803E5358": "TFishoidManager", + "803E53AC": "TFishoid", + "803E54C4": "TFish", + "803E557C": "TRealoid", + "803E5694": "TRealoidActor", + "803E5750": "TAnimalBase", + "803E5868": "TMewManager", + "803E58BC": "TAnimalManagerBase", + "803E5910": "TNerveAnimalGraphWander", + "803E5944": "TNerveAnimalBirdLanding", + "803E5954": "TNerveAnimalBirdPreLanding", + "803E5964": "TNerveAnimalBirdComeback", + "803E5974": "TNerveAnimalBirdChangeToCoin", + "803E5984": "TNerveAnimalBirdGraphWander", + "803E5994": "TNerveAnimalBirdTakeoff", + "803E59A4": "TNerveAnimalBirdWalkOnGround", + "803E59B4": "TNerveAnimalBirdActionOnGround", + "803E59C4": "TNerveAnimalBirdWaitOnGround", + "803E59D4": "TAnimalBirdManager", + "803E5A28": "TAnimalBird", + "803E5B40": "TNerveBeeHiveReset", + "803E5B50": "TNerveBeeHiveMarioWaterIn", + "803E5B60": "TNerveBeeHiveAttack", + "803E5B70": "TNerveBeeHiveBreak", + "803E5B80": "TNerveBeeHiveFall", + "803E5B90": "TNerveBeeHiveWait", + "803E5BA0": "TBeeHiveManager", + "803E5BF4": "TBeeHive", + "803E5D0C": "TBee", + "803E5DC8": "TButterfloidManager", + "803E5E1C": "TButterfloid", + "803E5F34": "TButterfly" +} \ No newline at end of file diff --git a/src/sms/vt/GMSJ0A.json b/src/sms/vt/GMSJ0A.json new file mode 100644 index 0000000..6c87ae9 --- /dev/null +++ b/src/sms/vt/GMSJ0A.json @@ -0,0 +1,1471 @@ +{ + "8039D524": "JDrama::TViewObj", + "8039D59C": "TNerveWaitForever", + "8039D5AC": "TNerveBase", + "8039D5BC": "TTakeActor", + "8039DBD0": "TParamRT", + "8039DBDC": "TParamT", + "8039DBE8": "TParamRT", + "8039DBF4": "TParamT", + "8039E2F0": "MAnmSoundMario", + "8039F994": "TParamRT", + "8039F9A0": "TParamT", + "803A0214": "J3DFrameCtrl", + "803A0270": "TParamRT", + "803A027C": "TParamT", + "803B22E4": "TDrawSyncCallback", + "8039F930": "TSpcTypedBinary", + "803A0220": "J3DMtxCalc", + "803A0240": "M3UModelCommonMario", + "803A024C": "JSUIosBase", + "803A0358": "J3DMtxCalcSoftimageAnm", + "803A2398": "JPACallBackBase2", + "803A899C": "TSirenaRollMapObj", + "803B1324": "JDrama::TViewObjPtrListT", + "803B14E4": "TSmplFader", + "803BF660": "TWatermelonStatic", + "803CA4E8": "JDrama::TCharacter", + "803CA980": "JDrama::TViewObjPtrListT", + "803CB640": "J3DMtxCalcBasicAnm", + "803CC398": "JKRFileFinder", + "803D01BC": "MSStageCubeFadeDouble", + "803D0248": "JKRFile", + "803D0268": "JKRAramArchive", + "803D02B0": "JKRAramHeap", + "803D02F0": "JKRAram", + "803D0300": "JKRArchive", + "803D0348": "JKRCompArchive", + "803D0390": "JKRDisposer", + "803D03A0": "JKRDvdArchive", + "803D03E8": "JKRDvdFile", + "803D0410": "JKRExpHeap", + "803D0460": "JKRArcFinder", + "803D0470": "JKRFileLoader", + "803D04B0": "JKRHeap", + "803D0500": "JKRMemArchive", + "803D0548": "JKRSolidHeap", + "803D0598": "JKRStdHeap", + "803D05E8": "JKRThread", + "803D05F8": "JSURandomOutputStream", + "803D0620": "JSUOutputStream", + "803D0638": "JSURandomInputStream", + "803D065C": "JSUInputStream", + "803D0678": "JSUMemoryOutputStream", + "803D06A0": "JSUMemoryInputStream", + "803D06C8": "JSUFileInputStream", + "803D0750": "JUTException", + "803D0A18": "JUTFont", + "803D0A60": "JUTGamePad", + "803D0A70": "J2DPane", + "803D0AA0": "J2DPicture", + "803D0B30": "J2DPrint", + "803D0B90": "J2DSetScreen", + "803D0BC4": "J2DScreen", + "803D0BF8": "J2DTextBox", + "803D0C28": "J2DWindow", + "803D0C54": "J2DWindow::Texture", + "803D0CB8": "J3DSkinDeform", + "803D0CC8": "J3DJoint", + "803D0CF0": "J3DMtxCalcMayaAnm", + "803D0D44": "J3DMtxCalcMaya", + "803D0D88": "J3DMtxCalcSoftimage", + "803D0DCC": "J3DMtxCalcBasic", + "803D0E10": "J3DMtxCalcAnm", + "803D0E40": "J3DPEBlockFull", + "803D0EA4": "J3DIndBlockFull", + "803D0EEC": "J3DTevBlock16", + "803D0F88": "J3DTevBlock4", + "803D1024": "J3DTevBlock2", + "803D10C0": "J3DTevBlock1", + "803D115C": "J3DTexGenBlockBasic", + "803D11AC": "J3DColorBlockLightOn", + "803D1210": "J3DColorBlockLightOff", + "803D1274": "J3DPEBlockXlu", + "803D12D8": "J3DPEBlockTexEdge", + "803D133C": "J3DPEBlockOpa", + "803D13A0": "J3DPEBlock", + "803D1404": "J3DIndBlockNull", + "803D144C": "J3DIndBlock", + "803D1494": "J3DTevBlock", + "803D1530": "J3DTexGenBlock", + "803D1580": "J3DColorBlock", + "803D1634": "J3DModel", + "803D1650": "J3DModelData", + "803D1660": "J3DNode", + "803D16E8": "J3DShapeDraw", + "803D16F4": "J3DShapeMtxMulti", + "803D1714": "J3DShapeMtxDL", + "803D1734": "J3DShapeMtx", + "803D1770": "J3DAnmColorKey", + "803D1780": "J3DAnmColor", + "803D1790": "J3DAnmColorFull", + "803D17A0": "J3DAnmVtxColorKey", + "803D17B0": "J3DAnmVtxColor", + "803D17C0": "J3DAnmVtxColorFull", + "803D17D0": "J3DAnmClusterKey", + "803D17E0": "J3DAnmCluster", + "803D17F0": "J3DAnmClusterFull", + "803D1800": "J3DAnmTransformKey", + "803D1814": "J3DAnmTransform", + "803D1824": "J3DAnmTransformFull", + "803D1834": "J3DAnmBase", + "803D1840": "J3DModelLoader_v21", + "803D1868": "J3DModelLoader_v26", + "803D1890": "J3DTexture", + "803D189C": "J3DModelLoader", + "803D18C8": "J3DAnmKeyLoader_v15", + "803D18D8": "J3DAnmFullLoader_v15", + "803D18E8": "J3DAnmLoader", + "803D18F8": "J3DAnmVisibilityFull", + "803D1904": "J3DAnmTexPattern", + "803D1910": "J3DAnmTevRegKey", + "803D191C": "J3DAnmTextureSRTKey", + "803D1928": "J2DGrafContext", + "803D1980": "JKRDecomp", + "803D1990": "J2DOrthoGraph", + "803D19B8": "J3DVertexBuffer", + "803D19C8": "J3DShapePacket", + "803D19E0": "J3DMatPacket", + "803D19F8": "J3DDrawPacket", + "803D1A10": "J3DCallBackPacket", + "803D1A28": "J3DPacket", + "803D1C78": "J3DMaterialAnm", + "803D1C88": "J3DTexNoAnm", + "803D1C98": "JKRAramBlock", + "803D1CD8": "JKRAramStream", + "803D1CF4": "JUTResFont", + "803D1D48": "JUTRomFont", + "803D1DF0": "JUTConsole", + "803D1E00": "JDrama::TActor", + "803D1EA0": "JDrama::TOrthoProj", + "803D1F74": "JDrama::TLookAtCamera", + "803D2068": "JDrama::TPolarCamera", + "803D2144": "JDrama::TCamera", + "803D2208": "JDrama::TSmplChara", + "803D2230": "JDrama::TDirector", + "803D22A0": "JDrama::TDisplay", + "803D22B0": "JDrama::TDrawBufObj", + "803D22D8": "JDrama::TDStageDisp", + "803D2300": "JDrama::TDStageGroup", + "803D2330": "JDrama::TEfbCtrlTex", + "803D2354": "JDrama::TEfbCtrlDisp", + "803D2378": "JDrama::TEfbCtrl", + "803D23A0": "JDrama::TFrmGXSet", + "803D23C8": "JDrama::TLightMap", + "803D23EC": "JDrama::TAmbAry", + "803D2410": "JDrama::TAmbColor", + "803D2474": "JDrama::TIdxLight", + "803D2510": "JDrama::TLightAry", + "803D2534": "JDrama::TLight", + "803D25D0": "JDrama::TNameRef", + "803D25F0": "JDrama::TNameRefPtrListT", + "803D2610": "JDrama::TNameRefGen", + "803D2620": "JDrama::TPlacement", + "803D2648": "JDrama::TScreen", + "803D266C": "TCamConnecter", + "803D2690": "JDrama::TSmJ3DAct", + "803D2730": "JDrama::TSmJ3DScn", + "803D2760": "JDrama::TViewConnecter", + "803D2788": "JDrama::TViewport", + "803D27B0": "JALSeModData", + "803D27C0": "JALSeModData", + "803D27D0": "JALSeModData", + "803D27E0": "JALSeModData", + "803D27F0": "JALSeModData", + "803D2800": "JALSeModData", + "803D2810": "JALSeModData", + "803D2820": "JALSeModData", + "803D2830": "JALSeModData", + "803D2840": "JALSeModData", + "803D2850": "JALSeModData", + "803D2860": "JALSeModData", + "803D2870": "JALSeModPitDGrp", + "803D2880": "JALSeModDataGrp", + "803D2890": "JALSeModEffDGrp", + "803D28A0": "JALSeModDataGrp", + "803D28B0": "JALSeModVolDGrp", + "803D28C0": "JALSeModDataGrp", + "803D28D0": "JALSeModEffFGrp", + "803D28E0": "JALSeModDataGrp", + "803D28F0": "JALSeModPitFGrp", + "803D2900": "JALSeModDataGrp", + "803D2910": "JALSeModVolFGrp", + "803D2920": "JALSeModDataGrp", + "803D2930": "JALSeModPitDist", + "803D2940": "JALSeModEffDist", + "803D2950": "JALSeModVolDist", + "803D2960": "JALSeModEffFunk", + "803D2970": "JALSeModPitFunk", + "803D2980": "JALSeModVolFunk", + "803D2990": "JAIAnimeSound", + "803D29C4": "JAIBasic", + "803D2AB0": "JAISound", + "803D2B10": "JASystem::TBasicBank", + "803D2B24": "JASystem::TBank", + "803D2B38": "JASystem::TBasicInst", + "803D2B50": "JASystem::TInst", + "803D2B68": "JASystem::TWaveHandle", + "803D2B7C": "JASystem::TBasicWaveBank::TWaveHandle", + "803D2B90": "JASystem::TBasicWaveBank::TWaveGroup", + "803D2BA4": "JASystem::WaveArcLoader::TObject", + "803D2BB8": "JASystem::TBasicWaveBank", + "803D2BCC": "JASystem::TWaveBank", + "803D2BE0": "JASystem::TInstEffect", + "803D2BF0": "JASystem::TDrumSet", + "803D2C08": "JASystem::TInstRand", + "803D2C18": "JASystem::TInstSense", + "803D2C28": "JASystem::TSimpleWaveBank::TWaveHandle", + "803D2C3C": "JASystem::TSimpleWaveBank", + "803D4180": "J3DMaterialTable", + "803D41F8": "JPADragField", + "803D4210": "JPARandomField", + "803D4228": "JPAConvectionField", + "803D4240": "JPAVortexField", + "803D4258": "JPANewtonField", + "803D4270": "JPAMagnetField", + "803D4288": "JPAAirField", + "803D42A0": "JPAGravityField", + "803D42B8": "JPABaseField", + "803D42D0": "JPAParticle", + "803D4328": "JPABaseParticle", + "803D43D8": "JPADrawCalcEmitterVisitor", + "803D43E8": "JPADrawCalcParticleVisitor", + "803D43F8": "JPADrawExecParticleVisitor", + "803D4408": "JPADrawExecEmitterVisitor", + "803D4418": "JPADrawCalcChildScaleOut", + "803D4428": "JPADrawCalcChildAlphaOut", + "803D4438": "JPADrawCalcAlphaFlickMultSin", + "803D4448": "JPADrawCalcAlphaFlickAddSin", + "803D4458": "JPADrawCalcAlphaFlickNrmSin", + "803D4468": "JPADrawCalcAlpha", + "803D4478": "JPADrawCalcColorCopyFromEmitter", + "803D4488": "JPADrawCalcScaleAnmTimingReverseY", + "803D4498": "JPADrawCalcScaleAnmTimingReverseX", + "803D44A8": "JPADrawCalcScaleAnmTimingRepeatY", + "803D44B8": "JPADrawCalcScaleAnmTimingRepeatX", + "803D44C8": "JPADrawCalcScaleAnmTimingNormal", + "803D44D8": "JPADrawCalcScaleCopyX2Y", + "803D44E8": "JPADrawCalcScaleYBySpeed", + "803D44F8": "JPADrawCalcScaleXBySpeed", + "803D4508": "JPADrawCalcScaleY", + "803D4518": "JPADrawCalcScaleX", + "803D4528": "JPADrawExecCallBack", + "803D454C": "JPADrawCalcTextureAnmIndexRandom", + "803D4570": "JPADrawCalcTextureAnmIndexMerge", + "803D4594": "JPADrawCalcTextureAnmIndexReverse", + "803D45B8": "JPADrawCalcTextureAnmIndexRepeat", + "803D45DC": "JPADrawCalcTextureAnmIndexNormal", + "803D4600": "JPADrawCalcColorAnmFrameRandom", + "803D4624": "JPADrawCalcColorAnmFrameMerge", + "803D4648": "JPADrawCalcColorAnmFrameReverse", + "803D466C": "JPADrawCalcColorAnmFrameRepeat", + "803D4690": "JPADrawCalcColorAnmFrameNormal", + "803D46B4": "JPADrawCalcColorEnv", + "803D46D8": "JPADrawCalcColorPrm", + "803D46FC": "JPADrawExecRegisterColorChildPE", + "803D470C": "JPADrawExecRegisterColorEmitterE", + "803D471C": "JPADrawExecRegisterColorEmitterP", + "803D472C": "JPADrawExecRegisterColorEmitterPE", + "803D473C": "JPADrawExecStripeCross", + "803D474C": "JPADrawExecStripe", + "803D475C": "JPADrawExecLine", + "803D476C": "JPADrawExecPoint", + "803D477C": "JPADrawExecRotationCross", + "803D478C": "JPADrawExecRotation", + "803D479C": "JPADrawExecDirBillBoard", + "803D47AC": "JPADrawExecRotDirectionalCross", + "803D47BC": "JPADrawExecDirectionalCross", + "803D47CC": "JPADrawExecRotDirectional", + "803D47DC": "JPADrawExecDirectional", + "803D47EC": "JPADrawExecRotYBillBoard", + "803D47FC": "JPADrawExecYBillBoard", + "803D480C": "JPADrawExecRotBillBoard", + "803D481C": "JPADrawExecBillBoard", + "803D482C": "JPADrawExecRegisterPrmAEnv", + "803D483C": "JPADrawExecRegisterPrmCEnv", + "803D484C": "JPADrawExecRegisterEnvColorAnm", + "803D485C": "JPADrawExecRegisterPrmAlphaAnm", + "803D486C": "JPADrawExecRegisterPrmColorAnm", + "803D487C": "JPADrawExecSetLineWidth", + "803D488C": "JPADrawExecSetPointSize", + "803D489C": "JPADrawExecLoadTexture", + "803D48C0": "JPADrawExecLoadDefaultTexture", + "803D48D0": "JPADrawExecSetTexMtx", + "803D48F4": "JPADrawExecGenIdtMtx", + "803D4904": "JPADrawExecGenTexMtx0", + "803D4914": "JPADrawExecGenPrjTexMtx", + "803D4924": "JPADrawExecGenPrjMtx", + "803D4934": "JPADrawExecLoadExTex", + "803D4948": "JPAExTexShape", + "803D4954": "JPADataBlock", + "803D4960": "JPAKeyFrameAnime", + "803D496C": "JPAEmitterLoader", + "803D4978": "JPAEmitterLoader_v10", + "803D4A30": "JPABaseShape", + "803D4A40": "JPAExtraShape", + "803D4A50": "JPASweepShape", + "803D4A60": "JPATexture", + "803D4A70": "JStage::TAmbientLight", + "803D4AA8": "JStage::TCamera", + "803D4B30": "JStage::TActor", + "803D4B98": "JStage::TLight", + "803D4BF8": "JStage::TObject", + "803D4C28": "JStage::TSystem", + "803CAB08": "TDLColorTexQuad", + "803CAB28": "TDLTexQuad", + "803CAB48": "TSilhouette", + "803CAB70": "TLightWithDBSetManager", + "803CAB94": "TIndirectLightWithDBSet", + "803CABBC": "TMapObjectLightWithDBSet", + "803CABE4": "TObjectLightWithDBSet", + "803CAC0C": "TPlayerLightWithDBSet", + "803CAC34": "TLightWithDBSet", + "803CAC5C": "TLightDrawBuffer", + "803CAC84": "TLightMario", + "803CACB8": "TLightShadow", + "803CACEC": "TLightCommon", + "803CB550": "TParamT>", + "803CB55C": "TMtxSwingRZReverseXZ", + "803CB568": "TParamVec", + "803CB574": "TMtxSwingRZ", + "803CB580": "TMtxTimeLag", + "803CB58C": "TMtxEffectBase", + "803CB598": "TScreenTexture", + "803CB5BC": "TAfterEffect", + "803CB61C": "TMBindShadowManager", + "803CB694": "TMBindShadowManager::TSetup5$2216ShadowUtil_cpp", + "803CB6A4": "TMBindShadowManager::TSetup4$2207ShadowUtil_cpp", + "803CB6B4": "TMBindShadowManager::TSetup3$2195ShadowUtil_cpp", + "803CB6C4": "TMBindShadowManager::TSetup2$2190ShadowUtil_cpp", + "803CB6D4": "TMBindShadowManager::TCylinder$2171ShadowUtil_cpp", + "803CB6E4": "TMBindShadowManager::TSetup1$2172ShadowUtil_cpp", + "803CC040": "TGDLStatic", + "803CC050": "TGDLStatic::TGDLSentinel", + "803CC060": "Koga::ToolData", + "803CC07C": "M3UMtxCalcSIAnmBlendQuat", + "803CC0C0": "M3UModel", + "803CC0E4": "M3UModelCommon", + "803CC0F0": "MActorAnmEach", + "803CC118": "MActorAnmMatEach", + "803CC140": "MActorAnmEach", + "803CC168": "MActorAnmMatEach", + "803CC190": "MActorAnmEach", + "803CC1B8": "MActorAnmMatEach", + "803CC1E0": "MActorAnmEach", + "803CC208": "MActorAnmMatEach", + "803CC230": "MActorAnmEach", + "803CC258": "MActorAnmEach", + "803CC280": "MActorAnmBlk", + "803CC2A8": "MActorAnmBrk", + "803CC2D0": "MActorAnmBpk", + "803CC2F8": "MActorAnmBtk", + "803CC320": "MActorAnmBtp", + "803CC348": "MActorAnmBck", + "803CC370": "MActorAnmBase", + "803CC3A8": "SDLModel", + "803CC3C8": "SDLMatPacket", + "803CC3E0": "SampleCtrlJoint", + "803CC3EC": "SampleCtrlMaterial", + "803CC3F8": "SampleCtrlShape", + "803CC408": "SampleCtrlModelData", + "803CF150": "TBaseParam", + "803CF188": "TMarioParticleManager", + "803CF1D0": "TMarioEmitterCallBackBindToSRTMtxPtr", + "803CF1E4": "TMarioEmitterCallBackBindToMtxPtr", + "803CF1F8": "TMarioEmitterCallBackBindToPosPtr", + "803CF20C": "TEmitterIndirectViewObj", + "803CF230": "TEmitterViewObj", + "803CF254": "JPACallBackBase", + "803CF268": "TEventWatcher", + "803CF290": "TSpcTypedInterp", + "803CF2A4": "TSpcTypedBinary", + "803CF390": "TGCLogoDir", + "803CF3FC": "TNintendo2D", + "803CF420": "TGXAlphaUpdate", + "803CF444": "TReInitGX", + "803CF468": "TSMSDrawInit", + "803CF48C": "TJ3DSysSetViewMtx", + "803CF4B0": "TJ3DSysFlag", + "803CF5C8": "TMarDirector", + "803CF638": "TMarNameRefGen", + "803CF648": "TNameRefAryT", + "803CF668": "TNameRefPtrAryT\\,JDrama::TNameRef>", + "803CF688": "TNameRefAryT", + "803CF6A8": "TNameRefPtrAryT", + "803CF6C8": "TNameRefAryT", + "803CF6E8": "TNameRefAryT", + "803CF708": "TCubeManagerFast", + "803CF72C": "TCubeManagerArea", + "803CF750": "TCubeManagerMarioIn", + "803CF778": "TMenuDirector", + "803CF7E8": "TPerformList", + "803CF878": "TSnapTimeObj", + "803CF8A0": "TTalkCursor", + "803CF8C8": "TAlphaCatch", + "803CF8EC": "TZBufferCatch", + "803CF96C": "TMarioGamePad", + "803CF978": "TScenarioArchiveName", + "803CF998": "TStageEventInfo", + "803CFA18": "TStagePositionInfo", + "803CFA38": "TTimeRec", + "803CFA48": "TTHPRender", + "803CFA70": "TNameKuriLauncherManager", + "803CFAC4": "THamuKuriLauncherManager", + "803CFB18": "TCasinoRoulette", + "803CFC80": "TSirenaGate", + "803CFDE8": "TMareWManager", + "803CFE40": "TMareMManager", + "803CFF48": "TMovieDirector", + "803D0180": "MSSTageSimpleEnvironment", + "803D0194": "MSStageCubeSwitch", + "803D01A8": "MSStageCubeFadeMonte", + "803D01D0": "MSStageCubeFade", + "803D01E4": "MSStageDistFadeMonte", + "803D01F8": "MSStageDistFade", + "803D020C": "MSStage", + "803D0220": "TTargetArrow", + "803CA1C8": "TLiveActor", + "803CA478": "TLiveManager", + "803CA4B8": "TObjManager", + "803CA50C": "TObjChara", + "803CA8F0": "TSpcInterp", + "803CA904": "TSpcStack", + "803CA910": "TSpcStack", + "803CA91C": "TSpcBinary", + "803CA930": "TStrategy", + "803CA954": "TIdxGroupObj", + "803CA9B0": "TQuestionManager", + "803CA9D8": "TSMSSmplChara", + "803CAA00": "THitActor", + "803CAAA8": "TBinder", + "803CAAB8": "TSharedParts", + "803CAAE0": "TMirrorActor", + "803CC418": "M3UModelMario", + "803CC440": "TMarioCap", + "803CD79C": "TWarpInCallBack", + "803CD7D4": "TBubbleCallBack", + "803CD7E8": "TSplashManager", + "803CD810": "TYoshiTongue", + "803CD9A0": "TWaterGun", + "803CD9D0": "TNozzleDeform", + "803CD9F8": "TNozzleTrigger", + "803CDA20": "TNozzleBase", + "803CDA90": "TMarioEffect", + "803CDB60": "TMario", + "803CEEEC": "TModelWaterManager", + "803CF038": "TMarioPositionObj", + "803C8958": "TBaseNPC", + "803C8C00": "TSunflowerSManager", + "803C8C90": "TMareWBaseManager", + "803C8CE8": "TMareMBaseManager", + "803C8D40": "TMonteWBManager", + "803C8D98": "TMonteWAManager", + "803C8DF0": "TMonteWManager", + "803C8E48": "TMonteMEManager", + "803C8EA0": "TMonteMDManager", + "803C8EF8": "TMonteMCManager", + "803C8F50": "TMonteMBManager", + "803C8FA8": "TMonteMAManager", + "803C9000": "TMonteMManager", + "803C9058": "TSunflowerLManager", + "803C90B0": "TRaccoonDogManager", + "803C9108": "TPeachManager", + "803C9160": "TKinojiiManager", + "803C91B8": "TKinopioManager", + "803C9210": "TMareWBManager", + "803C9268": "TMareWAManager", + "803C92C0": "TMareMDManager", + "803C9318": "TMareMCManager", + "803C9370": "TMareMBManager", + "803C93C8": "TMareMAManager", + "803C9420": "TMonteWCManager", + "803C9478": "TMonteMHManager", + "803C94D0": "TMonteMGManager", + "803C9528": "TMonteMFManager", + "803C9580": "TMonteWSpecialManager", + "803C95D8": "TMonteMSpecialManager", + "803C9630": "TMonteWBaseManager", + "803C9688": "TMonteMBaseManager", + "803C96E0": "TMareBaseManager", + "803C9738": "TNPCManager", + "803C9790": "TMareJellyFishManager", + "803C97C0": "TBoardNpcManager", + "803C9800": "TNerveNPCMareStand", + "803C9810": "TNerveNPCBlown", + "803C9820": "TNerveNPCMad", + "803C9830": "TNerveNPCThrow", + "803C9840": "TNerveNPCTalk", + "803C9850": "TNerveNPCSetPosAfterSinkBottom", + "803C9860": "TNerveNPCRecoverAfter", + "803C9870": "TNerveNPCRecoverFromSink", + "803C9880": "TNerveNPCSink", + "803C9890": "TNerveNPCWet", + "803C98A0": "TNerveNPCTurnToMario", + "803C98B0": "TNerveNPCWaitMarioApproach", + "803C98C0": "TNerveNPCWaitContinue", + "803C98D0": "TNerveNPCGraphWait", + "803C98E0": "TNerveNPCUTurn", + "803C98F0": "TNerveNPCGraphWander", + "8039E2E0": "MAnmSoundNPC", + "8039E300": "MAnmSound", + "8039E360": "MSound", + "8039E4B0": "MSoundSESystem::MSRandPlay", + "8039E548": "MSSetSoundTL", + "8039E560": "MSSetSoundGrp", + "8039E578": "MSoundSESystem::MSRandVol", + "8039E584": "JALListFrameLoop", + "8039E590": "MSSetSoundTL", + "8039E5A8": "MSSetSound", + "8039E5C0": "JALListFrameLoop", + "8039E88C": "MSHandle", + "803B2DE8": "TWoodBarrel", + "803B2FC8": "TMapObjBase", + "803B9030": "TMapObjGeneral", + "803B9258": "TMapObjBaseManager", + "803B9298": "TMerryPole", + "803B93FC": "TMapObjManager", + "803B9440": "TMapObjTurn", + "803B95B4": "TMapObjMessenger", + "803B96D0": "TNozzleBox", + "803B993C": "TItemNozzle", + "803B9B20": "TEggYoshi", + "803B9CFC": "TShine", + "803B9EE0": "TCoinBlue", + "803BA0C4": "TCoinRed", + "803BA2A8": "TCoinEmpty", + "803BA48C": "TFlowerCoin", + "803BA670": "TCoin", + "803BA854": "TItem", + "803BAA38": "TItemManager", + "803BAA78": "TBasketReverse", + "803BABDC": "TRedCoinSwitch", + "803BAD40": "TMapObjSwitch", + "803BAEA4": "THideObjInfo", + "803BAF48": "TMapObjWaterSpray", + "803BB0AC": "TDamageObj", + "803BB150": "TMapObjStartDemo", + "803BB2B4": "TMapObjChangeStageHipDrop", + "803BB418": "TMapObjChangeStage", + "803BB57C": "TMapObjBillboard", + "803BB6EC": "TManhole", + "803BB8C8": "TDoor", + "803BBA30": "TSuperHipDropBlock", + "803BBBA0": "TTelesaBlock", + "803BBD04": "TJuiceBlock", + "803BBE68": "TBrickBlock", + "803BBFD8": "TIceBlock", + "803BC13C": "TLeanBlock", + "803BC2A4": "TSandBlock", + "803BC408": "TBreakableBlock", + "803BC5E8": "TWoodLog", + "803BC750": "TBellWatermill", + "803BC8C4": "TBiancoBell", + "803BCA28": "TLampSeesawMain", + "803BCB90": "TLampSeesaw", + "803BCCF8": "TLeafBoatRotten", + "803BCE5C": "TLeafBoat", + "803BCFC0": "TBiancoMiniWindmill", + "803BD130": "TBiancoWatermillVertical", + "803BD294": "TBiancoWatermill", + "803BD3F8": "TMapObjRootPakkun", + "803BD55C": "TBigWindmill", + "803BD6C0": "TPictureTelesa", + "803BD83C": "TPanelRevolve", + "803BD9A0": "TChestRevolve", + "803BDB04": "TWarpAreaActor", + "803BDBA8": "TSirenaCasinoRoof", + "803BDD0C": "TSirenabossWall", + "803BDE70": "TSakuCasino", + "803BDFD4": "TCloset", + "803BE144": "TDonchou", + "803BE2A8": "TCasinoPanelGate", + "803BE418": "TItemSlotDrum", + "803BE58C": "TSlotDrum", + "803BE700": "TRoulette", + "803BE868": "TRouletteSw", + "803BE910": "TFruitLauncher", + "803BEA74": "TFruitSwitch", + "803BEBD8": "TSurfGesoObj", + "803BEDBC": "TRiccoWatermill", + "803BEF20": "TCraneCargo", + "803BF088": "TCraneUpDown", + "803BF1EC": "TCraneRotY", + "803BF350": "TSandEgg", + "803BF4D8": "TMammaMirrorMapOperator", + "803BF4FC": "TGoalWatermelon", + "803BF7C4": "TSandBird", + "803BF934": "TMammaYacht", + "803BFA98": "TMammaBlockRotate", + "803BFBFC": "TShiningStone", + "803BFCA0": "TLeanMirror", + "803BFE04": "TSandCastle", + "803BFF88": "TSandBombBase", + "803C010C": "TSandBomb", + "803C0270": "TSandLeafBase", + "803C03DC": "TSandBase", + "803C0548": "TSandLeaf", + "803C06B0": "TPinnaCoaster", + "803C0814": "TAmiKing", + "803C0978": "TWaterRecoverObj", + "803C0ADC": "TPinnaEntrance", + "803C0C40": "TBalloonKoopaJr", + "803C0E1C": "TChangeStageMerrygoround", + "803C0F80": "TMerrygoround", + "803C10E4": "TShellCup", + "803C1248": "TPinnaShell", + "803C12EC": "TViking", + "803C1454": "THorizontalViking", + "803C15BC": "TFerrisWheel", + "803C1720": "TGateShadow", + "803C1748": "TMareEventPoint", + "803C17EC": "TMareCork", + "803C1950": "TMareFall", + "803C1AB4": "TMuddyBoat", + "803C1C18": "TMapObjPuncher", + "803C1D7C": "TWireBell", + "803C1EE0": "TMapObjGrowTree", + "803C2044": "TMapObjElasticCode", + "803C21A8": "TCogwheel", + "803C230C": "TCogwheelScale", + "803C2470": "TMapObjFlagManager", + "803C2494": "TMapObjFlag", + "803C2540": "TMapObjWave", + "803C2568": "TMapObjFloatOnSea", + "803C26D0": "TSandPlane", + "803C27CC": "TRockPlane", + "803C28C8": "TMapObjPlane", + "803C29C8": "TRideCloud", + "803C2B38": "TBigWatermelon", + "803C2D60": "TCoverFruit", + "803C2EC4": "TRandomFruit", + "803C30B4": "TResetFruit", + "803C32A4": "TMapObjBall", + "803C3498": "TAirportEventSink", + "803C34EC": "TAirportSwitch", + "803C36C8": "TTurboNozzleDoor", + "803C382C": "TDemoCannon", + "803C3990": "TMareGate", + "803C3AF4": "TMapObjSmoke", + "803C3C64": "TDptMonteFence", + "803C3DC8": "TBellDolpic", + "803C3F2C": "TMonumentShine", + "803C4090": "TMapObjRevivalPollution", + "803C40B4": "TPolluterBase", + "803C4218": "TMapObjGrassManager", + "803C423C": "TMapObjGrassGroup", + "803C42E0": "TMapObjPoleManager", + "803C4308": "TMapObjWaterFilter", + "803C43A8": "TMapObjSeaIndirect", + "803C44AC": "TModelGate", + "803C4638": "TRailFence", + "803C479C": "TFenceWaterH", + "803C4908": "TFenceWater", + "803C4A74": "TRevolvingFenceInner", + "803C4BD8": "TRevolvingFenceOuter", + "803C4D3C": "TFence", + "803C4EA0": "TFileLoadBlock", + "803C5004": "TMapObjOptionWall", + "803C50A8": "TWoodBlock", + "803C5218": "TRollBlock", + "803C537C": "TRailBlock", + "803C54EC": "TNormalLift", + "803C565C": "TRailMapObj", + "803C57D0": "TFluffManager", + "803C5934": "TFluff", + "803C5A98": "TGoalFlag", + "803C5BFC": "TSwingBoard", + "803C5D60": "THangingBridge", + "803C5D84": "THangingBridgeBoard", + "803C5EEC": "TJumpMushroom", + "803C6050": "TMapObjMonteRoot", + "803C61B8": "TMapObjTreeScale", + "803C6394": "TMapObjTree", + "803C6570": "TMapObjSteam", + "803C66E0": "TJointCoin", + "803C6850": "TMapObjNail", + "803C69C0": "TPool", + "803C6B24": "TPoolManager", + "803C6B68": "TBathtub", + "803C6CCC": "TBathtubGrip", + "803C6E30": "TBathtubGripPartsHard", + "803C6F2C": "TBathtubGripPartsFragile", + "803C7028": "TBathtubGripParts", + "803C7128": "TJumpBase", + "803C728C": "TMushroom1up", + "803C73F0": "TWoodBox", + "803C7560": "TBreakHideObj", + "803C76D0": "THideObjPictureTwin", + "803C784C": "TWaterHitPictureHideObj", + "803C79C8": "THipDropHideObj", + "803C7B38": "TFruitBasketEvent", + "803C7CB0": "TFruitBasket", + "803C7E28": "TFruitHitHideObj", + "803C7F9C": "TWaterHitHideObj", + "803C810C": "THideObj", + "803C827C": "THideObjBase", + "803C83F0": "TLampTrapIron", + "803C8554": "TLampTrapIronHit", + "803C85F8": "TLampTrapSpike", + "803C875C": "TLampTrapSpikeHit", + "803B1AE8": "TJointModel", + "803B1B20": "TJointModelManager", + "803B1B48": "TJointObj", + "803B1B70": "TMap", + "803B1BD8": "TBGCheckListWarp", + "803B1BE4": "TBGCheckList", + "803B1BF0": "TMapCollisionWarp", + "803B1C14": "TMapCollisionMove", + "803B1C38": "TMapCollisionStatic", + "803B1C5C": "TMapCollisionBase", + "803B1C80": "TMapDrawWall", + "803B1CA8": "TMapEvent", + "803B1CE8": "TMapEventSinkShadowMario", + "803B1D3C": "TMapEventSinkBianco", + "803B1D90": "TMapEventSinkInPollutionReset", + "803B1DE4": "TMapEventSinkInPollution", + "803B1E38": "TMapEventSink", + "803B1E90": "TMirrorMapDrawBuf", + "803B1EB4": "TMirrorModelManager", + "803B1ED8": "TMirrorModelObj", + "803B1EF4": "TMirrorModel", + "803B1F10": "TMirrorCamera", + "803B1FEC": "TMapModel", + "803B2020": "TMapModelManager", + "803B2048": "TMapObjSoundGroup", + "803B2088": "TMapModelActor", + "803B212C": "TMapStaticObj", + "803B21D0": "TMapWireManager", + "803B21F4": "TMapWireActor", + "803B22A8": "TPollutionCounterBase", + "803B22BC": "TPollutionCounterObj", + "803B22D0": "TPollutionCounterLayer", + "803B236C": "TPollutionManager", + "803B23B0": "TPollutionLayerWallMinusX", + "803B240C": "TPollutionLayerWallMinusZ", + "803B2468": "TPollutionObj", + "803B2490": "TShimmer", + "803B2530": "TSky", + "803B25D0": "TMapEventSirenaSink", + "803B2680": "TPollutionLayer", + "803B26DC": "TPollutionLayerWallBase", + "803B2738": "TPollutionLayerWallPlusX", + "803B2794": "TPollutionLayerWallPlusZ", + "803B27F0": "TPollutionLayerWave", + "803B2850": "TPollutionTest", + "803B2878": "TMarineSnow", + "803B2918": "TDolpicEventRiccoMammaGate", + "803B2958": "TDolpicEventBiancoGate", + "803B2998": "TMareEventBumpyWall", + "803B2B1C": "TMareEventDepressWall", + "803B2B40": "TMareEventWallRock", + "803B2B64": "TMareWallRock", + "803B2CA8": "TBathWaterManager", + "803B2CCC": "TBathWater", + "803B2D70": "TBathWaterMeshRenderer", + "803B2D84": "TBathWaterRenderer", + "803B2D98": "TBathWaterPreprocessor", + "803B2DC0": "TStickyStainManager", + "803B02B0": "TFlashPane", + "803B02D4": "TMenuPlane", + "803B02F8": "TMenuBase", + "803B0320": "TSMSFader", + "803B065C": "TGCConsole2", + "803B0790": "TTalk2D2", + "803B0918": "TPauseMenu2", + "803B0940": "TSwitchHelpActor", + "803B09E8": "THelpActor", + "803B0B68": "TCardSave", + "803B0D90": "TCardLoad", + "803B1040": "TConsoleStr", + "803B1220": "TSelectMenu", + "803B1290": "TSelectGrad", + "803B12B8": "TSelectDir", + "803B1350": "TSelectShine", + "803B1360": "TSelectShineManager", + "803B1388": "TBlendPane", + "803B1410": "TGuide", + "803B1468": "TSunShine", + "803B1490": "TSunGlass", + "803B14B8": "TShineFader", + "803B1620": "TProgSelect", + "803B19A0": "TMovieSubTitle", + "803B1AC0": "TMovieRumble", + "8039EA98": "TConductor", + "8039EB20": "TEffectExplosion", + "8039EC34": "TEffectModelManager", + "8039EC88": "TEffectExplosionManager", + "8039ECDC": "TEffectColumSand", + "8039EDF0": "TEffectColumSandManager", + "8039EE44": "TEffectBombColumWater", + "8039EF58": "TEffectBombColumWaterManager", + "8039EFAC": "TEffectColumWater", + "8039F0C0": "TEffectColumWaterManager", + "8039F114": "TEffectModel", + "8039F228": "TEffectObjManager", + "8039F24C": "TEffectObjBase", + "8039F300": "TEffectBiancoFunsui", + "8039F3A4": "TEffectPinnaFunsui", + "8039F448": "TSimpleEffect", + "8039F4F0": "TEMarioManager", + "8039F544": "TEMario", + "8039F658": "TSpineEnemy", + "8039F76C": "TSolidStack_const*>", + "8039F778": "TSpineBase", + "8039F788": "TSolidStack", + "8039F798": "TEnemyPolluteModel", + "8039F7C0": "TEnemyPolluteModelManager", + "8039F7E8": "TEnemyAttachment", + "8039F940": "TEnemyManager", + "803A007C": "TEnemyMario", + "803A0424": "TNerveGessoTurn", + "803A0434": "TNerveGessoLand", + "803A0444": "TNerveGessoFindMario", + "803A0454": "TNerveGessoRolling", + "803A0464": "TNerveGessoFall", + "803A0474": "TNerveGessoPollute", + "803A0484": "TNerveGessoPunch", + "803A0494": "TNerveGessoFreeze", + "803A04A4": "TNerveGessoStay", + "803A04B4": "TGessoPolluteObj", + "803A05FC": "TLandGesso", + "803A07B4": "TSurfGesso", + "803A096C": "TGesso", + "803A0B24": "TGessoManager", + "803A0B7C": "TGessoPolluteModel", + "803A0BA4": "TGessoPolluteModelManager", + "803A0CD4": "TGraphWeb", + "803A0DA4": "TNerveDoroHanePrepareAttack", + "803A0DB4": "TNerveDoroHaneHitWater", + "803A0DC4": "TNerveDoroHaneRise", + "803A0DD4": "TNerveFireHamuKuriRecover", + "803A0DE4": "TNerveDoroHamuKuriRobCap", + "803A0DF4": "TNerveHaneHamuKuriMoveOnGraph", + "803A0E04": "TNerveHaneHamuKuriUpWait", + "803A0E14": "TNerveDangoHamuKuriWait", + "803A0E24": "TNerveHamuKuriJitabata", + "803A0E34": "TNerveHamuKuriLand", + "803A0E44": "TNerveHamuKuriWallDie", + "803A0E54": "TNerveHamuKuriBoundFreeze", + "803A0E64": "TNerveHamuKuriGoForSearchActor", + "803A0E74": "TDoroHamuKuri", + "803A103C": "TFireHamuKuri", + "803A1204": "TBossDangoHamuKuri", + "803A13CC": "TDangoHamuKuri", + "803A1594": "THaneHamuKuri2", + "803A175C": "TDoroHaneKuri", + "803A1924": "THaneHamuKuri", + "803A1AEC": "THamuKuri", + "803A1CB4": "TDoroHamuKuriManager", + "803A1D0C": "TDoroHige", + "803A1D30": "TFireHamuKuriManager", + "803A1D88": "TBossDangoHamuKuriManager", + "803A1DE0": "TDangoHamuKuriManager", + "803A1E38": "TDoroHaneKuriManager", + "803A1E90": "THaneHamuKuriManager", + "803A1EE8": "THamuKuriManager", + "803A1F40": "THamuKuriLauncher", + "803A20BC": "TNerveMameGessoWait", + "803A20CC": "TNerveMameGessoObject", + "803A20DC": "TNerveMameGessoThrown", + "803A20EC": "TNerveMameGessoPickUp", + "803A20FC": "TNerveMameGessoTrample", + "803A210C": "TNerveMameGessoJitabata", + "803A211C": "TNerveMameGessoDamage", + "803A212C": "TNerveMameGessoGraphJumpWander", + "803A213C": "TMameGesso", + "803A22F4": "TMameGessoManager", + "803A2388": "TNerveNKFollowMario", + "803A23A8": "TDiffusionNameKuri", + "803A2560": "TNerveNameKuriDrawPollute", + "803A2570": "TNerveNameKuriDiffuse", + "803A2580": "TNerveNameKuriExplosion", + "803A2590": "TNerveNameKuriJumpAttackPrepare", + "803A25A0": "TNerveNameKuriJumpAttack", + "803A25B0": "TNerveNameKuriLand", + "803A25C0": "TDiffusionNameKuriManager", + "803A2618": "TNameKuri", + "803A27D0": "TNameIndParCallback", + "803A27E0": "TNameKuriManager", + "803A2838": "TNameKuriLauncher", + "803A29A8": "TNerveStayPakkunAppear", + "803A29B8": "TNerveStayPakkunHide", + "803A29C8": "TNervePakkunFreeze", + "803A29D8": "TNervePakkunShoot", + "803A29E8": "TNervePakkunHide", + "803A29F8": "TNervePakkunAppear", + "803A2A08": "TNervePakkunStay", + "803A2A18": "TNervePakkunGenerate", + "803A2A28": "TStayPakkun", + "803A2BD8": "TPakkunSeed", + "803A2D20": "TPakkun", + "803A2ED0": "TPakkunManager", + "803A2F40": "TNerveSmallEnemyChange", + "803A2F50": "TNerveSmallEnemyWait", + "803A2F60": "TNerveSmallEnemyHitWaterJump", + "803A2F70": "TNerveSmallEnemyJump", + "803A2F80": "TNerveSmallEnemyFreeze", + "803A2F90": "TNerveSmallEnemyDie", + "803A2FA0": "TSmallEnemy", + "803A3148": "TSmallEnemyManager", + "803A31A0": "TSpider", + "803A31B0": "TNerveTypicalGraphWander", + "803A31C0": "TTypicalManager", + "803A3214": "TTypicalEnemy", + "803A3328": "TWalker", + "803A3338": "TSolidStack", + "803A3348": "TNerveWalkerTraceMario", + "803A3358": "TNerveWalkerEscape", + "803A3368": "TNerveWalkerPostAttack", + "803A3378": "TNerveWalkerAttack", + "803A3388": "TNerveWalkerGraphWander", + "803A3398": "TNerveWalkerGenerate", + "803A33A8": "TWalkerEnemy", + "803A35D0": "TNerveBGRoll", + "803A3620": "TNerveBGPolDrop", + "803A3630": "TNerveBGPollute", + "803A3640": "TNerveBGDie", + "803A3650": "TNerveBGTug", + "803A3660": "TNerveBGTentacleDamage", + "803A3670": "TNerveBGBeakDamage", + "803A3680": "TNerveBGEyeDamage", + "803A3690": "TNerveBGWait", + "803A36A0": "TBossGessoManager", + "803A36F4": "TBossGesso", + "803A3808": "TBGBinder", + "803A3818": "TBossGessoMtxCalc", + "803A385C": "TBGBodyHit", + "803A3900": "TBGEyeHit", + "803A39A4": "TBGBeakHit", + "803A3AB8": "TNerveElecCarapaceReturn", + "803A3AC8": "TNerveElecCarapaceWait", + "803A3AD8": "TNerveElecCarapaceMove", + "803A3AE8": "TNerveElecNokonokoAttack", + "803A3AF8": "TNerveElecNokonokoRebirth", + "803A3B08": "TNerveElecNokonokoFreeze", + "803A3B18": "TNerveElecNokonokoTurn", + "803A3B28": "TNerveElecNokonokoCollect", + "803A3B38": "TNerveElecNokonokoShoot", + "803A3B48": "TElecCarapace", + "803A3C90": "TElecNokonoko", + "803A3E4C": "TElecNokonokoManager", + "803A3EF4": "TNerveKageMarioModokiWait", + "803A3F38": "TKageMarioModoki", + "803A40F0": "TKageMarioModokiManager", + "803A4148": "TNerveTelesaTrample", + "803A4158": "TNerveTelesaAttackMario", + "803A4168": "TNerveTelesaFreeze", + "803A4178": "TNerveTelesaDie", + "803A4188": "TNerveTelesaImitate", + "803A4198": "TMarioModokiTelesa", + "803A4350": "TBoxTelesa", + "803A4508": "TLoopTelesa", + "803A46C0": "TSeeTelesa", + "803A4878": "TTelesa", + "803A4A30": "TTelesaManager", + "803A4AC0": "TNerveFireWanwanEscape", + "803A4AD0": "TNerveFireWanwanFreeze", + "803A4AE0": "TNerveFireWanwanFly", + "803A4AF0": "TNerveFireWanwanHungTail", + "803A4B00": "TNerveFireWanwanDie", + "803A4B10": "TNerveFireWanwanRecover", + "803A4B20": "TNerveFireWanwanRecoverGraph", + "803A4B30": "TNerveFireWanwanTired", + "803A4B40": "TNerveFireWanwanAttack", + "803A4B50": "TNerveFireWanwanFindMario", + "803A4B60": "TNerveFireWanwanTurn", + "803A4B70": "TNerveFireWanwanGraphWander", + "803A4B80": "TFireWanwan", + "803A4D28": "TFireWanwanTailHit", + "803A4DDC": "TFireWanwanManager", + "803A4E38": "TStageEnemyInfo", + "803A4E58": "TStageEnemyInfoTable", + "803A4E78": "TNameRefPtrAryT", + "803A4E98": "TOneShotGenerator", + "803A4F3C": "TGenerator", + "803A4FD8": "TNerveBPCannonL", + "803A4FE8": "TNerveBPWaitL", + "803A4FF8": "TNerveBPBreakSleep", + "803A5008": "TNerveBPSleep", + "803A5018": "TNerveBPFall", + "803A5028": "TNerveBPHover", + "803A5038": "TNerveBPFlyPivot", + "803A5048": "TNerveBPFlyCannon", + "803A5058": "TNerveBPTouchDown", + "803A5068": "TNerveBPFly", + "803A5078": "TNerveBPTakeOff", + "803A5088": "TNerveBPDie", + "803A5098": "TNerveBPPreDie", + "803A50A8": "TNerveBPJumpReact", + "803A50B8": "TNerveBPStompReact", + "803A50C8": "TNerveBPSwing", + "803A50D8": "TNerveBPGetUp", + "803A50E8": "TNerveBPTumbleOut", + "803A50F8": "TNerveBPTumble", + "803A5108": "TNerveBPTumbleIn", + "803A5118": "TNerveBPSwallow", + "803A5128": "TNerveBPPivot", + "803A5138": "TNerveBPTornado", + "803A5148": "TNerveBPVomit", + "803A5158": "TNerveBPCannon", + "803A5168": "TNerveBPWait", + "803A5178": "TBossPakkunManager", + "803A51CC": "TBossPakkun", + "803A52E0": "TBossPakkunMtxCalc", + "803A5324": "TBPNavel", + "803A53C8": "TBPHeadHit", + "803A546C": "TBPTornado", + "803A5510": "TBPVomit", + "803A5534": "TBPPolDrop", + "803A5630": "TNerveTobiPukuSwimWander", + "803A5640": "TNerveTobiPukuReturnLaunch", + "803A5650": "TNerveTobiPukuPrepareFly", + "803A5660": "TNerveTobiPukuBound", + "803A5670": "TNerveTobiPukuLand", + "803A5680": "TNerveTobiPukuDie", + "803A5690": "TNerveTobiPukuPitiPiti", + "803A56A0": "TNerveTobiPukuFall", + "803A56B0": "TNerveTobiPukuHitWater", + "803A56C0": "TNerveTobiPukuAttack", + "803A56D0": "TNerveTobiPukuFly", + "803A56E0": "TNerveTobiPukuGenerate", + "803A56F0": "TMoePuku", + "803A58F0": "TPukuPuku", + "803A5AF0": "TTobiPuku", + "803A5CF0": "TMoePukuLaunchPad", + "803A5E9C": "TTobiPukuLaunchPad", + "803A6048": "TMoePukuManager", + "803A60A0": "TTobiPukuManager", + "803A60F8": "TMoePukuLaunchPadManager", + "803A6150": "TTobiPukuLaunchPadManager", + "803A63D4": "TNerveTinKoopaBreak", + "803A6444": "TNerveTinKoopaDamage", + "803A6454": "TNerveTinKoopaWait", + "803A6464": "TTinKoopaManager", + "803A64B8": "TTinKoopaMtxCalc", + "803A64FC": "TTinKoopaPartsBase", + "803A65FC": "TTinKoopaFlame", + "803A66A0": "TTinKoopa", + "803A67C8": "TCommonLauncherManager", + "803A681C": "TCommonLauncher", + "803A6948": "TLauncherManager", + "803A699C": "TLauncher", + "803A6B1C": "TNerveBWFall", + "803A6C7C": "TNerveBWShake", + "803A6C8C": "TNerveBWJumpAway", + "803A6C9C": "TNerveBWDie", + "803A6CAC": "TNerveBWJumpToBath", + "803A6CBC": "TNerveBWWakeup", + "803A6CCC": "TNerveBWStun", + "803A6CDC": "TNerveBWJump", + "803A6CEC": "TNerveBWBark", + "803A6CFC": "TNerveBWRoll", + "803A6D0C": "TNerveBWGraphWander", + "803A6D1C": "TBossWanwanManager", + "803A6D70": "TBossWanwan", + "803A6E84": "TBossWanwanMtxCalc", + "803A6EC8": "TBWBinder", + "803A6ED8": "TBWHit", + "803A6F7C": "TBWPicket", + "803A7030": "TBWLeash", + "803A7054": "TBWLeashNode", + "803A7144": "TNerveChuuHanaWait", + "803A7154": "TNerveChuuHanaJumpPrepare", + "803A7164": "TNerveChuuHanaAttack", + "803A7174": "TNerveChuuHanaObject", + "803A7184": "TNerveChuuHanaFall2", + "803A7194": "TNerveChuuHanaFall", + "803A71A4": "TNerveChuuHanaRoll", + "803A71B4": "TNerveChuuHanaStick", + "803A71C4": "TNerveChuuHanaKeepBalance", + "803A71D4": "TNerveChuuHanaForceJumped", + "803A71E4": "TNerveChuuHanaWalkOnPanel", + "803A71F4": "TChuuHana", + "803A73AC": "TChuuHanaAseParCallback", + "803A73BC": "TChuuHanaManager", + "803A7478": "TNerveGorogoroDie", + "803A7488": "TNerveGorogoroRollOnGraph", + "803A7498": "TGorogoro", + "803A7668": "TGorogoroManager", + "803A76C0": "TGorogoroPolluteModel", + "803A76E8": "TGorogoroPolluteModelManager", + "803A7710": "TNerveIgaigaShootFromCannon", + "803A7720": "TNerveIgaigaWaterHit", + "803A7730": "TNerveIgaigaRollOnGraph", + "803A7740": "TIgaiga", + "803A7910": "TIgaigaManager", + "803A7968": "TIgaigaPolluteModel", + "803A7990": "TIgaigaPolluteModelManager", + "803A79B8": "TRollEnemy", + "803A7BC0": "TNervePoihanaTrapped", + "803A7BD0": "TNervePoihanaThrow", + "803A7BE0": "TNervePoihanaFreeze", + "803A7BF0": "TNervePoihanaSleep", + "803A7C00": "TSleepPoiHana", + "803A7DB8": "TPoiHanaRed", + "803A7F70": "TPoiHana", + "803A8128": "TPoiHanaCollision", + "803A81CC": "TPoiHanaManager", + "803A8284": "TNerveTamaNokoWait", + "803A8294": "TNerveTamaNokoHitWater", + "803A82A4": "TNerveTamaNokoSink", + "803A82B4": "TNerveTamaNokoThrown", + "803A82C4": "TNerveTamaNokoPickUp", + "803A82D4": "TNerveTamaNokoDown", + "803A82E4": "TNerveTamaNokoAttack", + "803A82F4": "TNerveTamaNokoSleep", + "803A8304": "TTamaNoko", + "803A84BC": "TTamaNokoManager", + "803A8514": "TTamaNokoFlower", + "803A85D0": "TNerveBossTelesaFallDemo", + "803A85E0": "TBossTelesaKillSmallEnemy", + "803A8684": "TNerveBossTelesaFreeze", + "803A8694": "TNerveBossTelesaPrepareSlot", + "803A86A4": "TNerveBossTelesaSpitSlotItem", + "803A86B4": "TNerveBossTelesaSlotStart", + "803A86C4": "TNerveBossTelesaAppear", + "803A86D4": "TNerveBossTelesaHideWait", + "803A86E4": "TNerveBossTelesaHide", + "803A86F4": "TNerveBossTelesaSpit", + "803A8704": "TNerveBossTelesaDie", + "803A8714": "TBossTelesa", + "803A8828": "TTelesaSlot", + "803A8B0C": "TBossTelesaTongue", + "803A8BB0": "TBossTelesaBody", + "803A8C54": "TBossTelesaManager", + "803A8CA8": "TNerveBubbleSplit", + "803A8CB8": "TNerveBubbleLive", + "803A8CC8": "TBubble", + "803A8E80": "TBubbleManager", + "803A8ED8": "TNerveRHGraphWander", + "803A8EE8": "TRiccoHookManager", + "803A8F3C": "TRiccoHook", + "803A9050": "THookTake", + "803A9180": "TNerveBombHeiExplosion", + "803A91D0": "TNerveBombHeiThrown", + "803A91E0": "TNerveBombHeiPickUp", + "803A91F0": "TNerveBombHeiWaitExplosion", + "803A9200": "TNerveBombHeiWalkExplosion", + "803A9210": "TNerveBombHeiAttack", + "803A9220": "TNerveBombHeiGenerate", + "803A9230": "TBombHei", + "803A93E8": "TBombHeiManager", + "803A949C": "TNerveCannonObject", + "803A94AC": "TNerveCannonDamageDemo", + "803A94BC": "TNerveCannonDamage", + "803A94CC": "TNerveCannonClose", + "803A94DC": "TNerveCannonForceBombShoot", + "803A94EC": "TNerveCannonShoot", + "803A94FC": "TNerveCannonSearch", + "803A950C": "TNerveCannonOpen", + "803A951C": "TCannon", + "803A96C8": "TCannonDom", + "803A96EC": "TChorobei", + "803A9790": "TCannonManager", + "803A9900": "TNerveBossEelSleepOnBottom", + "803A9974": "TNerveBossEelMouthOpenWait", + "803A9984": "TNerveBossEelDie", + "803A9994": "TNerveBossEelEat", + "803A99A4": "TNerveBossEelQuickBack", + "803A99B4": "TNerveBossEelSlowBack", + "803A99C4": "TNerveBossEelOutWait", + "803A99D4": "TNerveBossEelAppear", + "803A99E4": "TNerveBossEelSecondSpin", + "803A99F4": "TNerveBossEelFirstSpin", + "803A9A04": "TNerveBossEelWaitAppear", + "803A9A14": "TBossEel", + "803A9B28": "TBossEelTearsRecoverCollision", + "803A9BD4": "TBossEelBarrierCollision", + "803A9C80": "TBossEelAwaCollision", + "803A9D2C": "TBossEelBodyCollision", + "803A9DD8": "TBossEelCollision", + "803A9E84": "TBossEelHeartCoin", + "803A9EA8": "TBossEelEye", + "803A9ECC": "TBossEelVortex", + "803A9F74": "TBossEelTooth", + "803AA018": "TBossEelManager", + "803AA06C": "TNerveOilBallStay", + "803AA07C": "TOilBall", + "803AA194": "TNerveBEelTearsSplit", + "803AA1A4": "TNerveBEelTearsMarioRecover", + "803AA1B4": "TNerveBEelTearsWaterHit", + "803AA1C4": "TNerveBEelTearsMoveUp", + "803AA1D4": "TNerveBEelTearsGenerate", + "803AA1E4": "TBEelTears", + "803AA2FC": "TBEelTearsManager", + "803AA350": "TBEelTearsDrop", + "803AA468": "TNerveKillerExplosion", + "803AA4B8": "TKiller", + "803AA67C": "TKillerManager", + "803AA6D4": "TNerveFlyEnemyChaseFly", + "803AA6E4": "TNerveFlyEnemyNormalFly", + "803AA6F4": "TFlyEnemy", + "803AA8B8": "TBeamManager", + "803AA9A4": "TNerveSamboHeadHitWall", + "803AA9B4": "TNerveSamboHeadRecoverWater", + "803AA9C4": "TNerveSamboHeadHitWater", + "803AA9D4": "TNerveSamboHeadHide", + "803AA9E4": "TNerveSamboHeadAttack", + "803AA9F4": "TNerveSamboHeadAppear", + "803AAA04": "TSamboHead", + "803AABBC": "TSamboHeadManager", + "803AAC14": "TNerveHanaSamboFreeze", + "803AAC24": "TNerveHanaSamboDie", + "803AAC34": "TNerveHanaSamboHide", + "803AAC44": "TNerveHanaSamboAttack", + "803AAC54": "TNerveHanaSamboWait", + "803AAC64": "TNerveHanaSamboAppear", + "803AAC74": "THanaSambo", + "803AAE1C": "THanaSamboHead", + "803AAEC0": "THanaSamboManager", + "803AAF18": "TSamboFlower", + "803AB030": "TSamboFlowerManager", + "803AB088": "TSamboLeaf", + "803AB0F0": "TNervePopoThrown", + "803AB100": "TNervePopoWait", + "803AB110": "TNervePopoExplosion", + "803AB120": "TNervePopoFly", + "803AB130": "TNervePopoAttack", + "803AB140": "TNervePopoPossessedNozzle", + "803AB150": "TPopo", + "803AB308": "TPopoCollision", + "803AB3AC": "TPopoManager", + "803AB408": "TNerveSBH_Fall", + "803AB418": "TNerveSBH_SleepContinue", + "803AB428": "TSleepBossHanachan", + "803AB53C": "TSleepBossHanachanManager", + "803AB590": "TDemoBossHanachan", + "803AB6A4": "TDemoBossHanachanManager", + "803AB6F8": "TNerveFruitsBoatBckTrace", + "803AB708": "TNerveFruitsBoatGraphWander", + "803AB718": "TFruitsBoatManager", + "803AB76C": "TFruitsBoat", + "803AB880": "TWaterHitActor", + "803AB964": "TBossHanachan", + "803ABA78": "TBossHanachanManager", + "803ABAD0": "TNerveBossHanachanDead", + "803ABAE0": "TNerveBossHanachanSnort", + "803ABAF0": "TNerveBossHanachanDamage", + "803ABB00": "TNerveBossHanachanGetUp", + "803ABB10": "TNerveBossHanachanDown", + "803ABB20": "TNerveBossHanachanTumble", + "803ABB30": "TNerveBossHanachanGraphWander", + "803ABB40": "TBossHanachanPartsHead", + "803ABC88": "TFootHitActor", + "803ABD2C": "TBossHanachanPartsBody", + "803ABE88": "TNerveAmiNokoFreeze", + "803ABE98": "TNerveAmiNokoDie", + "803ABEA8": "TNerveAmiNokoTurn", + "803ABEB8": "TNerveAmiNokoWalkOnFence", + "803ABEC8": "TAmiNoko", + "803AC080": "TAmiHit", + "803AC124": "TAmiNokoManager", + "803AC1D0": "TNerveBGKLaunchName", + "803AC1E0": "TBGKObstacle", + "803AC284": "TNerveBGKLaunchGoro", + "803AC294": "TNerveBGKDive", + "803AC2A4": "TNerveBGKDie", + "803AC2B4": "TNerveBGKAwakeDamage", + "803AC2C4": "TNerveBGKSleepDamage", + "803AC2D4": "TNerveBGKWait2", + "803AC2E4": "TNerveBGKWait", + "803AC2F4": "TNerveBGKAppear", + "803AC304": "TNerveBGKSleep", + "803AC314": "TBiancoGateKeeper", + "803AC428": "TBGKMtxCalc", + "803AC46C": "TBiancoGateKeeperManager", + "803AC4C4": "TGateKeeperBase", + "803AC5D8": "TGKHitObj", + "803AC680": "TEggGenManager", + "803AC6D4": "TEggGenerator", + "803AC7E8": "TNerveSealDie", + "803AC7F8": "TNerveSealWait", + "803AC808": "TNerveSealSleep", + "803AC818": "TSealManager", + "803AC86C": "TSeal", + "803AC980": "TBGPolDrop", + "803ACA94": "TBGTentacle", + "803ACCB8": "TBGAttackHit", + "803ACD5C": "TBGTakeHit", + "803ACE10": "TBGTentacleMtxCalc", + "803ACE68": "TEffectEnemy", + "803AD020": "TEffectEnemyManager", + "803AD090": "TNerveHauntLegHaunt", + "803AD0A0": "THauntLeg", + "803AD258": "THauntedObject", + "803AD2FC": "THauntLegManager", + "803AD358": "TAreaCylinderManager", + "803AD37C": "TAreaCylinder", + "803AD3A0": "TNerveWireTrapGoWait", + "803AD3E0": "TNerveWireTrapWait", + "803AD3F0": "TNerveWireTrapSearch", + "803AD400": "TNerveWireTrapOnewayMoveEnd", + "803AD410": "TNerveWireTrapOnewayMove", + "803AD420": "TNerveWireTrapOnewayMoveStart", + "803AD430": "TNerveWireTrapReturnMove", + "803AD440": "TWireTrapManager", + "803AD494": "TWireTrap", + "803AD640": "TBossHanachanPartsBase", + "803AD768": "TNerveRocketWait", + "803AD778": "TNerveRocketFly", + "803AD788": "TNerveRocketPossessedNozzle", + "803AD798": "TRocket", + "803AD940": "TRocketManager", + "803AD9AC": "TNerveKazekunHitWater", + "803AD9BC": "TNerveKazekunWait", + "803AD9CC": "TNerveKazekunDisappear", + "803AD9DC": "TNerveKazekunAttack", + "803AD9EC": "TNerveKazekunPreAttack", + "803AD9FC": "TNerveKazekunTurn", + "803ADA0C": "TNerveKazekunAppear", + "803ADA1C": "TNerveKazekunSearch", + "803ADA2C": "TKazekunManager", + "803ADA84": "TKazekun", + "803ADC9C": "TBossMantaManager", + "803ADCF0": "TBossMantaAdditionalCollision", + "803ADD94": "TBossManta", + "803ADEA8": "TNerveMantaAppearDemo", + "803ADEB8": "TNerveMantaDeath", + "803ADEC8": "TNerveMantaSpawn", + "803ADED8": "TNerveMantaHitWater", + "803ADEE8": "TNerveMantaMove", + "803ADEF8": "TWireBinder", + "803ADF3C": "TNerveYumboFreeze", + "803ADF4C": "TNerveYumboAttack", + "803ADF5C": "TNerveYumboAppearing", + "803ADF6C": "TNerveYumboHiding", + "803ADF7C": "TNerveYumboDancing", + "803ADF8C": "TYumbo", + "803AE134": "TYumboManager", + "803AE18C": "TYumboSeed", + "803AE25C": "TKoopaJrSubmarineManager", + "803AE2B0": "TNerveKoopaJrSubmarineLaunchKiller", + "803AE2C0": "TNerveKoopaJrSubmarineCannonOpenClose", + "803AE2D0": "TNerveKoopaJrSubmarineWait", + "803AE2E0": "TKoopaJrSubmarine", + "803AE3F4": "TKoopaJrManager", + "803AE448": "TNerveKoopaJrYahoo", + "803AE458": "TNerveKoopaJrLaunch", + "803AE468": "TNerveKoopaJrDemo", + "803AE478": "TNerveKoopaJrDamage", + "803AE488": "TNerveKoopaJrWait", + "803AE498": "TKoopaJr", + "803AE5AC": "TCallbackHitActor", + "803AE6B8": "TNerveKumokunPreFly", + "803AE6C8": "TSolidStack", + "803AE6D4": "TNerveKumokunFly", + "803AE6E4": "TNerveKumokunPostFreeze", + "803AE6F4": "TNerveKumokunFreeze", + "803AE704": "TNerveKumokunWait", + "803AE714": "TNerveKumokunSearch", + "803AE724": "TNerveKumokunPostWalk", + "803AE734": "TNerveKumokunWalk", + "803AE744": "TNerveKumokunPreWalk", + "803AE754": "TKumokunManager", + "803AE7AC": "TKumokun", + "803AE994": "TKoopaManager", + "803AEA24": "TNerveKoopaTurnR", + "803AEA34": "TNerveKoopaTurnL", + "803AEA44": "TNerveKoopaTurn", + "803AEA54": "TKoopa", + "803AEB68": "TKoopaBody", + "803AEC14": "TKoopaHead", + "803AECC0": "TKoopaHand", + "803AED6C": "TKoopaFlame", + "803AEE18": "TKoopaParts", + "803AEEC4": "TNerveKoopaGetDown", + "803AEED4": "TNerveKoopaGetShowered", + "803AEEE4": "TNerveKoopaStagger", + "803AEEF4": "TNerveKoopaProvoke", + "803AEF04": "TNerveKoopaFlame", + "803AEF14": "TNerveKoopaFall", + "803AEF24": "TNerveKoopaTumble", + "803AEF34": "TNerveKoopaWait", + "803AEF60": "TNerveKukkuRecoverGraph", + "803AEF70": "TNerveKukkuPostFall", + "803AEF80": "TNerveKukkuFall", + "803AEF90": "TNerveKukkuGraphWander", + "803AEFA0": "TKukku", + "803AF148": "TKukkuManager", + "803AF1A0": "TKukkuBall", + "803AF264": "TNerveAmenboHitWater", + "803AF274": "TNerveAmenboWalk", + "803AF284": "TNerveAmenboPreAttack", + "803AF294": "TNerveAmenboTurn", + "803AF2A4": "TNerveAmenboSearch", + "803AF2B4": "TAmenbo", + "803AF45C": "TAmenboManager", + "803AF514": "TBathtubPeachManager", + "803AF568": "TNervePeachEscape", + "803AF578": "TNervePeachStagger", + "803AF588": "TBathtubPeach", + "803AF6D0": "TBathtubKillerManager", + "803AF728": "TNerveBathtubKillerExplosion", + "803AF738": "TNerveBathtubKillerBreak", + "803AF748": "TNerveBathtubKillerStraight", + "803AF758": "TNerveBathtubKillerChaseStraight", + "803AF768": "TNerveBathtubKillerChase", + "803AF778": "TNerveBathtubKillerWander", + "803AF788": "TBathtubKiller", + "803AF968": "TCoasterKillerManager", + "803AF9C0": "TNerveCoasterKillerExplosion", + "803AF9D0": "TCoasterKiller", + "803AFB94": "TNerveCoasterEnemyWander", + "803AFBA4": "TCoasterEnemy", + "803AFD68": "TNerveDebuTelesaWait", + "803AFD78": "TDebuTelesaManager", + "803AFDD0": "TDebuTelesa", + "803AFF84": "TNerveTabePukuDrag", + "803AFF94": "TNerveTabePukuDive", + "803AFFA4": "TNerveTabePukuBite", + "803AFFB4": "TNerveTabePukuAttack", + "803AFFC4": "TNerveTabePukuRecoverGraph", + "803AFFD4": "TNerveTabePukuFound", + "803AFFE4": "TNerveTabePukuGraphWander", + "803AFFF4": "TTabePukuManager", + "803B004C": "TTabePuku", + "803B01F4": "TTPHitActor", + "803B02A0": "TBathtubBinder", + "803D9DC0": "CPolarSubCamera", + "803DA0B0": "TLensFlare", + "803DA0D8": "TLensGlow", + "803DA100": "TSunMgr", + "803DA138": "TSunModel", + "803DA1D8": "TCubeManagerBase", + "803DA200": "TCameraMapTool", + "803DA220": "TCubeStreamInfo", + "803DA240": "TCubeCameraInfo", + "803DA260": "TCubeGeneralInfo", + "8039D500": "TBoidLeader", + "8039D548": "TFishoidManager", + "8039D670": "TFishoid", + "8039D788": "TFish", + "8039D840": "TRealoid", + "8039D958": "TRealoidActor", + "8039DA10": "TAnimalBase", + "8039DB28": "TMewManager", + "8039DB7C": "TAnimalManagerBase", + "8039DC00": "TNerveAnimalGraphWander", + "8039DC34": "TNerveAnimalBirdLanding", + "8039DC44": "TNerveAnimalBirdPreLanding", + "8039DC54": "TNerveAnimalBirdComeback", + "8039DC64": "TNerveAnimalBirdChangeToCoin", + "8039DC74": "TNerveAnimalBirdGraphWander", + "8039DC84": "TNerveAnimalBirdTakeoff", + "8039DC94": "TNerveAnimalBirdWalkOnGround", + "8039DCA4": "TNerveAnimalBirdActionOnGround", + "8039DCB4": "TNerveAnimalBirdWaitOnGround", + "8039DCC4": "TAnimalBirdManager", + "8039DD18": "TAnimalBird", + "8039DE30": "TNerveBeeHiveReset", + "8039DE40": "TNerveBeeHiveMarioWaterIn", + "8039DE50": "TNerveBeeHiveAttack", + "8039DE60": "TNerveBeeHiveBreak", + "8039DE70": "TNerveBeeHiveFall", + "8039DE80": "TNerveBeeHiveWait", + "8039DE90": "TBeeHiveManager", + "8039DEE4": "TBeeHive", + "8039DFFC": "TBee", + "8039E0B8": "TButterfloidManager", + "8039E10C": "TButterfloid", + "8039E224": "TButterfly" +} \ No newline at end of file diff --git a/src/sms/vt/GMSP01.json b/src/sms/vt/GMSP01.json new file mode 100644 index 0000000..62c50df --- /dev/null +++ b/src/sms/vt/GMSP01.json @@ -0,0 +1,1472 @@ +{ + "803A3A04": "JDrama::TViewObj", + "803A3A7C": "TNerveWaitForever", + "803A3A8C": "TNerveBase", + "803A3A9C": "TTakeActor", + "803A40B0": "TParamRT", + "803A40BC": "TParamT", + "803A40C8": "TParamRT", + "803A40D4": "TParamT", + "803A47D0": "MAnmSoundMario", + "803A5458": "TParamRT", + "803A5464": "TParamT", + "803A5470": "TParamRT", + "803A547C": "TParamT", + "803A54D4": "J3DFrameCtrl", + "803A5514": "TDrawSyncCallback", + "803A55E4": "TNameRefPtrAryT", + "803A6B70": "TSpcTypedBinary", + "803A7448": "J3DMtxCalc", + "803A7468": "M3UModelCommonMario", + "803A7474": "JSUIosBase", + "803A7580": "J3DMtxCalcSoftimageAnm", + "803A95C0": "JPACallBackBase2", + "803AFBC4": "TSirenaRollMapObj", + "803B86E0": "JDrama::TViewObjPtrListT", + "803B88A4": "TSmplFader", + "803C6940": "TWatermelonStatic", + "803D17C8": "JDrama::TCharacter", + "803D1C60": "JDrama::TViewObjPtrListT", + "803D2920": "J3DMtxCalcBasicAnm", + "803D3678": "JKRFileFinder", + "803D7474": "TEndingString", + "803D769C": "MSStageCubeFadeDouble", + "803D7728": "JKRFile", + "803D7748": "JKRAramArchive", + "803D7790": "JKRAramHeap", + "803D77D0": "JKRAram", + "803D77E0": "JKRArchive", + "803D7828": "JKRCompArchive", + "803D7870": "JKRDisposer", + "803D7880": "JKRDvdArchive", + "803D78C8": "JKRDvdFile", + "803D78F0": "JKRExpHeap", + "803D7940": "JKRArcFinder", + "803D7950": "JKRFileLoader", + "803D7990": "JKRHeap", + "803D79E0": "JKRMemArchive", + "803D7A28": "JKRSolidHeap", + "803D7A78": "JKRStdHeap", + "803D7AC8": "JKRThread", + "803D7AD8": "JSURandomOutputStream", + "803D7B00": "JSUOutputStream", + "803D7B18": "JSURandomInputStream", + "803D7B3C": "JSUInputStream", + "803D7B58": "JSUMemoryOutputStream", + "803D7B80": "JSUMemoryInputStream", + "803D7BA8": "JSUFileInputStream", + "803D7C30": "JUTException", + "803D7EF8": "JUTFont", + "803D7F40": "JUTGamePad", + "803D7F50": "J2DPane", + "803D7F80": "J2DPicture", + "803D8010": "J2DPrint", + "803D8070": "J2DSetScreen", + "803D80A4": "J2DScreen", + "803D80D8": "J2DTextBox", + "803D8108": "J2DWindow", + "803D8134": "J2DWindow::Texture", + "803D8198": "J3DSkinDeform", + "803D81A8": "J3DJoint", + "803D81D0": "J3DMtxCalcMayaAnm", + "803D8224": "J3DMtxCalcMaya", + "803D8268": "J3DMtxCalcSoftimage", + "803D82AC": "J3DMtxCalcBasic", + "803D82F0": "J3DMtxCalcAnm", + "803D8320": "J3DPEBlockFull", + "803D8384": "J3DIndBlockFull", + "803D83CC": "J3DTevBlock16", + "803D8468": "J3DTevBlock4", + "803D8504": "J3DTevBlock2", + "803D85A0": "J3DTevBlock1", + "803D863C": "J3DTexGenBlockBasic", + "803D868C": "J3DColorBlockLightOn", + "803D86F0": "J3DColorBlockLightOff", + "803D8754": "J3DPEBlockXlu", + "803D87B8": "J3DPEBlockTexEdge", + "803D881C": "J3DPEBlockOpa", + "803D8880": "J3DPEBlock", + "803D88E4": "J3DIndBlockNull", + "803D892C": "J3DIndBlock", + "803D8974": "J3DTevBlock", + "803D8A10": "J3DTexGenBlock", + "803D8A60": "J3DColorBlock", + "803D8B14": "J3DModel", + "803D8B30": "J3DModelData", + "803D8B40": "J3DNode", + "803D8BC8": "J3DShapeDraw", + "803D8BD4": "J3DShapeMtxMulti", + "803D8BF4": "J3DShapeMtxDL", + "803D8C14": "J3DShapeMtx", + "803D8C50": "J3DAnmColorKey", + "803D8C60": "J3DAnmColor", + "803D8C70": "J3DAnmColorFull", + "803D8C80": "J3DAnmVtxColorKey", + "803D8C90": "J3DAnmVtxColor", + "803D8CA0": "J3DAnmVtxColorFull", + "803D8CB0": "J3DAnmClusterKey", + "803D8CC0": "J3DAnmCluster", + "803D8CD0": "J3DAnmClusterFull", + "803D8CE0": "J3DAnmTransformKey", + "803D8CF4": "J3DAnmTransform", + "803D8D04": "J3DAnmTransformFull", + "803D8D14": "J3DAnmBase", + "803D8D20": "J3DModelLoader_v21", + "803D8D48": "J3DModelLoader_v26", + "803D8D70": "J3DTexture", + "803D8D7C": "J3DModelLoader", + "803D8DA8": "J3DAnmKeyLoader_v15", + "803D8DB8": "J3DAnmFullLoader_v15", + "803D8DC8": "J3DAnmLoader", + "803D8DD8": "J3DAnmVisibilityFull", + "803D8DE4": "J3DAnmTexPattern", + "803D8DF0": "J3DAnmTevRegKey", + "803D8DFC": "J3DAnmTextureSRTKey", + "803D8E08": "J2DGrafContext", + "803D8E60": "JKRDecomp", + "803D8E70": "J2DOrthoGraph", + "803D8E98": "J3DVertexBuffer", + "803D8EA8": "J3DShapePacket", + "803D8EC0": "J3DMatPacket", + "803D8ED8": "J3DDrawPacket", + "803D8EF0": "J3DCallBackPacket", + "803D8F08": "J3DPacket", + "803D9158": "J3DMaterialAnm", + "803D9168": "J3DTexNoAnm", + "803D9178": "JKRAramBlock", + "803D91B8": "JKRAramStream", + "803D91D4": "JUTResFont", + "803D9228": "JUTRomFont", + "803D92D0": "JUTConsole", + "803D92E0": "JDrama::TActor", + "803D9380": "JDrama::TOrthoProj", + "803D9454": "JDrama::TLookAtCamera", + "803D9548": "JDrama::TPolarCamera", + "803D9624": "JDrama::TCamera", + "803D96E8": "JDrama::TSmplChara", + "803D9710": "JDrama::TDirector", + "803D9780": "JDrama::TDisplay", + "803D9790": "JDrama::TDrawBufObj", + "803D97B8": "JDrama::TDStageDisp", + "803D97E0": "JDrama::TDStageGroup", + "803D9810": "JDrama::TEfbCtrlTex", + "803D9834": "JDrama::TEfbCtrlDisp", + "803D9858": "JDrama::TEfbCtrl", + "803D9880": "JDrama::TFrmGXSet", + "803D98A8": "JDrama::TLightMap", + "803D98CC": "JDrama::TAmbAry", + "803D98F0": "JDrama::TAmbColor", + "803D9954": "JDrama::TIdxLight", + "803D99F0": "JDrama::TLightAry", + "803D9A14": "JDrama::TLight", + "803D9AB0": "JDrama::TNameRef", + "803D9AD0": "JDrama::TNameRefPtrListT", + "803D9AF0": "JDrama::TNameRefGen", + "803D9B00": "JDrama::TPlacement", + "803D9B28": "JDrama::TScreen", + "803D9B4C": "TCamConnecter", + "803D9B70": "JDrama::TSmJ3DAct", + "803D9C10": "JDrama::TSmJ3DScn", + "803D9C40": "JDrama::TViewConnecter", + "803D9C68": "JDrama::TViewport", + "803D9C90": "JALSeModData", + "803D9CA0": "JALSeModData", + "803D9CB0": "JALSeModData", + "803D9CC0": "JALSeModData", + "803D9CD0": "JALSeModData", + "803D9CE0": "JALSeModData", + "803D9CF0": "JALSeModData", + "803D9D00": "JALSeModData", + "803D9D10": "JALSeModData", + "803D9D20": "JALSeModData", + "803D9D30": "JALSeModData", + "803D9D40": "JALSeModData", + "803D9D50": "JALSeModPitDGrp", + "803D9D60": "JALSeModDataGrp", + "803D9D70": "JALSeModEffDGrp", + "803D9D80": "JALSeModDataGrp", + "803D9D90": "JALSeModVolDGrp", + "803D9DA0": "JALSeModDataGrp", + "803D9DB0": "JALSeModEffFGrp", + "803D9DC0": "JALSeModDataGrp", + "803D9DD0": "JALSeModPitFGrp", + "803D9DE0": "JALSeModDataGrp", + "803D9DF0": "JALSeModVolFGrp", + "803D9E00": "JALSeModDataGrp", + "803D9E10": "JALSeModPitDist", + "803D9E20": "JALSeModEffDist", + "803D9E30": "JALSeModVolDist", + "803D9E40": "JALSeModEffFunk", + "803D9E50": "JALSeModPitFunk", + "803D9E60": "JALSeModVolFunk", + "803D9E70": "JAIAnimeSound", + "803D9EA4": "JAIBasic", + "803D9F90": "JAISound", + "803D9FF0": "JASystem::TBasicBank", + "803DA004": "JASystem::TBank", + "803DA018": "JASystem::TBasicInst", + "803DA030": "JASystem::TInst", + "803DA048": "JASystem::TWaveHandle", + "803DA05C": "JASystem::TBasicWaveBank::TWaveHandle", + "803DA070": "JASystem::TBasicWaveBank::TWaveGroup", + "803DA084": "JASystem::WaveArcLoader::TObject", + "803DA098": "JASystem::TBasicWaveBank", + "803DA0AC": "JASystem::TWaveBank", + "803DA0C0": "JASystem::TInstEffect", + "803DA0D0": "JASystem::TDrumSet", + "803DA0E8": "JASystem::TInstRand", + "803DA0F8": "JASystem::TInstSense", + "803DA108": "JASystem::TSimpleWaveBank::TWaveHandle", + "803DA11C": "JASystem::TSimpleWaveBank", + "803DB660": "J3DMaterialTable", + "803DB6D8": "JPADragField", + "803DB6F0": "JPARandomField", + "803DB708": "JPAConvectionField", + "803DB720": "JPAVortexField", + "803DB738": "JPANewtonField", + "803DB750": "JPAMagnetField", + "803DB768": "JPAAirField", + "803DB780": "JPAGravityField", + "803DB798": "JPABaseField", + "803DB7B0": "JPAParticle", + "803DB808": "JPABaseParticle", + "803DB8B8": "JPADrawCalcEmitterVisitor", + "803DB8C8": "JPADrawCalcParticleVisitor", + "803DB8D8": "JPADrawExecParticleVisitor", + "803DB8E8": "JPADrawExecEmitterVisitor", + "803DB8F8": "JPADrawCalcChildScaleOut", + "803DB908": "JPADrawCalcChildAlphaOut", + "803DB918": "JPADrawCalcAlphaFlickMultSin", + "803DB928": "JPADrawCalcAlphaFlickAddSin", + "803DB938": "JPADrawCalcAlphaFlickNrmSin", + "803DB948": "JPADrawCalcAlpha", + "803DB958": "JPADrawCalcColorCopyFromEmitter", + "803DB968": "JPADrawCalcScaleAnmTimingReverseY", + "803DB978": "JPADrawCalcScaleAnmTimingReverseX", + "803DB988": "JPADrawCalcScaleAnmTimingRepeatY", + "803DB998": "JPADrawCalcScaleAnmTimingRepeatX", + "803DB9A8": "JPADrawCalcScaleAnmTimingNormal", + "803DB9B8": "JPADrawCalcScaleCopyX2Y", + "803DB9C8": "JPADrawCalcScaleYBySpeed", + "803DB9D8": "JPADrawCalcScaleXBySpeed", + "803DB9E8": "JPADrawCalcScaleY", + "803DB9F8": "JPADrawCalcScaleX", + "803DBA08": "JPADrawExecCallBack", + "803DBA2C": "JPADrawCalcTextureAnmIndexRandom", + "803DBA50": "JPADrawCalcTextureAnmIndexMerge", + "803DBA74": "JPADrawCalcTextureAnmIndexReverse", + "803DBA98": "JPADrawCalcTextureAnmIndexRepeat", + "803DBABC": "JPADrawCalcTextureAnmIndexNormal", + "803DBAE0": "JPADrawCalcColorAnmFrameRandom", + "803DBB04": "JPADrawCalcColorAnmFrameMerge", + "803DBB28": "JPADrawCalcColorAnmFrameReverse", + "803DBB4C": "JPADrawCalcColorAnmFrameRepeat", + "803DBB70": "JPADrawCalcColorAnmFrameNormal", + "803DBB94": "JPADrawCalcColorEnv", + "803DBBB8": "JPADrawCalcColorPrm", + "803DBBDC": "JPADrawExecRegisterColorChildPE", + "803DBBEC": "JPADrawExecRegisterColorEmitterE", + "803DBBFC": "JPADrawExecRegisterColorEmitterP", + "803DBC0C": "JPADrawExecRegisterColorEmitterPE", + "803DBC1C": "JPADrawExecStripeCross", + "803DBC2C": "JPADrawExecStripe", + "803DBC3C": "JPADrawExecLine", + "803DBC4C": "JPADrawExecPoint", + "803DBC5C": "JPADrawExecRotationCross", + "803DBC6C": "JPADrawExecRotation", + "803DBC7C": "JPADrawExecDirBillBoard", + "803DBC8C": "JPADrawExecRotDirectionalCross", + "803DBC9C": "JPADrawExecDirectionalCross", + "803DBCAC": "JPADrawExecRotDirectional", + "803DBCBC": "JPADrawExecDirectional", + "803DBCCC": "JPADrawExecRotYBillBoard", + "803DBCDC": "JPADrawExecYBillBoard", + "803DBCEC": "JPADrawExecRotBillBoard", + "803DBCFC": "JPADrawExecBillBoard", + "803DBD0C": "JPADrawExecRegisterPrmAEnv", + "803DBD1C": "JPADrawExecRegisterPrmCEnv", + "803DBD2C": "JPADrawExecRegisterEnvColorAnm", + "803DBD3C": "JPADrawExecRegisterPrmAlphaAnm", + "803DBD4C": "JPADrawExecRegisterPrmColorAnm", + "803DBD5C": "JPADrawExecSetLineWidth", + "803DBD6C": "JPADrawExecSetPointSize", + "803DBD7C": "JPADrawExecLoadTexture", + "803DBDA0": "JPADrawExecLoadDefaultTexture", + "803DBDB0": "JPADrawExecSetTexMtx", + "803DBDD4": "JPADrawExecGenIdtMtx", + "803DBDE4": "JPADrawExecGenTexMtx0", + "803DBDF4": "JPADrawExecGenPrjTexMtx", + "803DBE04": "JPADrawExecGenPrjMtx", + "803DBE14": "JPADrawExecLoadExTex", + "803DBE28": "JPAExTexShape", + "803DBE34": "JPADataBlock", + "803DBE40": "JPAKeyFrameAnime", + "803DBE4C": "JPAEmitterLoader", + "803DBE58": "JPAEmitterLoader_v10", + "803DBF10": "JPABaseShape", + "803DBF20": "JPAExtraShape", + "803DBF30": "JPASweepShape", + "803DBF40": "JPATexture", + "803DBF50": "JStage::TAmbientLight", + "803DBF88": "JStage::TCamera", + "803DC010": "JStage::TActor", + "803DC078": "JStage::TLight", + "803DC0D8": "JStage::TObject", + "803DC108": "JStage::TSystem", + "803D1DE8": "TDLColorTexQuad", + "803D1E08": "TDLTexQuad", + "803D1E28": "TSilhouette", + "803D1E50": "TLightWithDBSetManager", + "803D1E74": "TIndirectLightWithDBSet", + "803D1E9C": "TMapObjectLightWithDBSet", + "803D1EC4": "TObjectLightWithDBSet", + "803D1EEC": "TPlayerLightWithDBSet", + "803D1F14": "TLightWithDBSet", + "803D1F3C": "TLightDrawBuffer", + "803D1F64": "TLightMario", + "803D1F98": "TLightShadow", + "803D1FCC": "TLightCommon", + "803D2830": "TParamT>", + "803D283C": "TMtxSwingRZReverseXZ", + "803D2848": "TParamVec", + "803D2854": "TMtxSwingRZ", + "803D2860": "TMtxTimeLag", + "803D286C": "TMtxEffectBase", + "803D2878": "TScreenTexture", + "803D289C": "TAfterEffect", + "803D28FC": "TMBindShadowManager", + "803D2974": "TMBindShadowManager::TSetup5$2216ShadowUtil_cpp", + "803D2984": "TMBindShadowManager::TSetup4$2207ShadowUtil_cpp", + "803D2994": "TMBindShadowManager::TSetup3$2195ShadowUtil_cpp", + "803D29A4": "TMBindShadowManager::TSetup2$2190ShadowUtil_cpp", + "803D29B4": "TMBindShadowManager::TCylinder$2171ShadowUtil_cpp", + "803D29C4": "TMBindShadowManager::TSetup1$2172ShadowUtil_cpp", + "803D3320": "TGDLStatic", + "803D3330": "TGDLStatic::TGDLSentinel", + "803D3340": "Koga::ToolData", + "803D335C": "M3UMtxCalcSIAnmBlendQuat", + "803D33A0": "M3UModel", + "803D33C4": "M3UModelCommon", + "803D33D0": "MActorAnmEach", + "803D33F8": "MActorAnmMatEach", + "803D3420": "MActorAnmEach", + "803D3448": "MActorAnmMatEach", + "803D3470": "MActorAnmEach", + "803D3498": "MActorAnmMatEach", + "803D34C0": "MActorAnmEach", + "803D34E8": "MActorAnmMatEach", + "803D3510": "MActorAnmEach", + "803D3538": "MActorAnmEach", + "803D3560": "MActorAnmBlk", + "803D3588": "MActorAnmBrk", + "803D35B0": "MActorAnmBpk", + "803D35D8": "MActorAnmBtk", + "803D3600": "MActorAnmBtp", + "803D3628": "MActorAnmBck", + "803D3650": "MActorAnmBase", + "803D3688": "SDLModel", + "803D36A8": "SDLMatPacket", + "803D36C0": "SampleCtrlJoint", + "803D36CC": "SampleCtrlMaterial", + "803D36D8": "SampleCtrlShape", + "803D36E8": "SampleCtrlModelData", + "803D6430": "TBaseParam", + "803D6468": "TMarioParticleManager", + "803D64B0": "TMarioEmitterCallBackBindToSRTMtxPtr", + "803D64C4": "TMarioEmitterCallBackBindToMtxPtr", + "803D64D8": "TMarioEmitterCallBackBindToPosPtr", + "803D64EC": "TEmitterIndirectViewObj", + "803D6510": "TEmitterViewObj", + "803D6534": "JPACallBackBase", + "803D6548": "TEventWatcher", + "803D6570": "TSpcTypedInterp", + "803D6584": "TSpcTypedBinary", + "803D6670": "TGCLogoDir", + "803D66DC": "TNintendo2D", + "803D6700": "TGXAlphaUpdate", + "803D6724": "TReInitGX", + "803D6748": "TSMSDrawInit", + "803D676C": "TJ3DSysSetViewMtx", + "803D6790": "TJ3DSysFlag", + "803D68A8": "TMarDirector", + "803D6918": "TMarNameRefGen", + "803D6928": "TNameRefAryT", + "803D6948": "TNameRefPtrAryT\\,JDrama::TNameRef>", + "803D6968": "TNameRefAryT", + "803D6988": "TNameRefAryT", + "803D69A8": "TNameRefAryT", + "803D69C8": "TCubeManagerFast", + "803D69EC": "TCubeManagerArea", + "803D6A10": "TCubeManagerMarioIn", + "803D6A38": "TMenuDirector", + "803D6AA8": "TPerformList", + "803D6B38": "TSnapTimeObj", + "803D6B60": "TTalkCursor", + "803D6B88": "TAlphaCatch", + "803D6BAC": "TZBufferCatch", + "803D6D58": "TMarioGamePad", + "803D6D70": "TScenarioArchiveName", + "803D6D90": "TStageEventInfo", + "803D6E10": "TStagePositionInfo", + "803D6E30": "TTimeRec", + "803D6E40": "TTHPRender", + "803D6E68": "TNameKuriLauncherManager", + "803D6EBC": "THamuKuriLauncherManager", + "803D6F10": "TCasinoRoulette", + "803D7078": "TSirenaGate", + "803D71E0": "TMareWManager", + "803D7238": "TMareMManager", + "803D73B8": "TMovieDirector", + "803D7660": "MSSTageSimpleEnvironment", + "803D7674": "MSStageCubeSwitch", + "803D7688": "MSStageCubeFadeMonte", + "803D76B0": "MSStageCubeFade", + "803D76C4": "MSStageDistFadeMonte", + "803D76D8": "MSStageDistFade", + "803D76EC": "MSStage", + "803D7700": "TTargetArrow", + "803D14A8": "TLiveActor", + "803D1758": "TLiveManager", + "803D1798": "TObjManager", + "803D17EC": "TObjChara", + "803D1BD0": "TSpcInterp", + "803D1BE4": "TSpcStack", + "803D1BF0": "TSpcStack", + "803D1BFC": "TSpcBinary", + "803D1C10": "TStrategy", + "803D1C34": "TIdxGroupObj", + "803D1C90": "TQuestionManager", + "803D1CB8": "TSMSSmplChara", + "803D1CE0": "THitActor", + "803D1D88": "TBinder", + "803D1D98": "TSharedParts", + "803D1DC0": "TMirrorActor", + "803D36F8": "M3UModelMario", + "803D3720": "TMarioCap", + "803D4A7C": "TWarpInCallBack", + "803D4AB4": "TBubbleCallBack", + "803D4AC8": "TSplashManager", + "803D4AF0": "TYoshiTongue", + "803D4C80": "TWaterGun", + "803D4CB0": "TNozzleDeform", + "803D4CD8": "TNozzleTrigger", + "803D4D00": "TNozzleBase", + "803D4D70": "TMarioEffect", + "803D4E40": "TMario", + "803D61CC": "TModelWaterManager", + "803D6318": "TMarioPositionObj", + "803CFC38": "TBaseNPC", + "803CFEE0": "TSunflowerSManager", + "803CFF70": "TMareWBaseManager", + "803CFFC8": "TMareMBaseManager", + "803D0020": "TMonteWBManager", + "803D0078": "TMonteWAManager", + "803D00D0": "TMonteWManager", + "803D0128": "TMonteMEManager", + "803D0180": "TMonteMDManager", + "803D01D8": "TMonteMCManager", + "803D0230": "TMonteMBManager", + "803D0288": "TMonteMAManager", + "803D02E0": "TMonteMManager", + "803D0338": "TSunflowerLManager", + "803D0390": "TRaccoonDogManager", + "803D03E8": "TPeachManager", + "803D0440": "TKinojiiManager", + "803D0498": "TKinopioManager", + "803D04F0": "TMareWBManager", + "803D0548": "TMareWAManager", + "803D05A0": "TMareMDManager", + "803D05F8": "TMareMCManager", + "803D0650": "TMareMBManager", + "803D06A8": "TMareMAManager", + "803D0700": "TMonteWCManager", + "803D0758": "TMonteMHManager", + "803D07B0": "TMonteMGManager", + "803D0808": "TMonteMFManager", + "803D0860": "TMonteWSpecialManager", + "803D08B8": "TMonteMSpecialManager", + "803D0910": "TMonteWBaseManager", + "803D0968": "TMonteMBaseManager", + "803D09C0": "TMareBaseManager", + "803D0A18": "TNPCManager", + "803D0A70": "TMareJellyFishManager", + "803D0AA0": "TBoardNpcManager", + "803D0AE0": "TNerveNPCMareStand", + "803D0AF0": "TNerveNPCBlown", + "803D0B00": "TNerveNPCMad", + "803D0B10": "TNerveNPCThrow", + "803D0B20": "TNerveNPCTalk", + "803D0B30": "TNerveNPCSetPosAfterSinkBottom", + "803D0B40": "TNerveNPCRecoverAfter", + "803D0B50": "TNerveNPCRecoverFromSink", + "803D0B60": "TNerveNPCSink", + "803D0B70": "TNerveNPCWet", + "803D0B80": "TNerveNPCTurnToMario", + "803D0B90": "TNerveNPCWaitMarioApproach", + "803D0BA0": "TNerveNPCWaitContinue", + "803D0BB0": "TNerveNPCGraphWait", + "803D0BC0": "TNerveNPCUTurn", + "803D0BD0": "TNerveNPCGraphWander", + "803A47C0": "MAnmSoundNPC", + "803A47E0": "MAnmSound", + "803A4840": "MSound", + "803A4990": "MSoundSESystem::MSRandPlay", + "803A4A28": "MSSetSoundTL", + "803A4A40": "MSSetSoundGrp", + "803A4A58": "MSoundSESystem::MSRandVol", + "803A4A64": "JALListFrameLoop", + "803A4A70": "MSSetSoundTL", + "803A4A88": "MSSetSound", + "803A4AA0": "JALListFrameLoop", + "803A4D6C": "MSHandle", + "803BA0C8": "TWoodBarrel", + "803BA2A8": "TMapObjBase", + "803C0310": "TMapObjGeneral", + "803C0538": "TMapObjBaseManager", + "803C0578": "TMerryPole", + "803C06DC": "TMapObjManager", + "803C0720": "TMapObjTurn", + "803C0894": "TMapObjMessenger", + "803C09B0": "TNozzleBox", + "803C0C1C": "TItemNozzle", + "803C0E00": "TEggYoshi", + "803C0FDC": "TShine", + "803C11C0": "TCoinBlue", + "803C13A4": "TCoinRed", + "803C1588": "TCoinEmpty", + "803C176C": "TFlowerCoin", + "803C1950": "TCoin", + "803C1B34": "TItem", + "803C1D18": "TItemManager", + "803C1D58": "TBasketReverse", + "803C1EBC": "TRedCoinSwitch", + "803C2020": "TMapObjSwitch", + "803C2184": "THideObjInfo", + "803C2228": "TMapObjWaterSpray", + "803C238C": "TDamageObj", + "803C2430": "TMapObjStartDemo", + "803C2594": "TMapObjChangeStageHipDrop", + "803C26F8": "TMapObjChangeStage", + "803C285C": "TMapObjBillboard", + "803C29CC": "TManhole", + "803C2BA8": "TDoor", + "803C2D10": "TSuperHipDropBlock", + "803C2E80": "TTelesaBlock", + "803C2FE4": "TJuiceBlock", + "803C3148": "TBrickBlock", + "803C32B8": "TIceBlock", + "803C341C": "TLeanBlock", + "803C3584": "TSandBlock", + "803C36E8": "TBreakableBlock", + "803C38C8": "TWoodLog", + "803C3A30": "TBellWatermill", + "803C3BA4": "TBiancoBell", + "803C3D08": "TLampSeesawMain", + "803C3E70": "TLampSeesaw", + "803C3FD8": "TLeafBoatRotten", + "803C413C": "TLeafBoat", + "803C42A0": "TBiancoMiniWindmill", + "803C4410": "TBiancoWatermillVertical", + "803C4574": "TBiancoWatermill", + "803C46D8": "TMapObjRootPakkun", + "803C483C": "TBigWindmill", + "803C49A0": "TPictureTelesa", + "803C4B1C": "TPanelRevolve", + "803C4C80": "TChestRevolve", + "803C4DE4": "TWarpAreaActor", + "803C4E88": "TSirenaCasinoRoof", + "803C4FEC": "TSirenabossWall", + "803C5150": "TSakuCasino", + "803C52B4": "TCloset", + "803C5424": "TDonchou", + "803C5588": "TCasinoPanelGate", + "803C56F8": "TItemSlotDrum", + "803C586C": "TSlotDrum", + "803C59E0": "TRoulette", + "803C5B48": "TRouletteSw", + "803C5BF0": "TFruitLauncher", + "803C5D54": "TFruitSwitch", + "803C5EB8": "TSurfGesoObj", + "803C609C": "TRiccoWatermill", + "803C6200": "TCraneCargo", + "803C6368": "TCraneUpDown", + "803C64CC": "TCraneRotY", + "803C6630": "TSandEgg", + "803C67B8": "TMammaMirrorMapOperator", + "803C67DC": "TGoalWatermelon", + "803C6AA4": "TSandBird", + "803C6C14": "TMammaYacht", + "803C6D78": "TMammaBlockRotate", + "803C6EDC": "TShiningStone", + "803C6F80": "TLeanMirror", + "803C70E4": "TSandCastle", + "803C7268": "TSandBombBase", + "803C73EC": "TSandBomb", + "803C7550": "TSandLeafBase", + "803C76BC": "TSandBase", + "803C7828": "TSandLeaf", + "803C7990": "TPinnaCoaster", + "803C7AF4": "TAmiKing", + "803C7C58": "TWaterRecoverObj", + "803C7DBC": "TPinnaEntrance", + "803C7F20": "TBalloonKoopaJr", + "803C80FC": "TChangeStageMerrygoround", + "803C8260": "TMerrygoround", + "803C83C4": "TShellCup", + "803C8528": "TPinnaShell", + "803C85CC": "TViking", + "803C8734": "THorizontalViking", + "803C889C": "TFerrisWheel", + "803C8A00": "TGateShadow", + "803C8A28": "TMareEventPoint", + "803C8ACC": "TMareCork", + "803C8C30": "TMareFall", + "803C8D94": "TMuddyBoat", + "803C8EF8": "TMapObjPuncher", + "803C905C": "TWireBell", + "803C91C0": "TMapObjGrowTree", + "803C9324": "TMapObjElasticCode", + "803C9488": "TCogwheel", + "803C95EC": "TCogwheelScale", + "803C9750": "TMapObjFlagManager", + "803C9774": "TMapObjFlag", + "803C9820": "TMapObjWave", + "803C9848": "TMapObjFloatOnSea", + "803C99B0": "TSandPlane", + "803C9AAC": "TRockPlane", + "803C9BA8": "TMapObjPlane", + "803C9CA8": "TRideCloud", + "803C9E18": "TBigWatermelon", + "803CA040": "TCoverFruit", + "803CA1A4": "TRandomFruit", + "803CA394": "TResetFruit", + "803CA584": "TMapObjBall", + "803CA778": "TAirportEventSink", + "803CA7CC": "TAirportSwitch", + "803CA9A8": "TTurboNozzleDoor", + "803CAB0C": "TDemoCannon", + "803CAC70": "TMareGate", + "803CADD4": "TMapObjSmoke", + "803CAF44": "TDptMonteFence", + "803CB0A8": "TBellDolpic", + "803CB20C": "TMonumentShine", + "803CB370": "TMapObjRevivalPollution", + "803CB394": "TPolluterBase", + "803CB4F8": "TMapObjGrassManager", + "803CB51C": "TMapObjGrassGroup", + "803CB5C0": "TMapObjPoleManager", + "803CB5E8": "TMapObjWaterFilter", + "803CB688": "TMapObjSeaIndirect", + "803CB78C": "TModelGate", + "803CB918": "TRailFence", + "803CBA7C": "TFenceWaterH", + "803CBBE8": "TFenceWater", + "803CBD54": "TRevolvingFenceInner", + "803CBEB8": "TRevolvingFenceOuter", + "803CC01C": "TFence", + "803CC180": "TFileLoadBlock", + "803CC2E4": "TMapObjOptionWall", + "803CC388": "TWoodBlock", + "803CC4F8": "TRollBlock", + "803CC65C": "TRailBlock", + "803CC7CC": "TNormalLift", + "803CC93C": "TRailMapObj", + "803CCAB0": "TFluffManager", + "803CCC14": "TFluff", + "803CCD78": "TGoalFlag", + "803CCEDC": "TSwingBoard", + "803CD040": "THangingBridge", + "803CD064": "THangingBridgeBoard", + "803CD1CC": "TJumpMushroom", + "803CD330": "TMapObjMonteRoot", + "803CD498": "TMapObjTreeScale", + "803CD674": "TMapObjTree", + "803CD850": "TMapObjSteam", + "803CD9C0": "TJointCoin", + "803CDB30": "TMapObjNail", + "803CDCA0": "TPool", + "803CDE04": "TPoolManager", + "803CDE48": "TBathtub", + "803CDFAC": "TBathtubGrip", + "803CE110": "TBathtubGripPartsHard", + "803CE20C": "TBathtubGripPartsFragile", + "803CE308": "TBathtubGripParts", + "803CE408": "TJumpBase", + "803CE56C": "TMushroom1up", + "803CE6D0": "TWoodBox", + "803CE840": "TBreakHideObj", + "803CE9B0": "THideObjPictureTwin", + "803CEB2C": "TWaterHitPictureHideObj", + "803CECA8": "THipDropHideObj", + "803CEE18": "TFruitBasketEvent", + "803CEF90": "TFruitBasket", + "803CF108": "TFruitHitHideObj", + "803CF27C": "TWaterHitHideObj", + "803CF3EC": "THideObj", + "803CF55C": "THideObjBase", + "803CF6D0": "TLampTrapIron", + "803CF834": "TLampTrapIronHit", + "803CF8D8": "TLampTrapSpike", + "803CFA3C": "TLampTrapSpikeHit", + "803B8DB8": "TJointModel", + "803B8DF0": "TJointModelManager", + "803B8E18": "TJointObj", + "803B8E40": "TMap", + "803B8EA8": "TBGCheckListWarp", + "803B8EB4": "TBGCheckList", + "803B8EC0": "TMapCollisionWarp", + "803B8EE4": "TMapCollisionMove", + "803B8F08": "TMapCollisionStatic", + "803B8F2C": "TMapCollisionBase", + "803B8F50": "TMapDrawWall", + "803B8F78": "TMapEvent", + "803B8FB8": "TMapEventSinkShadowMario", + "803B900C": "TMapEventSinkBianco", + "803B9060": "TMapEventSinkInPollutionReset", + "803B90B4": "TMapEventSinkInPollution", + "803B9108": "TMapEventSink", + "803B9160": "TMirrorMapDrawBuf", + "803B9184": "TMirrorModelManager", + "803B91A8": "TMirrorModelObj", + "803B91C4": "TMirrorModel", + "803B91E0": "TMirrorCamera", + "803B92BC": "TMapModel", + "803B92F0": "TMapModelManager", + "803B9318": "TMapObjSoundGroup", + "803B9358": "TMapModelActor", + "803B93FC": "TMapStaticObj", + "803B94A0": "TMapWireManager", + "803B94C4": "TMapWireActor", + "803B9578": "TPollutionCounterBase", + "803B958C": "TPollutionCounterObj", + "803B95A0": "TPollutionCounterLayer", + "803B9634": "TPollutionManager", + "803B9678": "TPollutionLayerWallMinusX", + "803B96D4": "TPollutionLayerWallMinusZ", + "803B9730": "TPollutionObj", + "803B9758": "TShimmer", + "803B97F8": "TSky", + "803B9898": "TMapEventSirenaSink", + "803B9948": "TPollutionLayer", + "803B99A4": "TPollutionLayerWallBase", + "803B9A00": "TPollutionLayerWallPlusX", + "803B9A5C": "TPollutionLayerWallPlusZ", + "803B9AB8": "TPollutionLayerWave", + "803B9B18": "TPollutionTest", + "803B9B40": "TMarineSnow", + "803B9BE0": "TDolpicEventRiccoMammaGate", + "803B9C20": "TDolpicEventBiancoGate", + "803B9C60": "TMareEventBumpyWall", + "803B9DE4": "TMareEventDepressWall", + "803B9E08": "TMareEventWallRock", + "803B9E2C": "TMareWallRock", + "803B9F88": "TBathWaterManager", + "803B9FAC": "TBathWater", + "803BA050": "TBathWaterMeshRenderer", + "803BA064": "TBathWaterRenderer", + "803BA078": "TBathWaterPreprocessor", + "803BA0A0": "TStickyStainManager", + "803B74D8": "TFlashPane", + "803B74FC": "TMenuPlane", + "803B7520": "TMenuBase", + "803B7548": "TSMSFader", + "803B7884": "TGCConsole2", + "803B7948": "TTalk2D2", + "803B7AD0": "TPauseMenu2", + "803B7AF8": "TSwitchHelpActor", + "803B7BA0": "THelpActor", + "803B7D20": "TCardSave", + "803B8108": "TCardLoad", + "803B83E8": "TConsoleStr", + "803B85C8": "TSelectMenu", + "803B8638": "TSelectGrad", + "803B8674": "TSelectDir", + "803B8710": "TSelectShine", + "803B8720": "TSelectShineManager", + "803B8748": "TBlendPane", + "803B87D0": "TGuide", + "803B8828": "TSunShine", + "803B8850": "TSunGlass", + "803B8878": "TShineFader", + "803B88E4": "TProgSelect", + "803B8C60": "TMovieSubTitle", + "803B8D90": "TMovieRumble", + "803A5CD8": "TConductor", + "803A5D60": "TEffectExplosion", + "803A5E74": "TEffectModelManager", + "803A5EC8": "TEffectExplosionManager", + "803A5F1C": "TEffectColumSand", + "803A6030": "TEffectColumSandManager", + "803A6084": "TEffectBombColumWater", + "803A6198": "TEffectBombColumWaterManager", + "803A61EC": "TEffectColumWater", + "803A6300": "TEffectColumWaterManager", + "803A6354": "TEffectModel", + "803A6468": "TEffectObjManager", + "803A648C": "TEffectObjBase", + "803A6540": "TEffectBiancoFunsui", + "803A65E4": "TEffectPinnaFunsui", + "803A6688": "TSimpleEffect", + "803A6730": "TEMarioManager", + "803A6784": "TEMario", + "803A6898": "TSpineEnemy", + "803A69AC": "TSolidStack_const*>", + "803A69B8": "TSpineBase", + "803A69C8": "TSolidStack", + "803A69D8": "TEnemyPolluteModel", + "803A6A00": "TEnemyPolluteModelManager", + "803A6A28": "TEnemyAttachment", + "803A6B80": "TEnemyManager", + "803A72A4": "TEnemyMario", + "803A764C": "TNerveGessoTurn", + "803A765C": "TNerveGessoLand", + "803A766C": "TNerveGessoFindMario", + "803A767C": "TNerveGessoRolling", + "803A768C": "TNerveGessoFall", + "803A769C": "TNerveGessoPollute", + "803A76AC": "TNerveGessoPunch", + "803A76BC": "TNerveGessoFreeze", + "803A76CC": "TNerveGessoStay", + "803A76DC": "TGessoPolluteObj", + "803A7824": "TLandGesso", + "803A79DC": "TSurfGesso", + "803A7B94": "TGesso", + "803A7D4C": "TGessoManager", + "803A7DA4": "TGessoPolluteModel", + "803A7DCC": "TGessoPolluteModelManager", + "803A7EFC": "TGraphWeb", + "803A7FCC": "TNerveDoroHanePrepareAttack", + "803A7FDC": "TNerveDoroHaneHitWater", + "803A7FEC": "TNerveDoroHaneRise", + "803A7FFC": "TNerveFireHamuKuriRecover", + "803A800C": "TNerveDoroHamuKuriRobCap", + "803A801C": "TNerveHaneHamuKuriMoveOnGraph", + "803A802C": "TNerveHaneHamuKuriUpWait", + "803A803C": "TNerveDangoHamuKuriWait", + "803A804C": "TNerveHamuKuriJitabata", + "803A805C": "TNerveHamuKuriLand", + "803A806C": "TNerveHamuKuriWallDie", + "803A807C": "TNerveHamuKuriBoundFreeze", + "803A808C": "TNerveHamuKuriGoForSearchActor", + "803A809C": "TDoroHamuKuri", + "803A8264": "TFireHamuKuri", + "803A842C": "TBossDangoHamuKuri", + "803A85F4": "TDangoHamuKuri", + "803A87BC": "THaneHamuKuri2", + "803A8984": "TDoroHaneKuri", + "803A8B4C": "THaneHamuKuri", + "803A8D14": "THamuKuri", + "803A8EDC": "TDoroHamuKuriManager", + "803A8F34": "TDoroHige", + "803A8F58": "TFireHamuKuriManager", + "803A8FB0": "TBossDangoHamuKuriManager", + "803A9008": "TDangoHamuKuriManager", + "803A9060": "TDoroHaneKuriManager", + "803A90B8": "THaneHamuKuriManager", + "803A9110": "THamuKuriManager", + "803A9168": "THamuKuriLauncher", + "803A92E4": "TNerveMameGessoWait", + "803A92F4": "TNerveMameGessoObject", + "803A9304": "TNerveMameGessoThrown", + "803A9314": "TNerveMameGessoPickUp", + "803A9324": "TNerveMameGessoTrample", + "803A9334": "TNerveMameGessoJitabata", + "803A9344": "TNerveMameGessoDamage", + "803A9354": "TNerveMameGessoGraphJumpWander", + "803A9364": "TMameGesso", + "803A951C": "TMameGessoManager", + "803A95B0": "TNerveNKFollowMario", + "803A95D0": "TDiffusionNameKuri", + "803A9788": "TNerveNameKuriDrawPollute", + "803A9798": "TNerveNameKuriDiffuse", + "803A97A8": "TNerveNameKuriExplosion", + "803A97B8": "TNerveNameKuriJumpAttackPrepare", + "803A97C8": "TNerveNameKuriJumpAttack", + "803A97D8": "TNerveNameKuriLand", + "803A97E8": "TDiffusionNameKuriManager", + "803A9840": "TNameKuri", + "803A99F8": "TNameIndParCallback", + "803A9A08": "TNameKuriManager", + "803A9A60": "TNameKuriLauncher", + "803A9BD0": "TNerveStayPakkunAppear", + "803A9BE0": "TNerveStayPakkunHide", + "803A9BF0": "TNervePakkunFreeze", + "803A9C00": "TNervePakkunShoot", + "803A9C10": "TNervePakkunHide", + "803A9C20": "TNervePakkunAppear", + "803A9C30": "TNervePakkunStay", + "803A9C40": "TNervePakkunGenerate", + "803A9C50": "TStayPakkun", + "803A9E00": "TPakkunSeed", + "803A9F48": "TPakkun", + "803AA0F8": "TPakkunManager", + "803AA168": "TNerveSmallEnemyChange", + "803AA178": "TNerveSmallEnemyWait", + "803AA188": "TNerveSmallEnemyHitWaterJump", + "803AA198": "TNerveSmallEnemyJump", + "803AA1A8": "TNerveSmallEnemyFreeze", + "803AA1B8": "TNerveSmallEnemyDie", + "803AA1C8": "TSmallEnemy", + "803AA370": "TSmallEnemyManager", + "803AA3C8": "TSpider", + "803AA3D8": "TNerveTypicalGraphWander", + "803AA3E8": "TTypicalManager", + "803AA43C": "TTypicalEnemy", + "803AA550": "TWalker", + "803AA560": "TSolidStack", + "803AA570": "TNerveWalkerTraceMario", + "803AA580": "TNerveWalkerEscape", + "803AA590": "TNerveWalkerPostAttack", + "803AA5A0": "TNerveWalkerAttack", + "803AA5B0": "TNerveWalkerGraphWander", + "803AA5C0": "TNerveWalkerGenerate", + "803AA5D0": "TWalkerEnemy", + "803AA7F8": "TNerveBGRoll", + "803AA848": "TNerveBGPolDrop", + "803AA858": "TNerveBGPollute", + "803AA868": "TNerveBGDie", + "803AA878": "TNerveBGTug", + "803AA888": "TNerveBGTentacleDamage", + "803AA898": "TNerveBGBeakDamage", + "803AA8A8": "TNerveBGEyeDamage", + "803AA8B8": "TNerveBGWait", + "803AA8C8": "TBossGessoManager", + "803AA91C": "TBossGesso", + "803AAA30": "TBGBinder", + "803AAA40": "TBossGessoMtxCalc", + "803AAA84": "TBGBodyHit", + "803AAB28": "TBGEyeHit", + "803AABCC": "TBGBeakHit", + "803AACE0": "TNerveElecCarapaceReturn", + "803AACF0": "TNerveElecCarapaceWait", + "803AAD00": "TNerveElecCarapaceMove", + "803AAD10": "TNerveElecNokonokoAttack", + "803AAD20": "TNerveElecNokonokoRebirth", + "803AAD30": "TNerveElecNokonokoFreeze", + "803AAD40": "TNerveElecNokonokoTurn", + "803AAD50": "TNerveElecNokonokoCollect", + "803AAD60": "TNerveElecNokonokoShoot", + "803AAD70": "TElecCarapace", + "803AAEB8": "TElecNokonoko", + "803AB074": "TElecNokonokoManager", + "803AB11C": "TNerveKageMarioModokiWait", + "803AB160": "TKageMarioModoki", + "803AB318": "TKageMarioModokiManager", + "803AB370": "TNerveTelesaTrample", + "803AB380": "TNerveTelesaAttackMario", + "803AB390": "TNerveTelesaFreeze", + "803AB3A0": "TNerveTelesaDie", + "803AB3B0": "TNerveTelesaImitate", + "803AB3C0": "TMarioModokiTelesa", + "803AB578": "TBoxTelesa", + "803AB730": "TLoopTelesa", + "803AB8E8": "TSeeTelesa", + "803ABAA0": "TTelesa", + "803ABC58": "TTelesaManager", + "803ABCE8": "TNerveFireWanwanEscape", + "803ABCF8": "TNerveFireWanwanFreeze", + "803ABD08": "TNerveFireWanwanFly", + "803ABD18": "TNerveFireWanwanHungTail", + "803ABD28": "TNerveFireWanwanDie", + "803ABD38": "TNerveFireWanwanRecover", + "803ABD48": "TNerveFireWanwanRecoverGraph", + "803ABD58": "TNerveFireWanwanTired", + "803ABD68": "TNerveFireWanwanAttack", + "803ABD78": "TNerveFireWanwanFindMario", + "803ABD88": "TNerveFireWanwanTurn", + "803ABD98": "TNerveFireWanwanGraphWander", + "803ABDA8": "TFireWanwan", + "803ABF50": "TFireWanwanTailHit", + "803AC004": "TFireWanwanManager", + "803AC060": "TStageEnemyInfo", + "803AC080": "TStageEnemyInfoTable", + "803AC0A0": "TNameRefPtrAryT", + "803AC0C0": "TOneShotGenerator", + "803AC164": "TGenerator", + "803AC200": "TNerveBPCannonL", + "803AC210": "TNerveBPWaitL", + "803AC220": "TNerveBPBreakSleep", + "803AC230": "TNerveBPSleep", + "803AC240": "TNerveBPFall", + "803AC250": "TNerveBPHover", + "803AC260": "TNerveBPFlyPivot", + "803AC270": "TNerveBPFlyCannon", + "803AC280": "TNerveBPTouchDown", + "803AC290": "TNerveBPFly", + "803AC2A0": "TNerveBPTakeOff", + "803AC2B0": "TNerveBPDie", + "803AC2C0": "TNerveBPPreDie", + "803AC2D0": "TNerveBPJumpReact", + "803AC2E0": "TNerveBPStompReact", + "803AC2F0": "TNerveBPSwing", + "803AC300": "TNerveBPGetUp", + "803AC310": "TNerveBPTumbleOut", + "803AC320": "TNerveBPTumble", + "803AC330": "TNerveBPTumbleIn", + "803AC340": "TNerveBPSwallow", + "803AC350": "TNerveBPPivot", + "803AC360": "TNerveBPTornado", + "803AC370": "TNerveBPVomit", + "803AC380": "TNerveBPCannon", + "803AC390": "TNerveBPWait", + "803AC3A0": "TBossPakkunManager", + "803AC3F4": "TBossPakkun", + "803AC508": "TBossPakkunMtxCalc", + "803AC54C": "TBPNavel", + "803AC5F0": "TBPHeadHit", + "803AC694": "TBPTornado", + "803AC738": "TBPVomit", + "803AC75C": "TBPPolDrop", + "803AC858": "TNerveTobiPukuSwimWander", + "803AC868": "TNerveTobiPukuReturnLaunch", + "803AC878": "TNerveTobiPukuPrepareFly", + "803AC888": "TNerveTobiPukuBound", + "803AC898": "TNerveTobiPukuLand", + "803AC8A8": "TNerveTobiPukuDie", + "803AC8B8": "TNerveTobiPukuPitiPiti", + "803AC8C8": "TNerveTobiPukuFall", + "803AC8D8": "TNerveTobiPukuHitWater", + "803AC8E8": "TNerveTobiPukuAttack", + "803AC8F8": "TNerveTobiPukuFly", + "803AC908": "TNerveTobiPukuGenerate", + "803AC918": "TMoePuku", + "803ACB18": "TPukuPuku", + "803ACD18": "TTobiPuku", + "803ACF18": "TMoePukuLaunchPad", + "803AD0C4": "TTobiPukuLaunchPad", + "803AD270": "TMoePukuManager", + "803AD2C8": "TTobiPukuManager", + "803AD320": "TMoePukuLaunchPadManager", + "803AD378": "TTobiPukuLaunchPadManager", + "803AD5FC": "TNerveTinKoopaBreak", + "803AD66C": "TNerveTinKoopaDamage", + "803AD67C": "TNerveTinKoopaWait", + "803AD68C": "TTinKoopaManager", + "803AD6E0": "TTinKoopaMtxCalc", + "803AD724": "TTinKoopaPartsBase", + "803AD824": "TTinKoopaFlame", + "803AD8C8": "TTinKoopa", + "803AD9F0": "TCommonLauncherManager", + "803ADA44": "TCommonLauncher", + "803ADB70": "TLauncherManager", + "803ADBC4": "TLauncher", + "803ADD44": "TNerveBWFall", + "803ADEA4": "TNerveBWShake", + "803ADEB4": "TNerveBWJumpAway", + "803ADEC4": "TNerveBWDie", + "803ADED4": "TNerveBWJumpToBath", + "803ADEE4": "TNerveBWWakeup", + "803ADEF4": "TNerveBWStun", + "803ADF04": "TNerveBWJump", + "803ADF14": "TNerveBWBark", + "803ADF24": "TNerveBWRoll", + "803ADF34": "TNerveBWGraphWander", + "803ADF44": "TBossWanwanManager", + "803ADF98": "TBossWanwan", + "803AE0AC": "TBossWanwanMtxCalc", + "803AE0F0": "TBWBinder", + "803AE100": "TBWHit", + "803AE1A4": "TBWPicket", + "803AE258": "TBWLeash", + "803AE27C": "TBWLeashNode", + "803AE36C": "TNerveChuuHanaWait", + "803AE37C": "TNerveChuuHanaJumpPrepare", + "803AE38C": "TNerveChuuHanaAttack", + "803AE39C": "TNerveChuuHanaObject", + "803AE3AC": "TNerveChuuHanaFall2", + "803AE3BC": "TNerveChuuHanaFall", + "803AE3CC": "TNerveChuuHanaRoll", + "803AE3DC": "TNerveChuuHanaStick", + "803AE3EC": "TNerveChuuHanaKeepBalance", + "803AE3FC": "TNerveChuuHanaForceJumped", + "803AE40C": "TNerveChuuHanaWalkOnPanel", + "803AE41C": "TChuuHana", + "803AE5D4": "TChuuHanaAseParCallback", + "803AE5E4": "TChuuHanaManager", + "803AE6A0": "TNerveGorogoroDie", + "803AE6B0": "TNerveGorogoroRollOnGraph", + "803AE6C0": "TGorogoro", + "803AE890": "TGorogoroManager", + "803AE8E8": "TGorogoroPolluteModel", + "803AE910": "TGorogoroPolluteModelManager", + "803AE938": "TNerveIgaigaShootFromCannon", + "803AE948": "TNerveIgaigaWaterHit", + "803AE958": "TNerveIgaigaRollOnGraph", + "803AE968": "TIgaiga", + "803AEB38": "TIgaigaManager", + "803AEB90": "TIgaigaPolluteModel", + "803AEBB8": "TIgaigaPolluteModelManager", + "803AEBE0": "TRollEnemy", + "803AEDE8": "TNervePoihanaTrapped", + "803AEDF8": "TNervePoihanaThrow", + "803AEE08": "TNervePoihanaFreeze", + "803AEE18": "TNervePoihanaSleep", + "803AEE28": "TSleepPoiHana", + "803AEFE0": "TPoiHanaRed", + "803AF198": "TPoiHana", + "803AF350": "TPoiHanaCollision", + "803AF3F4": "TPoiHanaManager", + "803AF4AC": "TNerveTamaNokoWait", + "803AF4BC": "TNerveTamaNokoHitWater", + "803AF4CC": "TNerveTamaNokoSink", + "803AF4DC": "TNerveTamaNokoThrown", + "803AF4EC": "TNerveTamaNokoPickUp", + "803AF4FC": "TNerveTamaNokoDown", + "803AF50C": "TNerveTamaNokoAttack", + "803AF51C": "TNerveTamaNokoSleep", + "803AF52C": "TTamaNoko", + "803AF6E4": "TTamaNokoManager", + "803AF73C": "TTamaNokoFlower", + "803AF7F8": "TNerveBossTelesaFallDemo", + "803AF808": "TBossTelesaKillSmallEnemy", + "803AF8AC": "TNerveBossTelesaFreeze", + "803AF8BC": "TNerveBossTelesaPrepareSlot", + "803AF8CC": "TNerveBossTelesaSpitSlotItem", + "803AF8DC": "TNerveBossTelesaSlotStart", + "803AF8EC": "TNerveBossTelesaAppear", + "803AF8FC": "TNerveBossTelesaHideWait", + "803AF90C": "TNerveBossTelesaHide", + "803AF91C": "TNerveBossTelesaSpit", + "803AF92C": "TNerveBossTelesaDie", + "803AF93C": "TBossTelesa", + "803AFA50": "TTelesaSlot", + "803AFD34": "TBossTelesaTongue", + "803AFDD8": "TBossTelesaBody", + "803AFE7C": "TBossTelesaManager", + "803AFED0": "TNerveBubbleSplit", + "803AFEE0": "TNerveBubbleLive", + "803AFEF0": "TBubble", + "803B00A8": "TBubbleManager", + "803B0100": "TNerveRHGraphWander", + "803B0110": "TRiccoHookManager", + "803B0164": "TRiccoHook", + "803B0278": "THookTake", + "803B03A8": "TNerveBombHeiExplosion", + "803B03F8": "TNerveBombHeiThrown", + "803B0408": "TNerveBombHeiPickUp", + "803B0418": "TNerveBombHeiWaitExplosion", + "803B0428": "TNerveBombHeiWalkExplosion", + "803B0438": "TNerveBombHeiAttack", + "803B0448": "TNerveBombHeiGenerate", + "803B0458": "TBombHei", + "803B0610": "TBombHeiManager", + "803B06C4": "TNerveCannonObject", + "803B06D4": "TNerveCannonDamageDemo", + "803B06E4": "TNerveCannonDamage", + "803B06F4": "TNerveCannonClose", + "803B0704": "TNerveCannonForceBombShoot", + "803B0714": "TNerveCannonShoot", + "803B0724": "TNerveCannonSearch", + "803B0734": "TNerveCannonOpen", + "803B0744": "TCannon", + "803B08F0": "TCannonDom", + "803B0914": "TChorobei", + "803B09B8": "TCannonManager", + "803B0B28": "TNerveBossEelSleepOnBottom", + "803B0B9C": "TNerveBossEelMouthOpenWait", + "803B0BAC": "TNerveBossEelDie", + "803B0BBC": "TNerveBossEelEat", + "803B0BCC": "TNerveBossEelQuickBack", + "803B0BDC": "TNerveBossEelSlowBack", + "803B0BEC": "TNerveBossEelOutWait", + "803B0BFC": "TNerveBossEelAppear", + "803B0C0C": "TNerveBossEelSecondSpin", + "803B0C1C": "TNerveBossEelFirstSpin", + "803B0C2C": "TNerveBossEelWaitAppear", + "803B0C3C": "TBossEel", + "803B0D50": "TBossEelTearsRecoverCollision", + "803B0DFC": "TBossEelBarrierCollision", + "803B0EA8": "TBossEelAwaCollision", + "803B0F54": "TBossEelBodyCollision", + "803B1000": "TBossEelCollision", + "803B10AC": "TBossEelHeartCoin", + "803B10D0": "TBossEelEye", + "803B10F4": "TBossEelVortex", + "803B119C": "TBossEelTooth", + "803B1240": "TBossEelManager", + "803B1294": "TNerveOilBallStay", + "803B12A4": "TOilBall", + "803B13BC": "TNerveBEelTearsSplit", + "803B13CC": "TNerveBEelTearsMarioRecover", + "803B13DC": "TNerveBEelTearsWaterHit", + "803B13EC": "TNerveBEelTearsMoveUp", + "803B13FC": "TNerveBEelTearsGenerate", + "803B140C": "TBEelTears", + "803B1524": "TBEelTearsManager", + "803B1578": "TBEelTearsDrop", + "803B1690": "TNerveKillerExplosion", + "803B16E0": "TKiller", + "803B18A4": "TKillerManager", + "803B18FC": "TNerveFlyEnemyChaseFly", + "803B190C": "TNerveFlyEnemyNormalFly", + "803B191C": "TFlyEnemy", + "803B1AE0": "TBeamManager", + "803B1BCC": "TNerveSamboHeadHitWall", + "803B1BDC": "TNerveSamboHeadRecoverWater", + "803B1BEC": "TNerveSamboHeadHitWater", + "803B1BFC": "TNerveSamboHeadHide", + "803B1C0C": "TNerveSamboHeadAttack", + "803B1C1C": "TNerveSamboHeadAppear", + "803B1C2C": "TSamboHead", + "803B1DE4": "TSamboHeadManager", + "803B1E3C": "TNerveHanaSamboFreeze", + "803B1E4C": "TNerveHanaSamboDie", + "803B1E5C": "TNerveHanaSamboHide", + "803B1E6C": "TNerveHanaSamboAttack", + "803B1E7C": "TNerveHanaSamboWait", + "803B1E8C": "TNerveHanaSamboAppear", + "803B1E9C": "THanaSambo", + "803B2044": "THanaSamboHead", + "803B20E8": "THanaSamboManager", + "803B2140": "TSamboFlower", + "803B2258": "TSamboFlowerManager", + "803B22B0": "TSamboLeaf", + "803B2318": "TNervePopoThrown", + "803B2328": "TNervePopoWait", + "803B2338": "TNervePopoExplosion", + "803B2348": "TNervePopoFly", + "803B2358": "TNervePopoAttack", + "803B2368": "TNervePopoPossessedNozzle", + "803B2378": "TPopo", + "803B2530": "TPopoCollision", + "803B25D4": "TPopoManager", + "803B2630": "TNerveSBH_Fall", + "803B2640": "TNerveSBH_SleepContinue", + "803B2650": "TSleepBossHanachan", + "803B2764": "TSleepBossHanachanManager", + "803B27B8": "TDemoBossHanachan", + "803B28CC": "TDemoBossHanachanManager", + "803B2920": "TNerveFruitsBoatBckTrace", + "803B2930": "TNerveFruitsBoatGraphWander", + "803B2940": "TFruitsBoatManager", + "803B2994": "TFruitsBoat", + "803B2AA8": "TWaterHitActor", + "803B2B8C": "TBossHanachan", + "803B2CA0": "TBossHanachanManager", + "803B2CF8": "TNerveBossHanachanDead", + "803B2D08": "TNerveBossHanachanSnort", + "803B2D18": "TNerveBossHanachanDamage", + "803B2D28": "TNerveBossHanachanGetUp", + "803B2D38": "TNerveBossHanachanDown", + "803B2D48": "TNerveBossHanachanTumble", + "803B2D58": "TNerveBossHanachanGraphWander", + "803B2D68": "TBossHanachanPartsHead", + "803B2EB0": "TFootHitActor", + "803B2F54": "TBossHanachanPartsBody", + "803B30B0": "TNerveAmiNokoFreeze", + "803B30C0": "TNerveAmiNokoDie", + "803B30D0": "TNerveAmiNokoTurn", + "803B30E0": "TNerveAmiNokoWalkOnFence", + "803B30F0": "TAmiNoko", + "803B32A8": "TAmiHit", + "803B334C": "TAmiNokoManager", + "803B33F8": "TNerveBGKLaunchName", + "803B3408": "TBGKObstacle", + "803B34AC": "TNerveBGKLaunchGoro", + "803B34BC": "TNerveBGKDive", + "803B34CC": "TNerveBGKDie", + "803B34DC": "TNerveBGKAwakeDamage", + "803B34EC": "TNerveBGKSleepDamage", + "803B34FC": "TNerveBGKWait2", + "803B350C": "TNerveBGKWait", + "803B351C": "TNerveBGKAppear", + "803B352C": "TNerveBGKSleep", + "803B353C": "TBiancoGateKeeper", + "803B3650": "TBGKMtxCalc", + "803B3694": "TBiancoGateKeeperManager", + "803B36EC": "TGateKeeperBase", + "803B3800": "TGKHitObj", + "803B38A8": "TEggGenManager", + "803B38FC": "TEggGenerator", + "803B3A10": "TNerveSealDie", + "803B3A20": "TNerveSealWait", + "803B3A30": "TNerveSealSleep", + "803B3A40": "TSealManager", + "803B3A94": "TSeal", + "803B3BA8": "TBGPolDrop", + "803B3CBC": "TBGTentacle", + "803B3EE0": "TBGAttackHit", + "803B3F84": "TBGTakeHit", + "803B4038": "TBGTentacleMtxCalc", + "803B4090": "TEffectEnemy", + "803B4248": "TEffectEnemyManager", + "803B42B8": "TNerveHauntLegHaunt", + "803B42C8": "THauntLeg", + "803B4480": "THauntedObject", + "803B4524": "THauntLegManager", + "803B4580": "TAreaCylinderManager", + "803B45A4": "TAreaCylinder", + "803B45C8": "TNerveWireTrapGoWait", + "803B4608": "TNerveWireTrapWait", + "803B4618": "TNerveWireTrapSearch", + "803B4628": "TNerveWireTrapOnewayMoveEnd", + "803B4638": "TNerveWireTrapOnewayMove", + "803B4648": "TNerveWireTrapOnewayMoveStart", + "803B4658": "TNerveWireTrapReturnMove", + "803B4668": "TWireTrapManager", + "803B46BC": "TWireTrap", + "803B4868": "TBossHanachanPartsBase", + "803B4990": "TNerveRocketWait", + "803B49A0": "TNerveRocketFly", + "803B49B0": "TNerveRocketPossessedNozzle", + "803B49C0": "TRocket", + "803B4B68": "TRocketManager", + "803B4BD4": "TNerveKazekunHitWater", + "803B4BE4": "TNerveKazekunWait", + "803B4BF4": "TNerveKazekunDisappear", + "803B4C04": "TNerveKazekunAttack", + "803B4C14": "TNerveKazekunPreAttack", + "803B4C24": "TNerveKazekunTurn", + "803B4C34": "TNerveKazekunAppear", + "803B4C44": "TNerveKazekunSearch", + "803B4C54": "TKazekunManager", + "803B4CAC": "TKazekun", + "803B4EC4": "TBossMantaManager", + "803B4F18": "TBossMantaAdditionalCollision", + "803B4FBC": "TBossManta", + "803B50D0": "TNerveMantaAppearDemo", + "803B50E0": "TNerveMantaDeath", + "803B50F0": "TNerveMantaSpawn", + "803B5100": "TNerveMantaHitWater", + "803B5110": "TNerveMantaMove", + "803B5120": "TWireBinder", + "803B5164": "TNerveYumboFreeze", + "803B5174": "TNerveYumboAttack", + "803B5184": "TNerveYumboAppearing", + "803B5194": "TNerveYumboHiding", + "803B51A4": "TNerveYumboDancing", + "803B51B4": "TYumbo", + "803B535C": "TYumboManager", + "803B53B4": "TYumboSeed", + "803B5484": "TKoopaJrSubmarineManager", + "803B54D8": "TNerveKoopaJrSubmarineLaunchKiller", + "803B54E8": "TNerveKoopaJrSubmarineCannonOpenClose", + "803B54F8": "TNerveKoopaJrSubmarineWait", + "803B5508": "TKoopaJrSubmarine", + "803B561C": "TKoopaJrManager", + "803B5670": "TNerveKoopaJrYahoo", + "803B5680": "TNerveKoopaJrLaunch", + "803B5690": "TNerveKoopaJrDemo", + "803B56A0": "TNerveKoopaJrDamage", + "803B56B0": "TNerveKoopaJrWait", + "803B56C0": "TKoopaJr", + "803B57D4": "TCallbackHitActor", + "803B58E0": "TNerveKumokunPreFly", + "803B58F0": "TSolidStack", + "803B58FC": "TNerveKumokunFly", + "803B590C": "TNerveKumokunPostFreeze", + "803B591C": "TNerveKumokunFreeze", + "803B592C": "TNerveKumokunWait", + "803B593C": "TNerveKumokunSearch", + "803B594C": "TNerveKumokunPostWalk", + "803B595C": "TNerveKumokunWalk", + "803B596C": "TNerveKumokunPreWalk", + "803B597C": "TKumokunManager", + "803B59D4": "TKumokun", + "803B5BBC": "TKoopaManager", + "803B5C4C": "TNerveKoopaTurnR", + "803B5C5C": "TNerveKoopaTurnL", + "803B5C6C": "TNerveKoopaTurn", + "803B5C7C": "TKoopa", + "803B5D90": "TKoopaBody", + "803B5E3C": "TKoopaHead", + "803B5EE8": "TKoopaHand", + "803B5F94": "TKoopaFlame", + "803B6040": "TKoopaParts", + "803B60EC": "TNerveKoopaGetDown", + "803B60FC": "TNerveKoopaGetShowered", + "803B610C": "TNerveKoopaStagger", + "803B611C": "TNerveKoopaProvoke", + "803B612C": "TNerveKoopaFlame", + "803B613C": "TNerveKoopaFall", + "803B614C": "TNerveKoopaTumble", + "803B615C": "TNerveKoopaWait", + "803B6188": "TNerveKukkuRecoverGraph", + "803B6198": "TNerveKukkuPostFall", + "803B61A8": "TNerveKukkuFall", + "803B61B8": "TNerveKukkuGraphWander", + "803B61C8": "TKukku", + "803B6370": "TKukkuManager", + "803B63C8": "TKukkuBall", + "803B648C": "TNerveAmenboHitWater", + "803B649C": "TNerveAmenboWalk", + "803B64AC": "TNerveAmenboPreAttack", + "803B64BC": "TNerveAmenboTurn", + "803B64CC": "TNerveAmenboSearch", + "803B64DC": "TAmenbo", + "803B6684": "TAmenboManager", + "803B673C": "TBathtubPeachManager", + "803B6790": "TNervePeachEscape", + "803B67A0": "TNervePeachStagger", + "803B67B0": "TBathtubPeach", + "803B68F8": "TBathtubKillerManager", + "803B6950": "TNerveBathtubKillerExplosion", + "803B6960": "TNerveBathtubKillerBreak", + "803B6970": "TNerveBathtubKillerStraight", + "803B6980": "TNerveBathtubKillerChaseStraight", + "803B6990": "TNerveBathtubKillerChase", + "803B69A0": "TNerveBathtubKillerWander", + "803B69B0": "TBathtubKiller", + "803B6B90": "TCoasterKillerManager", + "803B6BE8": "TNerveCoasterKillerExplosion", + "803B6BF8": "TCoasterKiller", + "803B6DBC": "TNerveCoasterEnemyWander", + "803B6DCC": "TCoasterEnemy", + "803B6F90": "TNerveDebuTelesaWait", + "803B6FA0": "TDebuTelesaManager", + "803B6FF8": "TDebuTelesa", + "803B71AC": "TNerveTabePukuDrag", + "803B71BC": "TNerveTabePukuDive", + "803B71CC": "TNerveTabePukuBite", + "803B71DC": "TNerveTabePukuAttack", + "803B71EC": "TNerveTabePukuRecoverGraph", + "803B71FC": "TNerveTabePukuFound", + "803B720C": "TNerveTabePukuGraphWander", + "803B721C": "TTabePukuManager", + "803B7274": "TTabePuku", + "803B741C": "TTPHitActor", + "803B74C8": "TBathtubBinder", + "803A5168": "CPolarSubCamera", + "803A5488": "TLensFlare", + "803A54B0": "TLensGlow", + "803A54E0": "TSunMgr", + "803A5520": "TSunModel", + "803A55C0": "TCubeManagerBase", + "803A5608": "TCameraMapTool", + "803A5628": "TCubeStreamInfo", + "803A5648": "TCubeCameraInfo", + "803A5668": "TCubeGeneralInfo", + "803A39E0": "TBoidLeader", + "803A3A28": "TFishoidManager", + "803A3B50": "TFishoid", + "803A3C68": "TFish", + "803A3D20": "TRealoid", + "803A3E38": "TRealoidActor", + "803A3EF0": "TAnimalBase", + "803A4008": "TMewManager", + "803A405C": "TAnimalManagerBase", + "803A40E0": "TNerveAnimalGraphWander", + "803A4114": "TNerveAnimalBirdLanding", + "803A4124": "TNerveAnimalBirdPreLanding", + "803A4134": "TNerveAnimalBirdComeback", + "803A4144": "TNerveAnimalBirdChangeToCoin", + "803A4154": "TNerveAnimalBirdGraphWander", + "803A4164": "TNerveAnimalBirdTakeoff", + "803A4174": "TNerveAnimalBirdWalkOnGround", + "803A4184": "TNerveAnimalBirdActionOnGround", + "803A4194": "TNerveAnimalBirdWaitOnGround", + "803A41A4": "TAnimalBirdManager", + "803A41F8": "TAnimalBird", + "803A4310": "TNerveBeeHiveReset", + "803A4320": "TNerveBeeHiveMarioWaterIn", + "803A4330": "TNerveBeeHiveAttack", + "803A4340": "TNerveBeeHiveBreak", + "803A4350": "TNerveBeeHiveFall", + "803A4360": "TNerveBeeHiveWait", + "803A4370": "TBeeHiveManager", + "803A43C4": "TBeeHive", + "803A44DC": "TBee", + "803A4598": "TButterfloidManager", + "803A45EC": "TButterfloid", + "803A4704": "TButterfly" +} \ No newline at end of file diff --git a/src/sms/vt/mod.rs b/src/sms/vt/mod.rs new file mode 100644 index 0000000..d9545ec --- /dev/null +++ b/src/sms/vt/mod.rs @@ -0,0 +1,21 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +use crate::addr::Addr; +use crate::sms::SMSVersion; +use sup_smsac_derive::match_class_from_json; + +pub fn get_class(ver: SMSVersion, addr: Addr) -> Option<&'static str> { + match ver { + SMSVersion::GMSJ01 => match_class_from_json!("src/sms/vt/GMSJ01.json")(addr.0), + SMSVersion::GMSE01 => match_class_from_json!("src/sms/vt/GMSE01.json")(addr.0), + SMSVersion::GMSP01 => match_class_from_json!("src/sms/vt/GMSP01.json")(addr.0), + SMSVersion::GMSJ0A => match_class_from_json!("src/sms/vt/GMSJ0A.json")(addr.0), + } +} +pub fn get_class_string(ver: SMSVersion, addr: Addr) -> String { + match get_class(ver, addr) { + Some(s) => s.to_string(), + None => format!("({addr})"), + } +} diff --git a/src/sys/mod.rs b/src/sys/mod.rs new file mode 100644 index 0000000..7926b08 --- /dev/null +++ b/src/sys/mod.rs @@ -0,0 +1,5 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +pub mod process; +pub mod shared_memory; diff --git a/src/sys/process.rs b/src/sys/process.rs new file mode 100644 index 0000000..875ebb8 --- /dev/null +++ b/src/sys/process.rs @@ -0,0 +1,65 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +use std::ffi::OsString; +use std::os::windows::ffi::OsStringExt; +use windows::Win32::Foundation::{HANDLE, BOOL}; +use windows::Win32::System::Diagnostics::ToolHelp::{ + CreateToolhelp32Snapshot, + TH32CS_SNAPPROCESS, + PROCESSENTRY32W, + Process32FirstW, + Process32NextW, +}; + +pub struct Process32Iterator { + hsnapshot: HANDLE, + fn_next: unsafe fn(HANDLE, *mut PROCESSENTRY32W) -> BOOL, +} + +// https://learn.microsoft.com/en-us/windows/win32/api/tlhelp32/nf-tlhelp32-createtoolhelp32snapshot +impl Process32Iterator { + pub fn new() -> Self { + Process32Iterator { + hsnapshot: unsafe {CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0).unwrap()}, + fn_next: Process32FirstW, + } + } +} +impl Default for Process32Iterator { + fn default() -> Self { + Self::new() + } +} + +impl Iterator for Process32Iterator { + type Item = PROCESSENTRY32W; + fn next(&mut self) -> Option { + let mut lppe = PROCESSENTRY32W { + dwSize: std::mem::size_of::() as u32, + ..Default::default() + }; + match unsafe {(self.fn_next)(self.hsnapshot, &mut lppe)}.as_bool() { + false => None, + true => { + self.fn_next = Process32NextW; + Some(lppe) + }, + } + } +} + +pub type PidType = usize; +pub trait ProcessInfo { + fn pid(&self) -> PidType; + fn get_name(&self) -> OsString; +} +impl ProcessInfo for PROCESSENTRY32W { + fn pid(&self) -> PidType { + self.th32ProcessID as PidType + } + fn get_name(&self) -> OsString { + let len = self.szExeFile.iter().position(|p| *p==0).unwrap_or(self.szExeFile.len()); + OsString::from_wide(&self.szExeFile[..len]) + } +} diff --git a/src/sys/shared_memory.rs b/src/sys/shared_memory.rs new file mode 100644 index 0000000..458cfd2 --- /dev/null +++ b/src/sys/shared_memory.rs @@ -0,0 +1,66 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +use windows::core::PCSTR; +use windows::Win32::Foundation::{HANDLE, CloseHandle}; +use windows::Win32::System::Memory::{ + OpenFileMappingA, + FILE_MAP_ALL_ACCESS, + MapViewOfFile, + UnmapViewOfFile, + MEMORYMAPPEDVIEW_HANDLE, +}; + +#[derive(Debug)] +pub enum SharedMemoryOpenError { + OpenFileFailure(String), + MapViewFailure(String), + MemoryUninitialized, +} + +pub struct SharedMemory { + h_file_mapping: HANDLE, + h_map_view: MEMORYMAPPEDVIEW_HANDLE, +} +impl SharedMemory { + #[inline] + pub fn get_ptr(&self) -> *mut u8 { + self.h_map_view.0 as *mut u8 + } +} + +impl SharedMemory { + pub fn open(name: &str) -> Result { + let name = name.to_owned() + "\0"; + + // open file mapping + let h_file_mapping = unsafe { + OpenFileMappingA(FILE_MAP_ALL_ACCESS.0, false, PCSTR::from_raw(name.as_ptr())) + .map_err(|e| SharedMemoryOpenError::OpenFileFailure(e.message().to_string()))? + }; + + // create map view + let h_map_view = unsafe { + MapViewOfFile(h_file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, 0).map_err(|e| { + CloseHandle(h_file_mapping); + SharedMemoryOpenError::MapViewFailure(e.message().to_string()) + })? + }; + if h_map_view.is_invalid() { + unsafe {CloseHandle(h_file_mapping)}; + return Err(SharedMemoryOpenError::MemoryUninitialized); + } + + // create SharedMemory successfully + Ok(Self {h_file_mapping, h_map_view}) + } +} + +impl Drop for SharedMemory { + fn drop(&mut self) { + unsafe { + UnmapViewOfFile(self.h_map_view); + CloseHandle(self.h_file_mapping); + } + } +} diff --git a/sup-smsac-derive/Cargo.lock b/sup-smsac-derive/Cargo.lock new file mode 100644 index 0000000..53cd8e3 --- /dev/null +++ b/sup-smsac-derive/Cargo.lock @@ -0,0 +1,76 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "itoa" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" + +[[package]] +name = "proc-macro2" +version = "1.0.63" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "ryu" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" + +[[package]] +name = "serde" +version = "1.0.171" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9" + +[[package]] +name = "serde_json" +version = "1.0.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "sup-smsac-derive" +version = "0.1.0-beta.1" +dependencies = [ + "quote", + "serde_json", + "syn", +] + +[[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 = "unicode-ident" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73" diff --git a/sup-smsac-derive/Cargo.toml b/sup-smsac-derive/Cargo.toml new file mode 100644 index 0000000..df397de --- /dev/null +++ b/sup-smsac-derive/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "sup-smsac-derive" +version = "0.1.0-beta.1" +edition = "2021" +license = "MIT OR Apache-2.0" +repository = "https://github.com/sup39/sup-smsac" + +[lib] +proc-macro = true + +[dependencies] +syn = "1.0" +quote = "1.0" +serde_json = "1.0.103" diff --git a/sup-smsac-derive/src/lib.rs b/sup-smsac-derive/src/lib.rs new file mode 100644 index 0000000..ac61fc6 --- /dev/null +++ b/sup-smsac-derive/src/lib.rs @@ -0,0 +1,109 @@ +/// SPDX-FileCopyrightText: 2023 sup39 +/// SPDX-License-Identifier: MIT OR Apache-2.0 + +use proc_macro::TokenStream; +use quote::quote; +use syn; + +#[proc_macro_derive(DecodeBE)] +pub fn decode_be_derive(input: TokenStream) -> TokenStream { + let ast: syn::DeriveInput = syn::parse(input).expect("Fail to parse input token stream"); + let syn::Data::Struct(data) = &ast.data else { + panic!("Only struct can derives DecodeBE"); + }; + + let type_name = &ast.ident; + let type_generics = &ast.generics; + let type_generics_params = ast.generics.params.iter().map(|e| match e { + syn::GenericParam::Type(ty) => {let ident = &ty.ident; quote! {#ident}}, + syn::GenericParam::Lifetime(ty) => {let lifetime = &ty.lifetime; quote! {#lifetime}}, + syn::GenericParam::Const(ty) => {let ident = &ty.ident; quote! {#ident}}, + }); + let q_impl = quote! {impl #type_generics DecodeBE for #type_name<#(#type_generics_params),*>}; + let fields = match &data.fields { + syn::Fields::Named(fields) => &fields.named, + syn::Fields::Unnamed(fields) => &fields.unnamed, + syn::Fields::Unit => panic!("Unit type cannot derive DecodeBE"), + }; + let q_size = fields.iter().map(|e| { + let ty = &e.ty; + quote! {<#ty>::PACKED_SIZE} + }); + + // TODO empty struct + let mut ty0: Option<&syn::Type> = None; + let q_new_self = match &data.fields { + syn::Fields::Named(_) => { + let q_decode_fields = fields.iter().map(|e| { + let name = &e.ident; + let ty = &e.ty; + let ty_last = ty0; + ty0 = Some(ty); + if let Some(ty0) = ty_last { + quote! {#name: {ptr = ptr.add(#ty0::PACKED_SIZE); <#ty>::decode_be(ptr)}} + } else { + quote! {#name: <#ty>::decode_be(ptr)} + } + }); + quote! { + Self{#(#q_decode_fields),*} + } + }, + syn::Fields::Unnamed(_) => { + let q_decode_fields = fields.iter().map(|e| { + let ty = &e.ty; + let ty_last = ty0; + ty0 = Some(ty); + if let Some(ty0) = ty_last { + quote! {{ptr = ptr.add(#ty0::PACKED_SIZE); <#ty>::decode_be(ptr)}} + } else { + quote! {<#ty>::decode_be(ptr)} + } + }); + quote! { + Self(#(#q_decode_fields),*) + } + }, + syn::Fields::Unit => panic!("Unit type cannot derive DecodeBE"), + }; + quote! { + #q_impl { + const PACKED_SIZE: usize = #(#q_size)+*; + unsafe fn decode_be(ptr: *const u8) -> Self { + let mut ptr: *const u8 = ptr; + #q_new_self + } + } + }.into() +} + +use std::collections::HashMap; +use std::fs::File; +use std::io::BufReader; + +#[proc_macro] +pub fn match_class_from_json(input: TokenStream) -> TokenStream { + let file_name = input.to_string(); + let file_name = if file_name.starts_with('\"') && file_name.ends_with('\"') { + &file_name[1..file_name.len()-1] + } else { + &file_name + }; + // let file = File::open(&file_name).unwrap(); + // let cwd = std::env::current_dir().unwrap(); + let file = File::open(&file_name).expect(&file_name); + let reader = BufReader::new(file); + let vt: HashMap = serde_json::from_reader(reader) + .expect("The JSON file is not in the form of HashMap"); + let entries = vt.iter().map(|e| { + let (addr, name) = e; + let addr = u32::from_str_radix(addr, 16).unwrap(); + quote! {#addr => Some(#name)} + }); + quote! { + |x| match x { + #(#entries),*, + _ => None, + } + }.into() +} diff --git a/www/LICENSE.html b/www/LICENSE.html new file mode 100644 index 0000000..d2fd7c0 --- /dev/null +++ b/www/LICENSE.html @@ -0,0 +1,5660 @@ + + + + + + + +
+
+

Third Party Licenses

+

This page lists the licenses of the projects used in cargo-about.

+
+ +

Overview of licenses:

+ + +

All license text:

+
    +
  • +

    Apache License 2.0

    +

    Used by:

    + +
    +                                 Apache License
    +                           Version 2.0, January 2004
    +                        http://www.apache.org/licenses/
    +
    +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +   1. Definitions.
    +
    +      "License" shall mean the terms and conditions for use, reproduction,
    +      and distribution as defined by Sections 1 through 9 of this document.
    +
    +      "Licensor" shall mean the copyright owner or entity authorized by
    +      the copyright owner that is granting the License.
    +
    +      "Legal Entity" shall mean the union of the acting entity and all
    +      other entities that control, are controlled by, or are under common
    +      control with that entity. For the purposes of this definition,
    +      "control" means (i) the power, direct or indirect, to cause the
    +      direction or management of such entity, whether by contract or
    +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +      outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +      "You" (or "Your") shall mean an individual or Legal Entity
    +      exercising permissions granted by this License.
    +
    +      "Source" form shall mean the preferred form for making modifications,
    +      including but not limited to software source code, documentation
    +      source, and configuration files.
    +
    +      "Object" form shall mean any form resulting from mechanical
    +      transformation or translation of a Source form, including but
    +      not limited to compiled object code, generated documentation,
    +      and conversions to other media types.
    +
    +      "Work" shall mean the work of authorship, whether in Source or
    +      Object form, made available under the License, as indicated by a
    +      copyright notice that is included in or attached to the work
    +      (an example is provided in the Appendix below).
    +
    +      "Derivative Works" shall mean any work, whether in Source or Object
    +      form, that is based on (or derived from) the Work and for which the
    +      editorial revisions, annotations, elaborations, or other modifications
    +      represent, as a whole, an original work of authorship. For the purposes
    +      of this License, Derivative Works shall not include works that remain
    +      separable from, or merely link (or bind by name) to the interfaces of,
    +      the Work and Derivative Works thereof.
    +
    +      "Contribution" shall mean any work of authorship, including
    +      the original version of the Work and any modifications or additions
    +      to that Work or Derivative Works thereof, that is intentionally
    +      submitted to Licensor for inclusion in the Work by the copyright owner
    +      or by an individual or Legal Entity authorized to submit on behalf of
    +      the copyright owner. For the purposes of this definition, "submitted"
    +      means any form of electronic, verbal, or written communication sent
    +      to the Licensor or its representatives, including but not limited to
    +      communication on electronic mailing lists, source code control systems,
    +      and issue tracking systems that are managed by, or on behalf of, the
    +      Licensor for the purpose of discussing and improving the Work, but
    +      excluding communication that is conspicuously marked or otherwise
    +      designated in writing by the copyright owner as "Not a Contribution."
    +
    +      "Contributor" shall mean Licensor and any individual or Legal Entity
    +      on behalf of whom a Contribution has been received by Licensor and
    +      subsequently incorporated within the Work.
    +
    +   2. Grant of Copyright License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      copyright license to reproduce, prepare Derivative Works of,
    +      publicly display, publicly perform, sublicense, and distribute the
    +      Work and such Derivative Works in Source or Object form.
    +
    +   3. Grant of Patent License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      (except as stated in this section) patent license to make, have made,
    +      use, offer to sell, sell, import, and otherwise transfer the Work,
    +      where such license applies only to those patent claims licensable
    +      by such Contributor that are necessarily infringed by their
    +      Contribution(s) alone or by combination of their Contribution(s)
    +      with the Work to which such Contribution(s) was submitted. If You
    +      institute patent litigation against any entity (including a
    +      cross-claim or counterclaim in a lawsuit) alleging that the Work
    +      or a Contribution incorporated within the Work constitutes direct
    +      or contributory patent infringement, then any patent licenses
    +      granted to You under this License for that Work shall terminate
    +      as of the date such litigation is filed.
    +
    +   4. Redistribution. You may reproduce and distribute copies of the
    +      Work or Derivative Works thereof in any medium, with or without
    +      modifications, and in Source or Object form, provided that You
    +      meet the following conditions:
    +
    +      (a) You must give any other recipients of the Work or
    +          Derivative Works a copy of this License; and
    +
    +      (b) You must cause any modified files to carry prominent notices
    +          stating that You changed the files; and
    +
    +      (c) You must retain, in the Source form of any Derivative Works
    +          that You distribute, all copyright, patent, trademark, and
    +          attribution notices from the Source form of the Work,
    +          excluding those notices that do not pertain to any part of
    +          the Derivative Works; and
    +
    +      (d) If the Work includes a "NOTICE" text file as part of its
    +          distribution, then any Derivative Works that You distribute must
    +          include a readable copy of the attribution notices contained
    +          within such NOTICE file, excluding those notices that do not
    +          pertain to any part of the Derivative Works, in at least one
    +          of the following places: within a NOTICE text file distributed
    +          as part of the Derivative Works; within the Source form or
    +          documentation, if provided along with the Derivative Works; or,
    +          within a display generated by the Derivative Works, if and
    +          wherever such third-party notices normally appear. The contents
    +          of the NOTICE file are for informational purposes only and
    +          do not modify the License. You may add Your own attribution
    +          notices within Derivative Works that You distribute, alongside
    +          or as an addendum to the NOTICE text from the Work, provided
    +          that such additional attribution notices cannot be construed
    +          as modifying the License.
    +
    +      You may add Your own copyright statement to Your modifications and
    +      may provide additional or different license terms and conditions
    +      for use, reproduction, or distribution of Your modifications, or
    +      for any such Derivative Works as a whole, provided Your use,
    +      reproduction, and distribution of the Work otherwise complies with
    +      the conditions stated in this License.
    +
    +   5. Submission of Contributions. Unless You explicitly state otherwise,
    +      any Contribution intentionally submitted for inclusion in the Work
    +      by You to the Licensor shall be under the terms and conditions of
    +      this License, without any additional terms or conditions.
    +      Notwithstanding the above, nothing herein shall supersede or modify
    +      the terms of any separate license agreement you may have executed
    +      with Licensor regarding such Contributions.
    +
    +   6. Trademarks. This License does not grant permission to use the trade
    +      names, trademarks, service marks, or product names of the Licensor,
    +      except as required for reasonable and customary use in describing the
    +      origin of the Work and reproducing the content of the NOTICE file.
    +
    +   7. Disclaimer of Warranty. Unless required by applicable law or
    +      agreed to in writing, Licensor provides the Work (and each
    +      Contributor provides its Contributions) on an "AS IS" BASIS,
    +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +      implied, including, without limitation, any warranties or conditions
    +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +      PARTICULAR PURPOSE. You are solely responsible for determining the
    +      appropriateness of using or redistributing the Work and assume any
    +      risks associated with Your exercise of permissions under this License.
    +
    +   8. Limitation of Liability. In no event and under no legal theory,
    +      whether in tort (including negligence), contract, or otherwise,
    +      unless required by applicable law (such as deliberate and grossly
    +      negligent acts) or agreed to in writing, shall any Contributor be
    +      liable to You for damages, including any direct, indirect, special,
    +      incidental, or consequential damages of any character arising as a
    +      result of this License or out of the use or inability to use the
    +      Work (including but not limited to damages for loss of goodwill,
    +      work stoppage, computer failure or malfunction, or any and all
    +      other commercial damages or losses), even if such Contributor
    +      has been advised of the possibility of such damages.
    +
    +   9. Accepting Warranty or Additional Liability. While redistributing
    +      the Work or Derivative Works thereof, You may choose to offer,
    +      and charge a fee for, acceptance of support, warranty, indemnity,
    +      or other liability obligations and/or rights consistent with this
    +      License. However, in accepting such obligations, You may act only
    +      on Your own behalf and on Your sole responsibility, not on behalf
    +      of any other Contributor, and only if You agree to indemnify,
    +      defend, and hold each Contributor harmless for any liability
    +      incurred by, or claims asserted against, such Contributor by reason
    +      of your accepting any such warranty or additional liability.
    +
    +   END OF TERMS AND CONDITIONS
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
    +                                 Apache License
    +                           Version 2.0, January 2004
    +                        http://www.apache.org/licenses/
    +
    +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +   1. Definitions.
    +
    +      "License" shall mean the terms and conditions for use, reproduction,
    +      and distribution as defined by Sections 1 through 9 of this document.
    +
    +      "Licensor" shall mean the copyright owner or entity authorized by
    +      the copyright owner that is granting the License.
    +
    +      "Legal Entity" shall mean the union of the acting entity and all
    +      other entities that control, are controlled by, or are under common
    +      control with that entity. For the purposes of this definition,
    +      "control" means (i) the power, direct or indirect, to cause the
    +      direction or management of such entity, whether by contract or
    +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +      outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +      "You" (or "Your") shall mean an individual or Legal Entity
    +      exercising permissions granted by this License.
    +
    +      "Source" form shall mean the preferred form for making modifications,
    +      including but not limited to software source code, documentation
    +      source, and configuration files.
    +
    +      "Object" form shall mean any form resulting from mechanical
    +      transformation or translation of a Source form, including but
    +      not limited to compiled object code, generated documentation,
    +      and conversions to other media types.
    +
    +      "Work" shall mean the work of authorship, whether in Source or
    +      Object form, made available under the License, as indicated by a
    +      copyright notice that is included in or attached to the work
    +      (an example is provided in the Appendix below).
    +
    +      "Derivative Works" shall mean any work, whether in Source or Object
    +      form, that is based on (or derived from) the Work and for which the
    +      editorial revisions, annotations, elaborations, or other modifications
    +      represent, as a whole, an original work of authorship. For the purposes
    +      of this License, Derivative Works shall not include works that remain
    +      separable from, or merely link (or bind by name) to the interfaces of,
    +      the Work and Derivative Works thereof.
    +
    +      "Contribution" shall mean any work of authorship, including
    +      the original version of the Work and any modifications or additions
    +      to that Work or Derivative Works thereof, that is intentionally
    +      submitted to Licensor for inclusion in the Work by the copyright owner
    +      or by an individual or Legal Entity authorized to submit on behalf of
    +      the copyright owner. For the purposes of this definition, "submitted"
    +      means any form of electronic, verbal, or written communication sent
    +      to the Licensor or its representatives, including but not limited to
    +      communication on electronic mailing lists, source code control systems,
    +      and issue tracking systems that are managed by, or on behalf of, the
    +      Licensor for the purpose of discussing and improving the Work, but
    +      excluding communication that is conspicuously marked or otherwise
    +      designated in writing by the copyright owner as "Not a Contribution."
    +
    +      "Contributor" shall mean Licensor and any individual or Legal Entity
    +      on behalf of whom a Contribution has been received by Licensor and
    +      subsequently incorporated within the Work.
    +
    +   2. Grant of Copyright License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      copyright license to reproduce, prepare Derivative Works of,
    +      publicly display, publicly perform, sublicense, and distribute the
    +      Work and such Derivative Works in Source or Object form.
    +
    +   3. Grant of Patent License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      (except as stated in this section) patent license to make, have made,
    +      use, offer to sell, sell, import, and otherwise transfer the Work,
    +      where such license applies only to those patent claims licensable
    +      by such Contributor that are necessarily infringed by their
    +      Contribution(s) alone or by combination of their Contribution(s)
    +      with the Work to which such Contribution(s) was submitted. If You
    +      institute patent litigation against any entity (including a
    +      cross-claim or counterclaim in a lawsuit) alleging that the Work
    +      or a Contribution incorporated within the Work constitutes direct
    +      or contributory patent infringement, then any patent licenses
    +      granted to You under this License for that Work shall terminate
    +      as of the date such litigation is filed.
    +
    +   4. Redistribution. You may reproduce and distribute copies of the
    +      Work or Derivative Works thereof in any medium, with or without
    +      modifications, and in Source or Object form, provided that You
    +      meet the following conditions:
    +
    +      (a) You must give any other recipients of the Work or
    +          Derivative Works a copy of this License; and
    +
    +      (b) You must cause any modified files to carry prominent notices
    +          stating that You changed the files; and
    +
    +      (c) You must retain, in the Source form of any Derivative Works
    +          that You distribute, all copyright, patent, trademark, and
    +          attribution notices from the Source form of the Work,
    +          excluding those notices that do not pertain to any part of
    +          the Derivative Works; and
    +
    +      (d) If the Work includes a "NOTICE" text file as part of its
    +          distribution, then any Derivative Works that You distribute must
    +          include a readable copy of the attribution notices contained
    +          within such NOTICE file, excluding those notices that do not
    +          pertain to any part of the Derivative Works, in at least one
    +          of the following places: within a NOTICE text file distributed
    +          as part of the Derivative Works; within the Source form or
    +          documentation, if provided along with the Derivative Works; or,
    +          within a display generated by the Derivative Works, if and
    +          wherever such third-party notices normally appear. The contents
    +          of the NOTICE file are for informational purposes only and
    +          do not modify the License. You may add Your own attribution
    +          notices within Derivative Works that You distribute, alongside
    +          or as an addendum to the NOTICE text from the Work, provided
    +          that such additional attribution notices cannot be construed
    +          as modifying the License.
    +
    +      You may add Your own copyright statement to Your modifications and
    +      may provide additional or different license terms and conditions
    +      for use, reproduction, or distribution of Your modifications, or
    +      for any such Derivative Works as a whole, provided Your use,
    +      reproduction, and distribution of the Work otherwise complies with
    +      the conditions stated in this License.
    +
    +   5. Submission of Contributions. Unless You explicitly state otherwise,
    +      any Contribution intentionally submitted for inclusion in the Work
    +      by You to the Licensor shall be under the terms and conditions of
    +      this License, without any additional terms or conditions.
    +      Notwithstanding the above, nothing herein shall supersede or modify
    +      the terms of any separate license agreement you may have executed
    +      with Licensor regarding such Contributions.
    +
    +   6. Trademarks. This License does not grant permission to use the trade
    +      names, trademarks, service marks, or product names of the Licensor,
    +      except as required for reasonable and customary use in describing the
    +      origin of the Work and reproducing the content of the NOTICE file.
    +
    +   7. Disclaimer of Warranty. Unless required by applicable law or
    +      agreed to in writing, Licensor provides the Work (and each
    +      Contributor provides its Contributions) on an "AS IS" BASIS,
    +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +      implied, including, without limitation, any warranties or conditions
    +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +      PARTICULAR PURPOSE. You are solely responsible for determining the
    +      appropriateness of using or redistributing the Work and assume any
    +      risks associated with Your exercise of permissions under this License.
    +
    +   8. Limitation of Liability. In no event and under no legal theory,
    +      whether in tort (including negligence), contract, or otherwise,
    +      unless required by applicable law (such as deliberate and grossly
    +      negligent acts) or agreed to in writing, shall any Contributor be
    +      liable to You for damages, including any direct, indirect, special,
    +      incidental, or consequential damages of any character arising as a
    +      result of this License or out of the use or inability to use the
    +      Work (including but not limited to damages for loss of goodwill,
    +      work stoppage, computer failure or malfunction, or any and all
    +      other commercial damages or losses), even if such Contributor
    +      has been advised of the possibility of such damages.
    +
    +   9. Accepting Warranty or Additional Liability. While redistributing
    +      the Work or Derivative Works thereof, You may choose to offer,
    +      and charge a fee for, acceptance of support, warranty, indemnity,
    +      or other liability obligations and/or rights consistent with this
    +      License. However, in accepting such obligations, You may act only
    +      on Your own behalf and on Your sole responsibility, not on behalf
    +      of any other Contributor, and only if You agree to indemnify,
    +      defend, and hold each Contributor harmless for any liability
    +      incurred by, or claims asserted against, such Contributor by reason
    +      of your accepting any such warranty or additional liability.
    +
    +   END OF TERMS AND CONDITIONS
    +
    +   APPENDIX: How to apply the Apache License to your work.
    +
    +      To apply the Apache License to your work, attach the following
    +      boilerplate notice, with the fields enclosed by brackets "[]"
    +      replaced with your own identifying information. (Don't include
    +      the brackets!)  The text should be enclosed in the appropriate
    +      comment syntax for the file format. We also recommend that a
    +      file or class name and description of purpose be included on the
    +      same "printed page" as the copyright notice for easier
    +      identification within third-party archives.
    +
    +   Copyright [yyyy] [name of copyright owner]
    +
    +   Licensed under the Apache License, Version 2.0 (the "License");
    +   you may not use this file except in compliance with the License.
    +   You may obtain a copy of the License at
    +
    +       http://www.apache.org/licenses/LICENSE-2.0
    +
    +   Unless required by applicable law or agreed to in writing, software
    +   distributed under the License is distributed on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +   See the License for the specific language governing permissions and
    +   limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
    +                                 Apache License
    +                           Version 2.0, January 2004
    +                        http://www.apache.org/licenses/
    +
    +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +   1. Definitions.
    +
    +      "License" shall mean the terms and conditions for use, reproduction,
    +      and distribution as defined by Sections 1 through 9 of this document.
    +
    +      "Licensor" shall mean the copyright owner or entity authorized by
    +      the copyright owner that is granting the License.
    +
    +      "Legal Entity" shall mean the union of the acting entity and all
    +      other entities that control, are controlled by, or are under common
    +      control with that entity. For the purposes of this definition,
    +      "control" means (i) the power, direct or indirect, to cause the
    +      direction or management of such entity, whether by contract or
    +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +      outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +      "You" (or "Your") shall mean an individual or Legal Entity
    +      exercising permissions granted by this License.
    +
    +      "Source" form shall mean the preferred form for making modifications,
    +      including but not limited to software source code, documentation
    +      source, and configuration files.
    +
    +      "Object" form shall mean any form resulting from mechanical
    +      transformation or translation of a Source form, including but
    +      not limited to compiled object code, generated documentation,
    +      and conversions to other media types.
    +
    +      "Work" shall mean the work of authorship, whether in Source or
    +      Object form, made available under the License, as indicated by a
    +      copyright notice that is included in or attached to the work
    +      (an example is provided in the Appendix below).
    +
    +      "Derivative Works" shall mean any work, whether in Source or Object
    +      form, that is based on (or derived from) the Work and for which the
    +      editorial revisions, annotations, elaborations, or other modifications
    +      represent, as a whole, an original work of authorship. For the purposes
    +      of this License, Derivative Works shall not include works that remain
    +      separable from, or merely link (or bind by name) to the interfaces of,
    +      the Work and Derivative Works thereof.
    +
    +      "Contribution" shall mean any work of authorship, including
    +      the original version of the Work and any modifications or additions
    +      to that Work or Derivative Works thereof, that is intentionally
    +      submitted to Licensor for inclusion in the Work by the copyright owner
    +      or by an individual or Legal Entity authorized to submit on behalf of
    +      the copyright owner. For the purposes of this definition, "submitted"
    +      means any form of electronic, verbal, or written communication sent
    +      to the Licensor or its representatives, including but not limited to
    +      communication on electronic mailing lists, source code control systems,
    +      and issue tracking systems that are managed by, or on behalf of, the
    +      Licensor for the purpose of discussing and improving the Work, but
    +      excluding communication that is conspicuously marked or otherwise
    +      designated in writing by the copyright owner as "Not a Contribution."
    +
    +      "Contributor" shall mean Licensor and any individual or Legal Entity
    +      on behalf of whom a Contribution has been received by Licensor and
    +      subsequently incorporated within the Work.
    +
    +   2. Grant of Copyright License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      copyright license to reproduce, prepare Derivative Works of,
    +      publicly display, publicly perform, sublicense, and distribute the
    +      Work and such Derivative Works in Source or Object form.
    +
    +   3. Grant of Patent License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      (except as stated in this section) patent license to make, have made,
    +      use, offer to sell, sell, import, and otherwise transfer the Work,
    +      where such license applies only to those patent claims licensable
    +      by such Contributor that are necessarily infringed by their
    +      Contribution(s) alone or by combination of their Contribution(s)
    +      with the Work to which such Contribution(s) was submitted. If You
    +      institute patent litigation against any entity (including a
    +      cross-claim or counterclaim in a lawsuit) alleging that the Work
    +      or a Contribution incorporated within the Work constitutes direct
    +      or contributory patent infringement, then any patent licenses
    +      granted to You under this License for that Work shall terminate
    +      as of the date such litigation is filed.
    +
    +   4. Redistribution. You may reproduce and distribute copies of the
    +      Work or Derivative Works thereof in any medium, with or without
    +      modifications, and in Source or Object form, provided that You
    +      meet the following conditions:
    +
    +      (a) You must give any other recipients of the Work or
    +          Derivative Works a copy of this License; and
    +
    +      (b) You must cause any modified files to carry prominent notices
    +          stating that You changed the files; and
    +
    +      (c) You must retain, in the Source form of any Derivative Works
    +          that You distribute, all copyright, patent, trademark, and
    +          attribution notices from the Source form of the Work,
    +          excluding those notices that do not pertain to any part of
    +          the Derivative Works; and
    +
    +      (d) If the Work includes a "NOTICE" text file as part of its
    +          distribution, then any Derivative Works that You distribute must
    +          include a readable copy of the attribution notices contained
    +          within such NOTICE file, excluding those notices that do not
    +          pertain to any part of the Derivative Works, in at least one
    +          of the following places: within a NOTICE text file distributed
    +          as part of the Derivative Works; within the Source form or
    +          documentation, if provided along with the Derivative Works; or,
    +          within a display generated by the Derivative Works, if and
    +          wherever such third-party notices normally appear. The contents
    +          of the NOTICE file are for informational purposes only and
    +          do not modify the License. You may add Your own attribution
    +          notices within Derivative Works that You distribute, alongside
    +          or as an addendum to the NOTICE text from the Work, provided
    +          that such additional attribution notices cannot be construed
    +          as modifying the License.
    +
    +      You may add Your own copyright statement to Your modifications and
    +      may provide additional or different license terms and conditions
    +      for use, reproduction, or distribution of Your modifications, or
    +      for any such Derivative Works as a whole, provided Your use,
    +      reproduction, and distribution of the Work otherwise complies with
    +      the conditions stated in this License.
    +
    +   5. Submission of Contributions. Unless You explicitly state otherwise,
    +      any Contribution intentionally submitted for inclusion in the Work
    +      by You to the Licensor shall be under the terms and conditions of
    +      this License, without any additional terms or conditions.
    +      Notwithstanding the above, nothing herein shall supersede or modify
    +      the terms of any separate license agreement you may have executed
    +      with Licensor regarding such Contributions.
    +
    +   6. Trademarks. This License does not grant permission to use the trade
    +      names, trademarks, service marks, or product names of the Licensor,
    +      except as required for reasonable and customary use in describing the
    +      origin of the Work and reproducing the content of the NOTICE file.
    +
    +   7. Disclaimer of Warranty. Unless required by applicable law or
    +      agreed to in writing, Licensor provides the Work (and each
    +      Contributor provides its Contributions) on an "AS IS" BASIS,
    +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +      implied, including, without limitation, any warranties or conditions
    +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +      PARTICULAR PURPOSE. You are solely responsible for determining the
    +      appropriateness of using or redistributing the Work and assume any
    +      risks associated with Your exercise of permissions under this License.
    +
    +   8. Limitation of Liability. In no event and under no legal theory,
    +      whether in tort (including negligence), contract, or otherwise,
    +      unless required by applicable law (such as deliberate and grossly
    +      negligent acts) or agreed to in writing, shall any Contributor be
    +      liable to You for damages, including any direct, indirect, special,
    +      incidental, or consequential damages of any character arising as a
    +      result of this License or out of the use or inability to use the
    +      Work (including but not limited to damages for loss of goodwill,
    +      work stoppage, computer failure or malfunction, or any and all
    +      other commercial damages or losses), even if such Contributor
    +      has been advised of the possibility of such damages.
    +
    +   9. Accepting Warranty or Additional Liability. While redistributing
    +      the Work or Derivative Works thereof, You may choose to offer,
    +      and charge a fee for, acceptance of support, warranty, indemnity,
    +      or other liability obligations and/or rights consistent with this
    +      License. However, in accepting such obligations, You may act only
    +      on Your own behalf and on Your sole responsibility, not on behalf
    +      of any other Contributor, and only if You agree to indemnify,
    +      defend, and hold each Contributor harmless for any liability
    +      incurred by, or claims asserted against, such Contributor by reason
    +      of your accepting any such warranty or additional liability.
    +
    +   END OF TERMS AND CONDITIONS
    +
    +   APPENDIX: How to apply the Apache License to your work.
    +
    +      To apply the Apache License to your work, attach the following
    +      boilerplate notice, with the fields enclosed by brackets "[]"
    +      replaced with your own identifying information. (Don't include
    +      the brackets!)  The text should be enclosed in the appropriate
    +      comment syntax for the file format. We also recommend that a
    +      file or class name and description of purpose be included on the
    +      same "printed page" as the copyright notice for easier
    +      identification within third-party archives.
    +
    +   Copyright [yyyy] [name of copyright owner]
    +
    +   Licensed under the Apache License, Version 2.0 (the "License");
    +   you may not use this file except in compliance with the License.
    +   You may obtain a copy of the License at
    +
    +       http://www.apache.org/licenses/LICENSE-2.0
    +
    +   Unless required by applicable law or agreed to in writing, software
    +   distributed under the License is distributed on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +   See the License for the specific language governing permissions and
    +   limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                     Apache License
    +                           Version 2.0, January 2004
    +                        http://www.apache.org/licenses/
    +
    +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +   1. Definitions.
    +
    +      "License" shall mean the terms and conditions for use, reproduction,
    +      and distribution as defined by Sections 1 through 9 of this document.
    +
    +      "Licensor" shall mean the copyright owner or entity authorized by
    +      the copyright owner that is granting the License.
    +
    +      "Legal Entity" shall mean the union of the acting entity and all
    +      other entities that control, are controlled by, or are under common
    +      control with that entity. For the purposes of this definition,
    +      "control" means (i) the power, direct or indirect, to cause the
    +      direction or management of such entity, whether by contract or
    +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +      outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +      "You" (or "Your") shall mean an individual or Legal Entity
    +      exercising permissions granted by this License.
    +
    +      "Source" form shall mean the preferred form for making modifications,
    +      including but not limited to software source code, documentation
    +      source, and configuration files.
    +
    +      "Object" form shall mean any form resulting from mechanical
    +      transformation or translation of a Source form, including but
    +      not limited to compiled object code, generated documentation,
    +      and conversions to other media types.
    +
    +      "Work" shall mean the work of authorship, whether in Source or
    +      Object form, made available under the License, as indicated by a
    +      copyright notice that is included in or attached to the work
    +      (an example is provided in the Appendix below).
    +
    +      "Derivative Works" shall mean any work, whether in Source or Object
    +      form, that is based on (or derived from) the Work and for which the
    +      editorial revisions, annotations, elaborations, or other modifications
    +      represent, as a whole, an original work of authorship. For the purposes
    +      of this License, Derivative Works shall not include works that remain
    +      separable from, or merely link (or bind by name) to the interfaces of,
    +      the Work and Derivative Works thereof.
    +
    +      "Contribution" shall mean any work of authorship, including
    +      the original version of the Work and any modifications or additions
    +      to that Work or Derivative Works thereof, that is intentionally
    +      submitted to Licensor for inclusion in the Work by the copyright owner
    +      or by an individual or Legal Entity authorized to submit on behalf of
    +      the copyright owner. For the purposes of this definition, "submitted"
    +      means any form of electronic, verbal, or written communication sent
    +      to the Licensor or its representatives, including but not limited to
    +      communication on electronic mailing lists, source code control systems,
    +      and issue tracking systems that are managed by, or on behalf of, the
    +      Licensor for the purpose of discussing and improving the Work, but
    +      excluding communication that is conspicuously marked or otherwise
    +      designated in writing by the copyright owner as "Not a Contribution."
    +
    +      "Contributor" shall mean Licensor and any individual or Legal Entity
    +      on behalf of whom a Contribution has been received by Licensor and
    +      subsequently incorporated within the Work.
    +
    +   2. Grant of Copyright License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      copyright license to reproduce, prepare Derivative Works of,
    +      publicly display, publicly perform, sublicense, and distribute the
    +      Work and such Derivative Works in Source or Object form.
    +
    +   3. Grant of Patent License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      (except as stated in this section) patent license to make, have made,
    +      use, offer to sell, sell, import, and otherwise transfer the Work,
    +      where such license applies only to those patent claims licensable
    +      by such Contributor that are necessarily infringed by their
    +      Contribution(s) alone or by combination of their Contribution(s)
    +      with the Work to which such Contribution(s) was submitted. If You
    +      institute patent litigation against any entity (including a
    +      cross-claim or counterclaim in a lawsuit) alleging that the Work
    +      or a Contribution incorporated within the Work constitutes direct
    +      or contributory patent infringement, then any patent licenses
    +      granted to You under this License for that Work shall terminate
    +      as of the date such litigation is filed.
    +
    +   4. Redistribution. You may reproduce and distribute copies of the
    +      Work or Derivative Works thereof in any medium, with or without
    +      modifications, and in Source or Object form, provided that You
    +      meet the following conditions:
    +
    +      (a) You must give any other recipients of the Work or
    +          Derivative Works a copy of this License; and
    +
    +      (b) You must cause any modified files to carry prominent notices
    +          stating that You changed the files; and
    +
    +      (c) You must retain, in the Source form of any Derivative Works
    +          that You distribute, all copyright, patent, trademark, and
    +          attribution notices from the Source form of the Work,
    +          excluding those notices that do not pertain to any part of
    +          the Derivative Works; and
    +
    +      (d) If the Work includes a "NOTICE" text file as part of its
    +          distribution, then any Derivative Works that You distribute must
    +          include a readable copy of the attribution notices contained
    +          within such NOTICE file, excluding those notices that do not
    +          pertain to any part of the Derivative Works, in at least one
    +          of the following places: within a NOTICE text file distributed
    +          as part of the Derivative Works; within the Source form or
    +          documentation, if provided along with the Derivative Works; or,
    +          within a display generated by the Derivative Works, if and
    +          wherever such third-party notices normally appear. The contents
    +          of the NOTICE file are for informational purposes only and
    +          do not modify the License. You may add Your own attribution
    +          notices within Derivative Works that You distribute, alongside
    +          or as an addendum to the NOTICE text from the Work, provided
    +          that such additional attribution notices cannot be construed
    +          as modifying the License.
    +
    +      You may add Your own copyright statement to Your modifications and
    +      may provide additional or different license terms and conditions
    +      for use, reproduction, or distribution of Your modifications, or
    +      for any such Derivative Works as a whole, provided Your use,
    +      reproduction, and distribution of the Work otherwise complies with
    +      the conditions stated in this License.
    +
    +   5. Submission of Contributions. Unless You explicitly state otherwise,
    +      any Contribution intentionally submitted for inclusion in the Work
    +      by You to the Licensor shall be under the terms and conditions of
    +      this License, without any additional terms or conditions.
    +      Notwithstanding the above, nothing herein shall supersede or modify
    +      the terms of any separate license agreement you may have executed
    +      with Licensor regarding such Contributions.
    +
    +   6. Trademarks. This License does not grant permission to use the trade
    +      names, trademarks, service marks, or product names of the Licensor,
    +      except as required for reasonable and customary use in describing the
    +      origin of the Work and reproducing the content of the NOTICE file.
    +
    +   7. Disclaimer of Warranty. Unless required by applicable law or
    +      agreed to in writing, Licensor provides the Work (and each
    +      Contributor provides its Contributions) on an "AS IS" BASIS,
    +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +      implied, including, without limitation, any warranties or conditions
    +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +      PARTICULAR PURPOSE. You are solely responsible for determining the
    +      appropriateness of using or redistributing the Work and assume any
    +      risks associated with Your exercise of permissions under this License.
    +
    +   8. Limitation of Liability. In no event and under no legal theory,
    +      whether in tort (including negligence), contract, or otherwise,
    +      unless required by applicable law (such as deliberate and grossly
    +      negligent acts) or agreed to in writing, shall any Contributor be
    +      liable to You for damages, including any direct, indirect, special,
    +      incidental, or consequential damages of any character arising as a
    +      result of this License or out of the use or inability to use the
    +      Work (including but not limited to damages for loss of goodwill,
    +      work stoppage, computer failure or malfunction, or any and all
    +      other commercial damages or losses), even if such Contributor
    +      has been advised of the possibility of such damages.
    +
    +   9. Accepting Warranty or Additional Liability. While redistributing
    +      the Work or Derivative Works thereof, You may choose to offer,
    +      and charge a fee for, acceptance of support, warranty, indemnity,
    +      or other liability obligations and/or rights consistent with this
    +      License. However, in accepting such obligations, You may act only
    +      on Your own behalf and on Your sole responsibility, not on behalf
    +      of any other Contributor, and only if You agree to indemnify,
    +      defend, and hold each Contributor harmless for any liability
    +      incurred by, or claims asserted against, such Contributor by reason
    +      of your accepting any such warranty or additional liability.
    +
    +   END OF TERMS AND CONDITIONS
    +
    +   APPENDIX: How to apply the Apache License to your work.
    +
    +      To apply the Apache License to your work, attach the following
    +      boilerplate notice, with the fields enclosed by brackets "[]"
    +      replaced with your own identifying information. (Don't include
    +      the brackets!)  The text should be enclosed in the appropriate
    +      comment syntax for the file format. We also recommend that a
    +      file or class name and description of purpose be included on the
    +      same "printed page" as the copyright notice for easier
    +      identification within third-party archives.
    +
    +   Copyright (c) Microsoft Corporation.
    +
    +   Licensed under the Apache License, Version 2.0 (the "License");
    +   you may not use this file except in compliance with the License.
    +   You may obtain a copy of the License at
    +
    +       http://www.apache.org/licenses/LICENSE-2.0
    +
    +   Unless required by applicable law or agreed to in writing, software
    +   distributed under the License is distributed on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +   See the License for the specific language governing permissions and
    +   limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                     Apache License
    +                           Version 2.0, January 2004
    +                        http://www.apache.org/licenses/
    +
    +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +   1. Definitions.
    +
    +      "License" shall mean the terms and conditions for use, reproduction,
    +      and distribution as defined by Sections 1 through 9 of this document.
    +
    +      "Licensor" shall mean the copyright owner or entity authorized by
    +      the copyright owner that is granting the License.
    +
    +      "Legal Entity" shall mean the union of the acting entity and all
    +      other entities that control, are controlled by, or are under common
    +      control with that entity. For the purposes of this definition,
    +      "control" means (i) the power, direct or indirect, to cause the
    +      direction or management of such entity, whether by contract or
    +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +      outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +      "You" (or "Your") shall mean an individual or Legal Entity
    +      exercising permissions granted by this License.
    +
    +      "Source" form shall mean the preferred form for making modifications,
    +      including but not limited to software source code, documentation
    +      source, and configuration files.
    +
    +      "Object" form shall mean any form resulting from mechanical
    +      transformation or translation of a Source form, including but
    +      not limited to compiled object code, generated documentation,
    +      and conversions to other media types.
    +
    +      "Work" shall mean the work of authorship, whether in Source or
    +      Object form, made available under the License, as indicated by a
    +      copyright notice that is included in or attached to the work
    +      (an example is provided in the Appendix below).
    +
    +      "Derivative Works" shall mean any work, whether in Source or Object
    +      form, that is based on (or derived from) the Work and for which the
    +      editorial revisions, annotations, elaborations, or other modifications
    +      represent, as a whole, an original work of authorship. For the purposes
    +      of this License, Derivative Works shall not include works that remain
    +      separable from, or merely link (or bind by name) to the interfaces of,
    +      the Work and Derivative Works thereof.
    +
    +      "Contribution" shall mean any work of authorship, including
    +      the original version of the Work and any modifications or additions
    +      to that Work or Derivative Works thereof, that is intentionally
    +      submitted to Licensor for inclusion in the Work by the copyright owner
    +      or by an individual or Legal Entity authorized to submit on behalf of
    +      the copyright owner. For the purposes of this definition, "submitted"
    +      means any form of electronic, verbal, or written communication sent
    +      to the Licensor or its representatives, including but not limited to
    +      communication on electronic mailing lists, source code control systems,
    +      and issue tracking systems that are managed by, or on behalf of, the
    +      Licensor for the purpose of discussing and improving the Work, but
    +      excluding communication that is conspicuously marked or otherwise
    +      designated in writing by the copyright owner as "Not a Contribution."
    +
    +      "Contributor" shall mean Licensor and any individual or Legal Entity
    +      on behalf of whom a Contribution has been received by Licensor and
    +      subsequently incorporated within the Work.
    +
    +   2. Grant of Copyright License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      copyright license to reproduce, prepare Derivative Works of,
    +      publicly display, publicly perform, sublicense, and distribute the
    +      Work and such Derivative Works in Source or Object form.
    +
    +   3. Grant of Patent License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      (except as stated in this section) patent license to make, have made,
    +      use, offer to sell, sell, import, and otherwise transfer the Work,
    +      where such license applies only to those patent claims licensable
    +      by such Contributor that are necessarily infringed by their
    +      Contribution(s) alone or by combination of their Contribution(s)
    +      with the Work to which such Contribution(s) was submitted. If You
    +      institute patent litigation against any entity (including a
    +      cross-claim or counterclaim in a lawsuit) alleging that the Work
    +      or a Contribution incorporated within the Work constitutes direct
    +      or contributory patent infringement, then any patent licenses
    +      granted to You under this License for that Work shall terminate
    +      as of the date such litigation is filed.
    +
    +   4. Redistribution. You may reproduce and distribute copies of the
    +      Work or Derivative Works thereof in any medium, with or without
    +      modifications, and in Source or Object form, provided that You
    +      meet the following conditions:
    +
    +      (a) You must give any other recipients of the Work or
    +          Derivative Works a copy of this License; and
    +
    +      (b) You must cause any modified files to carry prominent notices
    +          stating that You changed the files; and
    +
    +      (c) You must retain, in the Source form of any Derivative Works
    +          that You distribute, all copyright, patent, trademark, and
    +          attribution notices from the Source form of the Work,
    +          excluding those notices that do not pertain to any part of
    +          the Derivative Works; and
    +
    +      (d) If the Work includes a "NOTICE" text file as part of its
    +          distribution, then any Derivative Works that You distribute must
    +          include a readable copy of the attribution notices contained
    +          within such NOTICE file, excluding those notices that do not
    +          pertain to any part of the Derivative Works, in at least one
    +          of the following places: within a NOTICE text file distributed
    +          as part of the Derivative Works; within the Source form or
    +          documentation, if provided along with the Derivative Works; or,
    +          within a display generated by the Derivative Works, if and
    +          wherever such third-party notices normally appear. The contents
    +          of the NOTICE file are for informational purposes only and
    +          do not modify the License. You may add Your own attribution
    +          notices within Derivative Works that You distribute, alongside
    +          or as an addendum to the NOTICE text from the Work, provided
    +          that such additional attribution notices cannot be construed
    +          as modifying the License.
    +
    +      You may add Your own copyright statement to Your modifications and
    +      may provide additional or different license terms and conditions
    +      for use, reproduction, or distribution of Your modifications, or
    +      for any such Derivative Works as a whole, provided Your use,
    +      reproduction, and distribution of the Work otherwise complies with
    +      the conditions stated in this License.
    +
    +   5. Submission of Contributions. Unless You explicitly state otherwise,
    +      any Contribution intentionally submitted for inclusion in the Work
    +      by You to the Licensor shall be under the terms and conditions of
    +      this License, without any additional terms or conditions.
    +      Notwithstanding the above, nothing herein shall supersede or modify
    +      the terms of any separate license agreement you may have executed
    +      with Licensor regarding such Contributions.
    +
    +   6. Trademarks. This License does not grant permission to use the trade
    +      names, trademarks, service marks, or product names of the Licensor,
    +      except as required for reasonable and customary use in describing the
    +      origin of the Work and reproducing the content of the NOTICE file.
    +
    +   7. Disclaimer of Warranty. Unless required by applicable law or
    +      agreed to in writing, Licensor provides the Work (and each
    +      Contributor provides its Contributions) on an "AS IS" BASIS,
    +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +      implied, including, without limitation, any warranties or conditions
    +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +      PARTICULAR PURPOSE. You are solely responsible for determining the
    +      appropriateness of using or redistributing the Work and assume any
    +      risks associated with Your exercise of permissions under this License.
    +
    +   8. Limitation of Liability. In no event and under no legal theory,
    +      whether in tort (including negligence), contract, or otherwise,
    +      unless required by applicable law (such as deliberate and grossly
    +      negligent acts) or agreed to in writing, shall any Contributor be
    +      liable to You for damages, including any direct, indirect, special,
    +      incidental, or consequential damages of any character arising as a
    +      result of this License or out of the use or inability to use the
    +      Work (including but not limited to damages for loss of goodwill,
    +      work stoppage, computer failure or malfunction, or any and all
    +      other commercial damages or losses), even if such Contributor
    +      has been advised of the possibility of such damages.
    +
    +   9. Accepting Warranty or Additional Liability. While redistributing
    +      the Work or Derivative Works thereof, You may choose to offer,
    +      and charge a fee for, acceptance of support, warranty, indemnity,
    +      or other liability obligations and/or rights consistent with this
    +      License. However, in accepting such obligations, You may act only
    +      on Your own behalf and on Your sole responsibility, not on behalf
    +      of any other Contributor, and only if You agree to indemnify,
    +      defend, and hold each Contributor harmless for any liability
    +      incurred by, or claims asserted against, such Contributor by reason
    +      of your accepting any such warranty or additional liability.
    +
    +   END OF TERMS AND CONDITIONS
    +
    +   APPENDIX: How to apply the Apache License to your work.
    +
    +      To apply the Apache License to your work, attach the following
    +      boilerplate notice, with the fields enclosed by brackets "[]"
    +      replaced with your own identifying information. (Don't include
    +      the brackets!)  The text should be enclosed in the appropriate
    +      comment syntax for the file format. We also recommend that a
    +      file or class name and description of purpose be included on the
    +      same "printed page" as the copyright notice for easier
    +      identification within third-party archives.
    +
    +   Copyright 2020 Tomasz "Soveu" Marx
    +
    +   Licensed under the Apache License, Version 2.0 (the "License");
    +   you may not use this file except in compliance with the License.
    +   You may obtain a copy of the License at
    +
    +       http://www.apache.org/licenses/LICENSE-2.0
    +
    +   Unless required by applicable law or agreed to in writing, software
    +   distributed under the License is distributed on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +   See the License for the specific language governing permissions and
    +   limitations under the License.
    +
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                     Apache License
    +                           Version 2.0, January 2004
    +                        http://www.apache.org/licenses/
    +
    +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +   1. Definitions.
    +
    +      "License" shall mean the terms and conditions for use, reproduction,
    +      and distribution as defined by Sections 1 through 9 of this document.
    +
    +      "Licensor" shall mean the copyright owner or entity authorized by
    +      the copyright owner that is granting the License.
    +
    +      "Legal Entity" shall mean the union of the acting entity and all
    +      other entities that control, are controlled by, or are under common
    +      control with that entity. For the purposes of this definition,
    +      "control" means (i) the power, direct or indirect, to cause the
    +      direction or management of such entity, whether by contract or
    +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +      outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +      "You" (or "Your") shall mean an individual or Legal Entity
    +      exercising permissions granted by this License.
    +
    +      "Source" form shall mean the preferred form for making modifications,
    +      including but not limited to software source code, documentation
    +      source, and configuration files.
    +
    +      "Object" form shall mean any form resulting from mechanical
    +      transformation or translation of a Source form, including but
    +      not limited to compiled object code, generated documentation,
    +      and conversions to other media types.
    +
    +      "Work" shall mean the work of authorship, whether in Source or
    +      Object form, made available under the License, as indicated by a
    +      copyright notice that is included in or attached to the work
    +      (an example is provided in the Appendix below).
    +
    +      "Derivative Works" shall mean any work, whether in Source or Object
    +      form, that is based on (or derived from) the Work and for which the
    +      editorial revisions, annotations, elaborations, or other modifications
    +      represent, as a whole, an original work of authorship. For the purposes
    +      of this License, Derivative Works shall not include works that remain
    +      separable from, or merely link (or bind by name) to the interfaces of,
    +      the Work and Derivative Works thereof.
    +
    +      "Contribution" shall mean any work of authorship, including
    +      the original version of the Work and any modifications or additions
    +      to that Work or Derivative Works thereof, that is intentionally
    +      submitted to Licensor for inclusion in the Work by the copyright owner
    +      or by an individual or Legal Entity authorized to submit on behalf of
    +      the copyright owner. For the purposes of this definition, "submitted"
    +      means any form of electronic, verbal, or written communication sent
    +      to the Licensor or its representatives, including but not limited to
    +      communication on electronic mailing lists, source code control systems,
    +      and issue tracking systems that are managed by, or on behalf of, the
    +      Licensor for the purpose of discussing and improving the Work, but
    +      excluding communication that is conspicuously marked or otherwise
    +      designated in writing by the copyright owner as "Not a Contribution."
    +
    +      "Contributor" shall mean Licensor and any individual or Legal Entity
    +      on behalf of whom a Contribution has been received by Licensor and
    +      subsequently incorporated within the Work.
    +
    +   2. Grant of Copyright License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      copyright license to reproduce, prepare Derivative Works of,
    +      publicly display, publicly perform, sublicense, and distribute the
    +      Work and such Derivative Works in Source or Object form.
    +
    +   3. Grant of Patent License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      (except as stated in this section) patent license to make, have made,
    +      use, offer to sell, sell, import, and otherwise transfer the Work,
    +      where such license applies only to those patent claims licensable
    +      by such Contributor that are necessarily infringed by their
    +      Contribution(s) alone or by combination of their Contribution(s)
    +      with the Work to which such Contribution(s) was submitted. If You
    +      institute patent litigation against any entity (including a
    +      cross-claim or counterclaim in a lawsuit) alleging that the Work
    +      or a Contribution incorporated within the Work constitutes direct
    +      or contributory patent infringement, then any patent licenses
    +      granted to You under this License for that Work shall terminate
    +      as of the date such litigation is filed.
    +
    +   4. Redistribution. You may reproduce and distribute copies of the
    +      Work or Derivative Works thereof in any medium, with or without
    +      modifications, and in Source or Object form, provided that You
    +      meet the following conditions:
    +
    +      (a) You must give any other recipients of the Work or
    +          Derivative Works a copy of this License; and
    +
    +      (b) You must cause any modified files to carry prominent notices
    +          stating that You changed the files; and
    +
    +      (c) You must retain, in the Source form of any Derivative Works
    +          that You distribute, all copyright, patent, trademark, and
    +          attribution notices from the Source form of the Work,
    +          excluding those notices that do not pertain to any part of
    +          the Derivative Works; and
    +
    +      (d) If the Work includes a "NOTICE" text file as part of its
    +          distribution, then any Derivative Works that You distribute must
    +          include a readable copy of the attribution notices contained
    +          within such NOTICE file, excluding those notices that do not
    +          pertain to any part of the Derivative Works, in at least one
    +          of the following places: within a NOTICE text file distributed
    +          as part of the Derivative Works; within the Source form or
    +          documentation, if provided along with the Derivative Works; or,
    +          within a display generated by the Derivative Works, if and
    +          wherever such third-party notices normally appear. The contents
    +          of the NOTICE file are for informational purposes only and
    +          do not modify the License. You may add Your own attribution
    +          notices within Derivative Works that You distribute, alongside
    +          or as an addendum to the NOTICE text from the Work, provided
    +          that such additional attribution notices cannot be construed
    +          as modifying the License.
    +
    +      You may add Your own copyright statement to Your modifications and
    +      may provide additional or different license terms and conditions
    +      for use, reproduction, or distribution of Your modifications, or
    +      for any such Derivative Works as a whole, provided Your use,
    +      reproduction, and distribution of the Work otherwise complies with
    +      the conditions stated in this License.
    +
    +   5. Submission of Contributions. Unless You explicitly state otherwise,
    +      any Contribution intentionally submitted for inclusion in the Work
    +      by You to the Licensor shall be under the terms and conditions of
    +      this License, without any additional terms or conditions.
    +      Notwithstanding the above, nothing herein shall supersede or modify
    +      the terms of any separate license agreement you may have executed
    +      with Licensor regarding such Contributions.
    +
    +   6. Trademarks. This License does not grant permission to use the trade
    +      names, trademarks, service marks, or product names of the Licensor,
    +      except as required for reasonable and customary use in describing the
    +      origin of the Work and reproducing the content of the NOTICE file.
    +
    +   7. Disclaimer of Warranty. Unless required by applicable law or
    +      agreed to in writing, Licensor provides the Work (and each
    +      Contributor provides its Contributions) on an "AS IS" BASIS,
    +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +      implied, including, without limitation, any warranties or conditions
    +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +      PARTICULAR PURPOSE. You are solely responsible for determining the
    +      appropriateness of using or redistributing the Work and assume any
    +      risks associated with Your exercise of permissions under this License.
    +
    +   8. Limitation of Liability. In no event and under no legal theory,
    +      whether in tort (including negligence), contract, or otherwise,
    +      unless required by applicable law (such as deliberate and grossly
    +      negligent acts) or agreed to in writing, shall any Contributor be
    +      liable to You for damages, including any direct, indirect, special,
    +      incidental, or consequential damages of any character arising as a
    +      result of this License or out of the use or inability to use the
    +      Work (including but not limited to damages for loss of goodwill,
    +      work stoppage, computer failure or malfunction, or any and all
    +      other commercial damages or losses), even if such Contributor
    +      has been advised of the possibility of such damages.
    +
    +   9. Accepting Warranty or Additional Liability. While redistributing
    +      the Work or Derivative Works thereof, You may choose to offer,
    +      and charge a fee for, acceptance of support, warranty, indemnity,
    +      or other liability obligations and/or rights consistent with this
    +      License. However, in accepting such obligations, You may act only
    +      on Your own behalf and on Your sole responsibility, not on behalf
    +      of any other Contributor, and only if You agree to indemnify,
    +      defend, and hold each Contributor harmless for any liability
    +      incurred by, or claims asserted against, such Contributor by reason
    +      of your accepting any such warranty or additional liability.
    +
    +   END OF TERMS AND CONDITIONS
    +
    +   APPENDIX: How to apply the Apache License to your work.
    +
    +      To apply the Apache License to your work, attach the following
    +      boilerplate notice, with the fields enclosed by brackets "[]"
    +      replaced with your own identifying information. (Don't include
    +      the brackets!)  The text should be enclosed in the appropriate
    +      comment syntax for the file format. We also recommend that a
    +      file or class name and description of purpose be included on the
    +      same "printed page" as the copyright notice for easier
    +      identification within third-party archives.
    +
    +   Copyright [yyyy] [name of copyright owner]
    +
    +   Licensed under the Apache License, Version 2.0 (the "License");
    +   you may not use this file except in compliance with the License.
    +   You may obtain a copy of the License at
    +
    +       http://www.apache.org/licenses/LICENSE-2.0
    +
    +   Unless required by applicable law or agreed to in writing, software
    +   distributed under the License is distributed on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +   See the License for the specific language governing permissions and
    +   limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                     Apache License
    +                           Version 2.0, January 2004
    +                        http://www.apache.org/licenses/
    +
    +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +   1. Definitions.
    +
    +      "License" shall mean the terms and conditions for use, reproduction,
    +      and distribution as defined by Sections 1 through 9 of this document.
    +
    +      "Licensor" shall mean the copyright owner or entity authorized by
    +      the copyright owner that is granting the License.
    +
    +      "Legal Entity" shall mean the union of the acting entity and all
    +      other entities that control, are controlled by, or are under common
    +      control with that entity. For the purposes of this definition,
    +      "control" means (i) the power, direct or indirect, to cause the
    +      direction or management of such entity, whether by contract or
    +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +      outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +      "You" (or "Your") shall mean an individual or Legal Entity
    +      exercising permissions granted by this License.
    +
    +      "Source" form shall mean the preferred form for making modifications,
    +      including but not limited to software source code, documentation
    +      source, and configuration files.
    +
    +      "Object" form shall mean any form resulting from mechanical
    +      transformation or translation of a Source form, including but
    +      not limited to compiled object code, generated documentation,
    +      and conversions to other media types.
    +
    +      "Work" shall mean the work of authorship, whether in Source or
    +      Object form, made available under the License, as indicated by a
    +      copyright notice that is included in or attached to the work
    +      (an example is provided in the Appendix below).
    +
    +      "Derivative Works" shall mean any work, whether in Source or Object
    +      form, that is based on (or derived from) the Work and for which the
    +      editorial revisions, annotations, elaborations, or other modifications
    +      represent, as a whole, an original work of authorship. For the purposes
    +      of this License, Derivative Works shall not include works that remain
    +      separable from, or merely link (or bind by name) to the interfaces of,
    +      the Work and Derivative Works thereof.
    +
    +      "Contribution" shall mean any work of authorship, including
    +      the original version of the Work and any modifications or additions
    +      to that Work or Derivative Works thereof, that is intentionally
    +      submitted to Licensor for inclusion in the Work by the copyright owner
    +      or by an individual or Legal Entity authorized to submit on behalf of
    +      the copyright owner. For the purposes of this definition, "submitted"
    +      means any form of electronic, verbal, or written communication sent
    +      to the Licensor or its representatives, including but not limited to
    +      communication on electronic mailing lists, source code control systems,
    +      and issue tracking systems that are managed by, or on behalf of, the
    +      Licensor for the purpose of discussing and improving the Work, but
    +      excluding communication that is conspicuously marked or otherwise
    +      designated in writing by the copyright owner as "Not a Contribution."
    +
    +      "Contributor" shall mean Licensor and any individual or Legal Entity
    +      on behalf of whom a Contribution has been received by Licensor and
    +      subsequently incorporated within the Work.
    +
    +   2. Grant of Copyright License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      copyright license to reproduce, prepare Derivative Works of,
    +      publicly display, publicly perform, sublicense, and distribute the
    +      Work and such Derivative Works in Source or Object form.
    +
    +   3. Grant of Patent License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      (except as stated in this section) patent license to make, have made,
    +      use, offer to sell, sell, import, and otherwise transfer the Work,
    +      where such license applies only to those patent claims licensable
    +      by such Contributor that are necessarily infringed by their
    +      Contribution(s) alone or by combination of their Contribution(s)
    +      with the Work to which such Contribution(s) was submitted. If You
    +      institute patent litigation against any entity (including a
    +      cross-claim or counterclaim in a lawsuit) alleging that the Work
    +      or a Contribution incorporated within the Work constitutes direct
    +      or contributory patent infringement, then any patent licenses
    +      granted to You under this License for that Work shall terminate
    +      as of the date such litigation is filed.
    +
    +   4. Redistribution. You may reproduce and distribute copies of the
    +      Work or Derivative Works thereof in any medium, with or without
    +      modifications, and in Source or Object form, provided that You
    +      meet the following conditions:
    +
    +      (a) You must give any other recipients of the Work or
    +          Derivative Works a copy of this License; and
    +
    +      (b) You must cause any modified files to carry prominent notices
    +          stating that You changed the files; and
    +
    +      (c) You must retain, in the Source form of any Derivative Works
    +          that You distribute, all copyright, patent, trademark, and
    +          attribution notices from the Source form of the Work,
    +          excluding those notices that do not pertain to any part of
    +          the Derivative Works; and
    +
    +      (d) If the Work includes a "NOTICE" text file as part of its
    +          distribution, then any Derivative Works that You distribute must
    +          include a readable copy of the attribution notices contained
    +          within such NOTICE file, excluding those notices that do not
    +          pertain to any part of the Derivative Works, in at least one
    +          of the following places: within a NOTICE text file distributed
    +          as part of the Derivative Works; within the Source form or
    +          documentation, if provided along with the Derivative Works; or,
    +          within a display generated by the Derivative Works, if and
    +          wherever such third-party notices normally appear. The contents
    +          of the NOTICE file are for informational purposes only and
    +          do not modify the License. You may add Your own attribution
    +          notices within Derivative Works that You distribute, alongside
    +          or as an addendum to the NOTICE text from the Work, provided
    +          that such additional attribution notices cannot be construed
    +          as modifying the License.
    +
    +      You may add Your own copyright statement to Your modifications and
    +      may provide additional or different license terms and conditions
    +      for use, reproduction, or distribution of Your modifications, or
    +      for any such Derivative Works as a whole, provided Your use,
    +      reproduction, and distribution of the Work otherwise complies with
    +      the conditions stated in this License.
    +
    +   5. Submission of Contributions. Unless You explicitly state otherwise,
    +      any Contribution intentionally submitted for inclusion in the Work
    +      by You to the Licensor shall be under the terms and conditions of
    +      this License, without any additional terms or conditions.
    +      Notwithstanding the above, nothing herein shall supersede or modify
    +      the terms of any separate license agreement you may have executed
    +      with Licensor regarding such Contributions.
    +
    +   6. Trademarks. This License does not grant permission to use the trade
    +      names, trademarks, service marks, or product names of the Licensor,
    +      except as required for reasonable and customary use in describing the
    +      origin of the Work and reproducing the content of the NOTICE file.
    +
    +   7. Disclaimer of Warranty. Unless required by applicable law or
    +      agreed to in writing, Licensor provides the Work (and each
    +      Contributor provides its Contributions) on an "AS IS" BASIS,
    +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +      implied, including, without limitation, any warranties or conditions
    +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +      PARTICULAR PURPOSE. You are solely responsible for determining the
    +      appropriateness of using or redistributing the Work and assume any
    +      risks associated with Your exercise of permissions under this License.
    +
    +   8. Limitation of Liability. In no event and under no legal theory,
    +      whether in tort (including negligence), contract, or otherwise,
    +      unless required by applicable law (such as deliberate and grossly
    +      negligent acts) or agreed to in writing, shall any Contributor be
    +      liable to You for damages, including any direct, indirect, special,
    +      incidental, or consequential damages of any character arising as a
    +      result of this License or out of the use or inability to use the
    +      Work (including but not limited to damages for loss of goodwill,
    +      work stoppage, computer failure or malfunction, or any and all
    +      other commercial damages or losses), even if such Contributor
    +      has been advised of the possibility of such damages.
    +
    +   9. Accepting Warranty or Additional Liability. While redistributing
    +      the Work or Derivative Works thereof, You may choose to offer,
    +      and charge a fee for, acceptance of support, warranty, indemnity,
    +      or other liability obligations and/or rights consistent with this
    +      License. However, in accepting such obligations, You may act only
    +      on Your own behalf and on Your sole responsibility, not on behalf
    +      of any other Contributor, and only if You agree to indemnify,
    +      defend, and hold each Contributor harmless for any liability
    +      incurred by, or claims asserted against, such Contributor by reason
    +      of your accepting any such warranty or additional liability.
    +
    +   END OF TERMS AND CONDITIONS
    +
    +   APPENDIX: How to apply the Apache License to your work.
    +
    +      To apply the Apache License to your work, attach the following
    +      boilerplate notice, with the fields enclosed by brackets "{}"
    +      replaced with your own identifying information. (Don't include
    +      the brackets!)  The text should be enclosed in the appropriate
    +      comment syntax for the file format. We also recommend that a
    +      file or class name and description of purpose be included on the
    +      same "printed page" as the copyright notice for easier
    +      identification within third-party archives.
    +
    +   Copyright {yyyy} {name of copyright owner}
    +
    +   Licensed under the Apache License, Version 2.0 (the "License");
    +   you may not use this file except in compliance with the License.
    +   You may obtain a copy of the License at
    +
    +       http://www.apache.org/licenses/LICENSE-2.0
    +
    +   Unless required by applicable law or agreed to in writing, software
    +   distributed under the License is distributed on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +   See the License for the specific language governing permissions and
    +   limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                     Apache License
    +                           Version 2.0, January 2004
    +                        http://www.apache.org/licenses/
    +
    +   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +   1. Definitions.
    +
    +      "License" shall mean the terms and conditions for use, reproduction,
    +      and distribution as defined by Sections 1 through 9 of this document.
    +
    +      "Licensor" shall mean the copyright owner or entity authorized by
    +      the copyright owner that is granting the License.
    +
    +      "Legal Entity" shall mean the union of the acting entity and all
    +      other entities that control, are controlled by, or are under common
    +      control with that entity. For the purposes of this definition,
    +      "control" means (i) the power, direct or indirect, to cause the
    +      direction or management of such entity, whether by contract or
    +      otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +      outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +      "You" (or "Your") shall mean an individual or Legal Entity
    +      exercising permissions granted by this License.
    +
    +      "Source" form shall mean the preferred form for making modifications,
    +      including but not limited to software source code, documentation
    +      source, and configuration files.
    +
    +      "Object" form shall mean any form resulting from mechanical
    +      transformation or translation of a Source form, including but
    +      not limited to compiled object code, generated documentation,
    +      and conversions to other media types.
    +
    +      "Work" shall mean the work of authorship, whether in Source or
    +      Object form, made available under the License, as indicated by a
    +      copyright notice that is included in or attached to the work
    +      (an example is provided in the Appendix below).
    +
    +      "Derivative Works" shall mean any work, whether in Source or Object
    +      form, that is based on (or derived from) the Work and for which the
    +      editorial revisions, annotations, elaborations, or other modifications
    +      represent, as a whole, an original work of authorship. For the purposes
    +      of this License, Derivative Works shall not include works that remain
    +      separable from, or merely link (or bind by name) to the interfaces of,
    +      the Work and Derivative Works thereof.
    +
    +      "Contribution" shall mean any work of authorship, including
    +      the original version of the Work and any modifications or additions
    +      to that Work or Derivative Works thereof, that is intentionally
    +      submitted to Licensor for inclusion in the Work by the copyright owner
    +      or by an individual or Legal Entity authorized to submit on behalf of
    +      the copyright owner. For the purposes of this definition, "submitted"
    +      means any form of electronic, verbal, or written communication sent
    +      to the Licensor or its representatives, including but not limited to
    +      communication on electronic mailing lists, source code control systems,
    +      and issue tracking systems that are managed by, or on behalf of, the
    +      Licensor for the purpose of discussing and improving the Work, but
    +      excluding communication that is conspicuously marked or otherwise
    +      designated in writing by the copyright owner as "Not a Contribution."
    +
    +      "Contributor" shall mean Licensor and any individual or Legal Entity
    +      on behalf of whom a Contribution has been received by Licensor and
    +      subsequently incorporated within the Work.
    +
    +   2. Grant of Copyright License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      copyright license to reproduce, prepare Derivative Works of,
    +      publicly display, publicly perform, sublicense, and distribute the
    +      Work and such Derivative Works in Source or Object form.
    +
    +   3. Grant of Patent License. Subject to the terms and conditions of
    +      this License, each Contributor hereby grants to You a perpetual,
    +      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +      (except as stated in this section) patent license to make, have made,
    +      use, offer to sell, sell, import, and otherwise transfer the Work,
    +      where such license applies only to those patent claims licensable
    +      by such Contributor that are necessarily infringed by their
    +      Contribution(s) alone or by combination of their Contribution(s)
    +      with the Work to which such Contribution(s) was submitted. If You
    +      institute patent litigation against any entity (including a
    +      cross-claim or counterclaim in a lawsuit) alleging that the Work
    +      or a Contribution incorporated within the Work constitutes direct
    +      or contributory patent infringement, then any patent licenses
    +      granted to You under this License for that Work shall terminate
    +      as of the date such litigation is filed.
    +
    +   4. Redistribution. You may reproduce and distribute copies of the
    +      Work or Derivative Works thereof in any medium, with or without
    +      modifications, and in Source or Object form, provided that You
    +      meet the following conditions:
    +
    +      (a) You must give any other recipients of the Work or
    +          Derivative Works a copy of this License; and
    +
    +      (b) You must cause any modified files to carry prominent notices
    +          stating that You changed the files; and
    +
    +      (c) You must retain, in the Source form of any Derivative Works
    +          that You distribute, all copyright, patent, trademark, and
    +          attribution notices from the Source form of the Work,
    +          excluding those notices that do not pertain to any part of
    +          the Derivative Works; and
    +
    +      (d) If the Work includes a "NOTICE" text file as part of its
    +          distribution, then any Derivative Works that You distribute must
    +          include a readable copy of the attribution notices contained
    +          within such NOTICE file, excluding those notices that do not
    +          pertain to any part of the Derivative Works, in at least one
    +          of the following places: within a NOTICE text file distributed
    +          as part of the Derivative Works; within the Source form or
    +          documentation, if provided along with the Derivative Works; or,
    +          within a display generated by the Derivative Works, if and
    +          wherever such third-party notices normally appear. The contents
    +          of the NOTICE file are for informational purposes only and
    +          do not modify the License. You may add Your own attribution
    +          notices within Derivative Works that You distribute, alongside
    +          or as an addendum to the NOTICE text from the Work, provided
    +          that such additional attribution notices cannot be construed
    +          as modifying the License.
    +
    +      You may add Your own copyright statement to Your modifications and
    +      may provide additional or different license terms and conditions
    +      for use, reproduction, or distribution of Your modifications, or
    +      for any such Derivative Works as a whole, provided Your use,
    +      reproduction, and distribution of the Work otherwise complies with
    +      the conditions stated in this License.
    +
    +   5. Submission of Contributions. Unless You explicitly state otherwise,
    +      any Contribution intentionally submitted for inclusion in the Work
    +      by You to the Licensor shall be under the terms and conditions of
    +      this License, without any additional terms or conditions.
    +      Notwithstanding the above, nothing herein shall supersede or modify
    +      the terms of any separate license agreement you may have executed
    +      with Licensor regarding such Contributions.
    +
    +   6. Trademarks. This License does not grant permission to use the trade
    +      names, trademarks, service marks, or product names of the Licensor,
    +      except as required for reasonable and customary use in describing the
    +      origin of the Work and reproducing the content of the NOTICE file.
    +
    +   7. Disclaimer of Warranty. Unless required by applicable law or
    +      agreed to in writing, Licensor provides the Work (and each
    +      Contributor provides its Contributions) on an "AS IS" BASIS,
    +      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +      implied, including, without limitation, any warranties or conditions
    +      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +      PARTICULAR PURPOSE. You are solely responsible for determining the
    +      appropriateness of using or redistributing the Work and assume any
    +      risks associated with Your exercise of permissions under this License.
    +
    +   8. Limitation of Liability. In no event and under no legal theory,
    +      whether in tort (including negligence), contract, or otherwise,
    +      unless required by applicable law (such as deliberate and grossly
    +      negligent acts) or agreed to in writing, shall any Contributor be
    +      liable to You for damages, including any direct, indirect, special,
    +      incidental, or consequential damages of any character arising as a
    +      result of this License or out of the use or inability to use the
    +      Work (including but not limited to damages for loss of goodwill,
    +      work stoppage, computer failure or malfunction, or any and all
    +      other commercial damages or losses), even if such Contributor
    +      has been advised of the possibility of such damages.
    +
    +   9. Accepting Warranty or Additional Liability. While redistributing
    +      the Work or Derivative Works thereof, You may choose to offer,
    +      and charge a fee for, acceptance of support, warranty, indemnity,
    +      or other liability obligations and/or rights consistent with this
    +      License. However, in accepting such obligations, You may act only
    +      on Your own behalf and on Your sole responsibility, not on behalf
    +      of any other Contributor, and only if You agree to indemnify,
    +      defend, and hold each Contributor harmless for any liability
    +      incurred by, or claims asserted against, such Contributor by reason
    +      of your accepting any such warranty or additional liability.
    +
    +   END OF TERMS AND CONDITIONS
    +
    +   APPENDIX: How to apply the Apache License to your work.
    +
    +      To apply the Apache License to your work, attach the following
    +      boilerplate notice, with the fields enclosed by brackets "{}"
    +      replaced with your own identifying information. (Don't include
    +      the brackets!)  The text should be enclosed in the appropriate
    +      comment syntax for the file format. We also recommend that a
    +      file or class name and description of purpose be included on the
    +      same "printed page" as the copyright notice for easier
    +      identification within third-party archives.
    +
    +   Copyright {yyyy} {name of copyright owner}
    +
    +   Licensed under the Apache License, Version 2.0 (the "License");
    +   you may not use this file except in compliance with the License.
    +   You may obtain a copy of the License at
    +
    +       http://www.apache.org/licenses/LICENSE-2.0
    +
    +   Unless required by applicable law or agreed to in writing, software
    +   distributed under the License is distributed on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +   See the License for the specific language governing permissions and
    +   limitations under the License.
    +
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +Copyright (c) 2016 Alex Crichton
    +Copyright (c) 2017 The Tokio Authors
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +	http://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +Copyright 2014 Paho Lurie-Gregg
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +	http://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +Copyright 2017 The Rust Project Developers
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +	http://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +Copyright 2017 http-rs authors
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +	http://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +Copyright 2018 The pin-utils authors
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +	http://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +Copyright 2019 The CryptoCorrosion Contributors
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +   http://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +Copyright [yyyy] [name of copyright owner]
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +	http://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +Copyright [yyyy] [name of copyright owner]
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +   http://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     https://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     https://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     https://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +Copyright [yyyy] [name of copyright owner]
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +	https://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
                                  Apache License
    +                        Version 2.0, January 2004
    +                     https://www.apache.org/licenses/LICENSE-2.0
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +   "License" shall mean the terms and conditions for use, reproduction,
    +   and distribution as defined by Sections 1 through 9 of this document.
    +
    +   "Licensor" shall mean the copyright owner or entity authorized by
    +   the copyright owner that is granting the License.
    +
    +   "Legal Entity" shall mean the union of the acting entity and all
    +   other entities that control, are controlled by, or are under common
    +   control with that entity. For the purposes of this definition,
    +   "control" means (i) the power, direct or indirect, to cause the
    +   direction or management of such entity, whether by contract or
    +   otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +   outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +   "You" (or "Your") shall mean an individual or Legal Entity
    +   exercising permissions granted by this License.
    +
    +   "Source" form shall mean the preferred form for making modifications,
    +   including but not limited to software source code, documentation
    +   source, and configuration files.
    +
    +   "Object" form shall mean any form resulting from mechanical
    +   transformation or translation of a Source form, including but
    +   not limited to compiled object code, generated documentation,
    +   and conversions to other media types.
    +
    +   "Work" shall mean the work of authorship, whether in Source or
    +   Object form, made available under the License, as indicated by a
    +   copyright notice that is included in or attached to the work
    +   (an example is provided in the Appendix below).
    +
    +   "Derivative Works" shall mean any work, whether in Source or Object
    +   form, that is based on (or derived from) the Work and for which the
    +   editorial revisions, annotations, elaborations, or other modifications
    +   represent, as a whole, an original work of authorship. For the purposes
    +   of this License, Derivative Works shall not include works that remain
    +   separable from, or merely link (or bind by name) to the interfaces of,
    +   the Work and Derivative Works thereof.
    +
    +   "Contribution" shall mean any work of authorship, including
    +   the original version of the Work and any modifications or additions
    +   to that Work or Derivative Works thereof, that is intentionally
    +   submitted to Licensor for inclusion in the Work by the copyright owner
    +   or by an individual or Legal Entity authorized to submit on behalf of
    +   the copyright owner. For the purposes of this definition, "submitted"
    +   means any form of electronic, verbal, or written communication sent
    +   to the Licensor or its representatives, including but not limited to
    +   communication on electronic mailing lists, source code control systems,
    +   and issue tracking systems that are managed by, or on behalf of, the
    +   Licensor for the purpose of discussing and improving the Work, but
    +   excluding communication that is conspicuously marked or otherwise
    +   designated in writing by the copyright owner as "Not a Contribution."
    +
    +   "Contributor" shall mean Licensor and any individual or Legal Entity
    +   on behalf of whom a Contribution has been received by Licensor and
    +   subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   copyright license to reproduce, prepare Derivative Works of,
    +   publicly display, publicly perform, sublicense, and distribute the
    +   Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +   this License, each Contributor hereby grants to You a perpetual,
    +   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +   (except as stated in this section) patent license to make, have made,
    +   use, offer to sell, sell, import, and otherwise transfer the Work,
    +   where such license applies only to those patent claims licensable
    +   by such Contributor that are necessarily infringed by their
    +   Contribution(s) alone or by combination of their Contribution(s)
    +   with the Work to which such Contribution(s) was submitted. If You
    +   institute patent litigation against any entity (including a
    +   cross-claim or counterclaim in a lawsuit) alleging that the Work
    +   or a Contribution incorporated within the Work constitutes direct
    +   or contributory patent infringement, then any patent licenses
    +   granted to You under this License for that Work shall terminate
    +   as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +   Work or Derivative Works thereof in any medium, with or without
    +   modifications, and in Source or Object form, provided that You
    +   meet the following conditions:
    +
    +   (a) You must give any other recipients of the Work or
    +       Derivative Works a copy of this License; and
    +
    +   (b) You must cause any modified files to carry prominent notices
    +       stating that You changed the files; and
    +
    +   (c) You must retain, in the Source form of any Derivative Works
    +       that You distribute, all copyright, patent, trademark, and
    +       attribution notices from the Source form of the Work,
    +       excluding those notices that do not pertain to any part of
    +       the Derivative Works; and
    +
    +   (d) If the Work includes a "NOTICE" text file as part of its
    +       distribution, then any Derivative Works that You distribute must
    +       include a readable copy of the attribution notices contained
    +       within such NOTICE file, excluding those notices that do not
    +       pertain to any part of the Derivative Works, in at least one
    +       of the following places: within a NOTICE text file distributed
    +       as part of the Derivative Works; within the Source form or
    +       documentation, if provided along with the Derivative Works; or,
    +       within a display generated by the Derivative Works, if and
    +       wherever such third-party notices normally appear. The contents
    +       of the NOTICE file are for informational purposes only and
    +       do not modify the License. You may add Your own attribution
    +       notices within Derivative Works that You distribute, alongside
    +       or as an addendum to the NOTICE text from the Work, provided
    +       that such additional attribution notices cannot be construed
    +       as modifying the License.
    +
    +   You may add Your own copyright statement to Your modifications and
    +   may provide additional or different license terms and conditions
    +   for use, reproduction, or distribution of Your modifications, or
    +   for any such Derivative Works as a whole, provided Your use,
    +   reproduction, and distribution of the Work otherwise complies with
    +   the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +   any Contribution intentionally submitted for inclusion in the Work
    +   by You to the Licensor shall be under the terms and conditions of
    +   this License, without any additional terms or conditions.
    +   Notwithstanding the above, nothing herein shall supersede or modify
    +   the terms of any separate license agreement you may have executed
    +   with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +   names, trademarks, service marks, or product names of the Licensor,
    +   except as required for reasonable and customary use in describing the
    +   origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +   agreed to in writing, Licensor provides the Work (and each
    +   Contributor provides its Contributions) on an "AS IS" BASIS,
    +   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +   implied, including, without limitation, any warranties or conditions
    +   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +   PARTICULAR PURPOSE. You are solely responsible for determining the
    +   appropriateness of using or redistributing the Work and assume any
    +   risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +   whether in tort (including negligence), contract, or otherwise,
    +   unless required by applicable law (such as deliberate and grossly
    +   negligent acts) or agreed to in writing, shall any Contributor be
    +   liable to You for damages, including any direct, indirect, special,
    +   incidental, or consequential damages of any character arising as a
    +   result of this License or out of the use or inability to use the
    +   Work (including but not limited to damages for loss of goodwill,
    +   work stoppage, computer failure or malfunction, or any and all
    +   other commercial damages or losses), even if such Contributor
    +   has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +   the Work or Derivative Works thereof, You may choose to offer,
    +   and charge a fee for, acceptance of support, warranty, indemnity,
    +   or other liability obligations and/or rights consistent with this
    +   License. However, in accepting such obligations, You may act only
    +   on Your own behalf and on Your sole responsibility, not on behalf
    +   of any other Contributor, and only if You agree to indemnify,
    +   defend, and hold each Contributor harmless for any liability
    +   incurred by, or claims asserted against, such Contributor by reason
    +   of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +   To apply the Apache License to your work, attach the following
    +   boilerplate notice, with the fields enclosed by brackets "[]"
    +   replaced with your own identifying information. (Don't include
    +   the brackets!)  The text should be enclosed in the appropriate
    +   comment syntax for the file format. We also recommend that a
    +   file or class name and description of purpose be included on the
    +   same "printed page" as the copyright notice for easier
    +   identification within third-party archives.
    +
    +Copyright [yyyy] [name of copyright owner]
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +	https://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
    # Contributing
    +
    +## License
    +
    +Licensed under either of
    +
    + * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
    + * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
    +
    +at your option.
    +
    +### Contribution
    +
    +Unless you explicitly state otherwise, any contribution intentionally submitted
    +for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
    +additional terms or conditions.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
    // Licensed under the Apache License, Version 2.0
    +// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
    +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
    +// All files in the project carrying such notice may not be copied, modified, or distributed
    +// except according to those terms.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
    Apache License
    +Version 2.0, January 2004
    +http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +"License" shall mean the terms and conditions for use, reproduction,
    +and distribution as defined by Sections 1 through 9 of this document.
    +
    +"Licensor" shall mean the copyright owner or entity authorized by
    +the copyright owner that is granting the License.
    +
    +"Legal Entity" shall mean the union of the acting entity and all
    +other entities that control, are controlled by, or are under common
    +control with that entity. For the purposes of this definition,
    +"control" means (i) the power, direct or indirect, to cause the
    +direction or management of such entity, whether by contract or
    +otherwise, or (ii) ownership of fifty percent (50%) or more of the
    +outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +"You" (or "Your") shall mean an individual or Legal Entity
    +exercising permissions granted by this License.
    +
    +"Source" form shall mean the preferred form for making modifications,
    +including but not limited to software source code, documentation
    +source, and configuration files.
    +
    +"Object" form shall mean any form resulting from mechanical
    +transformation or translation of a Source form, including but
    +not limited to compiled object code, generated documentation,
    +and conversions to other media types.
    +
    +"Work" shall mean the work of authorship, whether in Source or
    +Object form, made available under the License, as indicated by a
    +copyright notice that is included in or attached to the work
    +(an example is provided in the Appendix below).
    +
    +"Derivative Works" shall mean any work, whether in Source or Object
    +form, that is based on (or derived from) the Work and for which the
    +editorial revisions, annotations, elaborations, or other modifications
    +represent, as a whole, an original work of authorship. For the purposes
    +of this License, Derivative Works shall not include works that remain
    +separable from, or merely link (or bind by name) to the interfaces of,
    +the Work and Derivative Works thereof.
    +
    +"Contribution" shall mean any work of authorship, including
    +the original version of the Work and any modifications or additions
    +to that Work or Derivative Works thereof, that is intentionally
    +submitted to Licensor for inclusion in the Work by the copyright owner
    +or by an individual or Legal Entity authorized to submit on behalf of
    +the copyright owner. For the purposes of this definition, "submitted"
    +means any form of electronic, verbal, or written communication sent
    +to the Licensor or its representatives, including but not limited to
    +communication on electronic mailing lists, source code control systems,
    +and issue tracking systems that are managed by, or on behalf of, the
    +Licensor for the purpose of discussing and improving the Work, but
    +excluding communication that is conspicuously marked or otherwise
    +designated in writing by the copyright owner as "Not a Contribution."
    +
    +"Contributor" shall mean Licensor and any individual or Legal Entity
    +on behalf of whom a Contribution has been received by Licensor and
    +subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of
    +this License, each Contributor hereby grants to You a perpetual,
    +worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +copyright license to reproduce, prepare Derivative Works of,
    +publicly display, publicly perform, sublicense, and distribute the
    +Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of
    +this License, each Contributor hereby grants to You a perpetual,
    +worldwide, non-exclusive, no-charge, royalty-free, irrevocable
    +(except as stated in this section) patent license to make, have made,
    +use, offer to sell, sell, import, and otherwise transfer the Work,
    +where such license applies only to those patent claims licensable
    +by such Contributor that are necessarily infringed by their
    +Contribution(s) alone or by combination of their Contribution(s)
    +with the Work to which such Contribution(s) was submitted. If You
    +institute patent litigation against any entity (including a
    +cross-claim or counterclaim in a lawsuit) alleging that the Work
    +or a Contribution incorporated within the Work constitutes direct
    +or contributory patent infringement, then any patent licenses
    +granted to You under this License for that Work shall terminate
    +as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the
    +Work or Derivative Works thereof in any medium, with or without
    +modifications, and in Source or Object form, provided that You
    +meet the following conditions:
    +
    +(a) You must give any other recipients of the Work or
    +Derivative Works a copy of this License; and
    +
    +(b) You must cause any modified files to carry prominent notices
    +stating that You changed the files; and
    +
    +(c) You must retain, in the Source form of any Derivative Works
    +that You distribute, all copyright, patent, trademark, and
    +attribution notices from the Source form of the Work,
    +excluding those notices that do not pertain to any part of
    +the Derivative Works; and
    +
    +(d) If the Work includes a "NOTICE" text file as part of its
    +distribution, then any Derivative Works that You distribute must
    +include a readable copy of the attribution notices contained
    +within such NOTICE file, excluding those notices that do not
    +pertain to any part of the Derivative Works, in at least one
    +of the following places: within a NOTICE text file distributed
    +as part of the Derivative Works; within the Source form or
    +documentation, if provided along with the Derivative Works; or,
    +within a display generated by the Derivative Works, if and
    +wherever such third-party notices normally appear. The contents
    +of the NOTICE file are for informational purposes only and
    +do not modify the License. You may add Your own attribution
    +notices within Derivative Works that You distribute, alongside
    +or as an addendum to the NOTICE text from the Work, provided
    +that such additional attribution notices cannot be construed
    +as modifying the License.
    +
    +You may add Your own copyright statement to Your modifications and
    +may provide additional or different license terms and conditions
    +for use, reproduction, or distribution of Your modifications, or
    +for any such Derivative Works as a whole, provided Your use,
    +reproduction, and distribution of the Work otherwise complies with
    +the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise,
    +any Contribution intentionally submitted for inclusion in the Work
    +by You to the Licensor shall be under the terms and conditions of
    +this License, without any additional terms or conditions.
    +Notwithstanding the above, nothing herein shall supersede or modify
    +the terms of any separate license agreement you may have executed
    +with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade
    +names, trademarks, service marks, or product names of the Licensor,
    +except as required for reasonable and customary use in describing the
    +origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or
    +agreed to in writing, Licensor provides the Work (and each
    +Contributor provides its Contributions) on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
    +implied, including, without limitation, any warranties or conditions
    +of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
    +PARTICULAR PURPOSE. You are solely responsible for determining the
    +appropriateness of using or redistributing the Work and assume any
    +risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory,
    +whether in tort (including negligence), contract, or otherwise,
    +unless required by applicable law (such as deliberate and grossly
    +negligent acts) or agreed to in writing, shall any Contributor be
    +liable to You for damages, including any direct, indirect, special,
    +incidental, or consequential damages of any character arising as a
    +result of this License or out of the use or inability to use the
    +Work (including but not limited to damages for loss of goodwill,
    +work stoppage, computer failure or malfunction, or any and all
    +other commercial damages or losses), even if such Contributor
    +has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing
    +the Work or Derivative Works thereof, You may choose to offer,
    +and charge a fee for, acceptance of support, warranty, indemnity,
    +or other liability obligations and/or rights consistent with this
    +License. However, in accepting such obligations, You may act only
    +on Your own behalf and on Your sole responsibility, not on behalf
    +of any other Contributor, and only if You agree to indemnify,
    +defend, and hold each Contributor harmless for any liability
    +incurred by, or claims asserted against, such Contributor by reason
    +of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +To apply the Apache License to your work, attach the following
    +boilerplate notice, with the fields enclosed by brackets "[]"
    +replaced with your own identifying information. (Don't include
    +the brackets!)  The text should be enclosed in the appropriate
    +comment syntax for the file format. We also recommend that a
    +file or class name and description of purpose be included on the
    +same "printed page" as the copyright notice for easier
    +identification within third-party archives.
    +
    +Copyright [yyyy] [name of copyright owner]
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +http://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
    Apache License
    +Version 2.0, January 2004
    +http://www.apache.org/licenses/
    +
    +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    +
    +1. Definitions.
    +
    +"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
    +
    +"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
    +
    +"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
    +
    +"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
    +
    +"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
    +
    +"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
    +
    +"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
    +
    +"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
    +
    +"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
    +
    +"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
    +
    +2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
    +
    +3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
    +
    +4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
    +
    +     (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
    +
    +     (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
    +
    +     (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
    +
    +     (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
    +
    +     You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
    +
    +5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
    +
    +6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
    +
    +7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
    +
    +8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
    +
    +9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
    +
    +END OF TERMS AND CONDITIONS
    +
    +APPENDIX: How to apply the Apache License to your work.
    +
    +To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!)  The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
    +
    +Copyright [yyyy] [name of copyright owner]
    +
    +Licensed under the Apache License, Version 2.0 (the "License");
    +you may not use this file except in compliance with the License.
    +You may obtain a copy of the License at
    +
    +http://www.apache.org/licenses/LICENSE-2.0
    +
    +Unless required by applicable law or agreed to in writing, software
    +distributed under the License is distributed on an "AS IS" BASIS,
    +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    +See the License for the specific language governing permissions and
    +limitations under the License.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
    Licensed under the Apache License, Version 2.0
    +<LICENSE-APACHE or
    +http://www.apache.org/licenses/LICENSE-2.0> or the MIT
    +license <LICENSE-MIT or http://opensource.org/licenses/MIT>,
    +at your option. All files in the project carrying such
    +notice may not be copied, modified, or distributed except
    +according to those terms.
    +
    +
  • +
  • +

    Apache License 2.0

    +

    Used by:

    + +
    MIT OR Apache-2.0
    +
  • +
  • +

    BSD 2-Clause "Simplified" License

    +

    Used by:

    + +
    Copyright 2021, Maarten de Vries <maarten@de-vri.es>
    +
    +Redistribution and use in source and binary forms, with or without
    +modification, are permitted provided that the following conditions are met:
    +
    +1. Redistributions of source code must retain the above copyright notice, this
    +   list of conditions and the following disclaimer.
    +
    +2. Redistributions in binary form must reproduce the above copyright notice,
    +   this list of conditions and the following disclaimer in the documentation
    +   and/or other materials provided with the distribution.
    +
    +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
    +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +
    +
  • +
  • +

    BSD 3-Clause "New" or "Revised" License

    +

    Used by:

    + +
    Copyright © WHATWG (Apple, Google, Mozilla, Microsoft).
    +
    +Redistribution and use in source and binary forms, with or without
    +modification, are permitted provided that the following conditions are met:
    +
    +1. Redistributions of source code must retain the above copyright notice, this
    +   list of conditions and the following disclaimer.
    +
    +2. Redistributions in binary form must reproduce the above copyright notice,
    +   this list of conditions and the following disclaimer in the documentation
    +   and/or other materials provided with the distribution.
    +
    +3. Neither the name of the copyright holder nor the names of its
    +   contributors may be used to endorse or promote products derived from
    +   this software without specific prior written permission.
    +
    +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
    +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
    +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
    +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2014 Carl Lerche and other MIO contributors
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2014-2021 Sean McArthur
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2017 Daniel Abramov
    +Copyright (c) 2017 Alexey Galakhov
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2017 Redox OS Developers
    +
    +MIT License
    +
    +Permission is hereby granted, free of charge, to any person obtaining
    +a copy of this software and associated documentation files (the
    +"Software"), to deal in the Software without restriction, including
    +without limitation the rights to use, copy, modify, merge, publish,
    +distribute, sublicense, and/or sell copies of the Software, and to
    +permit persons to whom the Software is furnished to do so, subject to
    +the following conditions:
    +
    +The above copyright notice and this permission notice shall be
    +included in all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
    +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
    +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2017 h2 authors
    +
    +Permission is hereby granted, free of charge, to any
    +person obtaining a copy of this software and associated
    +documentation files (the "Software"), to deal in the
    +Software without restriction, including without
    +limitation the rights to use, copy, modify, merge,
    +publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software
    +is furnished to do so, subject to the following
    +conditions:
    +
    +The above copyright notice and this permission notice
    +shall be included in all copies or substantial portions
    +of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
    +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
    +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
    +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    +DEALINGS IN THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2018 Carl Lerche
    +
    +Permission is hereby granted, free of charge, to any
    +person obtaining a copy of this software and associated
    +documentation files (the "Software"), to deal in the
    +Software without restriction, including without
    +limitation the rights to use, copy, modify, merge,
    +publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software
    +is furnished to do so, subject to the following
    +conditions:
    +
    +The above copyright notice and this permission notice
    +shall be included in all copies or substantial portions
    +of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
    +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
    +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
    +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    +DEALINGS IN THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2018 Sean McArthur
    +Copyright (c) 2016 Alex Crichton
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
    +
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2018-2019 Sean McArthur
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
    +
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2019 Carl Lerche
    +
    +Permission is hereby granted, free of charge, to any
    +person obtaining a copy of this software and associated
    +documentation files (the "Software"), to deal in the
    +Software without restriction, including without
    +limitation the rights to use, copy, modify, merge,
    +publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software
    +is furnished to do so, subject to the following
    +conditions:
    +
    +The above copyright notice and this permission notice
    +shall be included in all copies or substantial portions
    +of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
    +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
    +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
    +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    +DEALINGS IN THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2019 Hyper Contributors
    +
    +Permission is hereby granted, free of charge, to any
    +person obtaining a copy of this software and associated
    +documentation files (the "Software"), to deal in the
    +Software without restriction, including without
    +limitation the rights to use, copy, modify, merge,
    +publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software
    +is furnished to do so, subject to the following
    +conditions:
    +
    +The above copyright notice and this permission notice
    +shall be included in all copies or substantial portions
    +of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
    +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
    +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
    +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    +DEALINGS IN THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2019 Tokio Contributors
    +
    +Permission is hereby granted, free of charge, to any
    +person obtaining a copy of this software and associated
    +documentation files (the "Software"), to deal in the
    +Software without restriction, including without
    +limitation the rights to use, copy, modify, merge,
    +publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software
    +is furnished to do so, subject to the following
    +conditions:
    +
    +The above copyright notice and this permission notice
    +shall be included in all copies or substantial portions
    +of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
    +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
    +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
    +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    +DEALINGS IN THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2019 Tower Contributors
    +
    +Permission is hereby granted, free of charge, to any
    +person obtaining a copy of this software and associated
    +documentation files (the "Software"), to deal in the
    +Software without restriction, including without
    +limitation the rights to use, copy, modify, merge,
    +publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software
    +is furnished to do so, subject to the following
    +conditions:
    +
    +The above copyright notice and this permission notice
    +shall be included in all copies or substantial portions
    +of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
    +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
    +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
    +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    +DEALINGS IN THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2023 Tokio Contributors
    +
    +Permission is hereby granted, free of charge, to any
    +person obtaining a copy of this software and associated
    +documentation files (the "Software"), to deal in the
    +Software without restriction, including without
    +limitation the rights to use, copy, modify, merge,
    +publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software
    +is furnished to do so, subject to the following
    +conditions:
    +
    +The above copyright notice and this permission notice
    +shall be included in all copies or substantial portions
    +of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
    +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
    +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
    +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    +DEALINGS IN THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Copyright (c) 2023 Tokio Contributors
    +
    +Permission is hereby granted, free of charge, to any
    +person obtaining a copy of this software and associated
    +documentation files (the "Software"), to deal in the
    +Software without restriction, including without
    +limitation the rights to use, copy, modify, merge,
    +publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software
    +is furnished to do so, subject to the following
    +conditions:
    +
    +The above copyright notice and this permission notice
    +shall be included in all copies or substantial portions
    +of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
    +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
    +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
    +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    +DEALINGS IN THE SOFTWARE.
    +
    +The MIT License (MIT)
    +
    +Copyright (c) 2019 Yoshua Wuyts
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    MIT License
    +
    +Copyright (c) 2023 Sean Larkin
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    Permission is hereby granted, free of charge, to any
    +person obtaining a copy of this software and associated
    +documentation files (the "Software"), to deal in the
    +Software without restriction, including without
    +limitation the rights to use, copy, modify, merge,
    +publish, distribute, sublicense, and/or sell copies of
    +the Software, and to permit persons to whom the Software
    +is furnished to do so, subject to the following
    +conditions:
    +
    +The above copyright notice and this permission notice
    +shall be included in all copies or substantial portions
    +of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
    +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    +TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
    +SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
    +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
    +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
    +IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    +DEALINGS IN THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    The MIT License (MIT)
    +
    +Copyright (c) 2014 Mathijs van de Nes
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    The MIT License (MIT)
    +
    +Copyright (c) 2015 Andrew Gallant
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    The MIT License (MIT)
    +
    +Copyright (c) 2015 Austin Bonander
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
    +
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    The MIT License (MIT)
    +
    +Copyright (c) 2015 Danny Guo
    +Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
    +Copyright (c) 2018 Akash Kurdekar
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    The MIT License (MIT)
    +
    +Copyright (c) 2015-2020 Julien Cretin
    +Copyright (c) 2017-2020 Google Inc.
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    The MIT License (MIT)
    +=====================
    +
    +Copyright © `2015` `Sebastian Thiel`
    +
    +Permission is hereby granted, free of charge, to any person
    +obtaining a copy of this software and associated documentation
    +files (the “Software”), to deal in the Software without
    +restriction, including without limitation the rights to use,
    +copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the
    +Software is furnished to do so, subject to the following
    +conditions:
    +
    +The above copyright notice and this permission notice shall be
    +included in all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
    +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    +OTHER DEALINGS IN THE SOFTWARE.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    The MIT License (MIT)
    +
    +Copyright (c) 2015 Bartłomiej Kamiński
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all
    +copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    +SOFTWARE.
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    This project is dual-licensed under the Unlicense and MIT licenses.
    +
    +You may use this code under the terms of either license.
    +
    +
  • +
  • +

    MIT License

    +

    Used by:

    + +
    © 2016 Bertram Truong
    +© 2021 Kornel Lesiński
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy
    +of this software and associated documentation files (the "Software"), to deal
    +in the Software without restriction, including without limitation the rights
    +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    +copies of the Software, and to permit persons to whom the Software is
    +furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in
    +all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    +THE SOFTWARE.
    +
    +
  • +
  • +

    Unicode License Agreement - Data Files and Software (2016)

    +

    Used by:

    + +
    UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
    +
    +Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and http://www.unicode.org/utility/trac/browser/.
    +
    +Unicode Data Files do not include PDF online code charts under the directory http://www.unicode.org/Public/.
    +
    +Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and http://www.unicode.org/utility/trac/browser/.
    +
    +NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
    +
    +COPYRIGHT AND PERMISSION NOTICE
    +
    +Copyright © 1991-2016 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") to deal in the Data Files or Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or Software are furnished to do so, provided that either
    +
    +     (a) this copyright and permission notice appear with all copies of the Data Files or Software, or
    +     (b) this copyright and permission notice appear in associated Documentation.
    +
    +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE.
    +
    +Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder.
    +
    +
  • +
+
+ + + diff --git a/www/api.js b/www/api.js new file mode 100644 index 0000000..d4f76dd --- /dev/null +++ b/www/api.js @@ -0,0 +1,137 @@ +// @ts-check +/** + * @typedef {number|number[]} ReqAddr + */ + +/** @param {string} s */ +const hex2dv = s => new DataView(Uint8Array.from( + (s.match(/../g) ?? /**@type{string[]}*/([])) + .map(s => parseInt(s, 16))).buffer +); + +/** + * @param {{ + * onClose?: null | ((this: WebSocket, ev: CloseEvent)=>void) + * }} options + */ +function Client({onClose = null}={}) { + /** @type {Mapvoid, rjt: (res: any)=>void}>} */ + const reqs = new Map(); + /** @type {WebSocket|null} */ + let ws = null; + let nextId = 1; + + /** + * @template T + * @param {string} action + * @param {any} payload + * @returns {Promise} + */ + const request = (action, payload) => new Promise((rsv, rjt) => { + if (ws == null) throw Error('Client is not connected to server. Use `client.connect()` first.'); + const id = nextId++; + reqs.set(id, {rsv, rjt}); + ws.send(JSON.stringify([id, action, payload])); + }); + + return { + connect: (url=`ws://${window.location.host}/`, protocol=undefined) => new Promise((rsv, rjt) => { + const ws1 = new WebSocket(url, protocol); + ws1.onmessage = ({data}) => { + if (typeof data !== 'string') return; // TODO + const [id, body] = JSON.parse(data); + if (id > 0) { + reqs.get(id)?.rsv(body); + reqs.delete(id); + } else { + reqs.get(-id)?.rjt(body); + reqs.delete(-id); + } + }; + ws1.onopen = rsv; + ws1.onerror = rjt; // TODO auto reconnect + ws1.onclose = onClose; + ws = ws1; + }), + get ws() {return ws}, + request, + api: { + /** + * @returns {Promise} + */ + init: () => request('init', null), + + /** + * @param {ReqAddr} addr + * @param {string} type + */ + read: (addr, type) => request('read', { + addr: addr instanceof Array ? addr : [addr], + type, + }).then((/**@type{string[]|string|null}*/s) => s), + + /** + * @param {ReqAddr} addr + * @param {number} size + */ + readBytes: (addr, size) => request('read', { + addr: addr instanceof Array ? addr : [addr], + size, + }).then((/**@type{string|null}*/s) => s == null ? null : hex2dv(s)), + + /** + * @param {ReqAddr} addr + * @returns {Promise} + */ + readString: addr => request('readString', { + addr: typeof addr === 'number' ? [addr] : addr, + }), + + /** + * @param {ReqAddr} addr + * @param {string|ArrayBuffer|ArrayBufferView} payload + * @returns {Promise} + */ + write: (addr, payload) => request('write', { + addr: typeof addr === 'number' ? [addr] : addr, + payload: typeof payload === 'string' ? payload : Array.from( + new Uint8Array(payload instanceof ArrayBuffer ? payload : payload.buffer), + x => x.toString(16).padStart(2, '0'), + ).join(''), + }), + + /** + * @param {ReqAddr} addr + * @returns {Promise} + */ + getClass: addr => request('getClass', { + addr: typeof addr === 'number' ? [addr] : addr, + }), + + /** + * @param {string} type + * @returns {Promise<[ + * offsets: string, + * name: string, + * notes: string, + * type: string, + * class_: string, + * ][]>} + */ + getFields: type => request('getFields', type), + + getManagers: () => request('getManagers', 0) + .then((/**@type{[addr: number, cls: string, name: string, count: number][]}*/rows) => + rows.map(row => ({addr: row[0], cls: row[1], name: row[2], count: row[3]}))), + + /** + * @param {ReqAddr} addr + */ + getManagees: addr => request('getManagees', addr) + .then((/**@type{[addr: number, cls: string, name: string][]}*/rows) => + rows.map(row => ({addr: row[0], cls: row[1], name: row[2]}))), + + reload: () => request('reload', null), + }, + }; +} diff --git a/www/icon.svg b/www/icon.svg new file mode 100644 index 0000000..4ea3ef3 --- /dev/null +++ b/www/icon.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/index.css b/www/index.css new file mode 100644 index 0000000..8932f9b --- /dev/null +++ b/www/index.css @@ -0,0 +1,106 @@ +:root { + --bg: #fff; + --fg: #000; + --bg-stripe: #0001; + --bg-red: #b00; +} +@media (prefers-color-scheme: dark) { + :root { + --bg: #282830; + --fg: #f7f7f7; + --bg-stripe: #fff1; + --fg-link: #72e5db; + } +} + +table.list tr:nth-child(2n + 1) { + background: var(--bg-stripe); +} + +button { + background: none; + color: var(--fg); + cursor: pointer; + border-radius: 4px; +} +td > button { + width: 100%; +} + +table.list td { + padding: 1px 0.3em; + white-space: pre-line; +} +#managers td:nth-child(1), +#managers td:nth-child(5) { + padding: 0 2px +} +#managers tr.managee > td:nth-child(2) { + padding-left: 1em +} + +#fields-viewer td:nth-child(1), +#fields-viewer td:nth-child(3) { + text-align: right; +} + +.flex { + display: flex; + align-items: flex-start; +} +.flex > * { + margin-right: 4px; +} +.hidden { + display: none; +} + +body { + background: var(--bg); + color: var(--fg); + font-variant-numeric: tabular-nums; + font-family: "Consolas"; + font-size: 14px; + padding: 4px; +} +body.disconnected #msg { + background: var(--bg-red); +} +h1 { + margin-block-start: 0; + margin-block-end: 0.5em; +} +a { + color: var(--fg-link); +} + +header { + margin-block-end: 0.75em; + padding-left: 4px; +} +details { + border: solid 1px var(--fg); + padding: 0.5em 1em; + margin-block-start: 0.5em; + margin-block-end: 0.5em; +} +details > summary { + padding: 4px 0.5em; + margin: -0.5em -1em -0.5em; +} +details[open] { + padding-bottom: 0; +} +details[open] > summary { + border-bottom: 1px solid; + margin: -0.5em -1em 1em; +} +details p { + margin-block-start: 0.5em; + margin-block-end: 0.5em; +} +#license { + width: 100%; + max-width: 800px; + height: 100px; +} diff --git a/www/index.html b/www/index.html new file mode 100644 index 0000000..2167b3e --- /dev/null +++ b/www/index.html @@ -0,0 +1,32 @@ + + + + SMS Web Object Viewer (v0.1.0-beta.1) + + + + + + +

SMS Web Object Viewer

+
+
+
+ LICENSE +

Repository: https://github.com/sup39/sup-smsac

+

Author: sup39

+

License: MIT OR Apache-2.0

+

Full license text:

+ +
+
+
+ +
+
+
+
+
+
+
+ diff --git a/www/index.js b/www/index.js new file mode 100644 index 0000000..a42e5e5 --- /dev/null +++ b/www/index.js @@ -0,0 +1,182 @@ +// @ts-check +/** + * @typedef {{addr: number, cls: string, name: string, count: number}} Manager + * @typedef {{addr: number, cls: string, name: string}} Managee + * @typedef {(td: HTMLTableCellElement) => void} CellFactory + * @typedef {CellFactory[]} RowFactory + * @typedef {{name: string, notes: string, offset: string|string[], type: string}} Field + * @typedef {(Omit & {offset: number[], srcType: string})} FieldView + * @typedef {{offsets: Field[]}} ObjParamsDBEntry + * @typedef {Record} ObjParamsDB + */ + +const fmt = { + /** @param {number} x */ + hex: x => x.toString(16).toUpperCase(), + /** @type {(x: number) => string} */ + float: (LOG_10_2 => x => { + const u = Math.floor(LOG_10_2*(Math.log2(Math.abs(x))-23)); + return x === 0 ? '0.0' : u > 0 || u < -8 ? x.toExponential(7) : + x.toFixed(-u); + })(Math.log10(2)), +}; + +/** + * @param {HTMLTableElement} table + * @param {((td: HTMLTableCellElement)=>void)[][]} gTable + */ +function initTable(table, gTable) { + const nRow = gTable.length; + for (let r=table.rows.length; rnRow; r--) table.deleteRow(-1); + gTable.forEach((gRow, r) => { + const row = table.rows[r]; + const nCol = gRow.length; + for (let c=row.cells.length; cnCol; c--) row.deleteCell(-1); + gRow.forEach((g, c) => g(row.cells[c])); + }); +} + +document.addEventListener('DOMContentLoaded', async () => { + const elmMsg = /**@type {HTMLDivElement}*/(document.getElementById('msg')); + const btnReload = /**@type {HTMLButtonElement}*/(document.getElementById('btn-reload')); + const elmManagers = /**@type {HTMLTableElement}*/(document.getElementById('managers')); + const elmFieldsViewer = /**@type {HTMLTableElement}*/(document.getElementById('fields-viewer')); + + const client = Client({ + onClose() { + elmMsg.textContent = `Disconnected from server. Please reload the page.`; + document.body.classList.add('disconnected'); + }, + }); + const {api} = client; + Object.assign(window, {client, api}); // TODO + + /**************** UI definition ****************/ + /** + * @param {HTMLTableElement} elm + */ + function FieldsViewer(elm) { + const tdidxVal = 2; + let hAnm = NaN; + let t0 = 0; + /** @type {Managee|null} */ + let target = null; + async function readValues() { + if (target == null) return []; + const values = await api.read([target.addr], target.cls); + return values instanceof Array ? values : [values]; + } + /** @param {DOMHighResTimeStamp} t */ + async function render(t) { + if (t-t0 >= 33) { // TODO configurable fps + (await readValues()) + .forEach((s, i) => elm.rows[i].cells[tdidxVal].textContent = s); + t0 = t; + } + hAnm = requestAnimationFrame(render); + } + const methods = { + reload() { + api.reload().then(() => { + target != null && methods.view(target); + }, err => { + elmMsg.textContent = err; + }); + }, + /** @param {Manager|Managee} o */ + async view(o) { + btnReload.classList.remove('hidden'); + cancelAnimationFrame(hAnm); + target = o; + const fields = await api.getFields(o.cls); + const values = readValues(); + initTable(elm, fields.map((r, i) => [ + td => td.textContent = r[0], + td => td.textContent = r[1], + td => td.textContent = values[i], + // td => td.textContent = r[2], // TODO + td => td.textContent = r[3], + td => td.textContent = r[4], + ])); + if (fields.length) hAnm = requestAnimationFrame(render); + }, + } + return methods; + } + const fieldsViewer = FieldsViewer(elmFieldsViewer); + btnReload.addEventListener('click', () => { + fieldsViewer.reload(); + }); + + /** @type {(o: Manager) => RowFactory} */ + const makeManagersRowFactory = o => [ + td => { + const btn = document.createElement('button'); + let open = false; + /** @type {HTMLTableRowElement[] | null} */ + let trManagees = null; + btn.textContent = '>'; + btn.addEventListener('click', async () => { + open = !open; + btn.textContent = open ? 'v' : '>'; + if (open) { + if (trManagees == null) { + const managees = await api.getManagees(o.addr); + const trP = td.parentElement?.parentElement; + const tr1 = td.parentElement?.nextSibling ?? null; + trManagees = managees.map((o, i) => { + const tr = document.createElement('tr'); + tr.classList.add('managee'); + trP?.insertBefore(tr, tr1); + makeManageesRowFactory(o, i).forEach(f => f(tr.insertCell())); + return tr; + }); + } else { + trManagees.forEach(e => e.classList.remove('hidden')); + } + } else { + trManagees?.forEach(e => e.classList.add('hidden')); + } + }); + td.appendChild(btn); + }, + td => td.textContent = `${o.name} (${o.count})`, + td => td.textContent = `${o.cls}`, + td => td.textContent = `${fmt.hex(o.addr)}`, + makeViewerNavigatorFactory(o), + ]; + + /** @type {(o: Managee, i: number) => ((td: HTMLTableCellElement) => void)[]} */ + const makeManageesRowFactory = (o, i) => [ + _ => {}, + td => td.textContent = `${i}: (${o.name})`, + td => td.textContent = `${o.cls}`, + td => td.textContent = `${fmt.hex(o.addr)}`, + makeViewerNavigatorFactory(o), + ]; + + /** @type {(o: Manager|Managee) => CellFactory} */ + const makeViewerNavigatorFactory = o => td => { + const btn = document.createElement('button'); + btn.textContent = '>'; + btn.addEventListener('click', () => { + fieldsViewer.view(o).catch(e => elmMsg.textContent = e); + }); + td.appendChild(btn); + }; + + /**************** UI initialization ****************/ + try { + await client.connect(); // TODO url + const pid = await api.init(); + console.log('pid:', pid); + + const managers = await api.getManagers(); + initTable(elmManagers, managers.map(makeManagersRowFactory)); + } catch(e) { + elmMsg.textContent = e; + return; // TODO + } +});